trogdor: update graphics

This commit is contained in:
Vince Weaver 2024-01-22 00:26:20 -05:00
parent 1a78d9ab1d
commit 4a82c04637
4 changed files with 109 additions and 7 deletions

View File

@ -6,8 +6,9 @@ PNG2GR = ../../../utils/gr-utils/png2gr
HGR_SPRITE = ../../../utils/hgr-utils/hgr_make_sprite
all: \
actual00_trog_cottage.hgr.zx02 \
actual00_trog_peasant.hgr.zx02 \
actual01_dragonman.hgr.zx02 \
actual02_updown_cottage.hgr.zx02 \
trog00_trogdor.hgr.zx02 \
trog01_countryside.hgr.zx02 \
trog02_countryside.hgr.zx02 \
@ -55,11 +56,11 @@ a2_strongbad.hgr: a2_strongbad.png
####
actual00_trog_cottage.hgr.zx02: actual00_trog_cottage.hgr
$(ZX02) actual00_trog_cottage.hgr actual00_trog_cottage.hgr.zx02
actual00_trog_peasant.hgr.zx02: actual00_trog_peasant.hgr
$(ZX02) actual00_trog_peasant.hgr actual00_trog_peasant.hgr.zx02
actual00_trog_cottage.hgr: actual00_trog_cottage.png
$(PNG_TO_HGR) actual00_trog_cottage.png > actual00_trog_cottage.hgr
actual00_trog_peasant.hgr: actual00_trog_peasant.png
$(PNG_TO_HGR) actual00_trog_peasant.png > actual00_trog_peasant.hgr
####
@ -71,6 +72,15 @@ actual01_dragonman.hgr: actual01_dragonman.png
####
actual02_updown_cottage.hgr.zx02: actual02_updown_cottage.hgr
$(ZX02) actual02_updown_cottage.hgr actual02_updown_cottage.hgr.zx02
actual02_updown_cottage.hgr: actual02_updown_cottage.png
$(PNG_TO_HGR) actual02_updown_cottage.png > actual02_updown_cottage.hgr
####
trog00_trogdor.hgr.zx02: trog00_trogdor.hgr
$(ZX02) trog00_trogdor.hgr trog00_trogdor.hgr.zx02

View File

Before

Width:  |  Height:  |  Size: 24 KiB

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 25 KiB

View File

@ -336,7 +336,6 @@ scroll_in_loop:
; dragon man: 160 frames (roughly 5s)
;======================================
; man
@ -416,6 +415,95 @@ scroll_in_loop:
;=======================================
;======================================
; draw SCENE 7
;======================================
; dragonman, flames both low than high
; ll1122
; 10 times
; then full man 1122
; dragonman 1122
; man 1122
; dragonman 1122
; man 1122
; dragonmna 1122
; man 1122
; dragonman low, off 4 frames
;======================================
; draw SCENE 8
;======================================
; countryside for 75 frames
; then flames in middle low
; flames high 12 * 16
;======================================
; draw SCENE 9
;======================================
; big peasant head scrolling in right to left (also going down?)
; roughly 60 frames
;======================================
; draw SCENE 10
;======================================
; zoom trogdor down 5 frames
; zoom trogdor up 5 frames
; reapeat total of 6 times
;======================================
; draw SCENE 11
;======================================
; Uncover peasants, 5 frames each
; R2 R4 L5
; L3 L1
; then wait 25 frames
;======================================
; draw SCENE 12
;======================================
; white screen
; scroll up cottage, takes roughly 90 frames (3s)
;======================================
; draw SCENE 13
;======================================
; trog down, 5 frames
; cottage , 5 frames
; trog up, 5 frames
; cottage, 5 frames
; overall: DCUC DCUC DC
;======================================
; draw SCENE 14
;======================================
; low flames, tall flames at edges
; 60 frames as cottage comes in upside down from top
; 6 frames of that
;======================================
; draw SCENE 15
;======================================
; zoom down 5
; man 7
; peasant 5
; countryside 5
; cottage 5
; trogdor really zoom
; trogdor normal zoom
; trogdor intermediate zoom
; trogdor regular
; low flames
; high flames 1/2
;======================================
; draw SCENE 16
;======================================
; strongbad at computer
finished:
jsr wait_until_keypress
@ -425,7 +513,7 @@ finished:
trog00_graphics:
.incbin "graphics/actual00_trog_cottage.hgr.zx02"
.incbin "graphics/actual00_trog_peasant.hgr.zx02"
trog01_graphics:
.incbin "graphics/trog01_countryside.hgr.zx02"
@ -433,6 +521,10 @@ trog01_graphics:
trog03_graphics:
.incbin "graphics/actual01_dragonman.hgr.zx02"
trog04_graphics:
.incbin "graphics/actual02_updown_cottage.hgr.zx02"
.include "wait_keypress.s"
.include "irq_wait.s"