summaryrefslogtreecommitdiff
path: root/src/openttd.cpp
diff options
context:
space:
mode:
authoralberth <alberth@openttd.org>2011-02-18 20:14:30 +0000
committeralberth <alberth@openttd.org>2011-02-18 20:14:30 +0000
commit9d0ff9d69202fccc6414f7356faa1ab22c7a14b7 (patch)
tree67a546e6bac6f2d2462c2a07783c24ca18e8bbcd /src/openttd.cpp
parentbca5159951386f8b0c2e1c19fa3268af056ee81d (diff)
downloadopenttd-9d0ff9d69202fccc6414f7356faa1ab22c7a14b7.tar.xz
(svn r22096) -Codechange: Move openttd getopt implementation to its own file.
Diffstat (limited to 'src/openttd.cpp')
-rw-r--r--src/openttd.cpp72
1 files changed, 3 insertions, 69 deletions
diff --git a/src/openttd.cpp b/src/openttd.cpp
index c0780241c..f331aab7a 100644
--- a/src/openttd.cpp
+++ b/src/openttd.cpp
@@ -59,6 +59,7 @@
#include "core/backup_type.hpp"
#include "hotkeys.h"
#include "newgrf.h"
+#include "misc/getoptdata.h"
#include "town.h"
@@ -215,73 +216,6 @@ static void ShowHelp()
}
-struct MyGetOptData {
- char *opt;
- int numleft;
- char **argv;
- const char *options;
- char *cont;
-
- MyGetOptData(int argc, char **argv, const char *options)
- {
- opt = NULL;
- numleft = argc;
- this->argv = argv;
- this->options = options;
- cont = NULL;
- }
-};
-
-static int MyGetOpt(MyGetOptData *md)
-{
- char *s = md->cont;
- if (s != NULL) {
- goto md_continue_here;
- }
-
- for (;;) {
- if (--md->numleft < 0) return -1;
-
- s = *md->argv++;
- if (*s == '-') {
-md_continue_here:;
- s++;
- if (*s != 0) {
- const char *r;
- /* Found argument, try to locate it in options. */
- if (*s == ':' || (r = strchr(md->options, *s)) == NULL) {
- /* ERROR! */
- return -2;
- }
- if (r[1] == ':') {
- char *t;
- /* Item wants an argument. Check if the argument follows, or if it comes as a separate arg. */
- if (!*(t = s + 1)) {
- /* It comes as a separate arg. Check if out of args? */
- if (--md->numleft < 0 || *(t = *md->argv) == '-') {
- /* Check if item is optional? */
- if (r[2] != ':') return -2;
- md->numleft++;
- t = NULL;
- } else {
- md->argv++;
- }
- }
- md->opt = t;
- md->cont = NULL;
- return *s;
- }
- md->opt = NULL;
- md->cont = s;
- return *s;
- }
- } else {
- /* This is currently not supported. */
- return -2;
- }
- }
-}
-
/**
* Extract the resolution from the given string and store
* it in the 'res' parameter.
@@ -452,9 +386,9 @@ int ttd_main(int argc, char *argv[])
#endif
;
- MyGetOptData mgo(argc - 1, argv + 1, optformat);
+ GetOptData mgo(argc - 1, argv + 1, optformat);
- while ((i = MyGetOpt(&mgo)) != -1) {
+ while ((i = mgo.GetOpt()) != -1) {
switch (i) {
case 'I': free(graphics_set); graphics_set = strdup(mgo.opt); break;
case 'S': free(sounds_set); sounds_set = strdup(mgo.opt); break;