]> git.xonotic.org Git - xonotic/gmqcc.git/blob - main.c
GMQCC_WARN macro
[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 // todo CLEANUP this argitem thing
25 typedef struct { char *name, type; } argitem;
26 VECTOR_MAKE(argitem, items);
27
28 /* global options */
29 bool opts_debug                     = false;
30 bool opts_memchk                    = false;
31 bool opts_darkplaces_stringtablebug = false;
32 bool opts_omit_nullcode             = false;
33 int  opts_compiler                  = COMPILER_GMQCC;
34
35 static const int usage(const char *const app) {
36     printf("usage:\n"
37            "    %s -c<file>          -oprog.dat -- compile file\n"
38            "    %s -a<file>          -oprog.dat -- assemble file\n"
39            "    %s -c<file> -i<file> -oprog.dat -- compile together (allowed multiple -i<file>)\n"
40            "    %s -a<file> -i<file> -oprog.dat -- assemble together(allowed multiple -i<file>)\n"
41            "    example:\n"
42            "    %s -cfoo.qc -ibar.qc -oqc.dat -afoo.qs -ibar.qs -oqs.dat\n"
43            "    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            "            -std=qcc     -- original QuakeC\n"
49            "            -std=ftqecc  -- fteqcc QuakeC\n"
50            "            -std=qccx    -- qccx QuakeC\n"
51            "            -std=gmqcc   -- this compiler QuakeC (default selection)\n"
52            "    codegen flags:\n"
53            "        -fdarkplaces-string-table-bug -- patches the string table to work with bugged versions of darkplaces\n"
54            "        -fomit-nullcode               -- omits the generation of null code (will break everywhere see propsal.txt)\n",
55             app,app,app,app,app
56     );
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
65     /*
66      * Parse all command line arguments.  This is rather annoying to do
67      * because of all tiny corner cases.
68      */
69     if (argc <= 1 || (argv[1][0] != '-'))
70         return usage(app);
71
72     while ((argc > 1) && argv[1][0] == '-') {
73         switch (argv[1][1]) {
74             case 'v': {
75                 printf("GMQCC:\n"
76                        "    version:    %d.%d.%d (0x%08X)\n"
77                        "    build date: %s\n"
78                        "    build time: %s\n",
79                     (GMQCC_VERSION >> 16) & 0xFF,
80                     (GMQCC_VERSION >>  8) & 0xFF,
81                     (GMQCC_VERSION >>  0) & 0xFF,
82                     (GMQCC_VERSION),
83                     __DATE__,
84                     __TIME__
85                 );
86                 return 0;
87             }
88             case 'c': items_add((argitem){util_strdup(&argv[1][2]), 0}); break; /* compile  */ 
89             case 'a': items_add((argitem){util_strdup(&argv[1][2]), 1}); break; /* assemble */
90             case 'i': items_add((argitem){util_strdup(&argv[1][2]), 2}); break; /* includes */
91             default:
92                 if (!strncmp(&argv[1][1], "debug" , 5)) { opts_debug  = true; break; }
93                 if (!strncmp(&argv[1][1], "memchk", 6)) { opts_memchk = true; break; }
94                 if (!strncmp(&argv[1][1], "help",   4)) {
95                     return usage(app);
96                     break;
97                 }
98                 /* compiler type selection */
99                 if (!strncmp(&argv[1][1], "std=qcc"   , 7 )) { opts_compiler = COMPILER_QCC;    break; }
100                 if (!strncmp(&argv[1][1], "std=fteqcc", 10)) { opts_compiler = COMPILER_FTEQCC; break; }
101                 if (!strncmp(&argv[1][1], "std=qccx",   8 )) { opts_compiler = COMPILER_QCCX;   break; }
102                 if (!strncmp(&argv[1][1], "std=gmqcc",  9 )) { opts_compiler = COMPILER_GMQCC;  break; }
103                 if (!strncmp(&argv[1][1], "std=",       4 )) {
104                     printf("invalid std selection, supported types:\n"
105                            "    -std=qcc     -- original QuakeC\n"
106                            "    -std=ftqecc  -- fteqcc QuakeC\n"
107                            "    -std=qccx    -- qccx QuakeC\n"
108                            "    -std=gmqcc   -- this compiler QuakeC (default selection)\n");
109                     return 0;
110                 }
111
112                 /* code specific switches */
113                 if (!strcmp(&argv[1][1], "fdarkplaces-stringtablebug")) {
114                     opts_darkplaces_stringtablebug = true;
115                     break;
116                 }
117                 if (!strcmp(&argv[1][1], "fomit-nullcode")) {
118                     opts_omit_nullcode = true;
119                     break;
120                 }
121                 return usage(app);
122                 
123         }
124         ++argv;
125         --argc;
126     }
127
128     /*
129      * options could depend on another option, this is where option
130      * validity checking like that would take place.
131      */
132     if (opts_memchk && !opts_debug) 
133         printf("Warning: cannot enable -memchk, without -debug.\n");
134
135     util_debug("COM", "starting ...\n");
136     /* multi file multi path compilation system */
137     for (; itr < items_elements; itr++) {
138         switch (items_data[itr].type) {
139             case 0:
140                 fpp = fopen(items_data[itr].name, "r");
141                 struct lex_file *lex = lex_open(fpp);
142                 parse_gen(lex);
143                 lex_close(lex);
144                 break;
145             case 1:
146                 asm_init (items_data[itr].name, &fpp);
147                 asm_parse(fpp);
148                 asm_close(fpp);
149                 break;
150         }
151     }
152
153     util_debug("COM", "cleaning ...\n"); 
154     /* clean list */
155     for (itr = 0; itr < items_elements; itr++)
156         mem_d(items_data[itr].name);
157     mem_d(items_data);
158
159     util_meminfo();
160     return 0;
161 }