2020-03-25 05:17:59 +00:00
|
|
|
; Viewer in the room by the dock
|
|
|
|
|
|
|
|
; 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-03-25 05:17:59 +00:00
|
|
|
|
|
|
|
viewer_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-03-25 05:17:59 +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
|
|
|
|
|
|
|
|
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-03-27 19:43:24 +00:00
|
|
|
cmp #VIEWER_CONTROL_PANEL
|
|
|
|
beq control_panel
|
2020-03-27 21:07:16 +00:00
|
|
|
cmp #VIEWER_POOL_CLOSE
|
|
|
|
beq look_at_pool
|
|
|
|
jmp reset_animation
|
|
|
|
|
|
|
|
look_at_pool:
|
|
|
|
jsr display_viewer
|
2020-03-27 19:43:24 +00:00
|
|
|
|
|
|
|
jmp nothing_special
|
|
|
|
|
|
|
|
control_panel:
|
|
|
|
jsr display_panel_code
|
|
|
|
|
2020-03-27 21:07:16 +00:00
|
|
|
jmp reset_animation
|
|
|
|
|
|
|
|
reset_animation:
|
|
|
|
lda #0
|
|
|
|
sta ANIMATE_FRAME
|
2020-03-25 05:17:59 +00:00
|
|
|
|
|
|
|
nothing_special:
|
|
|
|
|
2020-03-27 21:07:16 +00:00
|
|
|
|
|
|
|
|
2020-03-25 05:17:59 +00:00
|
|
|
;====================================
|
|
|
|
; 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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
back_to_mist:
|
|
|
|
|
|
|
|
lda #$ff
|
|
|
|
sta LEVEL_OVER
|
|
|
|
|
|
|
|
lda #MIST_ARRIVAL_DOCK ; the dock
|
|
|
|
sta LOCATION
|
|
|
|
lda #DIRECTION_E
|
|
|
|
sta DIRECTION
|
|
|
|
|
|
|
|
lda #LOAD_MIST
|
|
|
|
sta WHICH_LOAD
|
|
|
|
|
|
|
|
rts
|
|
|
|
|
|
|
|
|
|
|
|
;==========================
|
|
|
|
; includes
|
|
|
|
;==========================
|
|
|
|
|
2020-06-16 17:30:45 +00:00
|
|
|
.if 0
|
2020-03-25 05:17:59 +00:00
|
|
|
.include "gr_copy.s"
|
|
|
|
.include "gr_offsets.s"
|
|
|
|
.include "gr_pageflip.s"
|
|
|
|
.include "gr_putsprite_crop.s"
|
|
|
|
.include "text_print.s"
|
|
|
|
.include "gr_fast_clear.s"
|
|
|
|
.include "decompress_fast_v2.s"
|
|
|
|
.include "keyboard.s"
|
|
|
|
.include "draw_pointer.s"
|
|
|
|
.include "end_level.s"
|
2020-06-16 17:30:45 +00:00
|
|
|
.include "common_sprites.inc"
|
|
|
|
.include "page_sprites.inc"
|
2020-03-25 05:17:59 +00:00
|
|
|
|
2020-06-16 17:30:45 +00:00
|
|
|
.endif
|
2020-03-25 05:17:59 +00:00
|
|
|
|
2020-06-16 17:30:45 +00:00
|
|
|
; graphics
|
|
|
|
.include "graphics_viewer/viewer_graphics.inc"
|
2020-03-25 05:17:59 +00:00
|
|
|
|
|
|
|
; puzzles
|
2020-06-16 17:30:45 +00:00
|
|
|
.include "viewer_controls.s"
|
2020-03-25 05:17:59 +00:00
|
|
|
|
2020-06-16 17:30:45 +00:00
|
|
|
; leveldata
|
2020-03-25 05:17:59 +00:00
|
|
|
.include "leveldata_viewer.inc"
|
2020-03-27 19:43:24 +00:00
|
|
|
|
2020-06-16 17:30:45 +00:00
|
|
|
|