40 try |
40 try |
41 { |
41 { |
42 // Intepret command-line parameters: |
42 // Intepret command-line parameters: |
43 // -l: list commands |
43 // -l: list commands |
44 // I guess there should be a better way to do this. |
44 // I guess there should be a better way to do this. |
45 if (argc == 2 && String (argv[1]) == "-l") |
45 if (argc == 2 and String (argv[1]) == "-l") |
46 { |
46 { |
47 print ("Begin list of commands:\n"); |
47 print ("Begin list of commands:\n"); |
48 print ("------------------------------------------------------\n"); |
48 print ("------------------------------------------------------\n"); |
49 |
49 |
50 BotscriptParser parser; |
50 BotscriptParser parser; |
113 |
113 |
114 // Parse done, print statistics and write to file |
114 // Parse done, print statistics and write to file |
115 int globalcount = parser->getHighestVarIndex (true) + 1; |
115 int globalcount = parser->getHighestVarIndex (true) + 1; |
116 int statelocalcount = parser->getHighestVarIndex (false) + 1; |
116 int statelocalcount = parser->getHighestVarIndex (false) + 1; |
117 int stringcount = countStringsInTable(); |
117 int stringcount = countStringsInTable(); |
118 print ("%1 / %2 strings\n", stringcount, gMaxStringlistSize); |
118 print ("%1 / %2 strings\n", stringcount, Limits::MaxStringlistSize); |
119 print ("%1 / %2 global variable indices\n", globalcount, gMaxGlobalVars); |
119 print ("%1 / %2 global variable indices\n", globalcount, Limits::MaxGlobalVars); |
120 print ("%1 / %2 state variable indices\n", statelocalcount, gMaxGlobalVars); |
120 print ("%1 / %2 state variable indices\n", statelocalcount, Limits::MaxStateVars); |
121 print ("%1 / %2 events\n", parser->numEvents(), gMaxEvents); |
121 print ("%1 / %2 events\n", parser->numEvents(), Limits::MaxEvents); |
122 print ("%1 state%s1\n", parser->numStates()); |
122 print ("%1 state%s1\n", parser->numStates()); |
123 |
123 |
124 parser->writeToFile (outfile); |
124 parser->writeToFile (outfile); |
125 delete parser; |
125 delete parser; |
126 return 0; |
126 return 0; |
196 |
196 |
197 // ============================================================================= |
197 // ============================================================================= |
198 // |
198 // |
199 String versionString (bool longform) |
199 String versionString (bool longform) |
200 { |
200 { |
201 #if defined(GIT_DESCRIPTION) && defined (DEBUG) |
201 #if defined(GIT_DESCRIPTION) and defined (DEBUG) |
202 String tag (GIT_DESCRIPTION); |
202 String tag (GIT_DESCRIPTION); |
203 String version = tag; |
203 String version = tag; |
204 |
204 |
205 if (longform && tag.endsWith ("-pre")) |
205 if (longform and tag.endsWith ("-pre")) |
206 version += "-" + String (GIT_HASH).mid (0, 8); |
206 version += "-" + String (GIT_HASH).mid (0, 8); |
207 |
207 |
208 return version; |
208 return version; |
209 #elif VERSION_PATCH != 0 |
209 #elif VERSION_PATCH != 0 |
210 return format ("%1.%2.%3", VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH); |
210 return format ("%1.%2.%3", VERSION_MAJOR, VERSION_MINOR, VERSION_PATCH); |