summaryrefslogtreecommitdiff
path: root/openttd.c
diff options
context:
space:
mode:
authorDarkvater <darkvater@openttd.org>2006-02-21 17:29:53 +0000
committerDarkvater <darkvater@openttd.org>2006-02-21 17:29:53 +0000
commit35ce486704bb78d6ed561abe90b3a049b67f31e1 (patch)
tree73788bd033faed5d7019eb5e72a4203cd810e12d /openttd.c
parent12290369e2d1012fdf046be447e01cdb283bf2c5 (diff)
downloadopenttd-35ce486704bb78d6ed561abe90b3a049b67f31e1.tar.xz
(svn r3647) Some style-changes to the parameter parser
Diffstat (limited to 'openttd.c')
-rw-r--r--openttd.c48
1 files changed, 19 insertions, 29 deletions
diff --git a/openttd.c b/openttd.c
index 28b800ab2..6dadc1d62 100644
--- a/openttd.c
+++ b/openttd.c
@@ -307,13 +307,14 @@ int ttd_main(int argc, char* argv[])
{
MyGetOptData mgo;
int i;
- bool network = false;
- char *network_conn = NULL;
const char *optformat;
char musicdriver[16], sounddriver[16], videodriver[16];
int resolution[2] = {0,0};
uint startdate = -1;
- bool dedicated;
+
+ bool dedicated = false;
+ bool network = false;
+ char *network_conn = NULL;
musicdriver[0] = sounddriver[0] = videodriver[0] = 0;
@@ -321,7 +322,6 @@ int ttd_main(int argc, char* argv[])
_switch_mode = SM_MENU;
_switch_mode_errorstr = INVALID_STRING_ID;
_dedicated_forks = false;
- dedicated = false;
_config_file = NULL;
// The last param of the following function means this:
@@ -340,23 +340,17 @@ int ttd_main(int argc, char* argv[])
case 'm': ttd_strlcpy(musicdriver, mgo.opt, sizeof(musicdriver)); break;
case 's': ttd_strlcpy(sounddriver, mgo.opt, sizeof(sounddriver)); break;
case 'v': ttd_strlcpy(videodriver, mgo.opt, sizeof(videodriver)); break;
- case 'D': {
- strcpy(musicdriver, "null");
- strcpy(sounddriver, "null");
- strcpy(videodriver, "dedicated");
- dedicated = true;
- } break;
- case 'f': {
- _dedicated_forks = true;
- }; break;
- case 'n': {
- network = true;
- if (mgo.opt)
- // Optional, you can give an IP
- network_conn = mgo.opt;
- else
- network_conn = NULL;
- } break;
+ case 'D':
+ strcpy(musicdriver, "null");
+ strcpy(sounddriver, "null");
+ strcpy(videodriver, "dedicated");
+ dedicated = true;
+ break;
+ case 'f': _dedicated_forks = true; break;
+ case 'n':
+ network = true;
+ network_conn = mgo_opt; // optional IP parameter, NULL if unset
+ break;
case 'b': _ai.network_client = true; break;
case 'r': ParseResolution(resolution, mgo.opt); break;
case 't': startdate = atoi(mgo.opt); break;
@@ -375,12 +369,8 @@ int ttd_main(int argc, char* argv[])
} else
_switch_mode = SM_NEWGAME;
break;
- case 'G':
- _random_seeds[0][0] = atoi(mgo.opt);
- break;
- case 'c':
- _config_file = strdup(mgo.opt);
- break;
+ case 'G': _random_seeds[0][0] = atoi(mgo.opt); break;
+ case 'c': _config_file = strdup(mgo.opt); break;
case -2:
case 'h':
showhelp();
@@ -390,7 +380,7 @@ int ttd_main(int argc, char* argv[])
if (_ai.network_client && !network) {
_ai.network_client = false;
- DEBUG(ai, 0)("[AI] Can't enable network-AI, because '-n' is not used\n");
+ DEBUG(ai, 0) ("[AI] Can't enable network-AI, because '-n' is not used\n");
}
DeterminePaths();
@@ -441,7 +431,7 @@ int ttd_main(int argc, char* argv[])
GfxLoadSprites();
LoadStringWidthTable();
- DEBUG(misc, 1) ("Loading drivers...");
+ DEBUG(driver, 1) ("Loading drivers...");
LoadDriver(SOUND_DRIVER, _ini_sounddriver);
LoadDriver(MUSIC_DRIVER, _ini_musicdriver);
LoadDriver(VIDEO_DRIVER, _ini_videodriver); // load video last, to prevent an empty window while sound and music loads