X-Git-Url: https://git.xonotic.org/?p=xonotic%2Fgmqcc.git;a=blobdiff_plain;f=main.c;h=4c8062d7dcdb1b125101c77348c26952c9ac592c;hp=d1ac7f12e46560dde15d5d94bd50e7dd23f9b733;hb=61fa54318c3aa1ce0c2099f9793d830e5896c016;hpb=366557bbab6605e819743b183372bb15569dfd7c diff --git a/main.c b/main.c index d1ac7f1..4c8062d 100644 --- a/main.c +++ b/main.c @@ -1,6 +1,7 @@ /* * Copyright (C) 2012 * Dale Weiler + * Wolfgang Bumiller * * Permission is hereby granted, free of charge, to any person obtaining a copy of * this software and associated documentation files (the "Software"), to deal in @@ -202,6 +203,7 @@ static bool options_parse(int argc, char **argv) { options_set(opts_flags, ADJUST_VECTOR_FIELDS, false); opts_standard = COMPILER_QCC; } else if (!strcmp(argarg, "fte") || !strcmp(argarg, "fteqcc")) { + options_set(opts_flags, FTEPP, true); options_set(opts_flags, ADJUST_VECTOR_FIELDS, false); opts_standard = COMPILER_FTEQCC; } else if (!strcmp(argarg, "qccx")) { @@ -224,6 +226,8 @@ static bool options_parse(int argc, char **argv) { if (options_long_gcc("redirerr", &argc, &argv, &redirerr)) { continue; } + + con_change(redirout, redirerr); if (!strcmp(argv[0]+1, "debug")) { opts_debug = true; @@ -381,7 +385,6 @@ static bool options_parse(int argc, char **argv) { vec_push(items, item); } } - con_change(redirout, redirerr); return true; } @@ -415,6 +418,8 @@ int main(int argc, char **argv) { size_t itr; int retval = 0; bool opts_output_free = false; + bool progs_src = false; + FILE *outfile = NULL; app_name = argv[0]; con_init(); @@ -439,6 +444,7 @@ int main(int argc, char **argv) { options_set(opts_warn, WARN_MULTIFILE_IF, true); options_set(opts_flags, ADJUST_VECTOR_FIELDS, true); + options_set(opts_flags, FTEPP, false); if (!options_parse(argc, argv)) { return usage(); @@ -465,6 +471,19 @@ int main(int argc, char **argv) { con_out("standard = %i\n", opts_standard); } + if (opts_pp_only) { + if (opts_output_wasset) { + outfile = util_fopen(opts_output, "wb"); + if (!outfile) { + con_err("failed to open `%s` for writing\n", opts_output); + retval = 1; + goto cleanup; + } + } + else + outfile = stdout; + } + if (!opts_pp_only) { if (!parser_init()) { con_err("failed to initialize parser\n"); @@ -472,7 +491,7 @@ int main(int argc, char **argv) { goto cleanup; } } - if (opts_pp_only || opts_standard == COMPILER_FTEQCC) { + if (opts_pp_only || OPTS_FLAG(FTEPP)) { if (!ftepp_init()) { con_err("failed to initialize parser\n"); retval = 1; @@ -482,45 +501,13 @@ int main(int argc, char **argv) { util_debug("COM", "starting ...\n"); - if (vec_size(items)) { - if (!opts_pp_only) { - con_out("Mode: manual\n"); - con_out("There are %lu items to compile:\n", (unsigned long)vec_size(items)); - } - for (itr = 0; itr < vec_size(items); ++itr) { - if (!opts_pp_only) { - con_out(" item: %s (%s)\n", - items[itr].filename, - ( (items[itr].type == TYPE_QC ? "qc" : - (items[itr].type == TYPE_ASM ? "asm" : - (items[itr].type == TYPE_SRC ? "progs.src" : - ("unknown")))))); - } - - if (opts_pp_only) { - if (!ftepp_preprocess_file(items[itr].filename)) { - retval = 1; - goto cleanup; - } - } - else if (!parser_compile_file(items[itr].filename)) { - retval = 1; - goto cleanup; - } - } - - if (!parser_finish(opts_output)) { - retval = 1; - goto cleanup; - } - - } else { + if (!vec_size(items)) { FILE *src; char *line; size_t linelen = 0; - if (!opts_pp_only) - con_out("Mode: progs.src\n"); + progs_src = true; + src = util_fopen("progs.src", "rb"); if (!src) { con_err("failed to open `progs.src` for reading\n"); @@ -541,31 +528,92 @@ int main(int argc, char **argv) { } while (progs_nextline(&line, &linelen, src)) { + argitem item; if (!line[0] || (line[0] == '/' && line[1] == '/')) continue; - if (!opts_pp_only) - con_out(" src: %s\n", line); - if (!parser_compile_file(line)) { - retval = 1; - goto srcdone; - } + item.filename = util_strdup(line); + item.type = TYPE_QC; + vec_push(items, item); } - parser_finish(opts_output); - srcdone: fclose(src); mem_d(line); } + if (retval) + goto cleanup; + + if (vec_size(items)) { + if (!opts_pp_only) { + con_out("Mode: %s\n", (progs_src ? "progs.src" : "manual")); + con_out("There are %lu items to compile:\n", (unsigned long)vec_size(items)); + } + for (itr = 0; itr < vec_size(items); ++itr) { + if (!opts_pp_only) { + con_out(" item: %s (%s)\n", + items[itr].filename, + ( (items[itr].type == TYPE_QC ? "qc" : + (items[itr].type == TYPE_ASM ? "asm" : + (items[itr].type == TYPE_SRC ? "progs.src" : + ("unknown")))))); + } + + if (opts_pp_only) { + if (!ftepp_preprocess_file(items[itr].filename)) { + retval = 1; + goto cleanup; + } + fprintf(outfile, "%s", ftepp_get()); + ftepp_flush(); + } + else { + if (OPTS_FLAG(FTEPP)) { + const char *data; + if (!ftepp_preprocess_file(items[itr].filename)) { + retval = 1; + goto cleanup; + } + data = ftepp_get(); + if (!parser_compile_string_len(items[itr].filename, data, vec_size(data)-1)) { + retval = 1; + goto cleanup; + } + ftepp_flush(); + } + else { + if (!parser_compile_file(items[itr].filename)) { + retval = 1; + goto cleanup; + } + } + } + + if (progs_src) { + mem_d(items[itr].filename); + items[itr].filename = NULL; + } + } + + ftepp_finish(); + if (!opts_pp_only) { + if (!parser_finish(opts_output)) { + retval = 1; + goto cleanup; + } + } + } + /* stuff */ cleanup: util_debug("COM", "cleaning ...\n"); + ftepp_finish(); con_close(); vec_free(items); - parser_cleanup(); + if (!opts_pp_only) + parser_cleanup(); if (opts_output_free) mem_d((char*)opts_output);