summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorSimon Howard2009-07-09 20:08:20 +0000
committerSimon Howard2009-07-09 20:08:20 +0000
commit62df1ab1dd5bd04c5e6228cea09442c5177a955e (patch)
tree846055b3ece1931e075c2c1b8c52a59de2bf6944 /src
parentd03dd75b5c4098f1fa59a4a0074b4770e73d835b (diff)
downloadchocolate-doom-62df1ab1dd5bd04c5e6228cea09442c5177a955e.tar.gz
chocolate-doom-62df1ab1dd5bd04c5e6228cea09442c5177a955e.tar.bz2
chocolate-doom-62df1ab1dd5bd04c5e6228cea09442c5177a955e.zip
Select the game to configure automatically if the game name is found
inside the name of the executable. Rename the executable for the Windows CE install packages. Subversion-branch: /branches/raven-branch Subversion-revision: 1612
Diffstat (limited to 'src')
-rw-r--r--src/m_argv.c18
-rw-r--r--src/m_argv.h4
-rw-r--r--src/setup/mode.c28
3 files changed, 49 insertions, 1 deletions
diff --git a/src/m_argv.c b/src/m_argv.c
index 1d07a196..e2b551f1 100644
--- a/src/m_argv.c
+++ b/src/m_argv.c
@@ -243,3 +243,21 @@ void M_FindResponseFile(void)
}
}
+// Return the name of the executable used to start the program:
+
+char *M_GetExecutableName(void)
+{
+ char *sep;
+
+ sep = strrchr(myargv[0], DIR_SEPARATOR);
+
+ if (sep == NULL)
+ {
+ return myargv[0];
+ }
+ else
+ {
+ return sep + 1;
+ }
+}
+
diff --git a/src/m_argv.h b/src/m_argv.h
index ef59f166..859f93e4 100644
--- a/src/m_argv.h
+++ b/src/m_argv.h
@@ -46,4 +46,8 @@ void M_FindResponseFile(void);
boolean M_ParmExists(char *check);
+// Get name of executable used to run this program:
+
+char *M_GetExecutableName(void);
+
#endif
diff --git a/src/setup/mode.c b/src/setup/mode.c
index e300dc9f..ea90c76f 100644
--- a/src/setup/mode.c
+++ b/src/setup/mode.c
@@ -197,6 +197,32 @@ static mission_config_t *GetMissionForName(char *name)
return NULL;
}
+// Check the name of the executable. If it contains one of the game
+// names (eg. chocolate-hexen-setup.exe) then use that game.
+
+static boolean CheckExecutableName(GameSelectCallback callback)
+{
+ mission_config_t *config;
+ char *exe_name;
+ int i;
+
+ exe_name = M_GetExecutableName();
+
+ for (i=0; i<arrlen(mission_configs); ++i)
+ {
+ config = &mission_configs[i];
+
+ if (strstr(exe_name, config->name) != NULL)
+ {
+ SetMission(config);
+ callback();
+ return true;
+ }
+ }
+
+ return false;
+}
+
static void GameSelected(TXT_UNCAST_ARG(widget), TXT_UNCAST_ARG(config))
{
TXT_CAST_ARG(mission_config_t, config);
@@ -293,7 +319,7 @@ void SetupMission(GameSelectCallback callback)
SetMission(config);
callback();
}
- else
+ else if (!CheckExecutableName(callback))
{
OpenGameSelectDialog(callback);
}