-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathTextureToolForm.cs
More file actions
546 lines (534 loc) · 11.2 KB
/
TextureToolForm.cs
File metadata and controls
546 lines (534 loc) · 11.2 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
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
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.IO;
using System.Windows.Forms;
namespace SMPCTool
{
// Token: 0x02000014 RID: 20
public partial class TextureToolForm : Form
{
// Token: 0x06000099 RID: 153 RVA: 0x0000C9FD File Offset: 0x0000ABFD
public TextureToolForm()
{
this.InitializeComponent();
}
// Token: 0x0600009A RID: 154 RVA: 0x0000CA20 File Offset: 0x0000AC20
private void openTextureToolStripMenuItem_Click(object sender, EventArgs e)
{
OpenFileDialog openFileDialog = new OpenFileDialog();
openFileDialog.Title = "Open Texture Asset...";
string text = ".texture";
openFileDialog.Filter = "(*" + text + ")| *" + text;
openFileDialog.RestoreDirectory = true;
bool flag = openFileDialog.ShowDialog() != DialogResult.OK;
if (!flag)
{
BinaryReader binaryReader = new BinaryReader(File.OpenRead(openFileDialog.FileName));
uint num = binaryReader.ReadUInt32();
bool flag2 = num != 1548058809U;
if (flag2)
{
MessageBox.Show("Invalid Texture Asset!", "", MessageBoxButtons.OK, MessageBoxIcon.Hand);
binaryReader.Close();
binaryReader.Dispose();
}
else
{
binaryReader.BaseStream.Position = 88L;
uint num2 = binaryReader.ReadUInt32();
Console.WriteLine("secondFileSize: " + num2.ToString());
ushort num3 = binaryReader.ReadUInt16();
ushort num4 = binaryReader.ReadUInt16();
Console.WriteLine(num3.ToString() + "x" + num4.ToString());
binaryReader.BaseStream.Position = 104L;
byte b = binaryReader.ReadByte();
binaryReader.BaseStream.Position = 114L;
byte b2 = binaryReader.ReadByte();
int num5 = (int)num3;
int num6 = (int)num4;
binaryReader.BaseStream.Position = 128L;
foreach (string path in Directory.GetFiles(Globals.TemporaryDirectory))
{
bool flag3 = Path.GetFileName(path).StartsWith("mipmap");
if (flag3)
{
File.Delete(path);
}
}
this.textureDatas.Clear();
long num7 = 0L;
for (int j = 0; j < (int)b2; j++)
{
TextureToolForm.TextureData textureData = new TextureToolForm.TextureData();
textureData.MipMap = j;
textureData.FileName = openFileDialog.FileName;
textureData.Type = (int)b;
Console.WriteLine("Mip Map " + j.ToString());
Console.WriteLine("Mip Map Size: " + num5.ToString() + "x" + num6.ToString());
int num8 = num5 * num6 / 2;
bool flag4 = b == 99 || b == 80;
if (flag4)
{
num8 = num5 * num6;
}
textureData.Size = num8;
textureData.Width = num5;
textureData.Height = num6;
bool flag5 = num2 > 0U && num7 < (long)((ulong)num2);
if (flag5)
{
string text2 = openFileDialog.FileName;
text2 = openFileDialog.FileName.Replace(".texture", ".2.texture");
BinaryReader binaryReader2 = new BinaryReader(File.OpenRead(text2));
textureData.FileName = text2;
binaryReader2.BaseStream.Position = num7;
textureData.Offset = (int)binaryReader2.BaseStream.Position;
byte[] array = binaryReader2.ReadBytes(num8);
num7 = binaryReader2.BaseStream.Position;
File.WriteAllBytes(string.Concat(new string[]
{
Globals.TemporaryDirectory,
"mipmap-",
j.ToString(),
"-",
num5.ToString(),
"x",
num6.ToString()
}), array);
List<byte> list = new List<byte>
{
68,
68,
83,
32,
124,
0,
0,
0,
7,
16,
0,
0
};
list.AddRange(BitConverter.GetBytes(num6));
list.AddRange(BitConverter.GetBytes(num5));
list.AddRange(BitConverter.GetBytes(num8));
list.AddRange(new List<byte>
{
0,
0,
0,
0,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
32,
0,
0,
0,
4,
0,
0,
0,
68,
88,
84,
49,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
});
bool flag6 = b == 99 || b == 80;
if (flag6)
{
list[22] = 64;
list[86] = 49;
list[87] = 48;
list.AddRange(new List<byte>
{
98,
0,
0,
0,
3,
0,
0,
0,
0,
0,
0,
0,
1,
0,
0,
0,
0,
0,
0,
0
});
list.AddRange(array);
}
else
{
list.AddRange(array);
}
File.WriteAllBytes(string.Concat(new string[]
{
Globals.TemporaryDirectory,
"mipmap-",
j.ToString(),
"-",
num5.ToString(),
"x",
num6.ToString(),
".dds"
}), list.ToArray());
num5 /= 2;
num6 /= 2;
binaryReader2.Close();
binaryReader2.Dispose();
this.textureDatas.Add(textureData);
}
else
{
textureData.Offset = (int)binaryReader.BaseStream.Position;
byte[] array2 = binaryReader.ReadBytes(num8);
File.WriteAllBytes(string.Concat(new string[]
{
Globals.TemporaryDirectory,
"mipmap-",
j.ToString(),
"-",
num5.ToString(),
"x",
num6.ToString()
}), array2);
List<byte> list2 = new List<byte>
{
68,
68,
83,
32,
124,
0,
0,
0,
7,
16,
0,
0
};
list2.AddRange(BitConverter.GetBytes(num6));
list2.AddRange(BitConverter.GetBytes(num5));
list2.AddRange(BitConverter.GetBytes(num8));
list2.AddRange(new List<byte>
{
0,
0,
0,
0,
1,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
32,
0,
0,
0,
4,
0,
0,
0,
68,
88,
84,
49,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0,
0
});
bool flag7 = b == 99 || b == 80;
if (flag7)
{
list2[22] = 64;
list2[86] = 49;
list2[87] = 48;
list2.AddRange(new List<byte>
{
98,
0,
0,
0,
3,
0,
0,
0,
0,
0,
0,
0,
1,
0,
0,
0,
0,
0,
0,
0
});
list2.AddRange(array2);
}
list2.AddRange(array2);
File.WriteAllBytes(string.Concat(new string[]
{
Globals.TemporaryDirectory,
"mipmap-",
j.ToString(),
"-",
num5.ToString(),
"x",
num6.ToString(),
".dds"
}), list2.ToArray());
num5 /= 2;
num6 /= 2;
this.textureDatas.Add(textureData);
}
}
binaryReader.Close();
binaryReader.Dispose();
Console.WriteLine("Done Opening Texture Assets");
}
}
}
// Token: 0x0600009B RID: 155 RVA: 0x0000D8D0 File Offset: 0x0000BAD0
private void saveTextureAssetToolStripMenuItem_Click(object sender, EventArgs e)
{
bool flag = this.textureDatas.Count <= 0;
if (!flag)
{
for (int i = 0; i < this.textureDatas.Count; i++)
{
TextureToolForm.TextureData textureData = this.textureDatas[i];
BinaryReader binaryReader = new BinaryReader(File.OpenRead(string.Concat(new string[]
{
Globals.TemporaryDirectory,
"mipmap-",
textureData.MipMap.ToString(),
"-",
textureData.Width.ToString(),
"x",
textureData.Height.ToString(),
".dds"
})));
binaryReader.BaseStream.Position = 128L;
bool flag2 = textureData.Type == 99 || textureData.Type == 80;
if (flag2)
{
binaryReader.BaseStream.Position += 20L;
}
byte[] buffer = binaryReader.ReadBytes(textureData.Size);
binaryReader.Close();
binaryReader.Dispose();
Console.WriteLine("writing to " + textureData.FileName);
BinaryWriter binaryWriter = new BinaryWriter(File.OpenWrite(textureData.FileName));
binaryWriter.BaseStream.Position = (long)textureData.Offset;
binaryWriter.Write(buffer);
binaryWriter.Close();
binaryWriter.Dispose();
}
Console.WriteLine("Done Saving Texture Assets");
}
}
// Token: 0x0600009C RID: 156 RVA: 0x0000DA55 File Offset: 0x0000BC55
private void TextureToolForm_Load(object sender, EventArgs e)
{
}
// Token: 0x0400008C RID: 140
private List<TextureToolForm.TextureData> textureDatas = new List<TextureToolForm.TextureData>();
// Token: 0x0200002B RID: 43
public class TextureData
{
// Token: 0x040000E3 RID: 227
public string FileName;
// Token: 0x040000E4 RID: 228
public int MipMap;
// Token: 0x040000E5 RID: 229
public int Offset;
// Token: 0x040000E6 RID: 230
public int Size;
// Token: 0x040000E7 RID: 231
public int Width;
// Token: 0x040000E8 RID: 232
public int Height;
// Token: 0x040000E9 RID: 233
public int Type;
}
}
}