-
Notifications
You must be signed in to change notification settings - Fork 3
/
RLE.pas
457 lines (376 loc) · 9.6 KB
/
RLE.pas
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
{
procedure UnRle4BT(source: TQFile; out dest: TQFile; packedSize: Integer);
const unitSize = 1;
var i, k: Integer;
count: Integer;
val: Byte;
begin
i := 0;
while (i<packedSize-1) do begin
count := source.readU;
if (count <> 173) then begin //uncompressed
dest.writeU(count);
inc(i, unitSize);
end
else begin
count := source.readU;
val := source.readU;
for k:=0 to count-1 do dest.writeU(val);
inc(i, unitSize+1);
end;
end;
end;
procedure UnRleBMP8(source: TQFile; out dest: TQFile; packedSize: Integer; width, height: Integer);
var i: Integer;
x,y: Integer;
count, marker: Integer;
byt: Byte;
procedure moveXY(newX, newY: Integer);
begin
dest.position := (newX - x) + (newY - y)*width;
x := newX;
y := newY;
end;
begin
i := 0;
x := 0;
y := 0;
dest.writeRepeat(0, width*height);
dest.position := 0;
while (i<packedSize-1) do begin
count := source.readU;
if (count > 0) then begin //RLE-compressed
dest.copyRepeat(source, 1, count);
inc(i, 2);
inc(x, count);
end
else begin //uncompressed
marker := source.readU;
if marker = 0 then begin //end of scanline
moveXY(0, y+1);
inc(i, 1);
end
else if marker = 1 then begin //EOF
break;
end
else if marker = 2 then begin //move X,Y
moveXY(x+source.readU, y+source.readU);
end
else begin //uncompressed
dest.writeRepeat(byt, marker); //TODO: skad byt?
if marker mod 2 = 1 then source.readU; //padding byte
end;
end;
end;
end;
}
procedure UnRle_LBM(src: TStream; dest: TStream; packedSize: Integer);
const unitSize = 1;
var i,j: Integer;
count: Byte;
count2: ShortInt absolute count;
buff: array of Byte;
begin
setLength(Buff, unitSize);
i := 0;
while (i<packedSize-1) do begin
count := src.ReadByte;
if (count2 >= 0) then begin //uncompressed
count2 := count2+1;
dest.copyFrom(src, unitSize*count2);
inc(i, unitSize*count2+1);
end
else if count2 = -128 then begin
inc(i, 1);
end
else begin
count2 := -count2+1;
Src.Read(buff[0], unitSize);
for j:=0 to count2-1 do
Dest.Write(Buff[0], unitSize);
inc(i, unitSize+1);
end;
end;
end;
procedure UnRle_PGC(src: TStream; dest: TStream; packedSize: Integer);
const unitSize = 1;
var i,j: Integer;
count: Integer;
buff: array of Byte;
begin
setLength(Buff, unitSize);
i := 0;
while (i<packedSize-1) do begin
count := src.ReadByte;
if (count < 128) then begin //uncompressed
count := count;
dest.copyFrom(src, unitSize*count);
inc(i, unitSize*count+1);
end
else begin
count := count-128;
Src.Read(buff[0], unitSize);
for j:=0 to count-1 do
Dest.Write(Buff[0], unitSize);
inc(i, unitSize+1);
end;
end;
end;
procedure UnRle_CPR(src: TStream; dest: TStream; packedSize: Integer);
const unitSize = 1;
var i,j: Integer;
count: Integer;
buff: array of Byte;
begin
setLength(Buff, unitSize);
i := 0;
while (i<packedSize-1) do begin
if i > 9000 then break; //TODO: rather uncecessray
count := src.ReadByte;
if (count < 128) then begin
count := count;
if count = 0 then begin
count := SwapEndian(src.ReadWord);
inc(i, 2);
end;
Src.Read(buff[0], unitSize);
for j:=0 to count-1 do
Dest.Write(Buff[0], unitSize);
inc(i, unitSize+1);
end
else begin //uncompressed
count := count-128;
if count = 0 then begin
count := SwapEndian(src.ReadWord);
inc(i, 2);
end;
dest.copyFrom(src, unitSize*count);
inc(i, unitSize*count+1);
end;
end;
end;
procedure Unrle_PAC(Src: TStream; Dest: TStream; idByte, packByte, specialByte: Byte);
var count: Integer;
i: Integer;
b: Byte;
begin
while (Src.position < Src.size) do begin
b := Src.ReadByte;
if b = idByte then begin
count := Src.ReadByte;
for i:=0 to count do begin
Dest.Write(packByte, 1);
end;
end
else if b = specialByte then begin
b := Src.ReadByte;
count := Src.ReadByte;
for i:=0 to count do begin //or maybe count-1
Dest.Write(b, 1);
end;
end
else begin
Dest.Write(b, 1);
end;
end;
end;
procedure Unrle_TGA(Src: TStream; Dest: TStream; packedSize: Integer; unitSize: Integer);
var i,j,k: Integer;
A,B,C: Byte;
count: Integer;
Buff: array of Byte;
begin
i := 0;
SetLength(Buff, unitSize);
while i<packedSize-1 do begin
count := Src.ReadByte;
if count < 128 then begin //uncompressed
count := count+1;
Src.Read(Buff[0], unitSize);
for j:=0 to count-1 do
Dest.Write(Buff[0], unitSize);
Inc(i, unitSize*count+1);
end
else begin
count := count-128+1;
for k:=0 to count-1 do begin
Src.Read(Buff[0], unitSize);
Dest.Write(Buff[0], unitSize);
end;
Inc(i, unitSize+1);
end;
end;
end;
procedure Unrle_RGB(Src: TStream; Dest: TStream; packedSize: Integer);
var i,j,k: Integer;
A,B,C: Byte;
unitSize: Integer;
count: Integer;
Buff: array of Byte;
begin
i := 0;
unitSize := 1;
SetLength(Buff, unitSize);
while i<packedSize-1 do begin
count := Src.ReadByte;
if count > 128 then begin //uncompressed
count := count-128; //+1
for k:=0 to count-1 do begin
Src.Read(Buff[0], unitSize);
Dest.Write(Buff[0], unitSize);
end;
Inc(i, unitSize*count+1);
end
else begin
count := count;//+1
Src.Read(Buff[0], unitSize);
for k:=0 to count-1 do begin
Dest.Write(Buff[0], unitSize);
end;
Inc(i, unitSize+1);
end;
end;
end;
procedure Unrle_PCX(Src: TStream; Dest: TStream; packedSize: Integer);
var i,j,k: Integer;
A,B,C: Byte;
buff: Byte;
count: Integer;
begin
i := 0;
j := 0;
while i<packedSize-1 do begin
count := Src.ReadByte;
if ((count and $C0) = $C0) then begin //compressed
count := (count and $3F);
buff := Src.ReadByte;
Inc(i, 2);
end
else begin
buff := count;
count := 1;
Inc(i);
end;
for k:=0 to count-1 do Dest.Write(Buff, 1);
end;
end;
procedure Unrle_CUT(Src: TStream; Dest: TStream; packedSize: Integer; unitSize: Integer);
var i,j,k: Integer;
A,B,C: Byte;
count: Integer;
Buff: array of Byte;
begin
i := 0;
SetLength(Buff, unitSize);
while i<packedSize-1 do begin
count := Src.ReadByte;
if (count < 128) then begin//uncompressed
count := count+1;
for k:=0 to count-1 do begin
Src.Read(Buff[0], unitSize);
Dest.Write(Buff[0], unitSize);
end;
Inc(i, unitSize*count+1);
end
else begin
count := count-128+1;
Src.Read(Buff[0], unitSize);
for k:=0 to count-1 do begin
Dest.Write(Buff[0], unitSize);
end;
Inc(i, unitSize+1);
end;
end;
end;
procedure Unrle_GG(Src: TStream; Dest: TStream; packedSize: Integer);
var i,j: Integer;
A,B,C: Byte;
begin
i := 0;
while i<packedSize do begin
A := Src.ReadByte;
Inc(i);
if A = 254 then begin
B := Src.ReadByte;
C := Src.ReadByte;
for j:=0 to C-1 do Dest.Write(B, 1);
Inc(i, 2);
end
else begin //uncompressed
dest.Write(A, 1);
end;
end;
end;
procedure Unrle_AMI(Src: TStream; Dest: TStream; packedSize: Integer);
var i,j: Integer;
A,B,C: Byte;
begin
i := 0;
while i<packedSize do begin
A := Src.ReadByte;
Inc(i);
if A = 194 then begin
B := Src.ReadByte;
if B = 0 then Exit; //EOF
C := Src.ReadByte;
for j:=0 to B-1 do Dest.Write(C, 1);
Inc(i, 2);
end
else begin //uncompressed
Dest.Write(A, 1);
end;
end;
end;
procedure Unrle_DLP(Src: TStream; Dest: TStream; packedSize: Integer; escapeByte: Byte);
var i,j: Integer;
A,B,C: Byte;
begin
i := 0;
while i<packedSize do begin
A := Src.ReadByte;
Inc(i);
if A = escapeByte then begin
B := Src.ReadByte;
C := Src.ReadByte;
for j:=0 to B-1 do Dest.Write(C, 1);
Inc(i, 2);
end
else begin //uncompressed
Dest.Write(A, 1);
end;
end;
end;
procedure Unrle_PSD(Src: TStream; Dest: TStream; packedSize: Integer; unitSize: Integer = 1); //psd,mac
var i,j,k: Integer;
A,B,C: Byte;
Buff: array of Byte;
count: Integer;
begin
i := 0;
SetLength(Buff, unitSize);
while i<packedSize-1 do begin
count := Src.ReadByte;
if count > 127 then count := count - 256; //convert UInt8 to Int8;
if count = -128 then Inc(i)
else if count >=0 then begin //uncompressed
count := count+1;
for k:=0 to count-1 do begin
Src.Read(Buff[0], unitSize);
Dest.Write(Buff[0], unitSize);
end;
Inc(i, unitSize*count+1);
end
else begin
count := -1*count+1;
Src.Read(Buff[0], unitSize);
for k:=0 to count-1 do begin
Dest.Write(Buff[0], unitSize);
end;
Inc(i, unitSize+1);
end;
end;
end;
function hexInt(hex: String): Integer;
begin
Result := StrToInt64Def('$' + hex, 0);
end;