-
Notifications
You must be signed in to change notification settings - Fork 2
/
EOSAppGenerator.cs
313 lines (301 loc) · 6.36 KB
/
EOSAppGenerator.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
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
using System;
using System.Text;
namespace Hacknet
{
// Token: 0x020000CD RID: 205
public class EOSAppGenerator
{
// Token: 0x06000422 RID: 1058 RVA: 0x00042004 File Offset: 0x00040204
private static string[] GenerateNames()
{
string[] array = new string[2];
StringBuilder stringBuilder = new StringBuilder("");
int num = 0;
if (Utils.flipCoin())
{
stringBuilder.Append(Utils.RandomFromArray(EOSAppGenerator.Name1) + " ");
num++;
}
stringBuilder.Append(Utils.RandomFromArray(EOSAppGenerator.Name2));
if (Utils.flipCoin() || num == 0)
{
stringBuilder.Append(" " + Utils.RandomFromArray(EOSAppGenerator.Name3) + " ");
num++;
}
array[1] = stringBuilder.ToString().Trim();
bool flag = Utils.flipCoin();
if ((num <= 1 && flag) || (flag && Utils.flipCoin()))
{
string text = Utils.RandomFromArray(EOSAppGenerator.Postfix);
if (Utils.random.NextDouble() < 0.13)
{
text = Utils.RandomFromArray(EOSAppGenerator.Name3);
}
if (Utils.flipCoin())
{
text = text.ToUpper();
}
stringBuilder.Append(": " + text);
}
array[0] = stringBuilder.ToString().Trim();
return array;
}
// Token: 0x06000423 RID: 1059 RVA: 0x00042150 File Offset: 0x00040350
public static string GenerateName()
{
return EOSAppGenerator.GenerateNames()[0];
}
// Token: 0x06000424 RID: 1060 RVA: 0x0004216C File Offset: 0x0004036C
public static string GenerateAppSaveLine()
{
StringBuilder stringBuilder = new StringBuilder("");
if (Utils.random.NextDouble() < 0.7)
{
stringBuilder.Append(Utils.RandomFromArray(EOSAppGenerator.SaveData1));
stringBuilder.Append(" ");
}
stringBuilder.Append(Utils.RandomFromArray(EOSAppGenerator.SaveData2));
stringBuilder.Append(" ");
if (Utils.random.NextDouble() < 0.08)
{
stringBuilder.Append(Utils.RandomFromArray(EOSAppGenerator.SaveDataWildcards) + " ");
}
else
{
stringBuilder.Append(Utils.RandomFromArray(EOSAppGenerator.SaveData3) + " ");
}
stringBuilder.Append(": ");
int num = 0;
if (Utils.random.NextDouble() < 0.7)
{
num = (int)Utils.getRandomByte();
}
if (Utils.random.NextDouble() < 0.2)
{
num = Utils.random.Next();
}
stringBuilder.Append(string.Concat(num));
return stringBuilder.ToString();
}
// Token: 0x06000425 RID: 1061 RVA: 0x000422A8 File Offset: 0x000404A8
public static Folder GetAppFolder()
{
string[] array = EOSAppGenerator.GenerateNames();
string text = array[0];
string text2 = array[1];
string foldername = text2.ToLower().Replace(" ", "_").Trim();
string data = text.Replace(" ", "_").Trim();
Folder folder = new Folder(foldername);
folder.files.Add(new FileEntry(Computer.generateBinaryString(1024), "app.pkg"));
StringBuilder stringBuilder = new StringBuilder("----- [" + text + "] Save Data -----\n\n");
int num = 8 + Utils.random.Next(8);
for (int i = 0; i < num; i++)
{
stringBuilder.Append(EOSAppGenerator.GenerateAppSaveLine());
stringBuilder.Append("\n\n");
}
folder.files.Add(new FileEntry(stringBuilder.ToString(), FileSanitiser.purifyStringForDisplay(data) + ".sav"));
return folder;
}
// Token: 0x0400050B RID: 1291
public static string[] Name1 = new string[]
{
"Candy",
"Super",
"Angry",
"Extreme",
"Crazy",
"Delicious",
"Zombie",
"Spirits",
"Ghost",
"Spooky",
"Skate",
"Smash",
"Tiny",
"Mini",
"Small",
"Cute",
"Baby",
"Die"
};
// Token: 0x0400050C RID: 1292
public static string[] Name2 = new string[]
{
"Ultraviolence",
"Violence",
"Crush",
"Ninja",
"Samurai",
"Birds",
"Zombie",
"Rope",
"Crowds",
"Mecha",
"Racer",
"Point",
"Fighter",
"Warrior",
"Gem",
"Treasure",
"Gold",
"Booty",
"Loot",
"Fart",
"Hard"
};
// Token: 0x0400050D RID: 1293
public static string[] Name3 = new string[]
{
"Quest",
"Saga",
"Trilogy",
"1",
"2",
"II",
"IV",
"8",
"XXX",
"Adventure",
"Crusher",
"Builder",
"Extreme",
"Ultra",
"MK2",
"Season Pass",
"DLC",
"Free"
};
// Token: 0x0400050E RID: 1294
public static string[] Postfix = new string[]
{
"Revengance",
"The Third",
"Payback Time",
"Die Harder",
"No Survivors",
"No Prisoners",
"Bird's Revenge",
"Edgy Reboot",
"Justice Edition",
"Get Naked",
"Pay2Win Edition",
"Enemy Unknown",
"The Crushening",
"Elucidator",
"Blood on the sand",
"The Long War"
};
// Token: 0x0400050F RID: 1295
public static string[] SaveData1 = new string[]
{
"Sacred",
"Holy",
"Shiny",
"Gold",
"Precious",
"Outlawed",
"Dirty",
"Mysterious",
"Paid",
"Blood",
"Culturally Significant",
"Irreplacable",
"Priceless",
"Rare",
"Normal",
"Beloved",
"Evil",
"Really Evil",
"Chaotic Good",
"Huge",
"DLC",
"Dramatic"
};
// Token: 0x04000510 RID: 1296
public static string[] SaveData2 = new string[]
{
"Urns",
"Ruins",
"Coins",
"Objects",
"Grandparents",
"Mermaids",
"Slaves",
"Artifacts",
"Artworks",
"Planets",
"Sunglasses",
"Weapons",
"Ninja Techniques",
"Family Members",
"Spaceships",
"Racing Vehicles",
"Tamed Animals",
"Animals",
"Wild Panthers",
"Flowers",
"Candies",
"Gems",
"Birds",
"Anime Girls",
"Gains",
"Reps",
"Catchphrases",
"One-Liners",
"Kanye West Tweets",
"Buisness Cards"
};
// Token: 0x04000511 RID: 1297
public static string[] SaveData3 = new string[]
{
"Desecrated",
"Ruined",
"Toppled",
"Punched",
"Bought",
"Collected",
"Found",
"Upended",
"Ruined",
"Soiled",
"Violated",
"Rescued",
"Witnessed",
"Gathered",
"Lost",
"Murdured",
"Ultraviolenced",
"Found",
"Taken",
"Liberated",
"Tamed",
"Touched",
"Unlocked",
"Beaten",
"Conquered",
"Hacked",
"Rescued",
"Kidnapped",
"Hoarded",
"Dodged"
};
// Token: 0x04000512 RID: 1298
public static string[] SaveDataWildcards = new string[]
{
"Killed in a single punch",
"Donated to charity",
"Stolen form orphans",
"Crushed in fist",
"Thrown into the sun",
"Loved tenderly",
"Shown off in mirror",
"Posted on the internet",
"Thrown into hammerspace",
"Forgotten thanks to alcohol",
"Kickflipped over",
"Brought to justice",
"Flaunted in rap video"
};
}
}