-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathBrickBreakers.asm
2494 lines (2072 loc) · 88.6 KB
/
BrickBreakers.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
.MODEL small
.STACK 100h
.DATA
appMode DB 1 ; 1 for game, 2 for chat, 3 for scoreboard if existed
start_game_str DB 'Start Game$'
chat_str DB 'Chat$'
score_board_str DB 'Score Board$'
chat_demo_str DB 'Chat Demo$'
board_demo_str DB 'Score Board Demo$'
mode_label DB '=> $'
padel_x DW 199
padel_x1 DW 0
padel_x2 DW 0
padel_y1 DW 581
padel_y2 DW 590
padel_color db 4
padel_speed equ 7
padel_width dw 40
ball_x DW 199
ball_y DW 560
ball_dx DW 0
ball_dy DW 2
ball_og_speed equ 2
ball_size equ 3
divide_factor equ 2
ball_color db 2
difficulty db 0
original_difficulty db 0
inReset db 0
;Bricks number of rows and columns
numRows dw 8 ; 2 * real number of rows
numRows1 equ 8
numRows2 equ 14
numRows3 equ 20
rowStart dw 205, 230, 255, 280, 305, 330, 355, 380, 405, 430
numCols dw 14 ; 2 * real number of cols
numCols1 equ 14
numCols2 equ 24
numCols3 equ 44
colStart1 dw 6, 62, 118, 174, 230, 286, 342
colStart2 dw 3, 36, 69, 102, 135, 168, 201, 234, 267, 300, 333, 366
colStart3 dw 3, 21, 39, 57, 75, 93, 111, 129, 147, 165, 183, 201, 219, 237, 255, 273, 291, 309, 327, 345, 363, 381
dummycol dw ?
dummyrow dw ?
bricks dw 220 DUP(1) ; max num of bricks in a level (lvl 3) ; 2 * numRows * numCols
;Brick dimensions
rwidth dw 50
rheight dw 20
;score & level
selected_level db 0
score dw 0
display_score dw 0
score_str db 'Score: $'
score1 equ 28 ; 4 * 7
score2 equ 112 ; 4 * 7 + 7 * 12
score3 equ 322 ; 4 * 7 + 7 * 12 + 10 * 21
lives_str db 'Lives: $'
display_lives db 5
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;Brick gifts
gift_dy dw 2
gift_size equ 6
gift_speed equ 10
gift_color db ?
ribbon_color db ?
bow_color db ?
gift_count dw 5
backgournd_color db 5 dup(0)
gift_active db 5 dup(0)
gift_x dw 5
gift_y dw 5
gift_counter dw gift_speed
gift_colors_list db 2,5,9,14,15
gift_ribbon_list db 4,11,2,4,5
gift_ball_color db 2
gift_timer dw 0
current_gift dw 4
is_there_gift db 0
current_gift_counter dw 0
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
padel_x_2 DW 599
padel_x1_2 DW 0
padel_x2_2 DW 0
padel_y1_2 DW 581
padel_y2_2 DW 590
padel_color_2 db 4
padel_speed_2 equ 7
padel_width_2 dw 40
ball_x_2 DW 599
ball_y_2 DW 560
ball_dx_2 DW 0
ball_dy_2 DW 2
ball_og_speed_2 equ 2
ball_size_2 equ 3
divide_factor_2 equ 2
ball_color_2 db 2
difficulty_2 db 0
original_difficulty_2 db 0
inReset_2 db 0
;Bricks number of rows and columns
numRows_2 dw 8 ; 2 * real number of rows
numRows1_2 equ 8
numRows2_2 equ 14
numRows3_2 equ 20
rowStart_2 dw 205, 230, 255, 280, 305, 330, 355, 380, 405, 430
numCols_2 dw 14 ; 2 * real number of cols
numCols1_2 equ 14
numCols2_2 equ 24
numCols3_2 equ 44
colStart1_2 dw 406, 462, 518, 574, 630, 686, 742
colStart2_2 dw 403, 436, 469, 502, 535, 568, 601, 634, 667, 700, 733, 766
colStart3_2 dw 403, 421, 439, 457, 475, 493, 511, 529, 547, 565, 583, 601, 619, 637, 655, 673, 691, 709, 727, 745, 763, 781
dummycol_2 dw ?
dummyrow_2 dw ?
;Bricks existence
bricks_2 dw 220 DUP(1) ; max num of bricks in a level (lvl 3) ; 2 * numRows * numCols
;Brick dimensions
rwidth_2 dw 50
rheight_2 dw 20
;score & level
selected_level_2 db 0
score_2 dw 0
display_score_2 dw 0
score1_2 equ 28 ; 4 * 7
score2_2 equ 112 ; 4 * 7 + 7 * 12
score3_2 equ 322 ; 4 * 7 + 7 * 12 + 10 * 21
display_lives_2 db 5
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;Brick gifts
gift_dy_2 dw 2
gift_size_2 equ 6
gift_speed_2 equ 10
gift_color_2 db ?
ribbon_color_2 db ?
bow_color_2 db ?
gift_count_2 db 5
backgournd_color_2 db 5 dup(0)
gift_active_2 db 5 dup(0)
gift_x_2 dw 5
gift_y_2 dw 5
gift_counter_2 dw gift_speed_2
gift_colors_list_2 db 2,5,9,14,15
gift_ribbon_list_2 db 4,11,2,4,5
gift_ball_color_2 db 2
gift_timer_2 dw 0
current_gift_2 dw 0
is_there_gift_2 db 0
current_gift_counter_2 db 0
char db 0
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
C6_freq equ 3951
D6_freq equ 3520
E6_freq equ 3136
F6_freq equ 2794
G6_freq equ 2637
A6_freq equ 2349
B6_freq equ 2093
C7_freq equ 1976
D7_freq equ 1760
E7_freq equ 1568
F7_freq equ 1396
G7_freq equ 1318
A7_freq equ 1174
B7_freq equ 1046
C8_freq equ 987
D8_freq equ 880
E8_freq equ 784
F8_freq equ 740
G8_freq equ 698
A8_freq equ 659
; songNotes dw F6_freq, E6_freq, D6_freq, C6_freq, D6_freq, E6_freq, G6_freq,
; D6_freq, E6_freq, F6_freq, G6_freq, A6_freq, B6_freq, C7_freq,
; B6_freq, A6_freq, G6_freq, F6_freq, E6_freq, D6_freq, C6_freq,
; E6_freq, G6_freq, A6_freq, F6_freq, E6_freq, D6_freq, G6_freq,
; A6_freq, G6_freq, B6_freq, C7_freq, E7_freq, D7_freq, G7_freq,
; F6_freq, F7_freq, E7_freq, F6_freq, D6_freq, C6_freq, G6_freq,
; A6_freq, D6_freq
noteCount equ 40
noteTimer dw 100 ; Timer to control note playing
freq dw 0
currentNotePos dw 0 ; Tracks the current position in the songNotes array
timerForSwitch dw 60
ogTimerForSwitch equ 60
.CODE
; ClearScreen PROC
; mov ax, 0A000h
; mov es, ax
; xor di, di
; mov al, 0
; mov cx, 480000
; rep stosb
; RET
; ClearScreen ENDP
ClearScreen PROC
mov al, 0
mov dx, 570
Clear_outer:
inc dx
cmp dx, 600
jz end_Clear
mov cx, 0
Clear_inner:
inc cx
cmp cx, 400
jz Clear_outer
mov ah, 0ch
int 10h
jmp Clear_inner
end_Clear:
RET
ClearScreen ENDP
ClearScreen_2 PROC
mov al, 0
mov dx, 550
Clear_outer_2:
inc dx
cmp dx, 600
jz end_Clear_2
mov cx, 400
Clear_inner_2:
inc cx
cmp cx, 800
jz Clear_outer_2
mov ah, 0ch
int 10h
jmp Clear_inner_2
end_Clear_2:
RET
ClearScreen_2 ENDP
DrawPadel PROC
mov dx, padel_y1
fill_outer:
inc dx
cmp dx, padel_y2
jz end_Draw
mov ax, padel_x
sub ax, padel_width
mov padel_x1, ax
mov ax, padel_x
add ax, padel_width
mov padel_x2, ax
mov cx, padel_x1
fill_inner:
inc cx
cmp cx, padel_x2
jz fill_outer
mov ah, 0ch
mov al,[padel_color]
int 10h
jmp fill_inner
end_Draw:
RET
DrawPadel ENDP
DrawPadel_2 PROC
mov dx, padel_y1_2
fill_outer_2:
inc dx
cmp dx, padel_y2_2
jz end_Draw_2
mov ax, padel_x_2
sub ax, padel_width_2
mov padel_x1_2, ax
mov ax, padel_x_2
add ax, padel_width_2
mov padel_x2_2, ax
mov cx, padel_x1_2
fill_inner_2:
inc cx
cmp cx, padel_x2_2
jz fill_outer_2
mov ah, 0ch
mov al,[padel_color_2]
int 10h
jmp fill_inner_2
end_Draw_2:
RET
DrawPadel_2 ENDP
; MovePadel PROC
; mov ax, 3
; int 33h
; shr cx, 1
; mov si, cx
; sub si, 25
; cmp si, padel_x1
; je no_move
; push cx
; mov padel_color, 0
; call DrawPadel
; pop cx
; mov padel_x1, si
; add si, padel_width
; mov padel_x2, si
; mov padel_color, 4
; call DrawPadel
; no_move:
; RET
; MovePadel ENDP
MovePadel PROC
mov ah, 1
int 16h
jz noKeyPressed
mov ah, 0
int 16h
mov char,al
wait_for_uart:
in al, dx
and al, 00100000b
jz noKeyPressed
mov dx, 3F8h
mov al, char
out dx, al
cmp AL, 'd'
jz MoveRight
cmp AL, 'a'
jz MoveLeft
noKeyPressed:
RET
MoveRight:
cmp padel_x2, 399
jge stop_move
mov [padel_color],0
call DrawPadel
mov [padel_color],4
add padel_x, padel_speed
RET
MoveLeft:
cmp padel_x1, 10
jle stop_move
mov [padel_color],0
call DrawPadel
mov [padel_color],4
sub padel_x, padel_speed
RET
stop_move:
RET
MovePadel ENDP
MovePadel_2 PROC
; --- Check for UART Data Ready ---
mov dx, 3FDh ; Line Status Register
in al, dx
and al, 1
jz noKeyPressed_2 ; If no UART data, check keyboard
; --- Read UART Data ---
mov dx, 3F8h ; Receive Data Register
in al, dx
cmp AL, 'l'
jz MoveRight_2
cmp AL, 'j'
jz MoveLeft_2
noKeyPressed_2:
RET
MoveRight_2:
cmp padel_x2_2, 799
jge stop_move_2
mov padel_color_2, 0
call DrawPadel_2
add padel_x1_2, padel_speed_2
add padel_x2_2, padel_speed_2
mov padel_color_2, 4
RET
MoveLeft_2:
cmp padel_x1_2, 410
jle stop_move_2
mov padel_color_2, 0
call DrawPadel_2
sub padel_x1_2, padel_speed_2
sub padel_x2_2, padel_speed_2
mov padel_color_2, 4
RET
stop_move_2:
RET
MovePadel_2 ENDP
DrawBall PROC
MOV CX,ball_x
MOV DX,ball_y
DrawBall_HORIZONTAL:
MOV AH,0Ch
MOV AL,ball_color
MOV BH,00h
INT 10h
INC CX
MOV AX,CX
SUB AX,ball_x
CMP AX,ball_size
JNG DrawBall_HORIZONTAL
MOV CX,ball_x
INC DX
MOV AX,DX
SUB AX,ball_y
CMP AX,ball_size
JNG DrawBall_HORIZONTAL
RET
DrawBall ENDP
DrawBall_2 PROC
MOV CX,ball_x_2
MOV DX,ball_y_2
DrawBall_HORIZONTAL_2:
MOV AH,0Ch
MOV AL,ball_color_2
MOV BH,00h
INT 10h
INC CX
MOV AX,CX
SUB AX,ball_x_2
CMP AX,ball_size_2
JNG DrawBall_HORIZONTAL_2
MOV CX,ball_x_2
INC DX
MOV AX,DX
SUB AX,ball_y_2
CMP AX,ball_size_2
JNG DrawBall_HORIZONTAL_2
RET
DrawBall_2 ENDP
end_early:
ret
MoveBall PROC
dec difficulty
cmp difficulty, 0
jne end_early
mov al, original_difficulty
mov difficulty, al
mov ax, ball_x
add ax, ball_dx
mov ball_x, ax
mov ax, ball_y
add ax, ball_dy
mov ball_y, ax
cmp ball_x, 0
jle ball_left_edge
cmp ball_x, 396
jge ball_right_edge
mov ax, ball_y
add ax, ball_size
cmp ax, padel_y1
jl continue_move
mov ax, ball_y
add ax, ball_size
cmp ax, padel_y2
jg continue_move
mov ax, ball_x
add ax, ball_size
cmp ax, padel_x1
jl continue_move
mov ax, ball_x
add ax, ball_size
cmp ax, padel_x2
jg continue_move
neg ball_dy
mov ax, padel_x1
add ax, padel_x2
shr ax, 1
cmp ball_x, ax
jb left_side
mov bx, ball_x
sub bx, ax
mov cl ,3
shr bx, cl
mov ball_dx, bx
jmp continue_move
left_side:
mov bx, ball_x
sub ax, bx
mov cl, 3
shr ax, cl
mov ball_dx, ax
neg ball_dx
jmp continue_move
ball_left_edge:
neg ball_dx
jmp continue_move
ball_right_edge:
neg ball_dx
jmp continue_move
continue_move:
cmp ball_y, 201
jle ball_top_edge
cmp ball_y, 597
jge ball_bottom_edge
jmp end_move
ball_top_edge:
neg ball_dy
jmp end_move
ball_bottom_edge:
CALL ResetAll
end_move:
RET
MoveBall ENDP
end_early_2:
ret
MoveBall_2 PROC
dec difficulty_2
cmp difficulty_2, 0
jne end_early_2
mov al, original_difficulty_2
mov difficulty_2, al
mov ax, ball_x_2
add ax, ball_dx_2
mov ball_x_2, ax
mov ax, ball_y_2
add ax, ball_dy_2
mov ball_y_2, ax
cmp ball_x_2, 401
jle ball_left_edge_2
cmp ball_x_2, 796
jge ball_right_edge_2
mov ax, ball_y_2
add ax, ball_size_2
cmp ax, padel_y1_2
jl continue_move_2
mov ax, ball_y_2
add ax, ball_size_2
cmp ax, padel_y2_2
jg continue_move_2
mov ax, ball_x_2
add ax, ball_size_2
cmp ax, padel_x1_2
jl continue_move_2
mov ax, ball_x_2
add ax, ball_size_2
cmp ax, padel_x2_2
jg continue_move_2
neg ball_dy_2
mov ax, padel_x1_2
add ax, padel_x2_2
shr ax, 1
cmp ball_x_2, ax
jb left_side_2
mov bx, ball_x_2
sub bx, ax
mov cl ,3
shr bx, cl
mov ball_dx_2, bx
jmp continue_move_2
left_side_2:
mov bx, ball_x_2
sub ax, bx
mov cl, 3
shr ax, cl
mov ball_dx_2, ax
neg ball_dx_2
jmp continue_move_2
ball_left_edge_2:
neg ball_dx_2
jmp continue_move_2
ball_right_edge_2:
neg ball_dx_2
jmp continue_move_2
continue_move_2:
cmp ball_y_2, 201
jle ball_top_edge_2
cmp ball_y_2, 597
jge ball_bottom_edge_2
jmp end_move_2
ball_top_edge_2:
neg ball_dy_2
jmp end_move_2
ball_bottom_edge_2:
CALL ResetAll_2
end_move_2:
RET
MoveBall_2 ENDP
ResetAll PROC
mov ball_x, 199
mov ball_y, 560
mov ball_dx, ball_og_speed
mov ball_dy, ball_og_speed
mov padel_x1, 174
mov padel_x2, 224
mov padel_y1, 581
mov padel_y2, 590
mov ball_dy, 2
mov ball_dx, 0
mov gift_color, 0
mov bow_color, 0
mov ribbon_color, 0
push bx
mov bx, [current_gift_counter]
CALL DrawGift
pop bx
mov [gift_ball_color],2
mov [padel_width],40
mov [padel_x] ,199
mov [gift_timer],0
dec display_lives
cmp display_lives, 0
; jle GAMEOVERdd
CALL ClearScreen
cmp selected_level, 1
jnz cont1
CALL DrawLevel1
jmp cont
cont1:
cmp selected_level, 2
jnz cont2
CALL DrawLevel2
jmp cont
cont2:
cmp selected_level, 3
CALL DrawLevel3
cont:
CALL DrawPadel
mov ball_color, 2
CALL DrawBall
mov bx,0
ResetAllGifts:
mov byte ptr [gift_active+bx], 0
mov gift_x, 0
mov gift_y, 0
inc bl
cmp bx,[gift_count]
jne ResetAllGifts
CALL DrawPadel
mov inReset, 1
GAMEOVER:
RET
ResetAll ENDP
ResetAll_2 PROC
mov ball_x_2, 599
mov ball_y_2, 560
mov ball_dx_2, ball_og_speed_2
mov ball_dy_2, ball_og_speed_2
mov padel_x1_2, 574
mov padel_x2_2, 624
mov padel_y1_2, 581
mov padel_y2_2, 590
mov ball_dy_2, 2
mov ball_dx_2, 0
mov [gift_ball_color_2],2
mov [gift_timer_2],0
dec display_lives_2
mov gift_color_2, 0
mov bow_color_2, 0
mov ribbon_color_2, 0
;CALL DrawGift_2
CALL ClearScreen_2
cmp selected_level_2, 1
jnz cont1_2
CALL DrawLevel1_2
jmp cont_2
cont1_2:
cmp selected_level_2, 2
jnz cont2_2
CALL DrawLevel2_2
jmp cont_2
cont2_2:
cmp selected_level_2, 3
CALL DrawLevel3_2
cont_2:
CALL DrawPadel_2
mov ball_color_2, 2
CALL DrawBall_2
mov bx,0
ResetAllGifts_2:
mov byte ptr [gift_active_2+bx], 0
mov gift_x_2, 0
mov gift_y_2, 0
inc bl
cmp bl,[gift_count_2]
jne ResetAllGifts_2
CALL DrawPadel_2
mov inReset_2, 1
RET
ResetAll_2 ENDP
ResetBricks proc
mov di, 0
rows_reset_loop:
mov si, 0
mov ax, di
mov bx, numCols
mul bx
mov bx, ax
cols_reset_loop:
mov bricks[bx], 1
add bx, 2
add si, 2
cmp si, 48
jne cols_reset_loop
add di, 2
cmp di, 22
jne rows_reset_loop
ret
ResetBricks endp
ResetBricks_2 proc
mov di, 0
rows_reset_loop_2:
mov si, 0
mov ax, di
mov bx, numCols_2
mul bx
mov bx, ax
cols_reset_loop_2:
mov bricks_2[bx], 1
add bx, 2
add si, 2
cmp si, 48
jne cols_reset_loop_2
add di, 2
cmp di, 22
jne rows_reset_loop_2
ret
ResetBricks_2 endp
DrawGift PROC
cmp [gift_active + bx], 0
push bx ; Check if the gift is active
je SkipDrawing ; Skip if not active
; Use calculated offsets to access gift_x_list and gift_y_list
mov cx, gift_x ; Get X position of the gift
mov dx, gift_y ; Get Y position of the gift
mov bx, gift_size ; Load the gift size
push cx
push dx
mov si, 0
DrawColumnG:
push cx
mov di, 0
DrawRowG:
mov ah, 0Ch
mov al, gift_color
int 10h
inc cx
inc di
cmp di, bx
jl DrawRowG
pop cx
inc dx
inc si
cmp si, bx
jl DrawColumnG
pop dx
pop cx
push cx
push dx
; Draw horizontal ribbon
mov si, gift_size
shr si, 1
add dx, si
mov di, 0
RibbonHorizontal:
mov ah, 0Ch
mov al, ribbon_color
int 10h
inc cx
inc di
cmp di, bx
jl RibbonHorizontal
; Draw vertical ribbon
pop dx
pop cx
push cx
push dx
add cx, si
mov di, 0
RibbonVertical:
; Set pixel for ribbon (Vertical)
mov ah, 0Ch
mov al, ribbon_color
int 10h
inc dx
inc di
cmp di, bx
jl RibbonVertical
; Draw bow (top decoration)
pop dx
pop cx
mov di, 0
DrawBow:
mov ah, 0Ch
mov al, bow_color
int 10h
inc cx
inc di
cmp di, gift_size
jl DrawBow
SkipDrawing:
pop bx
RET
DrawGift ENDP
MoveGift PROC
push bx
mov cx, gift_count
xor bx, bx
LoopMoveGifts:
cmp bx, cx
jge EndMove
; Check if gift is active
cmp [gift_active+bx], 0 ; Is the gift active?
je SkipGift
; Decrement counter
dec [gift_counter] ; Decrement gift's counter
jnz SkipGift
push cx
push ax
mov gift_color, 0
mov bow_color, 0
mov ribbon_color, 0
CALL DrawGift
pop ax
pop cx
; Reset counter
mov ax, gift_speed
mov [gift_counter], ax
; Move gift down
mov ax, gift_y
add ax, gift_dy
mov [gift_y], ax ; Update Y positionFre
continue_move_gift:
cmp ax, 590
jl check_gift_collision
mov [gift_active+bx], 0
mov [is_there_gift],0
jmp SkipGift
check_gift_collision:
mov ax, gift_y
add ax, gift_size
cmp ax, padel_y1
jl SkipGift
mov ax, gift_y
add ax, ball_size
cmp ax, padel_y2
jg SkipGift
mov ax, gift_x
add ax, gift_size
cmp ax, padel_x1
jl SkipGift
mov ax, gift_x
add ax, gift_size
cmp ax, padel_x2
jg SkipGift
mov [gift_active+bx], 0