mist: meche: add backgrounds to the red secret room

This commit is contained in:
Vince Weaver 2020-08-11 10:06:35 -04:00
parent c0c0918c16
commit edf5a70cfe
10 changed files with 61 additions and 20 deletions

View File

@ -51,9 +51,9 @@ Sizes:
======== ===
414+5= 419 = 104k 28
disk3:
MECHE 28857 -> 28928 -> 113 8
MECHE 30465 -> 30720 -> 120 8
SELENA 36912 -> 37120 -> 145 10
STONEY 40195 -> 40448 -> 158 10
SUB 13786 -> 13824 -> 54 4
======== ====
503+5=508 = 127k 35
503+5=508 = 127k 32

View File

@ -0,0 +1,22 @@
#0 1 2 3
#123456789012345678901234567890123456789
~~~~ SIRRUS: ~~~~
~~~~ ~~~~
~~~~ YOUR GREED SICKENS ME! ~~~~
~~~~ ~~~~
~~~~ YOUR DESIRE FOR WEALTH ~~~~
~~~~ ~~~~
~~~~ AND PLUNDER IS NEVER ~~~~
~~~~ ~~~~
~~~~ SATISFIED. I WILL INSTRUCT ~~~~
~~~~ ~~~~
~~~~ MY SUBJECTS NOT TO PAY ~~~~
~~~~ ~~~~
~~~~ YOUR NEW TAX AND YOU ~~~~
~~~~ ~~~~
~~~~ KNOW THEY'LL LISTEN TO ME. ~~~~
~~~~ ~~~~
~~~~ REGARDS, /\ ~~~~
~~~~ /--\CHENAR ~~~~
~~~~ C/ \ ~~~~
~~~~ ~~~~

View File

@ -204,6 +204,7 @@ MECHE_BLUE_SECRET_ROOM = 39
MECHE_RED_SECRET_DOOR = 40
MECHE_RED_SECRET_ROOM = 41
MECHE_TOP_FLOOR_UP = 42
MECHE_ACHENAR_LETTER = 43

View File

@ -58,7 +58,8 @@ meche_graphics.inc: \
blue_secret_door_w.lzsa \
blue_secret_room_n.lzsa blue_secret_room_s.lzsa blue_secret_room_e.lzsa blue_secret_room_w.lzsa \
blue_secret_room_jolt_n.lzsa \
red_secret_door_s.lzsa red_secret_room_s.lzsa
red_secret_door_s.lzsa \
red_secret_room_n.lzsa red_secret_room_s.lzsa red_secret_room_e.lzsa red_secret_room_w.lzsa
echo "departure_e_lzsa: .incbin \"departure_e.lzsa\"" > meche_graphics.inc
echo "arrival_w_lzsa: .incbin \"arrival_w.lzsa\"" >> meche_graphics.inc
echo "entrance_e_lzsa: .incbin \"entrance_e.lzsa\"" >> meche_graphics.inc
@ -155,7 +156,10 @@ meche_graphics.inc: \
echo "blue_secret_room_n_lzsa: .incbin \"blue_secret_room_n.lzsa\"" >> meche_graphics.inc
echo "blue_secret_room_s_lzsa: .incbin \"blue_secret_room_s.lzsa\"" >> meche_graphics.inc
echo "red_secret_door_s_lzsa: .incbin \"red_secret_door_s.lzsa\"" >> meche_graphics.inc
echo "red_secret_room_n_lzsa: .incbin \"red_secret_room_n.lzsa\"" >> meche_graphics.inc
echo "red_secret_room_s_lzsa: .incbin \"red_secret_room_s.lzsa\"" >> meche_graphics.inc
echo "red_secret_room_e_lzsa: .incbin \"red_secret_room_e.lzsa\"" >> meche_graphics.inc
echo "red_secret_room_w_lzsa: .incbin \"red_secret_room_w.lzsa\"" >> meche_graphics.inc
%.gr: %.png
$(PNG2GR) $< $@

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 16 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.0 KiB

View File

@ -14,7 +14,7 @@ locations:
.word location28,location29,location30,location31
.word location32,location33,location34,location35
.word location36,location37,location38,location39
.word location40,location41,location42
.word location40,location41,location42,location43
; MECHE_INSIDE_GEAR -- Inside gear on Mist
location0:
@ -748,7 +748,7 @@ location40:
.byte $ff ; east exit
.byte $ff ; west exit
.byte $ff ; north exit_dir
.byte DIRECTION_S ; south exit_dir
.byte DIRECTION_E ; south exit_dir
.byte $ff ; east exit_dir
.byte $ff ; west exit_dir
.word $0000 ; north bg
@ -761,19 +761,19 @@ location40:
; MECHE_RED_SECRET_ROOM -- red room secret room
location41:
.byte $ff ; north exit
.byte MECHE_RED_ROOM_CENTER ; south exit
.byte $ff ; south exit
.byte $ff ; east exit
.byte $ff ; west exit
.byte MECHE_RED_ROOM_CENTER ; west exit
.byte $ff ; north exit_dir
.byte DIRECTION_S ; south exit_dir
.byte $ff ; south exit_dir
.byte $ff ; east exit_dir
.byte $ff ; west exit_dir
.word $0000 ; north bg
.byte DIRECTION_W ; west exit_dir
.word red_secret_room_n_lzsa ; north bg
.word red_secret_room_s_lzsa ; south bg
.word $0000 ; east bg
.word $0000 ; west bg
.byte BG_SOUTH
.byte DIRECTION_S
.word red_secret_room_e_lzsa ; east bg
.word red_secret_room_w_lzsa ; west bg
.byte BG_NORTH | BG_SOUTH | BG_EAST | BG_WEST
.byte DIRECTION_N
.byte 22,29 ; special x
.byte 14,24 ; special y
.word meche_take_red_page-1 ; special function
@ -795,4 +795,22 @@ location42:
.byte BG_WEST
.byte $ff ; special exit
; MECHE_ACHENAR_LETTER -- letter from Achenar
location43:
.byte $ff ; north exit
.byte MECHE_RED_SECRET_ROOM ; south exit
.byte $ff ; east exit
.byte $ff ; west exit
.byte $ff ; north exit_dir
.byte DIRECTION_S ; south exit_dir
.byte $ff ; east exit_dir
.byte $ff ; west exit_dir
.word $0000 ; north bg
.word $0000 ; south bg
.word $0000 ; east bg
.word $0000 ; west bg
.byte BG_SOUTH
.byte $ff ; special exit

View File

@ -38,17 +38,13 @@ enter_blue_secret:
lda #MECHE_BLUE_SECRET_DOOR
sta LOCATION
jsr change_location
rts
jmp change_location
enter_red_secret:
lda #MECHE_RED_SECRET_DOOR
sta LOCATION
jsr change_location
rts
jmp change_location
;===============================