-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfrmMain.cs
More file actions
289 lines (253 loc) · 8.67 KB
/
frmMain.cs
File metadata and controls
289 lines (253 loc) · 8.67 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
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.IO;
using System.Globalization;
using GBA;
namespace gbacomp
{
public partial class frmMain : Form
{
public frmMain()
{
InitializeComponent();
savDecomp.Filter = opnDecompSource.Filter;
opnCompSource.Filter = opnDecompSource.Filter;
savComp.Filter = opnDecompSource.Filter;
opnCompDest.Filter = opnDecompSource.Filter;
rdoNewFile_CheckedChanged(null, null);
}
private void lblAbout_Click(object sender, EventArgs e)
{
string about = "By JeffMan" + Environment.NewLine +
"https://github.com/jeffman/gbacomp";
MessageBox.Show(about, "About");
}
private void btnDecompSource_Click(object sender, EventArgs e)
{
if (opnDecompSource.ShowDialog() == DialogResult.OK)
txtDecompSource.Text = opnDecompSource.FileName;
}
private void btnCompSource_Click(object sender, EventArgs e)
{
if (opnCompSource.ShowDialog() == DialogResult.OK)
txtCompSource.Text = opnCompSource.FileName;
}
private void btnCompDest_Click(object sender, EventArgs e)
{
if (rdoNewFile.Checked)
{
if (savComp.ShowDialog() == DialogResult.OK)
txtCompDest.Text = savComp.FileName;
}
else if (rdoExistingFile.Checked)
{
if (opnCompDest.ShowDialog() == DialogResult.OK)
txtCompDest.Text = opnCompDest.FileName;
}
}
private void btnDecomp_Click(object sender, EventArgs e)
{
// Check if the file exists
if (!File.Exists(txtDecompSource.Text))
{
lblStatus.Text = "File not found";
txtDecompSource.Focus();
txtDecompSource.SelectAll();
return;
}
// Try loading the file
byte[] src = null;
try
{
src = File.ReadAllBytes(txtDecompSource.Text);
}
catch
{
// Error loading file
lblStatus.Text = "Error loading file";
txtDecompSource.Focus();
txtDecompSource.SelectAll();
return;
}
// Grab the source address
int srcAddr;
if (txtDecompAddr.Text.Equals(string.Empty))
srcAddr = 0;
else if (!Extensions.TryParseHex(txtDecompAddr.Text, out srcAddr))
{
// Not a valid hex number
lblStatus.Text = "Not a valid hex number";
txtDecompAddr.Focus();
txtDecompAddr.Select();
return;
}
// See if it's in range
if ((srcAddr < 0) || (srcAddr >= src.Length))
{
// Out of range
lblStatus.Text = "Address out of range";
txtDecompAddr.Focus();
txtDecompAddr.Select();
return;
}
// Decomp
int result = 0;
byte[] decomp;
try
{
result = LZ77.Decompress(src, srcAddr, out decomp);
}
catch
{
// Unexpected error, shouldn't happen
lblStatus.Text = "Unexpected error";
return;
}
// See if it worked
switch (result)
{
case -1:
// Missing LZ77 signature
lblStatus.Text = "Not a valid compressed block";
return;
default:
// Worked
lblStatus.Text = "Decompressed " + decomp.Length + " bytes from " +
result + " bytes";
// Ask for an output file
if (savDecomp.ShowDialog() == DialogResult.OK)
{
// Write the file
try
{
File.WriteAllBytes(savDecomp.FileName, decomp);
lblStatus.Text = "File written successfully";
}
catch
{
lblStatus.Text = "Error writing to file";
return;
}
}
break;
}
}
private void btnCompress_Click(object sender, EventArgs e)
{
bool newfile = rdoNewFile.Checked;
// Check if the source exists
if (!File.Exists(txtCompSource.Text))
{
lblStatus.Text = "File not found";
txtCompSource.Focus();
txtCompSource.SelectAll();
return;
}
// Check if the existing dest file exists
if (!newfile && !File.Exists(txtCompDest.Text))
{
lblStatus.Text = "File not found";
txtCompDest.Focus();
txtCompDest.SelectAll();
return;
}
// Try loading the files
byte[] src = null;
try
{
src = File.ReadAllBytes(txtCompSource.Text);
}
catch
{
// Error loading file
lblStatus.Text = "Error loading file";
txtCompSource.Focus();
txtCompSource.SelectAll();
return;
}
byte[] dest = null;
if (!newfile)
{
try
{
dest = File.ReadAllBytes(txtCompDest.Text);
}
catch
{
// Error loading file
lblStatus.Text = "Error loading file";
txtCompDest.Focus();
txtCompDest.SelectAll();
return;
}
}
// Grab the destination address
int destAddr = -1;
if (dest != null)
{
if (txtCompDestAddr.Text.Equals(""))
destAddr = 0;
else if (!Extensions.TryParseHex(txtCompDestAddr.Text, out destAddr))
{
// Not a valid hex number
lblStatus.Text = "Not a valid hex number";
txtCompDestAddr.Focus();
txtCompDestAddr.Select();
return;
}
// See if it's in range
if ((destAddr < 0) || (destAddr >= dest.Length))
{
// Out of range
lblStatus.Text = "Address out of range";
txtCompDestAddr.Focus();
txtCompDestAddr.Select();
return;
}
}
// Comp
lblStatus.Text = "Compressing...";
byte[] comp = LZ77.Compress(src);
if (!newfile)
{
// Insert it into the destination file
try
{
Array.Copy(comp, 0, dest, destAddr, comp.Length);
}
catch
{
lblStatus.Text = "Error copying data to destination";
return;
}
}
else
{
// Ask for destination file
dest = comp;
}
// Write the destination file
try
{
File.WriteAllBytes(txtCompDest.Text, dest);
}
catch
{
lblStatus.Text = "Error writing destination file";
return;
}
// Finished
lblStatus.Text = "Compressed " + src.Length + " bytes to " + comp.Length + " bytes";
}
private void rdoNewFile_CheckedChanged(object sender, EventArgs e)
{
txtCompDestAddr.Enabled = !rdoNewFile.Checked;
}
}
}