mist: walk around more of stoneship

This commit is contained in:
Vince Weaver 2020-04-18 01:32:23 -04:00
parent 4826d29cb7
commit 2c90a6ac99
14 changed files with 88 additions and 10 deletions

View File

@ -227,6 +227,10 @@ STONEY_LIGHTHOUSE_INSIDE= 12
STONEY_LIGHTHOUSE_UPSTAIRS= 13
STONEY_LIGHTHOUSE_BATTERY= 14
STONEY_LIGHTHOUSE_DOWNLADDER= 15
STONEY_DOORWAY1 = 16
STONEY_BRIDGE = 17
STONEY_EXIT = 18
STONEY_EXIT_AIRLOCK = 19
; Channely Wood
CHANNEL_OUTSIDE_CABIN = 0

View File

@ -22,7 +22,11 @@ stoney_graphics.inc: \
lighthouse_inside_e.lzsa lighthouse_inside_w.lzsa lighthouse_inside_n.lzsa \
lighthouse_upstairs_e.lzsa lighthouse_upstairs_w.lzsa \
lighthouse_battery_w.lzsa \
lighthouse_downladder_e.lzsa
lighthouse_downladder_e.lzsa \
doorway1_n.lzsa doorway1_s.lzsa doorway1_e.lzsa doorway1_w.lzsa \
bridge_e.lzsa bridge_w.lzsa \
exit_tunnel_n.lzsa exit_tunnel_s.lzsa \
exit_airlock_n.lzsa exit_airlock_s.lzsa
echo "ship_entry_n_lzsa: .incbin \"ship_entry_n.lzsa\"" > stoney_graphics.inc
echo "ship_entry_s_lzsa: .incbin \"ship_entry_s.lzsa\"" >> stoney_graphics.inc
echo "ship_bow_s_lzsa: .incbin \"ship_bow_s.lzsa\"" >> stoney_graphics.inc
@ -52,6 +56,16 @@ stoney_graphics.inc: \
echo "lighthouse_upstairs_w_lzsa: .incbin \"lighthouse_upstairs_w.lzsa\"" >> stoney_graphics.inc
echo "lighthouse_battery_w_lzsa: .incbin \"lighthouse_battery_w.lzsa\"" >> stoney_graphics.inc
echo "lighthouse_downladder_e_lzsa: .incbin \"lighthouse_downladder_e.lzsa\"" >> stoney_graphics.inc
echo "doorway1_n_lzsa: .incbin \"doorway1_n.lzsa\"" >> stoney_graphics.inc
echo "doorway1_s_lzsa: .incbin \"doorway1_s.lzsa\"" >> stoney_graphics.inc
echo "doorway1_e_lzsa: .incbin \"doorway1_e.lzsa\"" >> stoney_graphics.inc
echo "doorway1_w_lzsa: .incbin \"doorway1_w.lzsa\"" >> stoney_graphics.inc
echo "bridge_e_lzsa: .incbin \"bridge_e.lzsa\"" >> stoney_graphics.inc
echo "bridge_w_lzsa: .incbin \"bridge_w.lzsa\"" >> stoney_graphics.inc
echo "exit_tunnel_n_lzsa: .incbin \"exit_tunnel_n.lzsa\"" >> stoney_graphics.inc
echo "exit_tunnel_s_lzsa: .incbin \"exit_tunnel_s.lzsa\"" >> stoney_graphics.inc
echo "exit_airlock_n_lzsa: .incbin \"exit_airlock_n.lzsa\"" >> stoney_graphics.inc
echo "exit_airlock_s_lzsa: .incbin \"exit_airlock_s.lzsa\"" >> stoney_graphics.inc
%.gr: %.png
$(PNG2GR) $< $@

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1015 B

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 976 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 967 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 775 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 913 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 830 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 832 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 864 B

View File

@ -8,6 +8,7 @@ locations:
.word location4, location5, location6, location7
.word location8, location9, location10,location11
.word location12,location13,location14,location15
.word location16,location17,location18,location19
; STONEY_SHIP_STERN -- back of the ship
location0:
@ -140,12 +141,12 @@ location6:
; STONEY_ARRIVAL -- arrival at stoneship
location7:
.byte $ff ; north exit
.byte $ff ; south exit
.byte STONEY_DOORWAY1 ; north exit
.byte STONEY_EXIT ; south exit
.byte STONEY_LIGHTHOUSE_PATH ; east exit
.byte STONEY_UMBRELLA_PATH ; west exit
.byte $ff ; north exit_dir
.byte $ff ; south exit_dir
.byte DIRECTION_N ; north exit_dir
.byte DIRECTION_S ; south exit_dir
.byte DIRECTION_E ; east exit_dir
.byte DIRECTION_W ; west exit_dir
.word arrival_n_lzsa ; north bg
@ -291,11 +292,70 @@ location15:
.byte BG_EAST
.byte $ff
; STONEY_DOORWAY1 -- doorway1
location16:
.byte $ff ; north exit
.byte STONEY_ARRIVAL ; south exit
.byte STONEY_BRIDGE ; east exit
.byte STONEY_ARRIVAL ; west exit
.byte $ff ; north exit_dir
.byte DIRECTION_S ; south exit_dir
.byte DIRECTION_E ; east exit_dir
.byte DIRECTION_W ; west exit_dir
.word doorway1_n_lzsa ; north bg
.word doorway1_s_lzsa ; south bg
.word doorway1_e_lzsa ; east bg
.word doorway1_w_lzsa ; west bg
.byte BG_EAST|BG_WEST|BG_NORTH|BG_SOUTH
.byte $ff
; STONEY_BRIDGE -- bridge between sections
location17:
.byte $ff ; north exit
.byte $ff ; south exit
.byte $ff ; east exit
.byte STONEY_DOORWAY1 ; west exit
.byte $ff ; north exit_dir
.byte $ff ; south exit_dir
.byte DIRECTION_E ; east exit_dir
.byte DIRECTION_W ; west exit_dir
.word $0000 ; north bg
.word $0000 ; south bg
.word bridge_e_lzsa ; east bg
.word bridge_w_lzsa ; west bg
.byte BG_EAST|BG_WEST
.byte $ff
; STONEY_EXIT -- exit door
location18:
.byte STONEY_ARRIVAL ; north exit
.byte STONEY_EXIT_AIRLOCK ; south exit
.byte $ff ; east exit
.byte $ff ; west exit
.byte DIRECTION_N ; north exit_dir
.byte DIRECTION_S ; south exit_dir
.byte $ff ; east exit_dir
.byte $ff ; west exit_dir
.word exit_tunnel_n_lzsa ; north bg
.word exit_tunnel_s_lzsa ; south bg
.word $0000 ; east bg
.word $0000 ; west bg
.byte BG_NORTH|BG_SOUTH
.byte $ff
; STONEY_EXIT_AIRLOCK -- exit door airlock
location19:
.byte STONEY_EXIT ; north exit
.byte $ff ; south exit
.byte $ff ; east exit
.byte $ff ; west exit
.byte DIRECTION_N ; north exit_dir
.byte DIRECTION_S ; south exit_dir
.byte $ff ; east exit_dir
.byte $ff ; west exit_dir
.word exit_airlock_n_lzsa ; north bg
.word exit_airlock_s_lzsa ; south bg
.word $0000 ; east bg
.word $0000 ; west bg
.byte BG_NORTH|BG_SOUTH
.byte $ff