-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbgtilemap.pas
More file actions
518 lines (449 loc) · 12.8 KB
/
Copy pathbgtilemap.pas
File metadata and controls
518 lines (449 loc) · 12.8 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
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
unit bgTileMap;
{$mode objfpc}{$H+}
interface
uses
Classes, SysUtils, Types, IniFiles,
BGRABitmap, BGRABitmapTypes;
type
{ TBGMap }
TBGMap = class
private
FWidth: NativeInt;
FHeight: NativeInt;
FTileWidth: NativeInt;
FTileHeight: NativeInt;
FLayerCount: NativeInt;
FBackgroundColor: TBGRAPixel;
procedure SetFBackgroundColor(AValue: TBGRAPixel);
procedure SetFHeight(AValue: NativeInt);
procedure SetFLayerCount(AValue: NativeInt);
procedure SetFTileHeight(AValue: NativeInt);
procedure SetFTileWidth(AValue: NativeInt);
procedure SetFWidth(AValue: NativeInt);
public
constructor Create;
constructor Create(MemIniFile: TMemIniFile);
destructor Destroy; override;
public
procedure LoadFromINIFile(MemIniFile: TMemIniFile);
procedure SaveToINIFile(MemIniFile: TMemIniFile);
public
property BackgroundColor: TBGRAPixel read FBackgroundColor write SetFBackgroundColor;
published
property Width: NativeInt read FWidth write SetFWidth;
property Height: NativeInt read FHeight write SetFHeight;
property TileWidth: NativeInt read FTileWidth write SetFTileWidth;
property TileHeight: NativeInt read FTileHeight write SetFTileHeight;
property LayerCount: NativeInt read FLayerCount write SetFLayerCount;
end;
{ TBGTileSet }
TBGTileSet = class
private
FBitmap: TBGRABitmap;
FSource: string;
FTileWidth: NativeInt;
FTileHeight: NativeInt;
procedure SetFBitmap(AValue: TBGRABitmap);
procedure SetFSource(AValue: string);
procedure SetFTileHeight(AValue: NativeInt);
procedure SetFTileWidth(AValue: NativeInt);
public
constructor Create;
constructor Create(MemIniFile: TMemIniFile);
destructor Destroy; override;
public
procedure LoadFromINIFile(MemIniFile: TMemIniFile);
procedure SaveToINIFile(MemIniFile: TMemIniFile);
public
property Bitmap: TBGRABitmap read FBitmap write SetFBitmap;
published
property Source: string read FSource write SetFSource;
property TileWidth: NativeInt read FTileWidth write SetFTileWidth;
property TileHeight: NativeInt read FTileHeight write SetFTileHeight;
end;
{ TBGLayer }
TBGLayer = class
private
FOpacity: real;
FVisible: boolean;
FData: TStringList;
procedure SetFData(AValue: TStringList);
procedure SetFOpacity(AValue: real);
procedure SetFVisible(AValue: boolean);
public
constructor Create;
constructor Create(MemIniFile: TMemIniFile; Index: NativeInt);
destructor Destroy; override;
public
procedure LoadFromINIFile(MemIniFile: TMemIniFile; Index: NativeInt);
procedure SaveToINIFile(MemIniFile: TMemIniFile; Index: NativeInt);
published
property Opacity: real read FOpacity write SetFOpacity;
property Visible: boolean read FVisible write SetFVisible;
property Data: TStringList read FData write SetFData;
end;
TBGLayers = array of TBGLayer;
TRects = array of TRect;
{ TBGTileMap }
TBGTileMap = class
private
FMap: TBGMap;
FTileSet: TBGTileSet;
FLayers: TBGLayers;
FRects: TRects;
procedure SetFLayers(AValue: TBGLayers);
procedure SetFMap(AValue: TBGMap);
procedure SetFTileSet(AValue: TBGTileSet);
procedure InitFRects;
public
constructor Create;
constructor Create(FileName: string);
destructor Destroy; override;
public
procedure LoadFromINIFile(FileName: string);
procedure SaveToINIFile(FileName: string);
public
procedure DrawMap(Bitmap: TBGRABitmap);
procedure DrawTile(Bitmap: TBGRABitmap; x, y, id: NativeInt; opacity: byte);
published
property Map: TBGMap read FMap write SetFMap;
property TileSet: TBGTileSet read FTileSet write SetFTileSet;
property Layers: TBGLayers read FLayers write SetFLayers;
end;
implementation
{ TBGTileMap }
procedure TBGTileMap.SetFLayers(AValue: TBGLayers);
begin
if FLayers = AValue then
Exit;
FLayers := AValue;
end;
procedure TBGTileMap.SetFMap(AValue: TBGMap);
begin
if FMap = AValue then
Exit;
FMap := AValue;
end;
procedure TBGTileMap.SetFTileSet(AValue: TBGTileSet);
begin
if FTileSet = AValue then
Exit;
FTileSet := AValue;
end;
procedure TBGTileMap.InitFRects;
var
x, y, n, tw, th: NativeInt;
begin
tw := FTileSet.Bitmap.Width div FTileSet.FTileWidth;
th := FTileSet.Bitmap.Height div FTileSet.FTileHeight;
SetLength(FRects, tw * th);
n := 0;
for y := 0 to th - 1 do
begin
for x := 0 to tw - 1 do
begin
FRects[n] := Rect(x * FTileSet.TileWidth, y * FTileSet.TileHeight,
x * FTileSet.TileWidth + FTileSet.TileWidth, y * FTileSet.TileHeight +
FTileSet.TileHeight);
Inc(n);
end;
end;
end;
constructor TBGTileMap.Create;
begin
inherited Create;
FMap := TBGMap.Create;
FTileSet := TBGTileSet.Create;
end;
constructor TBGTileMap.Create(FileName: string);
begin
Create;
LoadFromINIFile(FileName);
InitFRects;
end;
destructor TBGTileMap.Destroy;
var
i: NativeInt;
begin
FMap.Free;
FTileSet.Free;
for i := 0 to High(FLayers) do
if FLayers[i] <> nil then
FLayers[i].Free;
inherited Destroy;
end;
procedure TBGTileMap.LoadFromINIFile(FileName: string);
var
ini: TMemIniFile;
i: NativeInt;
begin
ini := TMemIniFile.Create(FileName);
FMap.LoadFromINIFile(ini);
FTileSet.LoadFromINIFile(ini);
if FMap.LayerCount <> 0 then
begin
SetLength(FLayers, FMap.LayerCount);
for i := 0 to FMap.LayerCount - 1 do
FLayers[i] := TBGLayer.Create(ini, i);
end;
InitFRects;
ini.Free;
end;
procedure TBGTileMap.SaveToINIFile(FileName: string);
var
ini: TMemIniFile;
i: NativeInt;
begin
ini := TMemIniFile.Create(FileName);
FMap.SaveToINIFile(ini);
FTileSet.SaveToINIFile(ini);
for i := 0 to High(FLayers) do
FLayers[i].SaveToINIFile(ini, i);
ini.UpdateFile;
ini.Free;
end;
procedure TBGTileMap.DrawMap(Bitmap: TBGRABitmap);
var
x, y, z, n, id: NativeInt;
opacity: byte;
begin
if FMap.BackgroundColor.alpha <> 0 then
Bitmap.Fill(FMap.BackgroundColor);
for z := 0 to High(FLayers) do
begin
if FLayers[z].Visible then
begin
opacity := round(255 * FLayers[z].Opacity);
n := 0;
for y := 0 to FMap.Height - 1 do
begin
for x := 0 to FMap.Width - 1 do
begin
{$ifdef cpu64}
id := StrToInt64(FLayers[z].Data[n]);
{$else}
id := StrToInt(FLayers[z].Data[n]);
{$endif}
if id <> -1 then
DrawTile(Bitmap, x * FMap.TileWidth, y * FMap.TileHeight, id, opacity);
Inc(n);
end; // x
end; // y
end; // layers[z] visible
end; // layers
end;
procedure TBGTileMap.DrawTile(Bitmap: TBGRABitmap; x, y, id: NativeInt; opacity: byte);
var
oldClip, dest, fullDest: TRect;
begin
oldClip := Bitmap.ClipRect;
dest := RectWithSize(x, y, FMap.TileWidth, FMap.TileHeight);
if not IntersectRect(dest, dest, oldClip) then
exit;
Bitmap.ClipRect := dest;
fullDest := RectWithSize(x - FRects[id].Left * FMap.TileWidth div
FTileSet.TileWidth, y - FRects[id].Top * FMap.TileHeight div
FTileSet.TileHeight, FTileSet.Bitmap.Width * FMap.TileWidth div
FTileSet.TileWidth, FTileSet.Bitmap.Height * FMap.TileHeight div
FTileSet.TileHeight);
Bitmap.StretchPutImage(fullDest, FTileSet.Bitmap, dmDrawWithTransparency, opacity);
Bitmap.ClipRect := oldClip;
end;
{ TBGLayer }
procedure TBGLayer.SetFData(AValue: TStringList);
begin
if FData = AValue then
Exit;
FData := AValue;
end;
procedure TBGLayer.SetFOpacity(AValue: real);
begin
if FOpacity = AValue then
Exit;
FOpacity := AValue;
end;
procedure TBGLayer.SetFVisible(AValue: boolean);
begin
if FVisible = AValue then
Exit;
FVisible := AValue;
end;
constructor TBGLayer.Create;
begin
inherited Create;
FData := TStringList.Create;
end;
constructor TBGLayer.Create(MemIniFile: TMemIniFile; Index: NativeInt);
begin
Create;
LoadFromINIFile(MemIniFile, Index);
end;
destructor TBGLayer.Destroy;
begin
FData.Free;
inherited Destroy;
end;
procedure TBGLayer.LoadFromINIFile(MemIniFile: TMemIniFile; Index: NativeInt);
begin
FOpacity := MemIniFile.ReadFloat('Layer' + IntToStr(Index), 'Opacity', 1);
FVisible := MemIniFile.ReadBool('Layer' + IntToStr(Index), 'Visible', True);
FData.CommaText := MemIniFile.ReadString('Layer' + IntToStr(Index), 'Data', '');
end;
procedure TBGLayer.SaveToINIFile(MemIniFile: TMemIniFile; Index: NativeInt);
begin
MemIniFile.WriteFloat('Layer' + IntToStr(Index), 'Opacity', FOpacity);
MemIniFile.WriteBool('Layer' + IntToStr(Index), 'Visible', FVisible);
MemIniFile.WriteString('Layer' + IntToStr(Index), 'Data', FData.CommaText);
end;
{ TBGTileSet }
procedure TBGTileSet.SetFBitmap(AValue: TBGRABitmap);
begin
if FBitmap = AValue then
Exit;
FBitmap := AValue;
end;
procedure TBGTileSet.SetFSource(AValue: string);
begin
if FSource = AValue then
Exit;
FSource := AValue;
end;
procedure TBGTileSet.SetFTileHeight(AValue: NativeInt);
begin
if FTileHeight = AValue then
Exit;
FTileHeight := AValue;
end;
procedure TBGTileSet.SetFTileWidth(AValue: NativeInt);
begin
if FTileWidth = AValue then
Exit;
FTileWidth := AValue;
end;
constructor TBGTileSet.Create;
begin
inherited Create;
FBitmap := TBGRABitmap.Create;
end;
constructor TBGTileSet.Create(MemIniFile: TMemIniFile);
begin
Create;
LoadFromINIFile(MemIniFile);
end;
destructor TBGTileSet.Destroy;
begin
FBitmap.Free;
inherited Destroy;
end;
procedure TBGTileSet.LoadFromINIFile(MemIniFile: TMemIniFile);
begin
FSource := MemIniFile.ReadString('TileSet', 'Source', '');
FBitmap.LoadFromFile(FSource);
{$ifdef cpu64}
FTileWidth := MemIniFile.ReadInt64('TileSet', 'TileWidth', 0);
FTileHeight := MemIniFile.ReadInt64('TileSet', 'TileHeight', 0);
{$else}
FTileWidth := MemIniFile.ReadInteger('TileSet', 'TileWidth', 0);
FTileHeight := MemIniFile.ReadInteger('TileSet', 'TileHeight', 0);
{$endif}
end;
procedure TBGTileSet.SaveToINIFile(MemIniFile: TMemIniFile);
begin
MemIniFile.WriteString('TileSet', 'Source', FSource);
{$ifdef cpu64}
MemIniFile.WriteInt64('TileSet', 'TileWidth', FTileWidth);
MemIniFile.WriteInt64('TileSet', 'TileHeight', FTileHeight);
{$else}
MemIniFile.WriteInteger('TileSet', 'TileWidth', FTileWidth);
MemIniFile.WriteInteger('TileSet', 'TileHeight', FTileHeight);
{$endif}
end;
{ TBGMap }
procedure TBGMap.SetFBackgroundColor(AValue: TBGRAPixel);
begin
if FBackgroundColor = AValue then
Exit;
FBackgroundColor := AValue;
end;
procedure TBGMap.SetFHeight(AValue: NativeInt);
begin
if FHeight = AValue then
Exit;
FHeight := AValue;
end;
procedure TBGMap.SetFLayerCount(AValue: NativeInt);
begin
if FLayerCount = AValue then
Exit;
FLayerCount := AValue;
end;
procedure TBGMap.SetFTileHeight(AValue: NativeInt);
begin
if FTileHeight = AValue then
Exit;
FTileHeight := AValue;
end;
procedure TBGMap.SetFTileWidth(AValue: NativeInt);
begin
if FTileWidth = AValue then
Exit;
FTileWidth := AValue;
end;
procedure TBGMap.SetFWidth(AValue: NativeInt);
begin
if FWidth = AValue then
Exit;
FWidth := AValue;
end;
constructor TBGMap.Create;
begin
inherited Create;
end;
constructor TBGMap.Create(MemIniFile: TMemIniFile);
begin
Create;
LoadFromINIFile(MemIniFile);
end;
destructor TBGMap.Destroy;
begin
inherited Destroy;
end;
procedure TBGMap.LoadFromINIFile(MemIniFile: TMemIniFile);
begin
FBackgroundColor := StrToBGRA(
MemIniFile.ReadString('Map', 'BackgroundColor', 'rgba(0,0,0,255)'), BGRABlack);
{$ifdef cpu64}
FWidth := MemIniFile.ReadInt64('Map', 'Width', 0);
FHeight := MemIniFile.ReadInt64('Map', 'Height', 0);
FTileWidth := MemIniFile.ReadInt64('Map', 'TileWidth', 0);
FTileHeight := MemIniFile.ReadInt64('Map', 'TileHeight', 0);
FLayerCount := MemIniFile.ReadInt64('Map', 'LayerCount', 0);
{$else}
FWidth := MemIniFile.ReadInteger('Map', 'Width', 0);
FHeight := MemIniFile.ReadInteger('Map', 'Height', 0);
FTileWidth := MemIniFile.ReadInteger('Map', 'TileWidth', 0);
FTileHeight := MemIniFile.ReadInteger('Map', 'TileHeight', 0);
FLayerCount := MemIniFile.ReadInteger('Map', 'LayerCount', 0);
{$endif}
end;
procedure TBGMap.SaveToINIFile(MemIniFile: TMemIniFile);
begin
MemIniFile.WriteString('Map', 'BackgroundColor', BGRAToStr(FBackgroundColor));
{$ifdef cpu64}
MemIniFile.WriteInt64('Map', 'Width', FWidth);
MemIniFile.WriteInt64('Map', 'Height', FHeight);
MemIniFile.WriteInt64('Map', 'TileWidth', FTileWidth);
MemIniFile.WriteInt64('Map', 'TileHeight', FTileHeight);
MemIniFile.WriteInt64('Map', 'LayerCount', FLayerCount);
{$else}
MemIniFile.WriteInteger('Map', 'Width', FWidth);
MemIniFile.WriteInteger('Map', 'Height', FHeight);
MemIniFile.WriteInteger('Map', 'TileWidth', FTileWidth);
MemIniFile.WriteInteger('Map', 'TileHeight', FTileHeight);
MemIniFile.WriteInteger('Map', 'LayerCount', FLayerCount);
{$endif}
end;
initialization
{ Change DecimalSeparator to a single dot, needed for streaming Float values }
DecimalSeparator := '.';
end.