-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathProgram.cs
108 lines (96 loc) · 4.29 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
using ProjectCeleste.GameFiles.GameScanner;
using ProjectCeleste.GameFiles.GameScanner.Models;
using System;
using System.CommandLine;
using System.CommandLine.Invocation;
using System.Threading.Tasks;
namespace Celeste.GameScan
{
public class Program
{
static async Task<int> Main(string[] args)
{
var rootCommand = new RootCommand
{
new Option<string>(
"--game-dir",
description: "Path to the directory where Spartan.exe is located") { IsRequired = true },
new Option<bool>(
"--is-steam",
description: "Enabled for installations that are launchable through Steam"),
new Option<bool>(
"--verbose-mode",
getDefaultValue: () => false,
description: "Write more detailed log about progress"),
};
rootCommand.Handler = CommandHandler.Create<string, bool, bool>(async(gameDir, isSteam, verboseMode) =>
{
Console.WriteLine($"Starting game scan towards {gameDir}");
var gameScannner = new GameScannerManager(gameDir, isSteam);
Console.WriteLine("Fetching manifest data");
await gameScannner.InitializeFromCelesteManifest();
Console.WriteLine("Scanning game files");
var progress = new Progress<ScanProgress>();
var subProgress = new Progress<ScanSubProgress>();
if (verboseMode)
{
subProgress.ProgressChanged += SubProgress_ProgressChanged;
progress.ProgressChanged += Progress_ProgressChanged;
}
if (!await gameScannner.ScanAndRepair(progress, subProgress))
{
Console.WriteLine("Scan completed: No game files were updated, everything up to date");
return 0;
}
else
{
Console.WriteLine("Gamescan has completed and updated game files");
return 0;
}
});
return await rootCommand.InvokeAsync(args);
}
private static void Progress_ProgressChanged(object sender, ScanProgress e)
{
Console.WriteLine($"{e.File} ({e.Index}/{e.TotalIndex}):");
}
private static void SubProgress_ProgressChanged(object sender, ScanSubProgress e)
{
switch (e.Step)
{
case ScanSubProgressStep.Check:
Console.WriteLine("Verifying file checksum");
break;
case ScanSubProgressStep.Download:
if (e.DownloadProgress != null)
{
if (e.DownloadProgress.Size == 0)
{
Console.WriteLine("Starting download");
}
else
{
var downloaded = BytesSizeExtension.FormatToBytesSizeThreeNonZeroDigits(e.DownloadProgress.SizeCompleted);
var leftToDownload = BytesSizeExtension.FormatToBytesSizeThreeNonZeroDigits(e.DownloadProgress.Size);
var downloadSpeed = double.IsInfinity(e.DownloadProgress.Speed) ?
string.Empty : $"({BytesSizeExtension.FormatToBytesSizeThreeNonZeroDigits(e.DownloadProgress.Speed)}/s)";
Console.WriteLine($"Downloading {downloaded}/{leftToDownload} {downloadSpeed}");
}
}
break;
case ScanSubProgressStep.CheckDownload:
Console.WriteLine("Checking downloaded file");
break;
case ScanSubProgressStep.ExtractDownload:
Console.WriteLine("Extracting");
break;
case ScanSubProgressStep.CheckExtractDownload:
Console.WriteLine("Checking extracted file");
break;
case ScanSubProgressStep.Finalize:
Console.WriteLine("Finalizing");
break;
}
}
}
}