forked from cloudflare/doom-wasm
-
Notifications
You must be signed in to change notification settings - Fork 3
/
m_argv.c
429 lines (337 loc) · 9.29 KB
/
m_argv.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
//
// Copyright(C) 1993-1996 Id Software, Inc.
// Copyright(C) 2005-2014 Simon Howard
//
// This program is free software; you can redistribute it and/or
// modify it under the terms of the GNU General Public License
// as published by the Free Software Foundation; either version 2
// of the License, or (at your option) any later version.
//
// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
// GNU General Public License for more details.
//
// DESCRIPTION:
//
#include <ctype.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "SDL_stdinc.h"
#include "doomtype.h"
#include "d_iwad.h"
#include "i_system.h"
#include "m_misc.h"
#include "m_argv.h" // haleyjd 20110212: warning fix
int myargc;
char** myargv;
//
// M_CheckParm
// Checks for the given parameter
// in the program's command line arguments.
// Returns the argument number (1 to argc-1)
// or 0 if not present
//
int M_CheckParmWithArgs(const char *check, int num_args)
{
int i;
for (i = 1; i < myargc - num_args; i++)
{
if (!strcasecmp(check, myargv[i]))
return i;
}
return 0;
}
//
// M_ParmExists
//
// Returns true if the given parameter exists in the program's command
// line arguments, false if not.
//
boolean M_ParmExists(const char *check)
{
return M_CheckParm(check) != 0;
}
int M_CheckParm(const char *check)
{
return M_CheckParmWithArgs(check, 0);
}
#define MAXARGVS 100
static void LoadResponseFile(int argv_index, const char *filename)
{
FILE *handle;
int size;
char *infile;
char *file;
char **newargv;
int newargc;
int i, k;
// Read the response file into memory
handle = fopen(filename, "rb");
if (handle == NULL)
{
printf ("\nNo such response file!");
exit(1);
}
printf("Found response file %s!\n", filename);
size = M_FileLength(handle);
// Read in the entire file
// Allocate one byte extra - this is in case there is an argument
// at the end of the response file, in which case a '\0' will be
// needed.
file = malloc(size + 1);
i = 0;
while (i < size)
{
k = fread(file + i, 1, size - i, handle);
if (k < 0)
{
I_Error("Failed to read full contents of '%s'", filename);
}
i += k;
}
fclose(handle);
// Create new arguments list array
newargv = malloc(sizeof(char *) * MAXARGVS);
newargc = 0;
memset(newargv, 0, sizeof(char *) * MAXARGVS);
// Copy all the arguments in the list up to the response file
for (i=0; i<argv_index; ++i)
{
newargv[i] = myargv[i];
++newargc;
}
infile = file;
k = 0;
while(k < size)
{
// Skip past space characters to the next argument
while(k < size && isspace(infile[k]))
{
++k;
}
if (k >= size)
{
break;
}
// If the next argument is enclosed in quote marks, treat
// the contents as a single argument. This allows long filenames
// to be specified.
if (infile[k] == '\"')
{
// Skip the first character(")
++k;
newargv[newargc++] = &infile[k];
// Read all characters between quotes
while (k < size && infile[k] != '\"' && infile[k] != '\n')
{
++k;
}
if (k >= size || infile[k] == '\n')
{
I_Error("Quotes unclosed in response file '%s'",
filename);
}
// Cut off the string at the closing quote
infile[k] = '\0';
++k;
}
else
{
// Read in the next argument until a space is reached
newargv[newargc++] = &infile[k];
while(k < size && !isspace(infile[k]))
{
++k;
}
// Cut off the end of the argument at the first space
infile[k] = '\0';
++k;
}
}
// Add arguments following the response file argument
for (i=argv_index + 1; i<myargc; ++i)
{
newargv[newargc] = myargv[i];
++newargc;
}
myargv = newargv;
myargc = newargc;
#if 0
// Disabled - Vanilla Doom does not do this.
// Display arguments
printf("%d command-line args:\n", myargc);
for (k=1; k<myargc; k++)
{
printf("'%s'\n", myargv[k]);
}
#endif
}
//
// Find a Response File
//
void M_FindResponseFile(void)
{
int i;
for (i = 1; i < myargc; i++)
{
if (myargv[i][0] == '@')
{
LoadResponseFile(i, myargv[i] + 1);
}
}
for (;;)
{
//!
// @arg <filename>
//
// Load extra command line arguments from the given response file.
// Arguments read from the file will be inserted into the command
// line replacing this argument. A response file can also be loaded
// using the abbreviated syntax '@filename.rsp'.
//
i = M_CheckParmWithArgs("-response", 1);
if (i <= 0)
{
break;
}
// Replace the -response argument so that the next time through
// the loop we'll ignore it. Since some parameters stop reading when
// an argument beginning with a '-' is encountered, we keep something
// that starts with a '-'.
myargv[i] = "-_";
LoadResponseFile(i + 1, myargv[i + 1]);
}
}
#if defined(_WIN32)
enum
{
FILETYPE_UNKNOWN = 0x0,
FILETYPE_IWAD = 0x2,
FILETYPE_PWAD = 0x4,
FILETYPE_DEH = 0x8,
};
static int GuessFileType(const char *name)
{
int ret = FILETYPE_UNKNOWN;
const char *base;
char *lower;
static boolean iwad_found = false;
base = M_BaseName(name);
lower = M_StringDuplicate(base);
M_ForceLowercase(lower);
// only ever add one argument to the -iwad parameter
if (iwad_found == false && D_IsIWADName(lower))
{
ret = FILETYPE_IWAD;
iwad_found = true;
}
else if (M_StringEndsWith(lower, ".wad") ||
M_StringEndsWith(lower, ".lmp"))
{
ret = FILETYPE_PWAD;
}
else if (M_StringEndsWith(lower, ".deh") ||
// M_StringEndsWith(lower, ".bex") ||
M_StringEndsWith(lower, ".hhe") ||
M_StringEndsWith(lower, ".seh"))
{
ret = FILETYPE_DEH;
}
free(lower);
return ret;
}
typedef struct
{
char *str;
int type, stable;
} argument_t;
static int CompareByFileType(const void *a, const void *b)
{
const argument_t *arg_a = (const argument_t *) a;
const argument_t *arg_b = (const argument_t *) b;
const int ret = arg_a->type - arg_b->type;
return ret ? ret : (arg_a->stable - arg_b->stable);
}
void M_AddLooseFiles(void)
{
int i, types = 0;
char **newargv;
argument_t *arguments;
if (myargc < 2)
{
return;
}
// allocate space for up to three additional regular parameters
arguments = malloc((myargc + 3) * sizeof(*arguments));
memset(arguments, 0, (myargc + 3) * sizeof(*arguments));
// check the command line and make sure it does not already
// contain any regular parameters or response files
// but only fully-qualified LFS or UNC file paths
for (i = 1; i < myargc; i++)
{
char *arg = myargv[i];
int type;
if (strlen(arg) < 3 ||
arg[0] == '-' ||
arg[0] == '@' ||
((!isalpha(arg[0]) || arg[1] != ':' || arg[2] != '\\') &&
(arg[0] != '\\' || arg[1] != '\\')))
{
free(arguments);
return;
}
type = GuessFileType(arg);
arguments[i].str = arg;
arguments[i].type = type;
arguments[i].stable = i;
types |= type;
}
// add space for one additional regular parameter
// for each discovered file type in the new argument list
// and sort parameters right before their corresponding file paths
if (types & FILETYPE_IWAD)
{
arguments[myargc].str = M_StringDuplicate("-iwad");
arguments[myargc].type = FILETYPE_IWAD - 1;
myargc++;
}
if (types & FILETYPE_PWAD)
{
arguments[myargc].str = M_StringDuplicate("-merge");
arguments[myargc].type = FILETYPE_PWAD - 1;
myargc++;
}
if (types & FILETYPE_DEH)
{
arguments[myargc].str = M_StringDuplicate("-deh");
arguments[myargc].type = FILETYPE_DEH - 1;
myargc++;
}
newargv = malloc(myargc * sizeof(*newargv));
// sort the argument list by file type, except for the zeroth argument
// which is the executable invocation itself
SDL_qsort(arguments + 1, myargc - 1, sizeof(*arguments), CompareByFileType);
newargv[0] = myargv[0];
for (i = 1; i < myargc; i++)
{
newargv[i] = arguments[i].str;
}
free(arguments);
myargv = newargv;
}
#endif
// Return the name of the executable used to start the program:
const char *M_GetExecutableName(void)
{
return M_BaseName(myargv[0]);
}
char *exedir = NULL;
void M_SetExeDir(void)
{
char *dirname;
dirname = M_DirName(myargv[0]);
exedir = M_StringJoin(dirname, DIR_SEPARATOR_S, NULL);
free(dirname);
}