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 pathL2MapSprite.cs
303 lines (243 loc) · 8.6 KB
/
L2MapSprite.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
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
using System;
using System.Collections.Generic;
using System.Drawing;
using System.IO;
using System.Windows.Forms;
namespace LEdit
{
/*
* Lufia 2 - MapSprite Class
*/
public class L2MapSprite
{
#region STATIC
public const byte Bank = 0xDF;
public const int Count = 0xFB;
public const long PalOffset = 0xF7EB9;
public const long TableOffset = 0x2FF000;
static SNESPalette[] MSPal = new SNESPalette[8];
static L2MapSprite[] MS = new L2MapSprite[Count];
public static SNESPalette[] GetPalettes()
{
return MSPal;
}
public static SNESPalette GetPalette(int n)
{
if (n >= 0 && n < 8)
return MSPal[n];
else return
null;
}
public static L2MapSprite Get(int n)
{
if (n >= 0 && n < Count)
return MS[n];
else
return null;
}
public static void Set(int n, L2MapSprite sprite)
{
if (n >= 0 && n < Count)
MS[n] = sprite;
}
public static void InitROM(BinaryReader br)
{
br.BaseStream.Seek(PalOffset, SeekOrigin.Begin);
for (int i = 0; i < 8; i++) MSPal[i] = new SNESPalette(br);
SNESExLoROMAddress rom_addr = new SNESExLoROMAddress();
br.BaseStream.Seek(TableOffset, SeekOrigin.Begin);
for (int i = 0; i < Count; i++)
{
rom_addr.Set(Bank, br.ReadUInt16());
long ret_addr = br.BaseStream.Position;
br.BaseStream.Seek(rom_addr.ToPCAddress(), SeekOrigin.Begin);
MS[i] = new L2MapSprite(br);
br.BaseStream.Seek(ret_addr, SeekOrigin.Begin);
}
}
#endregion
byte flags;
byte paln;
SNESExLoROMAddress tl_addr;
int ntiles;
SNESTileset tl;
public L2MapSprite() { }
public L2MapSprite(BinaryReader br)
{
this.FromStream(br);
}
public void FromStream(BinaryReader br)
{
flags = br.ReadByte();
paln = (byte)(br.ReadByte() & 0x7);
ushort offs = br.ReadUInt16();
byte bnk = br.ReadByte();
tl_addr = new SNESExLoROMAddress(bnk, offs);
long ret_addr = br.BaseStream.Position;
br.BaseStream.Seek(tl_addr.ToPCAddress(), SeekOrigin.Begin);
if ((flags & 0x2) != 0) ntiles = 0x10;
else if ((flags & 0x1) != 0) ntiles = 0x8;
else ntiles = 0x4;
if ((flags & 0x8) != 0) ntiles *= 2;
else if ((flags & 0x10) != 0) ntiles *= 6;
tl = new SNESTileset(br, ntiles);
br.BaseStream.Seek(ret_addr, SeekOrigin.Begin);
}
public void ToStream(BinaryWriter bw)
{
bw.Write(flags);
bw.Write(paln);
tl_addr.ToStream(bw);
}
public void Draw(Graphics dst, int dx, int dy)
{ this.Draw(dst, dx, dy, 1, paln); }
public void Draw(Graphics dst, int dx, int dy, int zoom)
{ this.Draw(dst, dx, dy, zoom, paln); }
public void Draw(Graphics dst, int dx, int dy, int zoom, byte palette)
{
int n, nx, ny, fx, fy, fn, nf;
nx = ((flags & 0x2) != 0) ? 4 : 2;
ny = ((flags & 0x1) != 0) ? 4 : 2;
fx = nx; fy = ny;
fn = fx * fy;
if ((flags & 0x8) != 0) nf = 2;
else if ((flags & 0x10) != 0) nf = 6;
else nf = 1;
nx *= nf;
if ((nx * ny) == ntiles)
{
for (int f = 0; f < nf; f++)
{
for (int y = 0; y < fy; y++)
{
for (int x = 0; x < fx; x++)
{
n = f * fn + (y & 1) * (fn >> 1) + (y >> 1) * fx + x;
tl.tiles[n].Draw(dst,
MSPal[(int)palette],
dx + ((((f * fx) + x) * zoom) << 3),
dy + ((y * zoom) << 3),
zoom,
true);
}
}
}
}
}
public void DrawFrame(Graphics dst, int frame, int dx, int dy)
{
DrawFrame(dst, frame, dx, dy, 1, paln);
}
public void DrawFrame(Graphics dst, int frame, int dx, int dy, int zoom)
{
DrawFrame(dst, frame, dx, dy, zoom, paln);
}
public void DrawFrame(Graphics dst, int frame, int dx, int dy, int zoom, byte palette)
{
int n, nx, ny, fx, fy, fn, nf;
nx = ((flags & 0x2) != 0) ? 4 : 2;
ny = ((flags & 0x1) != 0) ? 4 : 2;
fx = nx; fy = ny;
fn = fx * fy;
if ((flags & 0x8) != 0) nf = 2;
else if ((flags & 0x10) != 0) nf = 6;
else nf = 1;
if (frame < 0) frame = 0;
if (frame > nf) frame = nf - 1;
nx *= nf;
if ((nx * ny) == ntiles)
{
for (int y = 0; y < fy; y++)
{
for (int x = 0; x < fx; x++)
{
n = frame * fn + (y & 1) * (fn >> 1) + (y >> 1) * fx + x;
tl.tiles[n].Draw(dst,
MSPal[(int)palette],
dx + ((x * zoom) << 3),
dy + ((y * zoom) << 3),
zoom,
true);
}
}
}
}
public void ExportBMP(FileInfo File)
{
this.ExportBMP(File, paln);
}
public void ExportBMP(FileInfo File, byte palette)
{
int n, nx, ny, fx, fy, fn, nf;
nx = ((flags & 0x2) != 0) ? 4 : 2;
ny = ((flags & 0x1) != 0) ? 4 : 2;
fx = nx; fy = ny;
fn = fx * fy;
if ((flags & 0x8) != 0) nf = 2;
else if ((flags & 0x10) != 0) nf = 6;
else nf = 1;
nx *= nf;
if ((nx * ny) == ntiles)
{
//Draw to array
byte[,] p = new byte[nx << 3, ny << 3];
for (int f = 0; f < nf; f++)
{
for (int y = 0; y < fy; y++)
{
for (int x = 0; x < fx; x++)
{
n = f * fn + (y & 1) * (fn >> 1) + (y >> 1) * fx + x;
tl.tiles[n].To2DArray(p, ((f * fx) + x) << 3, y << 3);
}
}
}
//Save
BMP4bppIO.Export2DArray(
File, p, MSPal[(int)palette], nx << 3, ny << 3);
}
}
public void ImportBMP(FileInfo File)
{
int n, nx, ny, fx, fy, fn, nf;
nx = ((flags & 0x2) != 0) ? 4 : 2;
ny = ((flags & 0x1) != 0) ? 4 : 2;
fx = nx; fy = ny;
fn = fx * fy;
if ((flags & 0x8) != 0) nf = 2;
else if ((flags & 0x10) != 0) nf = 6;
else nf = 1;
nx *= nf;
if ((nx * ny) == ntiles)
{
//Load
byte[,] p = new byte[nx << 3, ny << 3];
if (BMP4bppIO.Import2DArray(File, p))
{
//Read from array
for (int f = 0; f < nf; f++)
{
for (int y = 0; y < fy; y++)
{
for (int x = 0; x < fx; x++)
{
n = f * fn + (y & 1) * (fn >> 1) + (y >> 1) * fx + x;
tl.tiles[n].From2DArray(p, ((f * fx) + x) << 3, y << 3);
}
}
}
}
else MessageBox.Show("ERROR!!!");
}
}
public int TileCount { get { return ntiles; } }
public SNESTileset Tileset { get { return tl; } }
public byte Flags { get { return flags; } set { flags = value; } }
public SNESExLoROMAddress TileAddress { get { return tl_addr; } set { tl_addr = value; } }
public byte Palette
{
get { return paln; }
set { paln = (byte)(value & 0x7); }
}
}
}