-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathProgram.cs
78 lines (65 loc) · 1.35 KB
/
Program.cs
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
using FasToSym;
if (args.Length == 0)
{
Console.WriteLine("No arguments");
HelpContent.Print();
return 1;
}
FasFile? fasFile = null;
IWriter? writer = null;
OutputSymFormats outputFormat = OutputSymFormats.None;
// Gather the arguments
for (int i = 0; i < args.Length; i++)
{
string arg = args[i];
if (arg == "-i")
{
i++;
string filePath = args[i];
fasFile = new(filePath);
}
else if (arg == "-t")
{
i++;
outputFormat = FormatUtils.ConvertToValidFormat(args[i]);
}
}
if (fasFile == null || !fasFile.IsValid())
{
if (fasFile != null)
{
foreach (string error in fasFile.Errors)
{
Console.WriteLine(error);
}
}
HelpContent.Print();
return 1;
}
switch (outputFormat)
{
case OutputSymFormats.NoCashGba:
writer = new NoCashGbaSymWriter();
break;
case OutputSymFormats.Mesen:
writer = new MesenSymWriter();
break;
case OutputSymFormats.None:
default:
Console.WriteLine("No output type format found");
HelpContent.Print();
break;
}
if (writer != null)
{
if (!writer.GenerateFrom(fasFile))
{
foreach (string error in writer.Errors)
{
Console.WriteLine(error);
}
HelpContent.Print();
return 1;
}
}
return 0;