forked from DeadlyBrad42/SpriteStitcher
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathStitchForm.cs
More file actions
323 lines (273 loc) · 10.9 KB
/
StitchForm.cs
File metadata and controls
323 lines (273 loc) · 10.9 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
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
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 SpriteStitcher;
using System.IO;
using System.Drawing.Imaging;
namespace SpriteBitcher
{
public partial class StitchForm : Form
{
private List<string> filePaths;
private int swapIndexA = -1;
private int swapIndexB = -1;
private int sheetRows = 0;
private int sheetCols = 0;
private int frameWidth = 0;
private int frameHeight = 0;
public StitchForm()
{
InitializeComponent();
filePaths = new List<string>();
tbx_sheetRows.Text = "1";
tbx_sheetCols.Text = "1";
lbl_outputSizeVw.Text = "";
lbl_frameSizeVw.Text = "";
cbx_template.SelectedItem = "4x3 character style [VX MV MZ]";
}
public void UpdateSpritesheetResourcesUi()
{
if (filePaths.Count() != 0 && Int32.TryParse(tbx_sheetRows.Text, out sheetRows) && Int32.TryParse(tbx_sheetCols.Text, out sheetCols))
{
Image _img = Stitcher.StitchFromImgPaths(filePaths, sheetRows, sheetCols, out frameWidth, out frameHeight);
pbx_stitchPreview.Image = _img;
lbl_outputSizeVw.Text = _img.Width + " x " + _img.Height;
lbl_frameSizeVw.Text = frameWidth + " x " + frameHeight;
}
}
private void saveStitchFile()
{
DialogResult _result = sfd_stitchSaver.ShowDialog();
if (_result == System.Windows.Forms.DialogResult.OK)
{
using (System.IO.StreamWriter file =
new System.IO.StreamWriter(sfd_stitchSaver.FileName))
{
file.WriteLine(cbx_template.Text);
// rows cols.
file.WriteLine(sheetRows.ToString() + "," + sheetCols.ToString());
foreach (string filePath in filePaths)
{
file.WriteLine(filePath);
}
}
}
}
private void loadStitchFile()
{
string tempTemplate = "";
int tempRows = 0;
int tempCols = 0;
List<string> tempFilePaths = new List<string>();
DialogResult _result = ofd_stitchLoader.ShowDialog();
if (_result == System.Windows.Forms.DialogResult.OK)
{
using (System.IO.StreamReader file =
new System.IO.StreamReader(ofd_stitchLoader.FileName))
{
string line;
if ((line = file.ReadLine()) != null)
{
tempTemplate = line;
}
if ((line = file.ReadLine()) != null)
{
string[] rowcol = line.Split(',');
Int32.TryParse(rowcol[0], out tempRows);
Int32.TryParse(rowcol[1], out tempCols);
}
while ((line = file.ReadLine()) != null)
{
tempFilePaths.Add(locallyModifiedimgFile(line, ofd_stitchLoader.FileName));
}
}
if (tempTemplate != "" && tempRows > 0 && tempCols > 0 && tempFilePaths.Count > 0)
{
cbx_template.SelectedItem = tempTemplate;
tbx_sheetRows.Text = tempRows.ToString();
tbx_sheetCols.Text = tempCols.ToString();
filePaths = tempFilePaths;
}
UpdateSpritesheetResourcesUi();
}
}
private string locallyModifiedimgFile(string imgPath, string SSSpath)
{
string imageInWithSSS = Path.GetDirectoryName(SSSpath);
imageInWithSSS += Path.DirectorySeparatorChar + Path.GetFileName(imgPath);
if (File.Exists(imageInWithSSS))
{
return imageInWithSSS;
}
else
{
return imgPath;
}
}
private void tbx_sheetRows_TextChanged(object sender, EventArgs e)
{
UpdateSpritesheetResourcesUi();
}
private void tbx_sheetCols_TextChanged(object sender, EventArgs e)
{
UpdateSpritesheetResourcesUi();
}
private void btn_addSprite_Click(object sender, EventArgs e)
{
DialogResult _result = ofd_spriteChooser.ShowDialog();
if (_result == System.Windows.Forms.DialogResult.OK)
{
filePaths.Clear();
foreach (string _file in ofd_spriteChooser.FileNames)
{
filePaths.Add(_file);
}
UpdateSpritesheetResourcesUi();
}
}
private void btn_saveOutput_Click(object sender, EventArgs e)
{
//TODO: Save output to new image file
DialogResult _result = sfd_spritesheetSaver.ShowDialog();
if (_result == System.Windows.Forms.DialogResult.OK)
{
string _extension = Path.GetExtension(sfd_spritesheetSaver.FileName);
ImageFormat _format = ImageFormat.Png;
switch (_extension.ToLower())
{
case ".bmp":
_format = ImageFormat.Bmp;
break;
case ".jpg":
// ToDo: Save as JPEG
_format = ImageFormat.Jpeg;
break;
case ".jpeg":
// ToDo: Save as JPEG
_format = ImageFormat.Jpeg;
break;
case ".png":
_format = ImageFormat.Png;
break;
case ".gif":
_format = ImageFormat.Gif;
break;
case ".tif":
_format = ImageFormat.Tiff;
break;
}
// Save the newly-stitched spritesheet out to a file
Image _img = Stitcher.StitchFromImgPaths(filePaths, Int32.Parse(tbx_sheetRows.Text), Int32.Parse(tbx_sheetCols.Text));
_img.Save(sfd_spritesheetSaver.FileName, _format);
}
}
private void btn_saveStitch_Click(object sender, EventArgs e)
{
saveStitchFile();
}
private void btn_loadStitch_Click(object sender, EventArgs e)
{
loadStitchFile();
}
private int getPictureIndexFromXY(int x, int y)
{
// check bounds so we don't crash
int selectedFrameRow = x / frameWidth;
int selectedFrameCol = y / frameHeight;
int selectedFrameIndex = selectedFrameCol * sheetCols + selectedFrameRow;
// we'll catch swap index b on mouseup.
return selectedFrameIndex;
}
public static void Swap<T>(IList<T> list, int indexA, int indexB)
{
T tmp = list[indexA];
list[indexA] = list[indexB];
list[indexB] = tmp;
}
private void pbx_stitchPreview_MouseDown(object sender, MouseEventArgs e)
{
if (filePaths.Count > 0)
{
// we'll catch swap index b on mouseup.
swapIndexA = getPictureIndexFromXY(e.X, e.Y);
}
}
private void pbx_stitchPreview_MouseUp(object sender, MouseEventArgs e)
{
if (filePaths.Count > 0)
{
// we'll catch swap index b on mouseup.
swapIndexB = getPictureIndexFromXY(e.X, e.Y);
}
if (swapIndexA > -1 && swapIndexA < filePaths.Count && swapIndexB > -1 && swapIndexB < filePaths.Count)
{
Swap(filePaths, swapIndexA, swapIndexB);
swapIndexA = -1;
swapIndexB = -1;
UpdateSpritesheetResourcesUi();
}
}
private void pbx_stitchPreview_MouseDoubleClick(object sender, MouseEventArgs e)
{
// replace the image!
int replaceIndex = getPictureIndexFromXY(e.X, e.Y);
string whichImage = filePaths[replaceIndex];
string imageNameOnly = Path.GetFileName(whichImage);
bool oldMultifile = ofd_spriteChooser.Multiselect;
string oldTitle = ofd_spriteChooser.Title;
ofd_spriteChooser.Multiselect = false;
ofd_spriteChooser.Title = "Choose a sprite to replace: " + imageNameOnly;
DialogResult _result = ofd_spriteChooser.ShowDialog();
if (_result == System.Windows.Forms.DialogResult.OK)
{
string _file = ofd_spriteChooser.FileName;
filePaths[replaceIndex] = _file;
UpdateSpritesheetResourcesUi();
}
ofd_spriteChooser.Multiselect = oldMultifile;
ofd_spriteChooser.Title = oldTitle;
}
private void cbx_template_SelectedIndexChanged(object sender, EventArgs e)
{
if ((string)cbx_template.SelectedItem == "4x4 character style [XP]")
{
tbx_sheetRows.Text = "4";
tbx_sheetCols.Text = "4";
}
else if ((string)cbx_template.SelectedItem == "4x3 character style [VX MV MZ]")
{
tbx_sheetRows.Text = "4";
tbx_sheetCols.Text = "3";
}
else if ((string)cbx_template.SelectedItem == "8x12 multi-character style [VX MV MZ]")
{
tbx_sheetRows.Text = "8";
tbx_sheetCols.Text = "12";
}
else if ((string)cbx_template.SelectedItem == "6x9 SV Battler style [MV MZ]")
{
tbx_sheetRows.Text = "6";
tbx_sheetCols.Text = "9";
}
else if ((string)cbx_template.SelectedItem == "")
{
cbx_template.SelectedItem = "Custom";
}
if ((string)cbx_template.SelectedItem == "Custom")
{
tbx_sheetRows.ReadOnly = false;
tbx_sheetCols.ReadOnly = false;
}
else
{
tbx_sheetRows.ReadOnly = true;
tbx_sheetCols.ReadOnly = true;
}
}
}
}