ootw: add placeholder graphics for c9 and c10

actually same, at top of pool
This commit is contained in:
Vince Weaver 2020-01-27 17:03:32 -05:00
parent 13a602664c
commit 2199818bfd
6 changed files with 47 additions and 10 deletions

View File

@ -190,7 +190,7 @@ ootw_c9.o: ootw_c9.s \
keyboard.s gr_run_sequence.s physicist.s \
collision.s door.s gun.s blast.s shield.s \
ootw_graphics/sprites/physicist.inc \
ootw_graphics/l14arena/ootw_c14_arena.inc
ootw_graphics/l9swim/ootw_c9_swim.inc
ca65 -o ootw_c9.o ootw_c9.s -l ootw_c9.lst
###
@ -204,7 +204,7 @@ ootw_c10.o: ootw_c10.s \
keyboard.s gr_run_sequence.s physicist.s \
collision.s door.s gun.s blast.s shield.s \
ootw_graphics/sprites/physicist.inc \
ootw_graphics/l14arena/ootw_c14_arena.inc
ootw_graphics/l9swim/ootw_c9_swim.inc
ca65 -o ootw_c10.o ootw_c10.s -l ootw_c10.lst
###

View File

@ -165,13 +165,13 @@ room:
lda #0
sta cel_smc+1
lda #28
lda #16
sta PHYSICIST_Y
; load background
lda #>(arena_rle)
lda #>(pool_rle)
sta GBASH
lda #<(arena_rle)
lda #<(pool_rle)
jmp room_setup_done
@ -518,7 +518,7 @@ end_message:
.include "collision.s"
; room backgrounds
.include "ootw_graphics/l14arena/ootw_c14_arena.inc"
.include "ootw_graphics/l9swim/ootw_c9_swim.inc"
; sprites
.include "ootw_graphics/sprites/physicist.inc"
.include "ootw_graphics/sprites/alien.inc"

View File

@ -165,13 +165,13 @@ room:
lda #0
sta cel_smc+1
lda #28
lda #16
sta PHYSICIST_Y
; load background
lda #>(arena_rle)
lda #>(pool_rle)
sta GBASH
lda #<(arena_rle)
lda #<(pool_rle)
jmp room_setup_done
@ -518,7 +518,7 @@ end_message:
.include "collision.s"
; room backgrounds
.include "ootw_graphics/l14arena/ootw_c14_arena.inc"
.include "ootw_graphics/l9swim/ootw_c9_swim.inc"
; sprites
.include "ootw_graphics/sprites/physicist.inc"
.include "ootw_graphics/sprites/alien.inc"

View File

@ -0,0 +1,18 @@
include ../../../Makefile.inc
PNG2RLE = ../../../gr-utils/png2rle
PNG2LZ4 = ../../../gr-utils/png2lz4
all: ootw_c9_swim.inc
#####
ootw_c9_swim.inc: $(PNG2RLE) \
pool.png
$(PNG2RLE) asm pool.png pool_rle > ootw_c9_swim.inc
#####
clean:
rm -f *~ *.o *.lst *.lzz *.inc

View File

@ -0,0 +1,19 @@
pool_rle: .byte $28 ; ysize=48
.byte $A0,$38,$00, $50,$50, $75, $26, $2F, $76, $27
.byte $75, $50,$50, $A0,$1B,$00, $50, $25,$25, $22, $27
.byte $A3,$22, $27, $22,$22, $27, $22, $25, $A0,$18,$00
.byte $50, $25, $A6,$22, $02, $A0,$1D,$00, $50, $25
.byte $A4,$22, $02, $22, $02, $A0,$1E,$00, $50, $25
.byte $A4,$22, $00, $22, $A0,$1F,$00, $55, $A5,$22, $02
.byte $22, $A0,$26,$00, $22, $A0,$27,$00, $02, $A0,$FF,$00, $AC,$00
.byte $20, $A7,$22, $52, $A0,$16,$00, $52, $A7,$22, $A8,$00
.byte $65, $55, $20,$20, $22, $20, $22, $20
.byte $A3,$22, $20, $22, $20, $22,$22, $20, $22,$22
.byte $A3,$20, $22, $20, $55,$55, $AE,$00, $66, $55
.byte $25, $55, $A0,$14,$22, $25, $55, $AE,$00, $56
.byte $65, $22, $55, $A0,$15,$22, $55, $AE,$00, $66,$66
.byte $A0,$17,$22, $55, $AE,$00, $66, $56, $A0,$16,$22, $25
.byte $55, $AE,$00, $65, $55, $A0,$17,$22, $55, $AE,$00
.byte $66, $55, $A0,$17,$22, $55, $AE,$00, $66, $56
.byte $A0,$17,$22, $55, $A6,$00
.byte $A1

Binary file not shown.

After

Width:  |  Height:  |  Size: 328 B