]> git.localhorst.tv Git - l2e.git/blobdiff - src/app/Arguments.h
removed useless comments
[l2e.git] / src / app / Arguments.h
index c7e37eee1419209d95cb2db9453982376de71c09..ee7654fae3656060344eb5dd46c71c4513ebe1d1 100644 (file)
@@ -1,10 +1,3 @@
-/*
- * Arguments.h
- *
- *  Created on: Sep 15, 2012
- *      Author: holy
- */
-
 #ifndef APP_ARGUMENTS_H_
 #define APP_ARGUMENTS_H_
 
 
 namespace app {
 
+/// Specialized argument interpreter.
+/// Reads command line arguments via Read(int, char**) function.
 class Arguments {
 
 public:
        Arguments();
        ~Arguments() { }
 
+public:
+       enum RunLevel {
+               DUMP,
+               PLAY,
+               WRITE,
+
+               // temporary modes
+               BATTLE,
+               MAP,
+               SOURCE_WIKI,
+       };
+
 public:
        void Read(int argc, char **argv);
 
+       RunLevel GetRunLevel() const { return runlevel; }
+
        const std::vector<char *> &Infiles() const { return infiles; }
 
        bool OutfileSet() const { return outfile; }
@@ -29,9 +38,10 @@ public:
 private:
        std::vector<char *> infiles;
        const char *outfile;
+       RunLevel runlevel;
 
 };
 
 }
 
-#endif /* APP_ARGUMENTS_H_ */
+#endif