-
Notifications
You must be signed in to change notification settings - Fork 0
/
Program.cs
708 lines (596 loc) · 26.9 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
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
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
/*
ttfs2mix TTFS to MIX utility
Copyright (C) 2021 Unstoppable
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
*/
using MixLibrary;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Net.Http;
using System.Threading;
using System.Threading.Tasks;
using TTPackageClass;
namespace Ttfs2Mix
{
static class ProgressStatisticClass
{
public static int MIXIndex; //Count to handle
public static int MIXTotal; //Total to handle
public static ulong FileCountIndex; //Count to handle
public static ulong TotalFileCount; //Total to handle
public static string StatusText = string.Empty;
public static string CurrentPackage = string.Empty;
public static bool IsDone;
public static int Mode = -1;
}
public static class Program
{
//Values for fancy stuff
static int LoadState; // the spinning line
static int PBarMax = 20;
static int PBarVal;
//Application
private static Thread Worker;
internal static List<string> ConsoleOutputList = new();
//Version
public static readonly string Version = "1.2";
public static void Main(string[] args)
{
Console.WriteLine($"Ttfs2Mix utility {Version} - by Unstoppable");
EmbeddedAssembly.Load("Ttfs2Mix.MixLibrary.dll", "MixLibrary.dll");
EmbeddedAssembly.Load("Ttfs2Mix.TTPackageClass.dll", "TTPackageClass.dll");
//Load dependencies from embedded resource, to make it a single executable file.
AppDomain.CurrentDomain.AssemblyResolve += (_, e) => EmbeddedAssembly.Get(e.Name);
if (args.Length >= 1)
{
switch(args[0].ToLower(Data.DefaultCulture))
{
case "help":
Console.WriteLine("\"convert <Package ID/Package Name>\": Converts first occurence of TTFS package to MIX file and saves into data folder.");
Console.WriteLine("\"multiconvert <Package ID/Package Name>\": Converts all matched TTFS packages to MIX files and saves into data folder.");
Console.WriteLine("\"convertall\": Converts all TTFS packages to MIX and saves all into data folder.");
Console.WriteLine("\"download <Package ID/Package Name> <URL>\": Finds and downloads first occurence of TTFS package from a remote repository to MIX file and saves into data folder.");
Console.WriteLine("\"multidownload <Package ID/Package Name> <URL>\": Finds and downloads all matched TTFS packages from a remote repository to MIX files and saves into data folder.");
Console.WriteLine("\"downloadall <URL>\": Finds and downloads all TTFS packages from a remote repository to MIX files and saves all into data folder.");
Console.WriteLine("\"help\": Prints the list of available commands.");
Console.WriteLine("\"info\": Shows information about utility and used libraries.");
return;
case "info":
Console.WriteLine("Ttfs2Mix is an application to convert TTFS packages into MIX files made by Unstoppable. Supports both client and FDS.");
Console.WriteLine("Ttfs2Mix has to be located inside client or FDS folder in order to work. Converted maps will be saved in Data folder.");
Console.WriteLine();
Console.WriteLine("Ttfs2Mix contains code snippets and libraries from following sources:");
Console.WriteLine("MixLibrary 1.2 - https://github.com/TheUnstoppable/MixLibrary");
Console.WriteLine("TTPackageClass 1.3 - https://github.com/TheUnstoppable/TTPackageClass");
Console.WriteLine("EmbeddedAssembly.cs - https://www.codeproject.com/Articles/528178/Load-DLL-From-Embedded-Resource");
Console.WriteLine("ParseSize - https://stackoverflow.com/a/14488941/5791443");
Console.WriteLine("ReadToEnd extension for Stream - https://stackoverflow.com/a/1080445/5791443");
return;
case "convert":
ProgressStatisticClass.MIXTotal = 1;
ProgressStatisticClass.Mode = 0;
Worker = new Thread(() => Convert(string.Join(" ", args.Skip(1))))
{
IsBackground = true
};
Worker.Start();
break;
case "convertall":
ProgressStatisticClass.Mode = 1;
Worker = new Thread(() => ConvertAll())
{
IsBackground = true
};
Worker.Start();
break;
case "multiconvert":
ProgressStatisticClass.Mode = 2;
Worker = new Thread(() => MultiConvert(string.Join(" ", args.Skip(1))))
{
IsBackground = true
};
Worker.Start();
break;
case "download":
ProgressStatisticClass.MIXTotal = 1;
ProgressStatisticClass.Mode = 3;
Worker = new Thread(async () => await Download(string.Join(" ", args.Skip(1).Take(args.Length - 2)), args.Last()))
{
IsBackground = true
};
Worker.Start();
break;
case "multidownload":
ProgressStatisticClass.Mode = 4;
Worker = new Thread(async () => await MultiDownload(string.Join(" ", args.Skip(1).Take(args.Length - 2)), args.Last()))
{
IsBackground = true
};
Worker.Start();
break;
case "downloadall":
ProgressStatisticClass.Mode = 5;
Worker = new Thread(async () => await DownloadAll(string.Join(" ", args.Skip(1))))
{
IsBackground = true
};
Worker.Start();
break;
default:
Console.WriteLine("You have specified an invalid command. Please run this application with \"help\" parameter for commands.");
return;
}
Console.CursorVisible = false;
while(!ProgressStatisticClass.IsDone)
{
LoadState++;
ulong val = ProgressStatisticClass.FileCountIndex;
ulong max = ProgressStatisticClass.TotalFileCount;
if (max > 0)
PBarVal = (int)Math.Floor(((double)val / (double)max) * PBarMax);
else
PBarVal = 0;
switch(LoadState)
{
case 0:
Console.Write("/ ");
break;
case 1:
Console.Write("| ");
break;
case 2:
Console.Write("\\ ");
break;
case 3:
Console.Write("- ");
LoadState = -1;
break;
}
Console.Write($"{ProgressStatisticClass.CurrentPackage} ({(!string.IsNullOrEmpty(ProgressStatisticClass.StatusText) ? ProgressStatisticClass.StatusText : $"{val}/{max}")}) [{new string('#', PBarVal)}{GenerateSpace(PBarMax - PBarVal)}]");
Thread.Sleep(100);
ResetCurrentLine();
while (ConsoleOutputList.Count > 0)
{
Console.WriteLine(ConsoleOutputList[0]);
ConsoleOutputList.RemoveAt(0);
}
}
Console.CursorVisible = true;
Console.WriteLine($"Conversion done{(ProgressStatisticClass.MIXTotal - ProgressStatisticClass.MIXIndex > 0 ? $" with {ProgressStatisticClass.MIXTotal - ProgressStatisticClass.MIXIndex} failed packages." : ".")}");
}
else
{
Console.WriteLine("Please run this application with \"help\" parameter for commands.");
return;
}
}
#region Helpers
static string GenerateSpace(int val)
{
return new string(' ', val < 0 ? 0 : val);
}
static void ResetCurrentLine()
{
int currentLineCursor = Console.CursorTop;
Console.SetCursorPosition(0, Console.CursorTop);
Console.Write(new string(' ', Console.WindowWidth));
Console.SetCursorPosition(0, currentLineCursor);
}
//TTFS => MIX specific code.
static PathsStruct? Paths;
static string TTFSFolder;
private static bool PackageIDCheck(TPIPackageClass Package, string ID)
{
return Package.PackageID
.ToLower(Data.DefaultCulture)
.Equals(ID.ToLower(Data.DefaultCulture));
}
private static bool PackageNameCheck(TPIPackageClass Package, string Name)
{
return Package.PackageName
.Equals(Name);
}
private static void CheckFields(ref TTFSDataClass? TTFSData)
{
TTFSData = default;
Paths ??= Data.ReadPaths();
TTFSFolder ??= Data.GetTTFSDirectory(Paths.Value);
if (!TTFSData.HasValue)
{
if (TTFSFolder != null)
{
try
{
TTFSData = TTFSClass.FromFile(Path.Combine(TTFSFolder, "packages.dat"));
}
catch (Exception ex)
{
ConsoleOutputList.Add($"Error: {ex.Message}");
ProgressStatisticClass.IsDone = true;
return;
}
}
else
{
ConsoleOutputList.Add($"Could not auto-detect TTFS folder. Please make sure you are running this utility from root directory game/server folder.");
ProgressStatisticClass.IsDone = true;
}
}
else
{
TTFSData = TTFSData.Value;
}
}
private static int ExceptionToHTTPCode(HttpRequestException ex)
{
return ex.StatusCode.HasValue ? (int)ex.StatusCode.Value : -1;
}
private static void PrintHTTPErrorInfo(int Status)
{
switch (Status)
{
case 401: //Forbidden
ConsoleOutputList.Add($"Authorization required to view this location. Please make sure server allows ttfs2mix or you have permission to access.");
break;
case 404: //Not found
ConsoleOutputList.Add($"Unable to find a TTFS repository at the specified location. Please make sure entered URL is correct.");
break;
case 403: //Forbidden
ConsoleOutputList.Add($"Server forbid access to this location. Please make sure server allows ttfs2mix or you have permission to access.");
break;
case 500: //Server error
ConsoleOutputList.Add($"An internal server error occured while requesting TTFS packages. Please try again later.");
break;
default:
ConsoleOutputList.Add($"Server sent an unrecognized status code of {Status}. Please make sure server allows ttfs2mix, or try again later.");
break;
}
}
#endregion
#region Commands
internal static void Convert(string Package, TTFSDataClass? TTFSData = null)
{
CheckFields(ref TTFSData);
ProgressStatisticClass.StatusText = "Locating...";
TTFSDataClass TTFS;
if (TTFSData.HasValue)
{
TTFS = TTFSData.Value;
}
else
{
if (ProgressStatisticClass.Mode == 0)
ProgressStatisticClass.IsDone = true;
return;
}
TPIPackageClass TPI = default;
var IDMatch = TTFS.Packages.FindAll(x => PackageIDCheck(x, Package));
var NameMatch = TTFS.Packages.FindAll(x => PackageNameCheck(x, Package));
if (IDMatch.Count == 1) //ID Match
{
TPI = IDMatch.First();
}
else if (NameMatch.Count == 1) //Name Match
{
TPI = NameMatch.First();
}
else if (IDMatch.Count > 1) //Too many ID match
{
ConsoleOutputList.Add($"Too many matches found with specified identifier \"{Package}\".");
if (ProgressStatisticClass.Mode == 0)
ProgressStatisticClass.IsDone = true;
return;
}
else if (NameMatch.Count > 1) //Too many Name match
{
ConsoleOutputList.Add($"Too many matches found with specified identifier \"{Package}\".");
if (ProgressStatisticClass.Mode == 0)
ProgressStatisticClass.IsDone = true;
return;
}
else
{
ConsoleOutputList.Add($"Couldn't find any package with specified identifier \"{Package}\".");
if (ProgressStatisticClass.Mode == 0)
ProgressStatisticClass.IsDone = true;
return;
}
ProgressStatisticClass.CurrentPackage = $"{TPI.PackageName} ({TPI.PackageID})";
ProgressStatisticClass.TotalFileCount = (ulong)TPI.FileCount;
ProgressStatisticClass.FileCountIndex = 0;
ProgressStatisticClass.StatusText = string.Empty;
MixPackageClass MIXPackage = MixPackageClass.CreateMIX();
foreach(TTFileClass TTFile in TPI.Files)
{
try
{
MIXPackage.Files.Add(new MixFileClass
{
FileName = TTFile.FileName,
Data = File.ReadAllBytes(Path.Combine(TTFSFolder, "files", TTFile.FullName.Replace("\\", "_")))
});
}
catch(Exception ex)
{
ConsoleOutputList.Add($"Skipping file {TTFile.FileName} in package {TPI.PackageName}: {ex.Message}.");
}
ProgressStatisticClass.FileCountIndex++;
}
ProgressStatisticClass.StatusText = "Saving...";
var SaveLoc = Path.Combine(Data.ExeLocation, "Data", $"{TPI.PackageName}.mix");
MIXPackage.Save(SaveLoc);
ConsoleOutputList.Add($"+ {TPI.PackageName} ({TPI.PackageID})");
ProgressStatisticClass.MIXIndex++;
if (ProgressStatisticClass.Mode == 0)
ProgressStatisticClass.IsDone = true;
}
internal static void ConvertAll(TTFSDataClass? TTFSData = null)
{
CheckFields(ref TTFSData);
TTFSDataClass TTFS;
if (TTFSData.HasValue)
{
TTFS = TTFSData.Value;
}
else
{
ProgressStatisticClass.IsDone = true;
return;
}
if (!ProgressStatisticClass.IsDone)
{
ProgressStatisticClass.MIXTotal = TTFS.PackageCount;
foreach (TPIPackageClass Package in TTFS.Packages)
{
Convert(Package.PackageID, TTFS);
}
}
ProgressStatisticClass.IsDone = true;
}
internal static void MultiConvert(string Package, TTFSDataClass? TTFSData = null)
{
CheckFields(ref TTFSData);
TTFSDataClass TTFS;
if (TTFSData.HasValue)
{
TTFS = TTFSData.Value;
}
else
{
ProgressStatisticClass.IsDone = true;
return;
}
if (!ProgressStatisticClass.IsDone)
{
var Matches = TTFS.Packages.Where(x =>
x.PackageName.ToLower(Data.DefaultCulture).Contains(Package.ToLower(Data.DefaultCulture)) ||
x.PackageID.ToLower(Data.DefaultCulture).Contains(Package.ToLower(Data.DefaultCulture)))
.ToArray();
ProgressStatisticClass.MIXTotal = Matches.Length;
if(!Matches.Any())
{
ConsoleOutputList.Add($"Couldn't find any package with specified identifier \"{Package}\".");
ProgressStatisticClass.IsDone = true;
return;
}
foreach (TPIPackageClass TTPackage in Matches)
{
Convert(TTPackage.PackageID, TTFS);
}
}
ProgressStatisticClass.IsDone = true;
}
internal static async Task Download(string Package, string Location, TTFSDataClass? TTFSData = null)
{
ProgressStatisticClass.StatusText = "Fetching packages...";
if (TTFSData == null)
{
try
{
byte[] Data = await WebDownloader.GetBytesAsync($"{Location}/packages.dat");
TTFSData = TTFSClass.FromBytes(Data);
}
catch (HttpRequestException httpex)
{
int Status = ExceptionToHTTPCode(httpex);
if (Status > 0)
{
PrintHTTPErrorInfo(Status);
ProgressStatisticClass.IsDone = true;
}
else
{
ConsoleOutputList.Add($"Error: {httpex.Message}");
ProgressStatisticClass.IsDone = true;
}
return;
}
catch (Exception ex)
{
ConsoleOutputList.Add($"Error: {ex.Message}");
ProgressStatisticClass.IsDone = true;
return;
}
}
TTFSDataClass TTFS = TTFSData.Value;
TPIPackageClass TPI = default;
var IDMatch = TTFS.Packages.FindAll(x => PackageIDCheck(x, Package));
var NameMatch = TTFS.Packages.FindAll(x => PackageNameCheck(x, Package));
if (IDMatch.Count == 1) //ID Match
{
TPI = IDMatch.First();
}
else if (NameMatch.Count == 1) //Name Match
{
TPI = NameMatch.First();
}
else if (IDMatch.Count > 1) //Too many ID match
{
ConsoleOutputList.Add($"Too many matches found with specified identifier \"{Package}\".");
if (ProgressStatisticClass.Mode == 3)
ProgressStatisticClass.IsDone = true;
return;
}
else if (NameMatch.Count > 1) //Too many Name match
{
ConsoleOutputList.Add($"Too many matches found with specified identifier \"{Package}\".");
if (ProgressStatisticClass.Mode == 3)
ProgressStatisticClass.IsDone = true;
return;
}
else
{
ConsoleOutputList.Add($"Couldn't find any package with specified identifier \"{Package}\".");
if (ProgressStatisticClass.Mode == 3)
ProgressStatisticClass.IsDone = true;
return;
}
ProgressStatisticClass.CurrentPackage = $"{TPI.PackageName} ({TPI.PackageID})";
ProgressStatisticClass.TotalFileCount = (ulong)TPI.Files.Sum(x => x.FileSize);
ProgressStatisticClass.FileCountIndex = 0;
ProgressStatisticClass.StatusText = $"Downloading...";
int fileindex = 0;
int totalfiles = TPI.FileCount;
MixPackageClass MIXPackage = MixPackageClass.CreateMIX();
foreach(TTFileClass File in TPI.Files)
{
byte[] Data = new byte[File.FileSize];
try
{
Data = await WebDownloader.GetBytesAsync($"{Location}/files/{Uri.EscapeDataString($"{File.CRC}.{File.FileName}")}");
MIXPackage.Files.Add(new MixFileClass
{
FileName = File.FileName,
Data = Data
});
ProgressStatisticClass.FileCountIndex += (ulong)Data.Length;
}
catch(Exception ex)
{
if(ex is HttpRequestException httpex)
{
int Status = ExceptionToHTTPCode(httpex);
ConsoleOutputList.Add($"Skipping file {File.FileName} in package {TPI.PackageName}: {(Status > 0 ? $"Server returns {Status}" : httpex.Message)}.");
}
else
{
ConsoleOutputList.Add($"Skipping file {File.FileName} in package {TPI.PackageName}: {ex.Message}.");
}
ProgressStatisticClass.FileCountIndex += File.FileSize;
}
fileindex++;
ProgressStatisticClass.StatusText = $"Downloading... ({fileindex}/{totalfiles} | {WebDownloader.ParseSize((long)ProgressStatisticClass.FileCountIndex)}/{WebDownloader.ParseSize((long)ProgressStatisticClass.TotalFileCount)})";
}
ProgressStatisticClass.StatusText = "Saving...";
var SaveLoc = Path.Combine(Data.ExeLocation, "Data", $"{TPI.PackageName}.mix");
MIXPackage.Save(SaveLoc);
ConsoleOutputList.Add($"+ {TPI.PackageName} ({TPI.PackageID})");
ProgressStatisticClass.MIXIndex++;
GC.Collect();
if (ProgressStatisticClass.Mode == 3)
ProgressStatisticClass.IsDone = true;
}
internal static async Task MultiDownload(string Package, string Location, TTFSDataClass? TTFSData = null)
{
ProgressStatisticClass.StatusText = "Fetching packages...";
if (TTFSData == null)
{
try
{
byte[] Data = await WebDownloader.GetBytesAsync($"{Location}/packages.dat");
TTFSData = TTFSClass.FromBytes(Data);
}
catch (HttpRequestException httpex)
{
int Status = ExceptionToHTTPCode(httpex);
if (Status > 0)
{
PrintHTTPErrorInfo(Status);
ProgressStatisticClass.IsDone = true;
}
else
{
ConsoleOutputList.Add($"Error: {httpex.Message}");
ProgressStatisticClass.IsDone = true;
}
return;
}
catch (Exception ex)
{
ConsoleOutputList.Add($"Error: {ex.Message}");
ProgressStatisticClass.IsDone = true;
return;
}
}
TTFSDataClass TTFS = TTFSData.Value;
if (!ProgressStatisticClass.IsDone)
{
var Matches = TTFS.Packages.Where(x =>
x.PackageName.ToLower(Data.DefaultCulture).Contains(Package.ToLower(Data.DefaultCulture)) ||
x.PackageID.ToLower(Data.DefaultCulture).Contains(Package.ToLower(Data.DefaultCulture)))
.ToArray();
ProgressStatisticClass.MIXTotal = Matches.Length;
if (!Matches.Any())
{
ConsoleOutputList.Add($"Couldn't find any package with specified identifier \"{Package}\".");
ProgressStatisticClass.IsDone = true;
return;
}
foreach (TPIPackageClass TTPackage in Matches)
{
await Download(TTPackage.PackageID, Location, TTFS);
}
}
ProgressStatisticClass.IsDone = true;
}
internal static async Task DownloadAll(string Location, TTFSDataClass? TTFSData = null)
{
ProgressStatisticClass.StatusText = "Fetching packages...";
if (TTFSData == null)
{
try
{
byte[] Data = await WebDownloader.GetBytesAsync($"{Location}/packages.dat");
TTFSData = TTFSClass.FromBytes(Data);
}
catch (HttpRequestException httpex)
{
int Status = ExceptionToHTTPCode(httpex);
if (Status > 0)
{
PrintHTTPErrorInfo(Status);
ProgressStatisticClass.IsDone = true;
}
else
{
ConsoleOutputList.Add($"Error: {httpex.Message}");
ProgressStatisticClass.IsDone = true;
}
return;
}
catch (Exception ex)
{
ConsoleOutputList.Add($"Error: {ex.Message}");
ProgressStatisticClass.IsDone = true;
return;
}
}
TTFSDataClass TTFS = TTFSData.Value;
if (!ProgressStatisticClass.IsDone)
{
ProgressStatisticClass.MIXTotal = TTFS.PackageCount;
foreach (TPIPackageClass Pkg in TTFS.Packages)
{
await Download(Pkg.PackageID, Location, TTFS);
}
}
ProgressStatisticClass.IsDone = true;
}
#endregion
}
}