This repository was archived by the owner on Nov 19, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathProgram.cs
More file actions
219 lines (199 loc) · 6.99 KB
/
Program.cs
File metadata and controls
219 lines (199 loc) · 6.99 KB
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
using System;
using System.Collections.Generic;
using System.Text;
using System.Globalization;
using System.Threading;
using Microsoft.Win32;
using System.IO;
using System.Runtime.Serialization.Formatters.Binary;
namespace spb2xml
{
class Program
{
public static void PrintHelp()
{
Console.WriteLine("Usage: spb2xml-msfs [-hv] [-s symboldir] [file.spb] [output.xml]");
Console.WriteLine("\t-h\tPrint help");
Console.WriteLine("\t-s\tSpecify simprop symbols search dir (Packages\\fs-base-propdefs\\Propdefs\\1.0\\)");
//Console.WriteLine("\t-m\tSpecify path of a model list (same format as Autogen SDK\\library_objects.txt");
}
static void Main(string[] args)
{
string simPropSearchPath = null;
string file = null;
string outFileName = null;
string modelsDescName = null;
bool verbose = false;
// big command line loop
for (int i = 0; i < args.Length; i++)
{
string s = args[i];
if ("-h".Equals(s, StringComparison.InvariantCultureIgnoreCase))
{
PrintHelp();
return;
}
else if ("-s".Equals(s, StringComparison.InvariantCultureIgnoreCase))
{
if (i == (args.Length - 1))
{
Console.WriteLine("Error: must specify simprop search path");
return;
}
simPropSearchPath = args[++i];
}
else if ("-m".Equals(s, StringComparison.InvariantCultureIgnoreCase))
{
if (i == (args.Length - 1))
{
Console.WriteLine("Error: must library models file path");
return;
}
modelsDescName = args[++i];
}
else if ("-v".Equals(s))
{
verbose = true;
}
else if (file == null)
{
file = s;
}
else if (outFileName == null)
{
outFileName = s;
}
else
{
Console.WriteLine("Error: unexpected argument {0}", s);
return;
}
}
//
// init simprop data
//
var cacheFn = "propdefs.cache";
var exeDir = AppDomain.CurrentDomain.BaseDirectory;
var cachePath = Path.Combine(exeDir, cacheFn);
if (File.Exists(cachePath))
{
Console.WriteLine("Search property definition files from cache");
using (var f = File.OpenRead(cachePath))
{
var sb = (SymbolBank)new BinaryFormatter().Deserialize(f);
SymbolBank.Instance = sb;
}
}
else
{
if (simPropSearchPath is null)
{
#if DEBUG
simPropSearchPath = @"g:\MSFS Base\Packages\fs-base-propdefs\Propdefs\1.0\";
#else
Console.WriteLine("Error: MSFS not found, you should specify simprop search path with -s");
return;
#endif
}
Console.WriteLine("Search property definition files in {0}", simPropSearchPath);
//
// parse all propdefs
//
SymbolBank sb = SymbolBank.Instance;
DirectoryInfo cdi = new DirectoryInfo(simPropSearchPath);
foreach (FileInfo fi in cdi.GetFiles("*.xml"))
{
if (verbose)
{
Console.WriteLine("Add property definition file {0}", fi.Name);
}
try
{
sb.AddSymbolDefinitionFile(fi.FullName);
}
catch (Exception ex)
{
Console.WriteLine("Warning: Cannot parse property definition file {0}", fi.FullName);
if (verbose) Console.WriteLine("\t {0}", ex.Message);
}
}
using (var f = File.Create(cachePath))
{
new BinaryFormatter().Serialize(f, SymbolBank.Instance);
}
}
Console.WriteLine();
//
// force culture to us (better printing)
//
Thread.CurrentThread.CurrentCulture = new CultureInfo("en-US");
//
// models bank
//
ModelBank mb = null;
if (modelsDescName != null)
{
try
{
mb = new ModelBank(modelsDescName);
if (verbose)
{
Console.WriteLine("Read {0} models descriptions", mb.Size());
}
}
catch (Exception e)
{
if (verbose)
{
Console.WriteLine("Cannot read models bank file: {0}", e.Message);
}
}
}
if (file is null)
{
foreach (var f in Directory.GetFiles(".", "*.spb", SearchOption.AllDirectories))
{
Decompile(f, null);
}
}
else
{
Decompile(file, outFileName);
}
void Decompile(string f, string outFN)
{
//
// ok for the real thing
//
try
{
if (outFN == null)
{
// guess it from name
int i = f.LastIndexOf('.');
if (i != -1) outFN = f.Substring(0, i) + ".xml";
else outFN = f + ".xml";
}
using (Stream output = new FileStream(outFN, FileMode.Create))
{
Decompiler dec = new Decompiler(f);
if (mb != null) dec.SetModels(mb);
dec.Decompile(output);
}
if (outFN != null)
{
Console.WriteLine("Wrote to {0}", outFN);
}
}
catch (Exception e)
{
Console.WriteLine("Error: cannot decompile file {0} ({1})", f, e.Message);
if (outFN != null)
{
File.Delete(outFN);
}
}
}
}
}
}