2020-04-09 05:23:32 +00:00
|
|
|
; The Channely Wood level
|
|
|
|
|
|
|
|
; by deater (Vince Weaver) <vince@deater.net>
|
|
|
|
|
|
|
|
; Zero Page
|
|
|
|
.include "zp.inc"
|
|
|
|
.include "hardware.inc"
|
|
|
|
.include "common_defines.inc"
|
2020-06-16 17:30:45 +00:00
|
|
|
.include "common_routines.inc"
|
2020-04-09 05:23:32 +00:00
|
|
|
|
|
|
|
channel_start:
|
|
|
|
;===================
|
|
|
|
; init screen
|
|
|
|
jsr TEXT
|
|
|
|
jsr HOME
|
|
|
|
bit KEYRESET
|
|
|
|
|
|
|
|
bit SET_GR
|
|
|
|
bit PAGE0
|
|
|
|
bit LORES
|
|
|
|
bit FULLGR
|
|
|
|
|
2020-06-16 17:30:45 +00:00
|
|
|
;=================
|
|
|
|
; set up location
|
|
|
|
;=================
|
|
|
|
|
|
|
|
lda #<locations
|
|
|
|
sta LOCATIONS_L
|
|
|
|
lda #>locations
|
|
|
|
sta LOCATIONS_H
|
|
|
|
|
|
|
|
|
2020-04-09 05:23:32 +00:00
|
|
|
lda #0
|
|
|
|
sta DRAW_PAGE
|
|
|
|
sta LEVEL_OVER
|
|
|
|
|
|
|
|
; init cursor
|
|
|
|
|
|
|
|
lda #20
|
|
|
|
sta CURSOR_X
|
|
|
|
sta CURSOR_Y
|
|
|
|
|
|
|
|
; set up initial location
|
|
|
|
|
|
|
|
jsr change_location
|
|
|
|
|
|
|
|
lda #1
|
|
|
|
sta CURSOR_VISIBLE ; visible at first
|
|
|
|
|
|
|
|
lda #0
|
|
|
|
sta ANIMATE_FRAME
|
|
|
|
|
2020-06-16 05:10:33 +00:00
|
|
|
; reset elevators and bridges at start
|
|
|
|
; actual game does this too?
|
2020-07-27 18:16:55 +00:00
|
|
|
; do this in the linking book otherwise this happens
|
|
|
|
; when we take the elevator back down
|
2020-06-16 05:10:33 +00:00
|
|
|
|
2020-07-27 18:16:55 +00:00
|
|
|
; lda CHANNEL_SWITCHES
|
|
|
|
; ; hack to avoid "RANGE ERROR" on some versions of ca65
|
|
|
|
; and #<(~(CHANNEL_BRIDGE_UP|CHANNEL_PIPE_EXTENDED|CHANNEL_BOOK_ELEVATOR_UP))
|
|
|
|
; sta CHANNEL_SWITCHES
|
2020-06-16 05:10:33 +00:00
|
|
|
|
2020-06-15 04:36:55 +00:00
|
|
|
; set up bridges
|
|
|
|
|
|
|
|
jsr adjust_after_changes
|
|
|
|
|
2020-04-09 05:23:32 +00:00
|
|
|
|
|
|
|
game_loop:
|
|
|
|
;=================
|
|
|
|
; reset things
|
|
|
|
;=================
|
|
|
|
|
|
|
|
lda #0
|
|
|
|
sta IN_SPECIAL
|
|
|
|
sta IN_RIGHT
|
|
|
|
sta IN_LEFT
|
|
|
|
|
|
|
|
;====================================
|
|
|
|
; copy background to current page
|
|
|
|
;====================================
|
|
|
|
|
|
|
|
jsr gr_copy_to_current
|
|
|
|
|
|
|
|
;====================================
|
|
|
|
; handle special-case forground logic
|
|
|
|
;====================================
|
|
|
|
|
|
|
|
lda LOCATION
|
2020-07-27 17:02:40 +00:00
|
|
|
|
2020-07-27 15:12:56 +00:00
|
|
|
cmp #CHANNEL_TANK_CLOSE
|
|
|
|
beq fg_draw_faucet
|
|
|
|
|
2020-07-27 17:02:40 +00:00
|
|
|
cmp #CHANNEL_WINDMILL
|
|
|
|
beq fg_draw_windmill_handle
|
|
|
|
|
2020-06-16 05:10:33 +00:00
|
|
|
cmp #CHANNEL_BOOK_OPEN
|
|
|
|
beq animate_mist_book
|
2020-04-16 01:38:38 +00:00
|
|
|
|
|
|
|
jmp nothing_special
|
|
|
|
|
2020-07-27 17:02:40 +00:00
|
|
|
fg_draw_windmill_handle:
|
|
|
|
jsr draw_windmill_handle
|
|
|
|
jmp nothing_special
|
|
|
|
|
2020-07-27 15:12:56 +00:00
|
|
|
fg_draw_faucet:
|
|
|
|
jsr draw_water_faucet
|
|
|
|
jmp nothing_special
|
|
|
|
|
2020-06-16 05:10:33 +00:00
|
|
|
animate_mist_book:
|
|
|
|
lda DIRECTION
|
|
|
|
cmp #DIRECTION_S
|
2020-04-16 01:38:38 +00:00
|
|
|
bne done_animate_book
|
|
|
|
|
|
|
|
lda ANIMATE_FRAME
|
2020-06-16 05:10:33 +00:00
|
|
|
cmp #6
|
|
|
|
bcc mist_book_good ; blt
|
|
|
|
|
|
|
|
lda #0
|
|
|
|
sta ANIMATE_FRAME
|
|
|
|
|
|
|
|
mist_book_good:
|
|
|
|
|
|
|
|
asl
|
|
|
|
tay
|
|
|
|
lda mist_movie,Y
|
|
|
|
sta INL
|
|
|
|
lda mist_movie+1,Y
|
|
|
|
sta INH
|
|
|
|
|
|
|
|
lda #24
|
|
|
|
sta XPOS
|
|
|
|
|
|
|
|
lda #12
|
|
|
|
sta YPOS
|
|
|
|
|
|
|
|
jsr put_sprite_crop
|
|
|
|
|
|
|
|
lda FRAMEL
|
|
|
|
and #$f
|
|
|
|
bne done_animate_book
|
|
|
|
|
|
|
|
inc ANIMATE_FRAME
|
|
|
|
|
2020-04-16 01:38:38 +00:00
|
|
|
done_animate_book:
|
2020-06-16 05:10:33 +00:00
|
|
|
jmp nothing_special
|
2020-04-09 05:23:32 +00:00
|
|
|
|
|
|
|
nothing_special:
|
|
|
|
|
|
|
|
;====================================
|
|
|
|
; draw pointer
|
|
|
|
;====================================
|
|
|
|
|
|
|
|
jsr draw_pointer
|
|
|
|
|
|
|
|
;====================================
|
|
|
|
; page flip
|
|
|
|
;====================================
|
|
|
|
|
|
|
|
jsr page_flip
|
|
|
|
|
|
|
|
;====================================
|
|
|
|
; handle keypress/joystick
|
|
|
|
;====================================
|
|
|
|
|
|
|
|
jsr handle_keypress
|
|
|
|
|
|
|
|
|
|
|
|
;====================================
|
|
|
|
; inc frame count
|
|
|
|
;====================================
|
|
|
|
|
|
|
|
inc FRAMEL
|
|
|
|
bne room_frame_no_oflo
|
|
|
|
inc FRAMEH
|
|
|
|
room_frame_no_oflo:
|
|
|
|
|
|
|
|
;====================================
|
|
|
|
; check level over
|
|
|
|
;====================================
|
|
|
|
|
|
|
|
lda LEVEL_OVER
|
|
|
|
bne really_exit
|
|
|
|
jmp game_loop
|
|
|
|
|
|
|
|
really_exit:
|
|
|
|
jmp end_level
|
|
|
|
|
|
|
|
|
2020-06-11 06:39:38 +00:00
|
|
|
look_at_faucet:
|
|
|
|
lda #CHANNEL_TANK_CLOSE
|
|
|
|
sta LOCATION
|
|
|
|
jmp change_location
|
|
|
|
|
|
|
|
toggle_windmill:
|
|
|
|
lda CHANNEL_SWITCHES
|
|
|
|
eor #CHANNEL_SW_WINDMILL
|
|
|
|
sta CHANNEL_SWITCHES
|
|
|
|
rts
|
|
|
|
|
|
|
|
toggle_faucet:
|
|
|
|
lda CHANNEL_SWITCHES
|
|
|
|
eor #CHANNEL_SW_FAUCET
|
|
|
|
sta CHANNEL_SWITCHES
|
|
|
|
rts
|
|
|
|
|
2020-04-09 05:23:32 +00:00
|
|
|
|
|
|
|
;==========================
|
|
|
|
; includes
|
|
|
|
;==========================
|
|
|
|
|
2020-06-16 17:30:45 +00:00
|
|
|
; level graphics
|
|
|
|
.include "graphics_channel/channel_graphics.inc"
|
2020-04-09 05:23:32 +00:00
|
|
|
|
2020-07-17 13:39:27 +00:00
|
|
|
; sound
|
|
|
|
.include "simple_sounds.s"
|
2020-04-09 05:23:32 +00:00
|
|
|
|
2020-06-13 04:27:13 +00:00
|
|
|
; puzzles
|
|
|
|
.include "channel_switches.s"
|
|
|
|
|
2020-06-16 17:30:45 +00:00
|
|
|
; level data
|
2020-04-09 05:23:32 +00:00
|
|
|
.include "leveldata_channel.inc"
|
2020-04-15 21:03:07 +00:00
|
|
|
|
|
|
|
; linking books
|
2020-06-16 05:10:33 +00:00
|
|
|
.include "link_book_mist.s"
|
2020-04-16 01:38:38 +00:00
|
|
|
|