]> git.xonotic.org Git - xonotic/gmqcc.git/blob - main.c
Fix macro spacing
[xonotic/gmqcc.git] / main.c
1 /*
2  * Copyright (C) 2012
3  *     Dale Weiler
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a copy of
6  * this software and associated documentation files (the "Software"), to deal in
7  * the Software without restriction, including without limitation the rights to
8  * use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
9  * of the Software, and to permit persons to whom the Software is furnished to do
10  * so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice shall be included in all
13  * copies or substantial portions of the Software.
14  *
15  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21  * SOFTWARE.
22  */
23 #include "gmqcc.h"
24 typedef struct { char *name, type; } argitem;
25 VECTOR_MAKE(argitem, items);
26
27 /* global options */
28 bool opts_debug                     = false;
29 bool opts_memchk                    = false;
30 bool opts_darkplaces_stringtablebug = false;
31 bool opts_omit_nullcode             = false;
32 int  opts_compiler                  = COMPILER_GMQCC;
33
34 static const int usage(const char *const app) {
35     printf("usage:\n"
36            "    %s -c<file>          -oprog.dat -- compile file\n"
37            "    %s -a<file>          -oprog.dat -- assemble file\n"
38            "    %s -c<file> -i<file> -oprog.dat -- compile together (allowed multiple -i<file>)\n"
39            "    %s -a<file> -i<file> -oprog.dat -- assemble together(allowed multiple -i<file>)\n"
40            "    example:\n"
41            "    %s -cfoo.qc -ibar.qc -oqc.dat -afoo.qs -ibar.qs -oqs.dat\n", app, app, app, app, app);
42            
43     printf("    additional flags:\n"
44            "        -debug           -- turns on compiler debug messages\n"
45            "        -memchk          -- turns on compiler memory leak check\n"
46            "        -help            -- prints this help/usage text\n"
47            "        -std             -- select the QuakeC compile type (types below):\n");
48            
49     printf("            -std=qcc     -- original QuakeC\n"
50            "            -std=ftqecc  -- fteqcc QuakeC\n"
51            "            -std=qccx    -- qccx QuakeC\n"
52            "            -std=gmqcc   -- this compiler QuakeC (default selection)\n");
53            
54     printf("    codegen flags:\n"
55            "        -fdarkplaces-string-table-bug -- patches the string table to work with bugged versions of darkplaces\n"
56            "        -fomit-nullcode               -- omits the generation of null code (will break everywhere see propsal.txt)\n");
57     return -1;
58 }
59
60 int main(int argc, char **argv) {
61     size_t    itr = 0;
62     char     *app = &argv[0][0];
63     FILE     *fpp = NULL;
64     lex_file *lex = NULL;
65
66     /*
67      * Parse all command line arguments.  This is rather annoying to do
68      * because of all tiny corner cases.
69      */
70     if (argc <= 1 || (argv[1][0] != '-'))
71         return usage(app);
72
73     while ((argc > 1) && argv[1][0] == '-') {
74         switch (argv[1][1]) {
75             case 'v': {
76                 printf("GMQCC:\n"
77                        "    version:    %d.%d.%d (0x%08X)\n"
78                        "    build date: %s\n"
79                        "    build time: %s\n",
80                     (GMQCC_VERSION >> 16) & 0xFF,
81                     (GMQCC_VERSION >>  8) & 0xFF,
82                     (GMQCC_VERSION >>  0) & 0xFF,
83                     (GMQCC_VERSION),
84                     __DATE__,
85                     __TIME__
86                 );
87                 return 0;
88             }
89             #define param_argument(argtype) do {                             \
90                 argitem item;                                                \
91                 if (argv[1][2]) {                                            \
92                     item.name = util_strdup(&argv[1][2]);                    \
93                     item.type = argtype;                                     \
94                     items_add(item);                                         \
95                 } else {                                                     \
96                     ++argv;                                                  \
97                     --argc;                                                  \
98                     if (argc <= 1)                                           \
99                         goto clean_params_usage;                             \
100                     item.name = util_strdup(argv[1]);                        \
101                     item.type = argtype;                                     \
102                     items_add(item);                                         \
103                 }                                                            \
104             } while (0)
105
106             case 'c': { param_argument(0); break; } /* compile  */
107             case 'a': { param_argument(1); break; } /* assemble */
108             case 'i': { param_argument(2); break; } /* includes */
109             #undef parm_argument
110             default:
111                 if (!strncmp(&argv[1][1], "debug" , 5)) { opts_debug  = true; break; }
112                 if (!strncmp(&argv[1][1], "memchk", 6)) { opts_memchk = true; break; }
113                 if (!strncmp(&argv[1][1], "help",   4)) {
114                     return usage(app);
115                     break;
116                 }
117                 /* compiler type selection */
118                 if (!strncmp(&argv[1][1], "std=qcc"   , 7 )) { opts_compiler = COMPILER_QCC;    break; }
119                 if (!strncmp(&argv[1][1], "std=fteqcc", 10)) { opts_compiler = COMPILER_FTEQCC; break; }
120                 if (!strncmp(&argv[1][1], "std=qccx",   8 )) { opts_compiler = COMPILER_QCCX;   break; }
121                 if (!strncmp(&argv[1][1], "std=gmqcc",  9 )) { opts_compiler = COMPILER_GMQCC;  break; }
122                 if (!strncmp(&argv[1][1], "std=",       4 )) {
123                     printf("invalid std selection, supported types:\n"
124                            "    -std=qcc     -- original QuakeC\n"
125                            "    -std=ftqecc  -- fteqcc QuakeC\n"
126                            "    -std=qccx    -- qccx QuakeC\n"
127                            "    -std=gmqcc   -- this compiler QuakeC (default selection)\n");
128                     return 0;
129                 }
130
131                 /* code specific switches */
132                 if (!strcmp(&argv[1][1], "fdarkplaces-stringtablebug")) {
133                     opts_darkplaces_stringtablebug = true;
134                     break;
135                 }
136                 if (!strcmp(&argv[1][1], "fomit-nullcode")) {
137                     opts_omit_nullcode = true;
138                     break;
139                 }
140                 return usage(app);
141
142         }
143         ++argv;
144         --argc;
145     }
146
147     /*
148      * options could depend on another option, this is where option
149      * validity checking like that would take place.
150      */
151     if (opts_memchk && !opts_debug)
152         printf("Warning: cannot enable -memchk, without -debug.\n");
153
154     util_debug("COM", "starting ...\n");
155     /* multi file multi path compilation system */
156     for (; itr < items_elements; itr++) {
157         switch (items_data[itr].type) {
158             case 0:
159                 lex_init (items_data[itr].name, &lex);
160                 if (lex) {
161                     lex_parse(lex);
162                     lex_close(lex);
163                 }
164                 break;
165             case 1:
166                 asm_init (items_data[itr].name, &fpp);
167                 if (fpp) {
168                     asm_parse(fpp);
169                     asm_close(fpp);
170                 }
171                 break;
172         }
173     }
174
175     util_debug("COM", "cleaning ...\n");
176     /* clean list */
177     for (itr = 0; itr < items_elements; itr++)
178         mem_d(items_data[itr].name);
179     mem_d(items_data);
180
181     util_meminfo();
182     return 0;
183     
184 clean_params_usage:
185     for (itr = 0; itr < items_elements; itr++)
186         mem_d(items_data[itr].name);
187     mem_d(items_data);
188     return usage(app);
189 }