This repository has been archived by the owner on Jul 13, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMapSpriteEditForm.cs
276 lines (221 loc) · 7.89 KB
/
MapSpriteEditForm.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
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
using System;
using System.Drawing;
using System.IO;
using System.Windows.Forms;
namespace LEdit
{
public partial class MapSpriteEditForm : Form
{
static GradientBuffer preview_gradient;
MainForm parent;
bool bNoEvents;
SNESPalette[] pal;
int sel;
L2MapSprite ms_sel;
public MapSpriteEditForm(MainForm ParentForm, int Selection)
{
bNoEvents = true;
InitializeComponent();
parent = ParentForm;
//Gradient
preview_gradient = new GradientBuffer(
pb.Width, pb.Height,
SystemColors.GradientActiveCaption,
SystemColors.ActiveCaption,
GradientBuffer.GradientDirection.Vertical);
//Palettes
pal = L2MapSprite.GetPalettes();
//List
lstMS.Items.Clear();
for (int i = 0; i < 0xFB; i++)
lstMS.Items.Add("0x" + i.ToString("X2") + " - " + L2ROM.GetMapSpriteName(i));
sel = -1;
ms_sel = null;
exportBMPToolStripMenuItem.Enabled = false;
importBMPToolStripMenuItem.Enabled = false;
importPalToolStripMenuItem.Enabled = false;
bNoEvents = false;
//Select
lstMS.SelectedIndex = Selection;
}
void MapSpriteEditFormClosed(object sender, FormClosedEventArgs e)
{
//Notify main window
parent.monsterspriteEditClosed();
}
void LstMSSelectedIndexChanged(object sender, EventArgs e)
{
bNoEvents = true;
exportBMPToolStripMenuItem.Enabled = true;
importBMPToolStripMenuItem.Enabled = true;
importPalToolStripMenuItem.Enabled = true;
sel = lstMS.SelectedIndex;
ms_sel = L2MapSprite.Get(sel);
if (ms_sel != null)
{
txtName.Text = L2ROM.GetMapSpriteName(sel);
byte flags = ms_sel.Flags;
flag01.CheckState = ((flags & 0x01) != 0) ?
CheckState.Checked :
CheckState.Unchecked;
flag02.CheckState = ((flags & 0x02) != 0) ?
CheckState.Checked :
CheckState.Unchecked;
flag04.CheckState = ((flags & 0x04) != 0) ?
CheckState.Checked :
CheckState.Unchecked;
flag08.CheckState = ((flags & 0x08) != 0) ?
CheckState.Checked :
CheckState.Unchecked;
flag10.CheckState = ((flags & 0x10) != 0) ?
CheckState.Checked :
CheckState.Unchecked;
flag20.CheckState = ((flags & 0x20) != 0) ?
CheckState.Checked :
CheckState.Unchecked;
flag40.CheckState = ((flags & 0x40) != 0) ?
CheckState.Checked :
CheckState.Unchecked;
flag80.CheckState = ((flags & 0x80) != 0) ?
CheckState.Checked :
CheckState.Unchecked;
udPal.Value = ms_sel.Palette;
txtAddr.Text = ms_sel.TileAddress.ToString();
txtROM.Text = "0x" + ms_sel.TileAddress.ToPCAddress().ToString("X6");
pbpal.Refresh();
pb.Refresh();
}
bNoEvents = false;
}
void PbPaint(object sender, PaintEventArgs e)
{
//Gradient
preview_gradient.Draw(e.Graphics, 0, 0);
if (sel >= 0)
{
//MapSprite
ms_sel.Draw(e.Graphics, 1, 1, 2, (byte)udPal.Value);
}
//Control outline
e.Graphics.DrawRectangle(new Pen(SystemColors.ControlDark),
new Rectangle(0, 0, pb.Width - 1, pb.Height - 1));
}
void PbpalPaint(object sender, PaintEventArgs e)
{
if (sel >= 0)
{
for (int i = 0; i < 16; i++)
e.Graphics.FillRectangle(
new SolidBrush(pal[(int)udPal.Value].GetColor((byte)i)),
new Rectangle(i << 3, 0, (i + 1) << 3, pbpal.Height));
}
e.Graphics.DrawRectangle(new Pen(SystemColors.ControlDark),
new Rectangle(0, 0, pbpal.Width - 1, pbpal.Height - 1));
}
void UdPalValueChanged(object sender, EventArgs e)
{
if(!bNoEvents)
{
pbpal.Refresh();
pb.Refresh();
}
}
void GUI_ExportTilemap()
{
if (sel >= 0)
{
savedlg.FileName =
"MapSprite_0x" + sel.ToString("X2") +
"_0x" + ms_sel.TileAddress.ToPCAddress().ToString("X6") +
((L2ROM.GetMapSpriteName(sel).Length > 0) ? "_" + L2ROM.GetMapSpriteName(sel) : String.Empty) +
".bmp";
if (savedlg.ShowDialog() == DialogResult.OK)
{
FileInfo File = new FileInfo(savedlg.FileName);
if (File.Exists)
File.Delete();
ms_sel.ExportBMP(File, (byte)udPal.Value);
}
}
}
void GUI_ImportTilemap()
{
if(sel>=0)
{
opendlg.FileName=String.Empty;
if(opendlg.ShowDialog()==DialogResult.OK)
ms_sel.ImportBMP(new FileInfo(opendlg.FileName));
pb.Refresh();
}
}
void GUI_ImportPalette()
{
if (sel >= 0)
{
opendlg.FileName = String.Empty;
if (opendlg.ShowDialog() == DialogResult.OK)
{
pal[(int)udPal.Value] = BMP4bppIO.ImportPalette(new FileInfo(opendlg.FileName));
}
pbpal.Refresh();
pb.Refresh();
}
}
void ExportBMPToolStripMenuItemClick(object sender, EventArgs e)
{
GUI_ExportTilemap();
}
void ImportBMPToolStripMenuItemClick(object sender, EventArgs e)
{
GUI_ImportTilemap();
}
void ImportPalToolStripMenuItemClick(object sender, EventArgs e)
{
GUI_ImportPalette();
}
void BMPexportierenToolStripMenuItemClick(object sender, EventArgs e)
{
GUI_ExportTilemap();
}
void BMPImportierenToolStripMenuItemClick(object sender, EventArgs e)
{
GUI_ImportTilemap();
}
private void MapSpriteEditForm_Load(object sender, EventArgs e)
{
}
private void aus16FarbenBitmapToolStripMenuItem_Click(object sender, EventArgs e)
{
GUI_ImportPalette();
}
private void groupBox2_Enter(object sender, EventArgs e)
{
}
private void iToolStripMenuItem_Click(object sender, EventArgs e)
{
if(ms_sel != null)
{
if (
MessageBox.Show(
"Sicher?",
"Tilemap in ROM einfügen",
MessageBoxButtons.YesNo,
MessageBoxIcon.Exclamation) == DialogResult.Yes)
{
FileStream fs = new FileStream(L2ROM.FileName, FileMode.Open, FileAccess.Write);
BinaryWriter bw = new BinaryWriter(fs);
//TileMap
bw.Seek((int)ms_sel.TileAddress.ToPCAddress(), SeekOrigin.Begin);
ms_sel.Tileset.ToStream(bw);
bw.Close();
fs.Close();
MessageBox.Show(
"Tilemap erfolgreich ins Spiel eingefügt!",
"Erfolg",
MessageBoxButtons.OK,
MessageBoxIcon.Information);
}
}
}
}
}