mirror of
https://github.com/deater/dos33fsprogs.git
synced 2025-01-14 13:33:48 +00:00
mist: stoney: animations for the trunk
This commit is contained in:
parent
c298d7c6ae
commit
4d97dfac90
@ -21,6 +21,7 @@ For release 1.0
|
|||||||
+ currently if you turn around from open airlock
|
+ currently if you turn around from open airlock
|
||||||
they aren't blacked out
|
they aren't blacked out
|
||||||
|
|
||||||
|
-- fix colors on gangplanks
|
||||||
-- allow coming at steps from an angle
|
-- allow coming at steps from an angle
|
||||||
-- if space allows, lighten floor of compass rose when
|
-- if space allows, lighten floor of compass rose when
|
||||||
right button pressed
|
right button pressed
|
||||||
|
Binary file not shown.
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 11 KiB |
@ -198,6 +198,8 @@ not_a_doorway:
|
|||||||
beq animate_magic_table
|
beq animate_magic_table
|
||||||
cmp #STONEY_TELESCOPE_VIEW
|
cmp #STONEY_TELESCOPE_VIEW
|
||||||
beq draw_telescope_view
|
beq draw_telescope_view
|
||||||
|
cmp #STONEY_TRUNK_CLOSE
|
||||||
|
beq fg_draw_trunk_close
|
||||||
|
|
||||||
jmp nothing_special
|
jmp nothing_special
|
||||||
|
|
||||||
@ -264,6 +266,10 @@ draw_telescope_view:
|
|||||||
jsr display_telescope
|
jsr display_telescope
|
||||||
jmp nothing_special
|
jmp nothing_special
|
||||||
|
|
||||||
|
fg_draw_trunk_close:
|
||||||
|
jsr draw_trunk_close
|
||||||
|
jmp nothing_special
|
||||||
|
|
||||||
nothing_special:
|
nothing_special:
|
||||||
|
|
||||||
;====================================
|
;====================================
|
||||||
|
@ -1452,10 +1452,120 @@ trunk_open_plug:
|
|||||||
; TOGGLE TRUNK_VALVE_OPEN
|
; TOGGLE TRUNK_VALVE_OPEN
|
||||||
; CLEAR FULL_OF_WATER
|
; CLEAR FULL_OF_WATER
|
||||||
|
|
||||||
; FIXME: start animation?
|
; if full of water, start animation
|
||||||
|
lda TRUNK_STATE
|
||||||
|
and #TRUNK_WATER_DRAINED
|
||||||
|
bne water_already_gone
|
||||||
|
|
||||||
|
lda #12
|
||||||
|
sta ANIMATE_FRAME
|
||||||
|
|
||||||
|
water_already_gone:
|
||||||
lda TRUNK_STATE
|
lda TRUNK_STATE
|
||||||
eor #TRUNK_VALVE_OPEN
|
eor #TRUNK_VALVE_OPEN
|
||||||
ora #TRUNK_WATER_DRAINED
|
ora #TRUNK_WATER_DRAINED
|
||||||
sta TRUNK_STATE
|
sta TRUNK_STATE
|
||||||
rts
|
rts
|
||||||
|
|
||||||
|
|
||||||
|
;===============================
|
||||||
|
; draw the close-in-trunk puzzle
|
||||||
|
;===============================
|
||||||
|
draw_trunk_close:
|
||||||
|
|
||||||
|
lda TRUNK_STATE
|
||||||
|
and #TRUNK_VALVE_OPEN
|
||||||
|
bne draw_trunk_plug_open
|
||||||
|
|
||||||
|
draw_trunk_plug_closed:
|
||||||
|
lda #7
|
||||||
|
sta XPOS
|
||||||
|
lda #40
|
||||||
|
sta YPOS
|
||||||
|
lda #<trunk_plug_closed_sprite
|
||||||
|
sta INL
|
||||||
|
lda #>trunk_plug_closed_sprite
|
||||||
|
sta INH
|
||||||
|
jsr put_sprite_crop
|
||||||
|
jmp done_draw_trunk_plug
|
||||||
|
|
||||||
|
draw_trunk_plug_open:
|
||||||
|
|
||||||
|
lda #10
|
||||||
|
sta XPOS
|
||||||
|
lda #44
|
||||||
|
sta YPOS
|
||||||
|
lda #<trunk_plug_open_sprite
|
||||||
|
sta INL
|
||||||
|
lda #>trunk_plug_open_sprite
|
||||||
|
sta INH
|
||||||
|
jsr put_sprite_crop
|
||||||
|
|
||||||
|
done_draw_trunk_plug:
|
||||||
|
lda ANIMATE_FRAME
|
||||||
|
beq totally_done_draw_trunk_plug
|
||||||
|
|
||||||
|
; animate water coming out
|
||||||
|
|
||||||
|
ror ; get low bit into carry
|
||||||
|
bcc trunk_water_even
|
||||||
|
|
||||||
|
trunk_water_odd:
|
||||||
|
lda #<trunk_plug_water1_sprite
|
||||||
|
sta INL
|
||||||
|
lda #>trunk_plug_water1_sprite
|
||||||
|
sta INH
|
||||||
|
bne trunk_water_draw ; bra
|
||||||
|
|
||||||
|
trunk_water_even:
|
||||||
|
lda #<trunk_plug_water0_sprite
|
||||||
|
sta INL
|
||||||
|
lda #>trunk_plug_water0_sprite
|
||||||
|
sta INH
|
||||||
|
trunk_water_draw:
|
||||||
|
lda #7
|
||||||
|
sta XPOS
|
||||||
|
lda #44
|
||||||
|
sta YPOS
|
||||||
|
jsr put_sprite_crop
|
||||||
|
|
||||||
|
lda FRAMEL
|
||||||
|
and #$1f
|
||||||
|
bne totally_done_draw_trunk_plug
|
||||||
|
|
||||||
|
dec ANIMATE_FRAME
|
||||||
|
|
||||||
|
totally_done_draw_trunk_plug:
|
||||||
|
rts
|
||||||
|
|
||||||
|
|
||||||
|
; at 7,40
|
||||||
|
trunk_plug_closed_sprite:
|
||||||
|
.byte 2,2
|
||||||
|
.byte $79,$97
|
||||||
|
.byte $77,$79
|
||||||
|
|
||||||
|
; at 10,44
|
||||||
|
trunk_plug_open_sprite:
|
||||||
|
.byte 2,2
|
||||||
|
.byte $9d,$88
|
||||||
|
.byte $79,$98
|
||||||
|
|
||||||
|
; at 7,44
|
||||||
|
trunk_plug_water0_sprite:
|
||||||
|
.byte 2,2
|
||||||
|
.byte $67,$72
|
||||||
|
.byte $62,$77
|
||||||
|
|
||||||
|
trunk_plug_water1_sprite:
|
||||||
|
.byte 2,2
|
||||||
|
.byte $27,$76
|
||||||
|
.byte $26,$77
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user