-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathbmp.asm
1002 lines (852 loc) · 26.1 KB
/
bmp.asm
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
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
;===================================================================================================
; Bitmaps
;
; Written By: Oded Cnaan ([email protected])
; Site: http://odedc.net
; Licence: GPLv3 (see LICENSE file)
; Package: GrLib
;
; Description:
; Managing bitmap files
;===================================================================================================
LOCALS @@
BMP_MAX_PAL_SIZE equ 400h ; 1024
; short int of 2 bytes, int of 4 bytes, and long int of 8 bytes
; Bitmap Header (14 bytes)
;typedef struct {
;unsigned short int type; /* Magic identifier */
;unsigned int size; /* File size in bytes */
;unsigned short int reserved1, reserved2;
;unsigned int offset; /* Offset to image data, bytes */
;} HEADER;
; Bitmap Info (40 bytes)
;typedef struct {
;unsigned int size; /* Header size in bytes */
;int width,height; /* Width and height of image */
;unsigned short int planes; /* Number of colour planes */
;unsigned short int bits; /* Bits per pixel */
;unsigned int compression; /* Compression type */
;unsigned int imagesize; /* Image size in bytes */
;int xresolution,yresolution; /* Pixels per meter */
;unsigned int ncolours; /* Number of colours */
;unsigned int importantcolours; /* Important colours */
;} INFOHEADER;
; Offsets within the image on disk
IMG_BMP_HEADER_SIZE equ 36h ; 40+14=54
IMG_BMP_FILE_SIZE_OFFSET equ 2
IMG_BMP_DATA_OFFSET equ 0Ah
IMG_BMP_WIDTH_OFFSET equ 12h
IMG_BMP_HEIGHT_OFFSET equ 16h
;struct Bitmap { Bytes Offset
; byte[40] Header, ; 40 0h
; byte[1024] Pal, ; 1024 28h
; int PalSize, ; 2 428h
; int Height, ; 2 42Ah
; int Width, ; 2 42Ch
; int _fHandle, ; 2 42Eh
; int DataSegment ; 2 430h
; int DataSize ; 2 432h
;}
;BMP_STRUCT_SIZE equ 444h
BMP_HEADER_OFFSET equ 0
BMP_HEADER_LEN equ IMG_BMP_HEADER_SIZE
BMP_PALETTE_OFFSET equ IMG_BMP_HEADER_SIZE
BMP_PALETTE_LEN equ BMP_MAX_PAL_SIZE
BMP_PALETTE_SIZE_OFFSET equ BMP_PALETTE_LEN + IMG_BMP_HEADER_SIZE
BMP_HEIGHT_OFFSET equ BMP_PALETTE_SIZE_OFFSET + 2
BMP_WIDTH_OFFSET equ BMP_HEIGHT_OFFSET + 2
BMP_FHANDLE_OFFSET equ BMP_WIDTH_OFFSET + 2
BMP_DATA_SEG_OFFSET equ BMP_FHANDLE_OFFSET + 2
BMP_DATA_SIZE_OFFSET equ BMP_DATA_SEG_OFFSET + 2
DATASEG
BMPStart db 'BM'
msgInvBMP db "Not a valid BMP file.",7,0Dh,0Ah,24h
msgFileErr db "Error opening file.",7,0Dh,0Ah,24h
CODESEG
;------------------------------------------------------------------------
; push path address
; push path segment
; push struct address
; push struct segment
; call LoadBMPImage
;------------------------------------------------------------------------
PROC LoadBMPImage
store_sp_bp
pusha
push ds
; now the stack is
; bp+0 => old base pointer
; bp+2 => return address
; bp+4 => struct segment
; bp+6 => struct address
; bp+8 => path segment
; bp+10 => path address
; saved registers
;{
pathAddress equ [word bp+10]
pathSegment equ [word bp+8]
structAddress equ [word bp+6]
structSegment equ [word bp+4]
;}
push pathAddress ; path address
push pathSegment ; path seg
call fopen ; Open file pointed to by DS:DX
push ds
push structSegment
pop ds
; init ptr to NULL
mov si,structAddress
add si, BMP_DATA_SEG_OFFSET
mov [word ds:si], 0
mov si,structAddress
add si, BMP_DATA_SIZE_OFFSET
mov [word ds:si],0
pop ds
cmp [cs:_fErr],0
jne @@FileErr ; Error? Display error message and quit
mov bx,[cs:_fHandle] ; Put the file handle in BX
push structAddress ; struct addr
push structSegment ; struct seg
call ReadHeaderToStruct ; Reads the 54-byte header containing file info
jc @@InvalidBMP ; Not a valid BMP file? Show error and quit
push structAddress ; struct addr
push structSegment ; struct seg
call ReadPalStruct ; Read the BMP's palette and put it in a buffer
push structAddress ; struct addr
push structSegment ; struct seg
call SendPalStruct ; Send the palette to the video registers
push structAddress ; struct addr
push structSegment ; struct seg
call LoadBMPData
call fclose ; Close the file
jmp @@ProcDone
@@FileErr: ; error
mov ah,9
mov dx,offset msgFileErr
int 21h
jmp @@ProcDone
@@InvalidBMP: ; invalid bmp
mov ah,9
mov dx,offset msgInvBMP
int 21h
@@ProcDone:
pop ds
popa
restore_sp_bp
ret 8
ENDP LoadBMPImage
;------------------------------------------------------------------------
; Displays the BMP on the screen
;
; push struct address
; push struct seg
; push Xtop
; push Ytop
; call DisplayBMP
;------------------------------------------------------------------------
PROC DisplayBMP
store_sp_bp
sub sp,10
pusha
push ds
push es
; now the stack is
; bp-10 => image line height
; bp-8 => image line width
; bp-6 => y
; bp-4 => height
; bp-2 => width
; bp+0 => old base pointer
; bp+2 => return address
; bp+4 => ytop
; bp+6 => xtop
; bp+8 => struct seg
; bp+10 => struct address
; saved registers
;{
varWidth equ [word bp-2]
varHeight equ [word bp-4]
varY equ [word bp-6]
varY_ equ bp-6
varLineWidth equ [word bp-8]
varLineHeight equ [word bp-10]
structAddress equ [word bp+10]
structSegment equ [word bp+8]
xtop equ [word bp+6]
xtop_ equ bp+6
ytop equ [word bp+4]
;}
push structSegment ; struct seg
pop ds
; check if data was allocated. if not abort
mov si, structAddress ; struct add
add si, BMP_DATA_SEG_OFFSET
cmp [word ds:si], 0
je @@err_coord
push structAddress ; struct addr
push structSegment ; struct seg
call SendPalStruct
push structSegment
pop ds ; ds = struct seg
mov di, structAddress ; ds:di = struct ptr
mov si, di
add si, BMP_HEIGHT_OFFSET
mov cx, [word ds:si]
mov varHeight, cx ; Height
mov varLineHeight, cx ; Height
mov dx, [word ds:si+2]
mov varWidth, dx ; Width
mov varLineWidth, dx ; Img Width
; check Xtop
mov ax, xtop
cmp ax, VGA_SCREEN_WIDTH
ja @@err_coord
cmp ax,0
jl @@err_coord
@@check_y:
; if (Ytop > SCREEN HEIGHT) exit
mov ax, ytop
cmp ax, VGA_SCREEN_HEIGHT
ja @@err_coord
; if (yTop < 0) exit
cmp ax,0
jl @@err_coord
@@check_h:
mov ax,ytop ; ytop
add ax,cx ; ytop + h
cmp ax,VGA_SCREEN_HEIGHT
jbe @@check_w ; if (ytop + height < screen height)
; else
mov ax, VGA_SCREEN_HEIGHT
sub ax,ytop
mov varHeight, ax ; height = VGA_SCREEN_HEIGHT - Ytop
mov cx,ax
; since the image is upside down, we need to move the di addr
mov ax, varLineHeight
sub ax, cx ; VGA_SCREEN_HEIGHT - height
mul varLineWidth ; * img width
add di, ax
@@check_w:
mov ax,xtop ; xtop
add ax,dx
cmp ax,VGA_SCREEN_WIDTH
jbe @@ok ; if (xtop + width < screen width)
; else
mov ax, VGA_SCREEN_WIDTH
sub ax,xtop
mov varWidth, ax ; width = VGA_SCREEN_WIDTH - Xtop
@@ok:
mov si, di
add si, BMP_DATA_SEG_OFFSET
push [_dss]
pop ds
push [word GR_START_ADDR]
pop es
push structSegment
pop ds
push [word ds:si]
pop ds ; ds:si = data ptr
mov ax, ytop ; yTop
add ax, varHeight ; height
mov varY,ax ; y=Ytop+Height
xor di,di
xor si,si
; cx = height, ds:si = data, es:di = screen
@@DrawLoop:
push cx
push si
cld ; Clear direction flag, for movsb.
mov cx, varWidth ; width
translate_coord_to_vga_addr xtop_, varY_
; source DS:SI
; dest ES:DI
; len CX
rep movsb ; Copy line in buffer to screen.
pop si
add si, varLineWidth ; si += img width
dec varY ; y--
pop cx
loop @@DrawLoop
jmp @@end
@@err_coord:
@@end:
pop es
pop ds
popa
restore_sp_bp
ret 8
ENDP DisplayBMP
;------------------------------------------------------------------------
; push struct address
; push struct seg
; call TileBmp
;------------------------------------------------------------------------
PROC TileBmp
store_sp_bp
sub sp,8
pusha
push ds
; now the stack is
; bp-8 => y
; bp-6 => x
; bp-4 => height
; bp-2 => width
; bp+0 => old base pointer
; bp+2 => return address
; bp+4 => struct seg
; bp+6 => struct add
; saved registers
;{
varY equ [word bp-8]
varX equ [word bp-6]
varHeight equ [word bp-4]
varWidth equ [word bp-2]
structSeg equ [word bp+4]
structAddr equ [word bp+6]
;}
push structSeg
pop ds ; ds = struct seg
mov di, structAddr ; ds:di = struct ptr
mov si, di
add si, BMP_HEIGHT_OFFSET
mov cx, [word ds:si]
mov varHeight, cx ; Height
mov dx, [word ds:si+2]
mov varWidth, dx ; Width
mov varY,0 ; y = 0
mov varX,0 ; x = 0
@@draw:
push structAddr
push structSeg
push varX
push varY
call DisplayBMP
add varX,dx ; x += width
cmp varX,VGA_SCREEN_WIDTH
jb @@draw
mov varX,0 ; x = 0
add varY,cx ; y += height
cmp varY, VGA_SCREEN_HEIGHT
jb @@draw
@@end:
pop ds
popa
restore_sp_bp
ret 4 ; <--- set return value
ENDP TileBmp
;------------------------------------------------------------------------
; This procedure checks to make sure the file is a valid BMP,
; and gets some information about the graphic.
;
; push struct addr
; push struct seg
; call ReadHeaderToStruct
;------------------------------------------------------------------------
PROC ReadHeaderToStruct
store_sp_bp
pusha
; now the stack is
; bp+0 => old base pointer
; bp+2 => return address
; bp+4 => struct segment
; bp+6 => struct address
; saved registers
;{
structSeg equ [word bp+4]
structAddr equ [word bp+6]
;}
mov cx,BMP_HEADER_LEN
mov dx,structAddr
add dx, BMP_HEADER_OFFSET
push cx ; length
push dx ; header address
push structSeg ; segment
call fread ; read header
push structAddr
push structSeg
call CheckValidStruct ; Is it a valid BMP file?
jc @@RHdone ; No? Quit.
push structAddr
push structSeg
call GetBMPInfoStruct ; Otherwise, process the header.
@@RHdone:
popa
restore_sp_bp
ret 4
ENDP ReadHeaderToStruct
;------------------------------------------------------------------------
; Check the first two bytes of the file. If they do not
; match the standard beginning of a BMP header ("BM"),
; the carry flag is set.
;
; push struct addr
; push struct seg
; call CheckValidStruct
;------------------------------------------------------------------------
PROC CheckValidStruct
store_sp_bp
pusha
push es
; now the stack is
; bp+0 => old base pointer
; bp+2 => return address
; bp+4 => struct segment
; bp+6 => struct address
; saved registers
;{
structSeg equ [word bp+4]
structAddr equ [word bp+6]
;}
clc ; clear carry flag
mov si,structAddr
add si,BMP_HEADER_OFFSET
push structSeg ; seg
pop es
mov di,offset BMPStart
mov cx,2 ; BMP ID is 2 bytes long.
@@CVloop:
mov al,[es:si] ; Get a byte from the header.
mov dl,[di]
cmp al,dl ; Is it what it should be?
jne @@NotValid ; If not, set the carry flag.
inc si
inc di
loop @@CVloop
jmp @@CVdone
@@NotValid:
stc ; set carry flag for error
@@CVdone:
pop es
popa
restore_sp_bp
ret 4
ENDP CheckValidStruct
;------------------------------------------------------------------------
; This procedure pulls some important BMP info from the header
; and puts it in the appropriate variables.
; mov ax,header[0Ah] ; AX = Offset of thebeginning of the graphic.
;
; push struct addr
; push struct seg
; call CheckValidStruct
;------------------------------------------------------------------------
PROC GetBMPInfoStruct
store_sp_bp
pusha
push es
; now the stack is
; bp+0 => old base pointer
; bp+2 => return address
; bp+4 => struct segment
; bp+6 => struct address
; saved registers
;{
structSeg equ [word bp+4]
structAddr equ [word bp+6]
;}
mov si, structAddr
add si, BMP_HEADER_OFFSET ; si = header address within struct
push structSeg
pop es ; header seg (es:si)
mov ax, [word es:si+IMG_BMP_DATA_OFFSET]
sub ax,BMP_HEADER_LEN ; Subtract the length of the header
shr ax,2 ; and divide by 4
mov bx, structAddr
add bx, BMP_PALETTE_SIZE_OFFSET
mov [es:bx],ax ; to get the number of colors in the BMP
; (Each palette entry is 4 bytes long).
; mov ax,header[12h] ; AX = Horizontal resolution (width) of BMP.
mov ax, [word es:si+IMG_BMP_WIDTH_OFFSET]
mov bx, structAddr
add bx, BMP_WIDTH_OFFSET
mov [es:bx],ax ; Store it.
;mov ax,header[16h] ; AX = Vertical resolution (height) of BMP.
mov dx, [word es:si+IMG_BMP_HEIGHT_OFFSET]
mov bx, structAddr
add bx, BMP_HEIGHT_OFFSET
mov [es:bx],dx ; Store it.
; ax = width
; dx = height
add ax, 15
shr ax,4 ; ax / 16 (# of mem paragraphs)
mul dx ; w * h
mov bx, structAddr
add bx, BMP_DATA_SIZE_OFFSET
mov [es:bx],ax ; Store it.
pop es
popa
restore_sp_bp
ret 4
ENDP GetBMPInfoStruct
;------------------------------------------------------------------------
; Read the video palette.
;
; push struct addr
; push struct seg
; call ReadPalStruct
;------------------------------------------------------------------------
PROC ReadPalStruct
store_sp_bp
pusha
push es
; now the stack is
; bp+0 => old base pointer
; bp+2 => return address
; bp+4 => struct segment
; bp+6 => struct address
; saved registers
;{
structSeg equ [word bp+4]
structAddr equ [word bp+6]
;}
push structSeg
pop es
mov si, structAddr
add si, BMP_PALETTE_SIZE_OFFSET
mov cx,[es:si] ; CX = Number of colors in palette.
shl cx,2 ; CX = Multiply by 4 to get size (in bytes)
; of palette.
mov dx, structAddr
add dx, BMP_PALETTE_OFFSET
push cx
push dx
push ds
call fread
pop es
popa
restore_sp_bp
ret 4
endp ReadPalStruct
;------------------------------------------------------------------------
; This procedure goes through the palette buffer, sending information about
; the palette to the video registers. One byte is sent out
; port 3C8h, containing the number of the first color in the palette that
; will be sent (0=the first color). Then, RGB information about the colors
; (any number of colors) is sent out port 3C9h.
;
; push struct addr
; push struct seg
; call SendPalStruct
;------------------------------------------------------------------------
PROC SendPalStruct
store_sp_bp
pusha
push es
push ds
; now the stack is
; bp+0 => old base pointer
; bp+2 => return address
; bp+4 => struct segment
; bp+6 => struct address
; saved registers
;{
structSeg equ [word bp+4]
structAddr equ [word bp+6]
;}
push structSeg
pop ds
mov si, structAddr
add si, BMP_PALETTE_OFFSET ; Point to buffer containing palette.
mov di, structAddr
add di, BMP_PALETTE_SIZE_OFFSET
mov cx,[ds:di] ; CX = Number of colors to send.
mov dx,3c8h
mov al,0 ; We will start at 0.
out dx,al
inc dx ; DX = 3C9h.
@@sndLoop:
; Note: Colors in a BMP file are saved as BGR values rather than RGB.
mov al,[ds:si+2] ; Get red value.
shr al,2 ; Max. is 255, but video only allows
; values of up to 63. Dividing by 4
; gives a good value.
out dx,al ; Send it.
mov al,[ds:si+1] ; Get green value.
shr al,2
out dx,al ; Send it.
mov al,[ds:si] ; Get blue value.
shr al,2
out dx,al ; Send it.
add si,4 ; Point to next color.
; (There is a null chr. after every color.)
loop @@sndLoop
pop ds
pop es
popa
restore_sp_bp
ret 4
ENDP SendPalStruct
;----------------------------------------------------------------------
; Save Palette from BMP to a PAL file
;
; Input:
; push bmp struct address
; push bmp struct seg
; push pal file name address
; call SavePalette
;----------------------------------------------------------------------
PROC SavePalette
store_sp_bp
pusha
push es
push ds
; now the stack is
; bp+0 => old base pointer
; bp+2 => return address
; bp+4 => file name address
; bp+6 => struct segment
; bp+8 => struct address
; saved registers
;{
fileNameAddress equ [word bp+4]
structSegment equ [word bp+6]
structAddress equ [word bp+8]
;}
push structSegment
pop ds
mov si, structAddress
add si, BMP_PALETTE_OFFSET ; Point to buffer containing palette.
mov di, structAddress
add di, BMP_PALETTE_SIZE_OFFSET
; create file
utm_fnew fileNameAddress, [_dss]
jc @@exit ; error
utm_fopen fileNameAddress, [_dss]
mov cx,[ds:di] ; CX = Number of colors
xor ax,ax
@@saveLoop:
mov al,[ds:si+2] ; Get red value.
utm_fwriteByte ax
mov al,[ds:si+1] ; Get green value.
utm_fwriteByte ax
mov al,[ds:si] ; Get blue value.
utm_fwriteByte ax
add si,4
loop @@saveLoop
@@exit:
utm_fclose
pop ds
pop es
popa
restore_sp_bp
ret 6
ENDP SavePalette
;------------------------------------------------------------------------
; Load Palette from a PAL file
;
; Input:
; push pal file name address
; push pal file name segment
; push buffer address
; push buffer seg
; call LoadPalette
;------------------------------------------------------------------------
PROC LoadPalette
store_sp_bp
push bx
push es
push ds
; now the stack is
; bp+0 => old base pointer
; bp+2 => return address
; bp+4 => buffer segment
; bp+6 => buffer address
; bp+8 => file name seg
; bp+10 => file name address
; saved registers
;{
bufferSegment equ [word bp+4]
bufferAddress equ [word bp+6]
fileNameSegment equ [word bp+8]
fileNameAddress equ [word bp+10]
;}
utm_fsize fileNameAddress, fileNameSegment
; assuming size of PAL < FFFE so we ignore DX
cmp ax, BMP_MAX_PAL_SIZE
ja @@error
utm_fopen fileNameAddress, fileNameSegment
utm_fread ax, bufferAddress, bufferSegment
jmp @@ok
@@error:
mov ax, FALSE
jmp @@exit
@@ok:
mov ax, TRUE
@@exit:
utm_fclose
pop ds
pop es
pop bx
restore_sp_bp
ret 8
ENDP LoadPalette
;------------------------------------------------------------------------
; BMP graphics are saved upside-down. This procedure reads the graphic
; line by line, displaying the lines from bottom to top. The line at
; which it starts depends on the vertical resolution, so the top-left
; corner of the graphic will always be at the top-left corner of the screen.
;
; The video memory is a two-dimensional array of memory bytes which
; can be addressed and modified individually. Each byte represents
; a pixel on the screen, and each byte contains the color of the
; pixel at that location.
;
; push struct addr
; push struct seg
; call LoadBMPData
;------------------------------------------------------------------------
PROC LoadBMPData
store_sp_bp
sub sp,4
pusha
push es
push ds
; now the stack is
; bp-4 => height
; bp-2 => width
; bp+0 => old base pointer
; bp+2 => return address
; bp+4 => struct segment
; bp+6 => struct address
; saved registers
;{
varWidth equ [word bp-2]
varHeight equ [word bp-4]
structSegment equ [word bp+4]
structAddress equ [word bp+6]
;}
push structSegment
pop ds
mov si,structAddress
add si, BMP_HEIGHT_OFFSET
mov cx,[word ds:si] ; height - We're going to display that many lines
mov varHeight, cx
mov si,structAddress
add si, BMP_WIDTH_OFFSET
mov dx, [ds:si] ; width
mov varWidth, dx
; allocate memory
mov si,structAddress
add si, BMP_DATA_SIZE_OFFSET
mov ax, [ds:si]
push ax
call malloc
jc @@end
; store pointer to data
mov si,structAddress
add si, BMP_DATA_SEG_OFFSET
mov [word ds:si],ax
mov si,structAddress
add si, IMG_BMP_DATA_OFFSET
mov bx, [word ds:si] ; where the data starts on file
grm_fseek SEEK_SET, 0, bx
push ax
pop es
xor si,si ; es:si - pointer to data start
mov cx,varHeight ; height
@@ShowLoop:
push dx ; width
push si ; addr
push es ; seg
call fread
add si, dx ; si += width
loop @@ShowLoop
@@end:
pop ds
pop es
popa
restore_sp_bp
ret 4
ENDP LoadBMPData
;------------------------------------------------------------------------
; PROC Description:
; Free data segment from BMP struct
;
; push struct addr
; push struct seg
; call FreeBmp
;------------------------------------------------------------------------
PROC FreeBmp
store_sp_bp
push si di ax es
; now the stack is
; bp-2 =>
; bp+0 => old base pointer
; bp+2 => return address
; bp+4 => struct seg
; bp+6 => struct addr
; saved registers
;{
addr_ equ [word bp+6]
seg_ equ [word bp+4]
;}
mov si, addr_
add si, BMP_DATA_SEG_OFFSET
push seg_
pop es
mov di, [word es:si] ; segment of allocated data
push di
call mfree
@@end:
pop es ax di si
restore_sp_bp
ret 4
ENDP FreeBmp
;////////////////////////////////////////////////////////////////////////////
; FUNCTION LIKE MACROS
;////////////////////////////////////////////////////////////////////////////
;----------------------------------------------------------------------
; Load BMP from file
;
; grm_LoadBMPImage (pathAddress, pathSegment, tructAddress, structSegment)
;----------------------------------------------------------------------
MACRO grm_LoadBMPImage pathAddress, pathSegment, structAddress, structSegment
push pathAddress
push pathSegment
push structAddress
push structSegment
call LoadBMPImage
ENDM
;----------------------------------------------------------------------
; Displays a BMP
;
; grm_DisplayBMP (tructAddress, structSegment, xtop, ytop)
;----------------------------------------------------------------------
MACRO grm_DisplayBMP structAddress, structSegment, xtop, ytop
push structAddress
push structSegment
push xtop
push ytop
call DisplayBMP
ENDM
;----------------------------------------------------------------------
; Tile a BMP
;
; grm_TileBmp (tructAddress, structSegment)
;----------------------------------------------------------------------
MACRO grm_TileBmp structAddress, structSegment
push structAddress
push structSegment
call DisplayBMP
ENDM
;----------------------------------------------------------------------
; Save palette to file
;
; grm_SavePalette (XXX, XXX)
;----------------------------------------------------------------------
MACRO grm_SavePalette structAddress, structSegment, fileAddress
push structAddress
push structSegment
push fileAddress
call SavePalette
ENDM
;----------------------------------------------------------------------
; Free BMP
;
; grm_FreeBmp (tructAddress, structSegment)
;----------------------------------------------------------------------
MACRO grm_FreeBmp structAddress, structSegment
push structAddress
push structSegment