-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathProgram.cs
More file actions
25 lines (22 loc) · 844 Bytes
/
Program.cs
File metadata and controls
25 lines (22 loc) · 844 Bytes
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
using patch_manager.Patchers;
using patch_applier;
using patch_applier.PatchFileDescription;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Web.Script.Serialization;
namespace patch_manager
{
class Program
{
static void Main(string[] args)
{
string text = File.ReadAllText(@"../../patchfile.json");
var serializer = new JavaScriptSerializer();
PatchFile patchFile = serializer.Deserialize<PatchFile>(text);
List<string> patchPaths = PatchApplier.LockAllPatches(patchFile.patches, patchFile.patchfileLockDirectory);
var patchers = patchPaths.Select(path => PatcherFactory.CreatePatcher(path)).ToList();
PatchApplier.Patch(patchers, patchFile.baseRomLocation, patchFile.outputRomLocation);
}
}
}