-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.cs
205 lines (173 loc) · 7.66 KB
/
Main.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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using ModLib;
namespace DATPacker
{
public partial class Main : Form
{
public static DPProject currentProject;
public Main()
{
InitializeComponent();
}
private void newProjectToolStripMenuItem_Click(object sender, EventArgs e)
{
NewProject form = new NewProject();
form.ShowDialog(this);
if (currentProject != null)
{
ProjectSetup();
MessageBox.Show("Project file has finished building! Please read the following message boxes for important information.", "Project done.", MessageBoxButtons.OK, MessageBoxIcon.Information);
MessageBox.Show("Please move any PATCH*.DAT files away from Cemu/RPCS3 to ensure they are not loaded, otherwise your files will not load in game!", "Move update files", MessageBoxButtons.OK, MessageBoxIcon.Warning);
var startFirstBuild = MessageBox.Show("All archives need to be built for the first time, are you ready to do this now? They will be placed in the build location you specified.", "First build", MessageBoxButtons.OKCancel, MessageBoxIcon.Warning);
if (startFirstBuild == DialogResult.OK)
{
BuildAll();
}
else
{
MessageBox.Show("You can build the archives using Build->Build all archives when you are ready.", "Note", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
}
}
private static Dictionary<string, CustomProgressBar> progressBars;
private static Dictionary<string, Button> buttons;
private static Dictionary<string, bool> needsUpdating;
private void ProjectSetup()
{
int archives = 0;
progressBars = new();
needsUpdating = new();
buttons = new();
foreach (KeyValuePair<string, FileList> archivePair in currentProject.Files)
{
Label archiveNameLabel = new Label();
archiveNameLabel.Text = archivePair.Key;
archiveNameLabel.TextAlign = ContentAlignment.MiddleLeft;
archiveNameLabel.Bounds = new Rectangle(12, 20 + (40 * archives), 100, 30);
MainPanel.Controls.Add(archiveNameLabel);
CustomProgressBar progressBar = new CustomProgressBar();
progressBar.CustomText = "No changes pending";
progressBar.TextColor = Brushes.Black;
progressBar.Bounds = new Rectangle(120, 20 + (40 * archives), 200, 30);
MainPanel.Controls.Add(progressBar);
progressBars.Add(archivePair.Key, progressBar);
needsUpdating.Add(archivePair.Key, false);
Button buildButton = new Button();
buildButton.Text = "Build";
buildButton.BackColor = SystemColors.ControlLightLight;
buildButton.FlatStyle = FlatStyle.Standard;
buildButton.Bounds = new Rectangle(328, 20 + (40 * archives), 100, 30);
buildButton.Tag = archivePair.Key;
buildButton.Click += BuildButton_Click;
buttons.Add(archivePair.Key, buildButton);
MainPanel.Controls.Add(buildButton);
archives++;
}
Overwatch.WatchLocation(currentProject.OutputLocation);
}
private void openProjectToolStripMenuItem_Click(object sender, EventArgs e)
{
using (var openFileDialog = new OpenFileDialog())
{
openFileDialog.Filter = "hprj files (*.hprj)|*.hprj";
openFileDialog.RestoreDirectory = true;
if (openFileDialog.ShowDialog() == DialogResult.OK)
{
currentProject = Project.Load(openFileDialog.FileName);
ProjectSetup();
}
}
}
private void BuildButton_Click(object? sender, EventArgs e)
{
Button button = sender as Button;
button.Enabled = false;
string archiveName = (string)button.Tag;
BuildWorker.Setup();
BuildTask task = new BuildTask(currentProject, (string)button.Tag);
task.ProgressBar = progressBars[archiveName];
task.Button = button;
BuildWorker.AddTask(task);
BuildWorker.Start();
}
public static void TriggerUpdate(string archive)
{
CustomProgressBar progressBar = progressBars[archive];
progressBar.CustomText = "Pending changes";
progressBar.TextColor = Brushes.Red;
progressBar.Invalidate();
currentProject.NeedsSaving = true;
needsUpdating[archive] = true;
}
private void Main_FormClosing(object sender, FormClosingEventArgs e)
{
if (currentProject != null && currentProject.NeedsSaving)
{
var saveProject = MessageBox.Show("Your project file needs saving! Otherwise you will need to re-synchronise on your next use.\nWould you like to save now?", "Save project?", MessageBoxButtons.YesNo, MessageBoxIcon.Question);
if (saveProject == DialogResult.Yes)
{
Project.Save(currentProject);
}
}
}
private void saveProjectToolStripMenuItem_Click(object sender, EventArgs e)
{
if (currentProject == null) return;
Project.Save(currentProject);
}
private void BuildAll()
{
BuildWorker.Setup();
foreach (KeyValuePair<string, FileList> file in currentProject.Files)
{
BuildTask task = new BuildTask(currentProject, file.Key);
task.ProgressBar = progressBars[file.Key];
Button button = buttons[file.Key];
button.Enabled = false;
task.Button = button;
BuildWorker.AddTask(task);
}
BuildWorker.Start();
}
private void buildAllToolStripMenuItem_Click(object sender, EventArgs e)
{
if (currentProject == null) return;
BuildAll();
}
private void resynchroniseToolStripMenuItem_Click(object sender, EventArgs e)
{
if (currentProject == null) return;
var messageBox = MessageBox.Show("Do not edit any files until this is complete!", "Warning", MessageBoxButtons.OKCancel, MessageBoxIcon.Warning);
if (messageBox == DialogResult.OK)
{
Overwatch.Synchronise(currentProject);
}
else if (messageBox == DialogResult.Cancel)
{
Logger.Log("User cancelled re-synchronisation.");
}
}
private void settingsToolStripMenuItem_Click(object sender, EventArgs e)
{
if (currentProject == null) return;
ProjectSettings projectSettings = new ProjectSettings();
projectSettings.ShowDialog(this);
}
private void buildSettingsToolStripMenuItem_Click(object sender, EventArgs e)
{
MessageBox.Show("Placeholder. Serves no purpose currently.");
}
private void moveFilesInArchiveToolStripMenuItem_Click(object sender, EventArgs e)
{
MessageBox.Show("Placeholder. Serves no purpose currently.");
}
}
}