dos33fsprogs/ootw/ootw_c1_cavern.s

270 lines
3.7 KiB
ArmAsm
Raw Normal View History

; Cavern scenes (with the slugs)
2019-01-17 21:58:19 +00:00
ootw_cavern:
;===========================
; Enable graphics
bit LORES
bit SET_GR
bit FULLGR
;==================
; setup drawing
2019-01-17 21:58:19 +00:00
lda #0
sta DRAW_PAGE
lda #1
sta DISP_PAGE
;======================
; setup room boundaries
lda #(-4+128)
sta LEFT_LIMIT
sta LEFT_WALK_LIMIT
lda #(39+128)
sta RIGHT_LIMIT
sta RIGHT_WALK_LIMIT
2019-01-17 21:58:19 +00:00
;=============================
; Load background to $c00
2019-01-17 21:58:19 +00:00
jsr cavern_load_background
2019-01-17 21:58:19 +00:00
;================================
; Load quake background to $BC00
jsr gr_make_quake
2019-01-20 06:45:51 +00:00
;================================
; setup per-cave variables
2019-01-20 06:45:51 +00:00
lda WHICH_CAVE
bne cave1
cave0:
2019-01-21 04:53:49 +00:00
; set slug table to use
lda #0
sta ds_smc1+1
2019-08-19 21:16:44 +00:00
lda #3 ; use slugs 0-2
2019-01-21 04:53:49 +00:00
sta ds_smc2+1
2019-01-20 06:45:51 +00:00
; set right exit
lda #1
sta cer_smc+1
lda #<ootw_cavern
sta cer_smc+5
lda #>ootw_cavern
sta cer_smc+6
; set left exit
lda #0
sta cel_smc+1
lda #<ootw_pool
sta cel_smc+5
lda #>ootw_pool
sta cel_smc+6
jmp cave_setup_done
2019-01-20 06:45:51 +00:00
cave1:
2019-01-20 06:45:51 +00:00
2019-01-21 04:53:49 +00:00
; set slug table to use
2019-08-19 21:16:44 +00:00
lda #3
2019-01-21 04:53:49 +00:00
sta ds_smc1+1
2019-08-19 21:16:44 +00:00
lda #7 ; use slugs 3-6
2019-01-21 04:53:49 +00:00
sta ds_smc2+1
2019-01-20 06:45:51 +00:00
; set right exit
lda #1
sta cer_smc+1
lda #<ootw_mesa
sta cer_smc+5
lda #>ootw_mesa
sta cer_smc+6
; set left exit
lda #0
sta cel_smc+1
lda #<ootw_cavern
sta cel_smc+5
lda #>ootw_cavern
sta cel_smc+6
cave_setup_done:
2019-01-18 05:18:06 +00:00
2019-01-17 21:58:19 +00:00
;=================================
; copy $c00 background to both pages $400/$800
2019-01-17 21:58:19 +00:00
; jsr gr_copy_to_current
; jsr page_flip
; jsr gr_copy_to_current
2019-01-17 21:58:19 +00:00
;=================================
; setup vars
lda #0
sta GAIT
2019-01-17 22:14:19 +00:00
sta GAME_OVER
2019-08-20 04:28:47 +00:00
sta BG_BEAST ; in case it wasn't gone yet
2019-01-17 21:58:19 +00:00
; make sure in range and such
jsr refresh_slugs
2019-03-25 04:12:09 +00:00
jsr setup_beast
;============================
;============================
2019-01-17 21:58:19 +00:00
;============================
; Cavern Loop (not a palindrome)
;============================
2019-03-25 04:12:09 +00:00
;============================
;============================
2019-01-17 21:58:19 +00:00
cavern_loop:
2019-01-18 05:18:06 +00:00
;==========================
2019-01-20 06:05:52 +00:00
; handle earthquake
2019-01-17 21:58:19 +00:00
2019-01-20 06:05:52 +00:00
jsr earthquake_handler
2019-01-17 21:58:19 +00:00
;===============
; check keyboard
2019-01-18 17:00:25 +00:00
jsr handle_keypress
2019-01-18 17:00:25 +00:00
;===============
; move physicist
2019-01-18 17:00:25 +00:00
jsr move_physicist
2019-01-18 17:00:25 +00:00
;===============
; check room limits
jsr check_screen_limit
2019-01-17 21:58:19 +00:00
;===============
; draw physicist
jsr draw_physicist
2019-03-25 04:12:09 +00:00
;================
; handle beast
lda BEAST_OUT
beq cavern_no_beast
;================
; move beast
jsr move_beast
;================
; draw beast
jsr draw_beast
cavern_no_beast:
2019-01-18 17:00:25 +00:00
just_slugs:
2019-01-17 21:58:19 +00:00
;===============
; draw slugs
jsr draw_slugs
;======================
; draw falling boulders
jsr draw_boulder
2019-01-17 21:58:19 +00:00
;=======================
; page flip
jsr page_flip
;========================
; inc frame count
inc FRAMEL
bne frame_no_oflo_c
inc FRAMEH
frame_no_oflo_c:
2019-01-20 06:45:51 +00:00
;=================
2019-01-17 21:58:19 +00:00
; see if game over
lda GAME_OVER
2019-01-20 06:45:51 +00:00
beq still_in_cavern ; if 0, continue as per normal
cmp #$ff ; if $ff, we died
2019-01-17 22:14:19 +00:00
beq done_cavern
2019-01-20 06:45:51 +00:00
;===========================
; see if exited room to right
2019-01-17 22:14:19 +00:00
cmp #1
2019-01-20 06:45:51 +00:00
beq cavern_exit_left
cavern_exit_right:
lda #0
sta PHYSICIST_X
cer_smc:
lda #$0
sta WHICH_CAVE
jmp ootw_pool
2019-01-17 22:14:19 +00:00
2019-01-20 06:45:51 +00:00
;==========================
; see if exited room to left
cavern_exit_left:
2019-01-17 22:14:19 +00:00
lda #37
sta PHYSICIST_X
2019-01-20 06:45:51 +00:00
cel_smc:
lda #$0
sta WHICH_CAVE
2019-01-17 22:14:19 +00:00
jmp ootw_pool
2019-01-17 21:58:19 +00:00
2019-01-17 22:14:19 +00:00
still_in_cavern:
2019-01-17 21:58:19 +00:00
; loop forever
jmp cavern_loop
done_cavern:
rts
;===============================
; load proper background to $c00
;===============================
cavern_load_background:
lda WHICH_CAVE
bne cave_bg1
cave_bg0:
; load background
lda #>(cavern_rle)
sta GBASH
lda #<(cavern_rle)
sta GBASL
jmp cave_bg_done
cave_bg1:
; load background
lda #>(cavern2_rle)
sta GBASH
lda #<(cavern2_rle)
sta GBASL
cave_bg_done:
lda #$c ; load image off-screen $c00
jmp load_rle_gr ; tail call