blob: 9cfbb81fbddf9bed48335d18528880fd663bb182 (
plain)
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
|
// options.cpp
#include "options.h"
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
namespace renderer_test {
Options gOptions;
void parseOptions(int* argc, char** argv)
{
int argCount = *argc;
char const* const* argCursor = argv;
char const* const* argEnd = argCursor + argCount;
char const** writeCursor = (char const**) argv;
// first argument is the application name
if( argCursor != argEnd )
{
gOptions.appName = *argCursor++;
}
// now iterate over arguments to collect options
while(argCursor != argEnd)
{
char const* arg = *argCursor++;
if( arg[0] != '-' )
{
*writeCursor++ = arg;
continue;
}
if( strcmp(arg, "--") == 0 )
{
while(argCursor != argEnd)
{
char const* arg = *argCursor++;
*writeCursor++ = arg;
}
break;
}
else if( strcmp(arg, "-o") == 0 )
{
if( argCursor == argEnd )
{
fprintf(stderr, "expected argument for '%s' option\n", arg);
exit(1);
}
gOptions.outputPath = *argCursor++;
}
else if( strcmp(arg, "-hlsl") == 0 )
{
gOptions.mode = Mode::HLSL;
}
else if( strcmp(arg, "-slang") == 0 )
{
gOptions.mode = Mode::Slang;
}
else if( strcmp(arg, "-glsl-cross") == 0 )
{
gOptions.mode = Mode::GLSLCrossCompile;
}
else
{
fprintf(stderr, "unknown option '%s'\n", arg);
exit(1);
}
}
// any arguments left over were positional arguments
argCount = (int)(writeCursor - argv);
argCursor = argv;
argEnd = argCursor + argCount;
// first positional argument is source shader path
if( argCursor != argEnd )
{
gOptions.sourcePath = *argCursor++;
}
// any remaining arguments represent an error
if(argCursor != argEnd)
{
fprintf(stderr, "unexpected arguments\n");
exit(1);
}
*argc = 0;
}
} // renderer_test
|