-
Notifications
You must be signed in to change notification settings - Fork 4
/
wmodex.pas
458 lines (359 loc) · 12.1 KB
/
wmodex.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
unit wmodex;
interface
uses SysUtils,LazFileUtils,bits,rwxgf,rmxgfcore;
type
linebuftype = array[0..2047] of byte;
procedure WriteLBMToBuffer(x,y,x2,y2 : word;var data : BufferRec); // to binary file
procedure WritePBMToBuffer(x,y,x2,y2 : word;var data : BufferRec); // to binary file
function WriteTPLBMCodeToBuffer(var data : BufferRec;x,y,x2,y2,imageid : word; imagename:string):word;
function WriteTPPBMCodeToBuffer(var data : BufferRec;x,y,x2,y2,imageid : word; imagename:string):word;
Function WriteTCLBMCodeToBuffer(var data :BufferRec;x,y,x2,y2,imageid : word; imagename:string):word;
Function WriteTCPBMCodeToBuffer(var data :BufferRec;x,y,x2,y2,imageid : word; imagename:string):word;
Function WriteLBMToCode(x,y,x2,y2,LanType : word;filename:string):word;
Function WriteLBMToFile(x,y,x2,y2 : word;filename:string):word;
Function WritePBMToCode(x,y,x2,y2,LanType : word;filename:string):word;
Function WritePBMToFile(x,y,x2,y2 : word;filename:string):word;
function BPLModeX(width : integer) : integer;
Procedure SinglePlaneToModeXPlane(var sp,mp : linebuftype; width : integer);
function GetLBMPBMImageSize(width,height : integer) : longint;
implementation
function GetLBMPBMImageSize(width,height : integer) : longint;
begin
GetLBMPBMImageSize:=width*height+2;
end;
Procedure WriteLBMBuffer(BitPlaneWriter : BitPlaneWriterProc;var data :BufferRec; x,y,x2,y2 : word);
var
width : Byte;
height : Byte;
i,j : word;
PixelCol : byte;
begin
Width:=x2-x+1;
if width < 4 then width:=4;
Height:=y2-y+1;
BitplaneWriter(width,data,1);
BitplaneWriter(height,data,1);
for j:=0 to height-1 do
begin
for i:=0 to Width-1 do
begin
pixelCol:=GetPixel(x+i,y+j);
BitplaneWriter(pixelCol,data,1);
end;
end;
BitplaneWriter(0,data,2); //flush it
end;
Procedure WritePBMBuffer(BitPlaneWriter : BitPlaneWriterProc;var data :BufferRec; x,y,x2,y2 : word);
var
width : Byte;
height : Byte;
i,j,r : word;
PixelCol : byte;
begin
Width:=x2-x+1;
if width < 4 then width:=4;
Height:=y2-y+1;
BitplaneWriter(width div 4,data,1);
BitplaneWriter(height,data,1);
for r:=0 to 3 do
begin
for j:=0 to height-1 do
begin
for i:=0 to (width div 4)-1 do
begin
pixelCol:=GetPixel(x+i*4+r,y+j);
BitplaneWriter(pixelCol,data,1);
end;
end;
end;
BitplaneWriter(0,data,2); //flush it
end;
Function WriteTPPBMCodeToBuffer(var data :BufferRec;x,y,x2,y2,imageid : word; imagename:string):word;
var
Width,Height : Word;
Size : longint;
nColors : integer;
BWriter : BitPlaneWriterProc;
begin
BWriter:=@BitplaneWriterPascalCode;
width:=x2-x+1;
height:=y2-y+1;
nColors:=GetMaxColor+1;
Size:=width*height+2;
{$I-}
BWriter(0,data,0); //init the data record
data.ArraySize:=size;
writeln(data.ftext,'(* Turbo Pascal DOS XLIB PBM Bitmap Created By Raster Master *)');
writeln(data.ftext,'(* Size= ', Size,' Width= ',width,' Height= ',height, ' Colors= ',nColors,' *)');
writeln(data.ftext,' ',Imagename,'_Size = ',size,';');
writeln(data.ftext,' ',Imagename,'_Width = ',width,';');
writeln(data.ftext,' ',Imagename,'_Height = ',height,';');
writeln(data.ftext,' ',Imagename,'_Colors = ',nColors,';');
writeln(data.ftext,' ',Imagename,'_Id = ',imageId,';');
writeln(data.ftext,' ',Imagename, ' : array[0..',size-1,'] of byte = (');
WritePBMBuffer(BWriter,data,x,y,x2,y2);
writeln(data.ftext);
{$I+}
WriteTPPBMCodeToBuffer:=IORESULT;
end;
Function WriteTPLBMCodeToBuffer(var data :BufferRec;x,y,x2,y2,imageid : word; imagename:string):word;
var
Width,Height : Word;
Size : longint;
nColors : integer;
BWriter : BitPlaneWriterProc;
begin
BWriter:=@BitplaneWriterPascalCode;
width:=x2-x+1;
height:=y2-y+1;
nColors:=GetMaxColor+1;
Size:=width*height+2;
{$I-}
BWriter(0,data,0); //init the data record
data.ArraySize:=size;
writeln(data.ftext,'(* Turbo Pascal DOS XLIB LBM Bitmap Code Created By Raster Master *)');
writeln(data.ftext,'(* Size= ', Size,' Width= ',width,' Height= ',height, ' Colors= ',nColors,' *)');
writeln(data.ftext,' ',Imagename,'_Size = ',size,';');
writeln(data.ftext,' ',Imagename,'_Width = ',width,';');
writeln(data.ftext,' ',Imagename,'_Height = ',height,';');
writeln(data.ftext,' ',Imagename,'_Colors = ',nColors,';');
writeln(data.ftext,' ',Imagename,'_Id = ',imageId,';');
writeln(data.ftext,' ',Imagename, ' : array[0..',size-1,'] of byte = (');
WriteLBMBuffer(BWriter,data,x,y,x2,y2);
writeln(data.ftext);
{$I+}
WriteTPLBMCodeToBuffer:=IORESULT;
end;
Function WriteTCPBMCodeToBuffer(var data :BufferRec;x,y,x2,y2,imageid : word; imagename:string):word;
var
Width,Height : Word;
Size : longint;
nColors : integer;
BWriter : BitPlaneWriterProc;
begin
BWriter:=@BitplaneWriterCCode;
width:=x2-x+1;
height:=y2-y+1;
nColors:=GetMaxColor+1;
Size:=width*height+2;
{$I-}
BWriter(0,data,0); //init the data record
data.ArraySize:=size;
writeln(data.ftext,'/* Turbo C DOS XLIB PBM Bitmap Created By Raster Master */');
writeln(data.ftext,'/* Size= ', Size,' Width= ',width,' Height= ',height, ' Colors= ',nColors,' */');
writeln(data.ftext,' #define ',Imagename,'_Size ',size);
writeln(data.ftext,' #define ',Imagename,'_Width ',width);
writeln(data.ftext,' #define ',Imagename,'_Height ',height);
writeln(data.ftext,' #define ',Imagename,'_Colors ',nColors);
writeln(data.ftext,' #define ',ImageName,'_Id ',imageId);
writeln(data.ftext,' ','char ',Imagename, '[',size,'] = {');
writePBMBuffer(BWriter,data,x,y,x2,y2);
writeln(data.ftext);
{$I+}
WriteTCPBMCodeToBuffer:=IORESULT;
end;
Function WriteTCLBMCodeToBuffer(var data :BufferRec;x,y,x2,y2,imageid : word; imagename:string):word;
var
Width,Height : Word;
Size : longint;
nColors : integer;
BWriter : BitPlaneWriterProc;
begin
BWriter:=@BitplaneWriterCCode;
width:=x2-x+1;
height:=y2-y+1;
nColors:=GetMaxColor+1;
Size:=width*height+2;
{$I-}
BWriter(0,data,0); //init the data record
data.ArraySize:=size;
writeln(data.ftext,'/* Turbo C DOS XLIB LBM Bitmap Created By Raster Master */');
writeln(data.ftext,'/* Size= ', Size,' Width= ',width,' Height= ',height, ' Colors= ',nColors,' */');
writeln(data.ftext,' #define ',Imagename,'_Size ',size);
writeln(data.ftext,' #define ',Imagename,'_Width ',width);
writeln(data.ftext,' #define ',Imagename,'_Height ',height);
writeln(data.ftext,' #define ',Imagename,'_Colors ',nColors);
writeln(data.ftext,' #define ',ImageName,'_Id ',imageId);
writeln(data.ftext,' ','char ',Imagename, '[',size,'] = {');
WriteLBMBuffer(BWriter,data,x,y,x2,y2);
writeln(data.ftext);
{$I+}
WriteTCLBMCodeToBuffer:=IORESULT;
end;
Function WriteLBMToCode(x,y,x2,y2,LanType : word;filename:string):word;
var
data : BufferRec;
imagename : String;
imageid : word;
begin
SetCoreActive; // we are getting data from core object RMCoreBase
imageid:=GetThumbIndex;
assign(data.fText,filename);
{$I-}
rewrite(data.fText);
Imagename:=ExtractFileName(ExtractFileNameWithoutExt(filename));
case LanType of TPLan: WriteTPLBMCodeToBuffer(data,x,y,x2,y2,imageid,imagename);
TCLan: WriteTCLBMCodeToBuffer(data,x,y,x2,y2,imageid,imagename);
end;
close(data.fText);
{$I+}
WriteLBMToCode:=IOResult;
end;
Function WriteLBMToFile(x,y,x2,y2 : word;filename:string):word;
var
data : BufferRec;
begin
SetCoreActive; // we are getting data from core object RMCoreBase
Assign(data.f,filename);
{$I-}
Rewrite(data.f,1);
BitPlaneWriterFile(0,data,0);
WriteLBMBuffer(@BitPlaneWriterFile,data,x,y,x2,y2);
Close(data.f);
{$I+}
WriteLBMToFile:=IOResult;
end;
Function WritePBMToCode(x,y,x2,y2,LanType : word;filename:string):word;
var
data : BufferRec;
imagename : String;
imageid : word;
begin
SetCoreActive; // we are getting data from core object RMCoreBase
imageid:=GetThumbIndex;
assign(data.fText,filename);
{$I-}
rewrite(data.fText);
Imagename:=ExtractFileName(ExtractFileNameWithoutExt(filename));
case LanType of TPLan: WriteTPPBMCodeToBuffer(data,x,y,x2,y2,imageid,imagename);
TCLan: WriteTCPBMCodeToBuffer(data,x,y,x2,y2,imageid,imagename);
end;
close(data.fText);
{$I+}
WritePBMToCode:=IOResult;
end;
Function WritePBMToFile(x,y,x2,y2 : word;filename:string):word;
var
data : BufferRec;
begin
SetCoreActive; // we are getting data from core object RMCoreBase
Assign(data.f,filename);
{$I-}
Rewrite(data.f,1);
BitPlaneWriterFile(0,data,0);
WritePBMBuffer(@BitPlaneWriterFile,data,x,y,x2,y2);
Close(data.f);
{$I+}
WritePBMToFile:=IOResult;
end;
procedure WriteLBMToBuffer(x,y,x2,y2 : word;var data : BufferRec); // to binary file
begin
WriteLBMBuffer(@BitPlaneWriterFile,data,x,y,x2,y2);
end;
procedure WritePBMToBuffer(x,y,x2,y2 : word;var data : BufferRec); // to binary file
begin
WritePBMBuffer(@BitPlaneWriterFile,data,x,y,x2,y2);
end;
(*
+--+--+--+--+-------------------------+
Plane 3 |10|00|00|00|... |
+--+--+--+--+-------------------------+ |
Plane 2 |00|00|00|00|... | |
+--+--+--+--+-------------------------+ |
Plane 1 |11|00|00|00|... | |
+--+--+--+--+-------------------------+ |
Plane 0 |01|00|00|00|... | |
---------------------------------------
The above diagram is not very good, but it should convey the general idea
behind what is termed PLANAR memory addressing. This is the method used
by Mode X and also by EGA/VGA 16 colour modes, so theory on this type of
addressing should be fairly abundant. In the diagram, the pixel at
coordinates (0,0) has a colour value of 10001101 in binary or 141 in decimal.
Notice how this value is spread across the four video planes;
bits 0&1 are on plane 0, bits 2&3 are on plane 1, 4&5 on plane 2, etc.
The next pixel (at coordinates (1,0)) has bits 0&1 back on plane 0 and are
stored directly after the first pixel's bits 0&1.
*)
function GetBitPairs(inByte,bp : byte) : byte;
var
myPair : byte;
begin
Case bp of 1:begin
myPair:=inByte SHR 6;
end;
2:begin
myPair:=(inByte SHL 2) SHR 6;
end;
3:begin
myPair:=(inByte SHL 4) SHR 6;
end;
4:begin
myPair:=(inByte SHL 6) SHR 6;
end;
end;
GetBitPairs:=myPair;
end;
(*
Function BitOn(Position,Testbyte : Byte) : Boolean;
Procedure SetBit(Position, Value : Byte; Var Changebyte : Byte);
*)
procedure SetBitPairs(Var dest : byte; bp, v : byte);
begin
Case bp of 1:begin
if Biton(0,v) then SetBit(6,1,dest);
if Biton(1,v) then SetBit(7,1,dest);
end;
2:begin
if Biton(0,v) then SetBit(4,1,dest);
if Biton(1,v) then SetBit(5,1,dest);
end;
3:begin
if Biton(0,v) then SetBit(2,1,dest);
if Biton(1,v) then SetBit(3,1,dest);
end;
4:begin
if Biton(0,v) then SetBit(0,1,dest);
if Biton(1,v) then SetBit(1,1,dest);
end;
end;
end;
(* Bytes Per Line for Single Plane *)
function BPLModeX(width : integer) : integer;
begin
BPLModeX:=((width+3) * 2) div 8;
end;
Procedure SinglePlaneToModeXPlane(var sp,mp : linebuftype; width : integer);
var
i : integer;
col : byte;
p0,p1,p2,p3 : byte;
BPL0,BPL1,BPL2,BPL3 : integer;
bpc,bpOffset : integer;
begin
BPL0:=0;
BPL1:=BPLModeX(width);
BPL2:=BPL1*2;
BPL3:=BPL1*3;
bpc:=1;
bpOffset:=0;
for i:=0 to width-1 do
begin
col:=sp[i];
p3:=GetBitPairs(col,1); (* XX000000 *)
p2:=GetBitPairs(col,2); (* 00XX0000 *)
p1:=GetBitPairs(col,3); (* 0000XX00 *)
p0:=GetBitPairs(col,4); (* 000000XX *)
SetBitPairs(mp[BPL0+bpOffset],bpc,p0); (* Plain 0 *)
SetBitPairs(mp[BPL1+bpOffset],bpc,p1); (* Plain 1 *)
SetBitPairs(mp[BPL2+bpOffset],bpc,p2); (* Plain 2 *)
SetBitPairs(mp[BPL3+bpOffset],bpc,p3); (* Plain 3 *)
inc(bpc);
if bpc > 4 then
begin
bpc:=1;
inc(bpOffset);
end;
end;
end;
begin
end.