-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.asm
907 lines (777 loc) · 18.1 KB
/
main.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
#import "references/vic2constants.asm"
#import "references/generalconstants.asm"
// OPTIONS
.var LANE_1_Y = 78
.var LANE_2_Y = 124
.var LANE_3_Y = 170
.var LANE_4_Y = 216
BasicUpstart2(MAIN)
*= $1000 "Main Program"
// FLAGS
game_state: .byte $00
mainloop_flag: .byte $00
key_pressed: .byte $00
zero_score: .byte $01
// GAME LOGIC
score_count: .byte 0,0,0
lives_count: .byte 4
level_count: .byte 1
difficulty_increment: .byte 0
selected_lane: .byte 0
active_lane: .byte 0
active_lane_movement: .byte 0
rnd_avoid: .byte 0
lane_shape_speed: .byte 2
lane_shape_x: .byte $00,$00
// GAME TEXT
.encoding "petscii_mixed"
txt_titlename1: .text " UCCCC B UCCCI UCI B UCCCC UCCCC "
txt_titlename2: .text " B B B B B B B B B "
txt_titlename3: .text " BDD B BDDDB B B B BDD JCCCI "
txt_titlename4: .text " B B B B B B B B B "
txt_titlename5: .text " B JCCCC B B B JCK JCCCC CCCCK "
.encoding "screencode_mixed"
txt_titleinstruction1: .text " press an f key at the right time! "
txt_titleinstruction2: .text " press 'space' to start "
txt_titlecredit: .text " by jonathan capps (2021) "
txt_gameover1: .text " game over! "
txt_gameover2: .text " press 'space' to restart "
txt_hud: .text "lives : ? level : 1 score : 000000"
// COLORS
lanecolors: .byte YELLOW, GREEN, CYAN, LIGHT_RED
titlecolor_index: .byte $00
// MAIN PROGRAM
MAIN: {
setup: {
jsr INTERRUPTS.init
jsr SCREEN.clear
jsr SCREEN.text_color.white
jsr SCREEN.title_text
jmp title
}
gameover: {
lda #$02
sta game_state
jsr SCREEN.gameover_text
jsr SCREEN.text_color.white
jsr SHAPES.clear
gameoverloop:
lda PORT_REG_B
cmp #$ef
bne gameoverloop
}
reset: {
lda #$00
sta mainloop_flag
sta key_pressed
sta score_count
sta score_count + 1
sta score_count + 2
sta selected_lane
sta active_lane
sta active_lane_movement
sta lane_shape_x
sta lane_shape_x + 1
lda #1
sta level_count
lda #$04
sta lives_count
lda #2
sta lane_shape_speed
}
title: {
lda PORT_REG_B
cmp #$ef
bne title
}
game: {
// game setup
lda #$01
sta game_state
jsr SCREEN.clear
jsr SHAPES.setup
jsr HUD.color
jsr HUD.draw
jsr GAMEPLAY.update_lives
jsr GAMEPLAY.setup
// game loop
mainloop:
lda mainloop_flag
cmp #$01
bne mainloop
jsr SHAPES.move
jsr SHAPES.draw
jsr GAMEPLAY.key_check
dec mainloop_flag
jmp mainloop
}
}
// gameplaye logic
GAMEPLAY: {
setup: {
lda #%11111111
sta DD_REG_A
lda #%00000000
sta DD_REG_B
lda #%11111110
sta PORT_REG_A
lda #$FF
sta $D40E
sta $D40F
lda #$80
sta $D412
rts
}
generate_rnd: {
lda $D41B
lsr
lsr
lsr
lsr
lsr
lsr
clc
adc #1
cmp rnd_avoid
beq generate_rnd
rts
}
update_lives: {
lda lives_count
cmp #0
bmi game_over
clc
adc #48
sta SCREEN_RAM + 8
rts
}
game_over: {
jmp MAIN.gameover
}
key_check: {
lda #%11111111
sta DD_REG_A
lda #%00000000
sta DD_REG_B
lda #%11111110
sta PORT_REG_A
f1:
lda PORT_REG_B
and #%00010000
bne f3
lda #$01
sta selected_lane
jmp end_withpress
f3:
lda PORT_REG_B
and #%00100000
bne f5
lda #$02
sta selected_lane
jmp end_withpress
f5:
lda PORT_REG_B
and #%01000000
bne f7
lda #$03
sta selected_lane
jmp end_withpress
f7:
lda PORT_REG_B
and #%00001000
bne end_nopress
lda #$04
sta selected_lane
end_withpress:
lda key_pressed
cmp #$00
bne end_holdpress
lda #$01
sta key_pressed
lda selected_lane
cmp active_lane
bne lose_life
jsr SCORE.check
jsr SHAPES.reset_lane
rts
end_nopress:
lda #$00
sta key_pressed
end_holdpress:
lda #$00
sta selected_lane
rts
}
lose_life: {
lda lives_count
sec
sbc #1
sta lives_count
jsr update_lives
rts
}
}
// SCORE
SCORE: {
check: {
check_zero:
lda score_count
cmp #0
bne check_hit
lda score_count+1
cmp #0
bne check_hit
lda score_count+2
cmp #0
bne check_hit
lda $01;
sta zero_score
check_hit:
lda SPRITE_MSB_X
and 00000001
beq !+
!:
lda SPRITE_0_X
cmp #35
bcs !+
jmp decrease
!:
cmp #55
bcc increase
jmp decrease
}
increase: {
sed
clc
lda score_count
adc #10
sta score_count
lda score_count+1
adc #0
sta score_count+1
lda score_count+2
adc #0
sta score_count+2
cld
lda $00;
sta zero_score
jmp check_difficulty
}
decrease: {
clc
lda zero_score
cmp $01;
beq GAMEPLAY.lose_life
sed
sec
lda score_count
sbc #10
sta score_count
lda score_count+1
sbc #0
sta score_count+1
lda score_count+2
sbc #0
sta score_count+2
cld
jmp process
}
check_difficulty: {
clc
lda difficulty_increment
adc #10
cmp #50
sta difficulty_increment
bne process
inc lane_shape_speed
inc level_count
lda #0
sta difficulty_increment
}
level_process: {
lda level_count
}
process: {
lda level_count
clc
adc #48
sta SCREEN_RAM + 21
ldy #$27
ldx #$00
!:
lda score_count,x
pha
and #$0f
jsr draw
pla
lsr
lsr
lsr
lsr
jsr draw
inx
cpx #3
bne !-
rts
}
draw: {
clc
adc #48
sta SCREEN_RAM,y
dey
rts
}
}
// SPIKES
SHAPES: {
clear: {
lda #%00000000
sta SPRITE_ENABLE
rts
}
setup: {
lda #200
sta SPRITE_POINTER_0
lda #201
sta SPRITE_POINTER_1
lda #202
sta SPRITE_POINTER_2
lda #203
sta SPRITE_POINTER_3
lda #BLACK
sta SPRITE_COLOR_0
sta SPRITE_COLOR_1
sta SPRITE_COLOR_2
sta SPRITE_COLOR_3
lda #%00000000
sta SPRITE_DOUBLE_X
sta SPRITE_DOUBLE_Y
lda #%00000000
sta SPRITE_MODE
lda #0
sta SPRITE_0_X
lda #45
sta SPRITE_1_X
lda #24
sta SPRITE_2_X
sta SPRITE_3_X
lda #%00000010
sta SPRITE_MSB_X
lda #%00001111
sta SPRITE_ENABLE
rts
}
move: {
lda active_lane_movement
cmp #0
bne move_active
set_lane:
lda #1
sta active_lane_movement
lda active_lane
sta rnd_avoid
jsr GAMEPLAY.generate_rnd
sta active_lane
move_active:
lda active_lane
cmp #1
beq set_y_1
cmp #2
beq set_y_2
cmp #3
beq set_y_3
cmp #4
beq set_y_4
set_y_1:
lda #LANE_1_Y
jmp move_x
set_y_2:
lda #LANE_2_Y
jmp move_x
set_y_3:
lda #LANE_3_Y
jmp move_x
set_y_4:
lda #LANE_4_Y
move_x:
sta SPRITE_0_Y
clc
lda lane_shape_x
adc lane_shape_speed
sta lane_shape_x
bcc move_end
lda #$01
sta lane_shape_x + 1
move_end:
rts
}
reset_lane: {
lda #$00
sta active_lane_movement
sta lane_shape_x
sta lane_shape_x + 1
lda SPRITE_MSB_X
and #%11111110
sta SPRITE_MSB_X
}
draw: {
set_x:
lda lane_shape_x
sta SPRITE_0_X
lda lane_shape_x + 1
cmp #$01
bne draw_end
set_high_x:
lda lane_shape_x
clc
cmp #100
bcs set_low_x
lda SPRITE_MSB_X
ora #%00000001
jmp store_msb_x
set_low_x:
lda #00
sta lane_shape_x + 1
sta lane_shape_x
lda #0
sta active_lane_movement
lda SPRITE_MSB_X
and #%11111110
store_msb_x:
sta SPRITE_MSB_X
draw_end:
lda lane_shape_x
sta SPRITE_0_X
rts
}
}
HUD: {
color: {
ldx #$27
lda #WHITE
!:
sta COLOR_RAM,x
dex
bpl !-
rts
}
draw: {
ldx #$27
!:
lda txt_hud,x
sta SCREEN_RAM,x
dex
bpl !-
rts
}
}
// SCREEN OPERATIONS
SCREEN: {
clear: {
lda #BLACK
sta BORDER_COLOR
sta SCREEN_COLOR
jsr CLEAR_SCREEN
rts
}
text_color: {
white:
lda #WHITE
jmp set_color
black:
lda #BLACK
set_color:
ldx #0
!:
sta COLOR_RAM,x
sta COLOR_RAM + 250,x
sta COLOR_RAM + 500,x
sta COLOR_RAM + 750,x
inx
cpx #250
bne !-
rts
}
title_text: {
.label TITLE_START = SCREEN_RAM + 80
.label TITLE_COLOR_START = COLOR_RAM + 80;
title1_draw:
ldx #$27
!:
lda #YELLOW
sta TITLE_COLOR_START,x
lda txt_titlename1,x
sta TITLE_START,x
dex
bpl !-
title2_draw:
ldx #$27
!:
lda #GREEN
sta TITLE_COLOR_START + 40,x
lda txt_titlename2,x
sta TITLE_START + 40,x
dex
bpl !-
title3_draw:
ldx #$27
!:
lda #CYAN
sta TITLE_COLOR_START + 80,x
lda txt_titlename3,x
sta TITLE_START + 80,x
dex
bpl !-
title4_draw:
ldx #$27
!:
lda #LIGHT_RED
sta TITLE_COLOR_START + 120,x
lda txt_titlename4,x
sta TITLE_START + 120,x
dex
bpl !-
title5_draw:
ldx #$27
!:
lda #LIGHT_BLUE
sta TITLE_COLOR_START + 160,x
lda txt_titlename5,x
sta TITLE_START + 160,x
dex
bpl !-
instruction_draw:
ldx #$27
!:
lda txt_titleinstruction1,x
sta TITLE_START + 360,x
dex
bpl !-
ldx #$27
!:
lda txt_titleinstruction2,x
sta TITLE_START + 440,x
dex
bpl !-
credit_draw:
ldx #$27
!:
lda #LIGHT_GREY
sta TITLE_COLOR_START + 880,x
lda txt_titlecredit,x
sta TITLE_START + 880,x
dex
bpl !-
rts
}
gameover_text: {
gameover1_draw:
ldx #$27
!:
lda txt_gameover1,x
sta $0568,x
dex
bpl !-
gameover2_draw:
ldx #$27
!:
lda txt_gameover2,x
sta $05e0,x
dex
bpl !-
rts
}
debug_number: {
clc
adc #48
sta SCREEN_RAM + 40
rts
}
}
// INTERRUPTS
INTERRUPTS: {
init: {
sei
lda #%01111111
sta INTERRUPT_REG
lda RASTER_LINE_MSB
and #%01111111
sta RASTER_LINE_MSB
lda #0
sta RASTER_LINE
lda #<gateway
sta INTERRUPT_EXECUTION_LOW
lda #>gateway
sta INTERRUPT_EXECUTION_HIGH
lda INTERRUPT_ENABLE
ora #%00000001
sta INTERRUPT_ENABLE
cli
rts
}
gateway: {
lda game_state
cmp #$00
beq gateway_title
cmp #$01
beq gateway_game
cmp #$02
beq gateway_gameover
jmp acknowledge
gateway_title:
jmp acknowledge
gateway_game:
lda #66
sta RASTER_LINE
lda #<game_irqs
sta INTERRUPT_EXECUTION_LOW
lda #>game_irqs
sta INTERRUPT_EXECUTION_HIGH
jmp acknowledge
gateway_gameover:
jmp acknowledge
}
game_irqs: {
lane1:
lda selected_lane
cmp #$01
bne !+
ldx #WHITE
jmp lane1_draw
!:
ldx lanecolors
lane1_draw:
lda RASTER_LINE
cmp #68
bne lane1_draw
stx SCREEN_COLOR
lda #LANE_1_Y
sta SPRITE_1_Y
lda #69
sta SPRITE_2_Y
lda #89
sta SPRITE_3_Y
lda #BLUE
sta SPRITE_COLOR_0
sta SPRITE_COLOR_2
sta SPRITE_COLOR_3
lda #110
sta RASTER_LINE
lda #<lane2
sta INTERRUPT_EXECUTION_LOW
lda #>lane2
sta INTERRUPT_EXECUTION_HIGH
jmp acknowledge
lane2:
lda selected_lane
cmp #$02
bne !+
ldx #WHITE
jmp lane2_draw
!:
ldx lanecolors + 1
lane2_draw:
lda RASTER_LINE
cmp #113
bne lane2_draw
stx SCREEN_COLOR
lda #LANE_2_Y
sta SPRITE_1_Y
lda #115
sta SPRITE_2_Y
lda #135
sta SPRITE_3_Y
lda #PURPLE
sta SPRITE_COLOR_0
sta SPRITE_COLOR_2
sta SPRITE_COLOR_3
lda #157
sta RASTER_LINE
lda #<lane3
sta INTERRUPT_EXECUTION_LOW
lda #>lane3
sta INTERRUPT_EXECUTION_HIGH
jmp acknowledge
lane3:
lda selected_lane
cmp #$03
bne !+
ldx #WHITE
jmp lane3_draw
!:
ldx lanecolors + 2
lane3_draw:
lda RASTER_LINE
cmp #159
bne lane3_draw
stx SCREEN_COLOR
lda #LANE_3_Y
sta SPRITE_1_Y
lda #161
sta SPRITE_2_Y
lda #181
sta SPRITE_3_Y
lda #LIGHT_RED
sta SPRITE_COLOR_0
sta SPRITE_COLOR_2
sta SPRITE_COLOR_3
lda #203
sta RASTER_LINE
lda #<lane4
sta INTERRUPT_EXECUTION_LOW
lda #>lane4
sta INTERRUPT_EXECUTION_HIGH
jmp acknowledge
lane4:
lda selected_lane
cmp #$04
bne !+
ldx #WHITE
jmp lane4_draw
!:
ldx lanecolors + 3
lane4_draw:
lda RASTER_LINE
cmp #205
bne lane4_draw
stx SCREEN_COLOR
lda #LANE_4_Y
sta SPRITE_1_Y
lda #207
sta SPRITE_2_Y
lda #227
sta SPRITE_3_Y
lda #CYAN
sta SPRITE_COLOR_0
sta SPRITE_COLOR_2
sta SPRITE_COLOR_3
lda #250
sta RASTER_LINE
lda #<lane_finish
sta INTERRUPT_EXECUTION_LOW
lda #>lane_finish
sta INTERRUPT_EXECUTION_HIGH
jmp acknowledge
lane_finish:
lda #$01
sta mainloop_flag
ldx #BLACK
lda RASTER_LINE
cmp #252
bne lane_finish
stx SCREEN_COLOR
lda #0
sta RASTER_LINE
lda #<gateway
sta INTERRUPT_EXECUTION_LOW
lda #>gateway
sta INTERRUPT_EXECUTION_HIGH
jmp acknowledge
}
acknowledge:
dec INTERRUPT_STATUS
jmp SYS_IRQ_HANDLER
}
// SPRITE STORAGE
*= $3200 "Sprites"
.import binary "assets/bin/sprites.bin"