mirror of
https://github.com/digarok/festro.git
synced 2024-12-28 07:29:29 +00:00
final screen with fire easter egg
This commit is contained in:
parent
1f934fb81b
commit
7247c668f3
114
festro.s
114
festro.s
@ -82,13 +82,105 @@ DemoSubroutineTable
|
|||||||
dw HandleShortWait
|
dw HandleShortWait
|
||||||
dw HandleTextClear
|
dw HandleTextClear
|
||||||
dw HandleSwipeWrite
|
dw HandleSwipeWrite
|
||||||
dw HandleMedWait
|
dw HandleShortWait
|
||||||
dw HandleGreetScroll
|
dw HandleGreetScroll
|
||||||
dw HandleShortWait
|
dw HandleShortWait
|
||||||
dw HandleProdrop
|
dw HandleProdrop
|
||||||
|
dw HandleTextClear
|
||||||
|
dw HandleFinalScreen
|
||||||
dw P8Quit
|
dw P8Quit
|
||||||
|
|
||||||
|
HandleFinalScreen
|
||||||
|
lda #FinalText
|
||||||
|
sta srcPtr
|
||||||
|
lda #>FinalText
|
||||||
|
sta srcPtr+1
|
||||||
|
|
||||||
|
lda #0
|
||||||
|
:lineLoop pha
|
||||||
|
asl
|
||||||
|
tax
|
||||||
|
lda LoLineTable,x
|
||||||
|
sta dstPtr
|
||||||
|
lda LoLineTable+1,x
|
||||||
|
sta dstPtr+1
|
||||||
|
ldy #0
|
||||||
|
:copyLoop lda (srcPtr),y
|
||||||
|
beq :nextLine
|
||||||
|
cmp #$ff
|
||||||
|
beq :done
|
||||||
|
sta (dstPtr),y
|
||||||
|
iny
|
||||||
|
lda #2
|
||||||
|
jsr SimplerWait
|
||||||
|
bra :copyLoop
|
||||||
|
:nextLine iny
|
||||||
|
tya
|
||||||
|
clc
|
||||||
|
adc srcPtr
|
||||||
|
sta srcPtr
|
||||||
|
bcc :noCarry
|
||||||
|
inc srcPtr+1
|
||||||
|
:noCarry pla
|
||||||
|
inc
|
||||||
|
bra :lineLoop
|
||||||
|
|
||||||
|
:done pla ;woops
|
||||||
|
|
||||||
|
* FALLTHROUGH to menu
|
||||||
|
|
||||||
|
stz DSEG0
|
||||||
|
:noKey
|
||||||
|
lda #$6
|
||||||
|
jsr SimplerWait
|
||||||
|
lda DSEG0
|
||||||
|
beq :blink
|
||||||
|
dec DSEG0
|
||||||
|
lda #"?"
|
||||||
|
bra :store
|
||||||
|
:blink inc DSEG0
|
||||||
|
lda #" "
|
||||||
|
:store sta Lo19+23
|
||||||
|
bra :chkKey
|
||||||
|
:chkKey lda KEY
|
||||||
|
cmp #$80
|
||||||
|
blt :noKey
|
||||||
|
sta STROBE
|
||||||
|
cmp #"f"
|
||||||
|
beq :goFire
|
||||||
|
cmp #"F"
|
||||||
|
beq :goFire
|
||||||
|
inc GDemoState
|
||||||
|
jmp DemoMain
|
||||||
|
:goFire bra HiddenFire
|
||||||
|
|
||||||
|
HiddenFire
|
||||||
|
lda #$90
|
||||||
|
sta GFireRatio
|
||||||
|
sta LORES
|
||||||
|
jsr ClearLoRes
|
||||||
|
:noKey jsr FirePass
|
||||||
|
lda KEY
|
||||||
|
cmp #$80
|
||||||
|
blt :noKey
|
||||||
|
sta STROBE
|
||||||
|
sta TXTSET
|
||||||
|
jsr ClearText
|
||||||
|
jmp DemoMain
|
||||||
|
|
||||||
|
|
||||||
HandleGreetScroll
|
HandleGreetScroll
|
||||||
|
lda #_cwoz
|
||||||
|
sta srcPtr
|
||||||
|
lda #>_cwoz
|
||||||
|
sta srcPtr+1
|
||||||
|
ldx #23
|
||||||
|
ldy #21
|
||||||
|
lda #$30
|
||||||
|
jsr DrawStringXYWait
|
||||||
|
lda #$30
|
||||||
|
jsr SimplerWait
|
||||||
|
|
||||||
:loop jsr ScrollRightUp
|
:loop jsr ScrollRightUp
|
||||||
inc _creditScrollCounter
|
inc _creditScrollCounter
|
||||||
lda #26
|
lda #26
|
||||||
@ -98,7 +190,7 @@ HandleGreetScroll
|
|||||||
cmp #01
|
cmp #01
|
||||||
beq :next
|
beq :next
|
||||||
inc _creditScrollTick
|
inc _creditScrollTick
|
||||||
lda #05
|
lda #$13
|
||||||
jsr SimplerWait
|
jsr SimplerWait
|
||||||
bra :loop
|
bra :loop
|
||||||
:next stz _creditScrollTick
|
:next stz _creditScrollTick
|
||||||
@ -192,7 +284,7 @@ _creditScrollTick db #$00
|
|||||||
_creditScrollCounter db #$00
|
_creditScrollCounter db #$00
|
||||||
_creditStringIdx db #$00
|
_creditStringIdx db #$00
|
||||||
|
|
||||||
_c1 asc "Woz",00
|
_cwoz asc "Woz",00
|
||||||
_c2 asc "Brutal Deluxe",00
|
_c2 asc "Brutal Deluxe",00
|
||||||
_c3 asc "Belgo",00
|
_c3 asc "Belgo",00
|
||||||
_c4 asc "BLuRry",00
|
_c4 asc "BLuRry",00
|
||||||
@ -214,7 +306,7 @@ _c19 asc " WATCHING",00
|
|||||||
_cblank asc "",00
|
_cblank asc "",00
|
||||||
|
|
||||||
_creditStringsTable
|
_creditStringsTable
|
||||||
da _c1,_c2,_c3,_c4,_c5,_c6,_c7,_c8,_c9,_c10
|
da _c2,_c3,_c4,_c5,_c6,_c7,_c8,_c9,_c10
|
||||||
da _c11,_c12,_cblank,_c13,_c14,_c15,_cblank
|
da _c11,_c12,_cblank,_c13,_c14,_c15,_cblank
|
||||||
da _c16,_cblank,_cblank,_c17,_c18,_c19
|
da _c16,_cblank,_cblank,_c17,_c18,_c19
|
||||||
da _cblank,_cblank,_cblank,_cblank,_cblank
|
da _cblank,_cblank,_cblank,_cblank,_cblank
|
||||||
@ -256,7 +348,7 @@ HandleMapScroll
|
|||||||
sta srcPtr+1
|
sta srcPtr+1
|
||||||
ldx #15
|
ldx #15
|
||||||
ldy #08
|
ldy #08
|
||||||
lda #$18
|
lda #$10
|
||||||
jsr DrawStringXYWait
|
jsr DrawStringXYWait
|
||||||
lda #$10
|
lda #$10
|
||||||
jsr SimplerWait
|
jsr SimplerWait
|
||||||
@ -267,7 +359,7 @@ HandleMapScroll
|
|||||||
sta srcPtr+1
|
sta srcPtr+1
|
||||||
ldx #15
|
ldx #15
|
||||||
ldy #08
|
ldy #08
|
||||||
lda #$20
|
lda #$18
|
||||||
jsr DrawStringXYWait
|
jsr DrawStringXYWait
|
||||||
lda #$20
|
lda #$20
|
||||||
jsr SimplerWait
|
jsr SimplerWait
|
||||||
@ -1123,8 +1215,8 @@ HandleScan03
|
|||||||
jsr DrawStringXYWait
|
jsr DrawStringXYWait
|
||||||
lda #$15
|
lda #$15
|
||||||
jsr SimplerWait
|
jsr SimplerWait
|
||||||
lda #$05
|
|
||||||
|
|
||||||
|
lda #$03
|
||||||
:flashenLoop pha
|
:flashenLoop pha
|
||||||
lda #_scanStr20 ;Thermal
|
lda #_scanStr20 ;Thermal
|
||||||
sta srcPtr
|
sta srcPtr
|
||||||
@ -1143,9 +1235,9 @@ HandleScan03
|
|||||||
sta srcPtr+1
|
sta srcPtr+1
|
||||||
ldx #_boxX+2
|
ldx #_boxX+2
|
||||||
ldy #_boxY+6
|
ldy #_boxY+6
|
||||||
lda #$10
|
lda #$08
|
||||||
jsr DrawStringXYWait
|
jsr DrawStringXYWait
|
||||||
lda #$15
|
lda #$10
|
||||||
jsr SimplerWait
|
jsr SimplerWait
|
||||||
pla
|
pla
|
||||||
dec
|
dec
|
||||||
@ -1205,7 +1297,7 @@ _scanStr01 asc "STATUS:",00
|
|||||||
_scanStr08 asc "SCANNING",00
|
_scanStr08 asc "SCANNING",00
|
||||||
_scanStr08b asc " ",00
|
_scanStr08b asc " ",00
|
||||||
_scanStr09 asc "KCMO",00
|
_scanStr09 asc "KCMO",00
|
||||||
_scanStr09b asc " _.",00 ;lol
|
_scanStr09b asc " .-",00 ;lol
|
||||||
_scanStr02 asc "LOCATED",00
|
_scanStr02 asc "LOCATED",00
|
||||||
_scanStr03 asc "Virgo Supergroup,",00
|
_scanStr03 asc "Virgo Supergroup,",00
|
||||||
_scanStr04 asc "Local Group,",00
|
_scanStr04 asc "Local Group,",00
|
||||||
@ -1467,7 +1559,7 @@ HandleSwipeWrite
|
|||||||
sta _swipeMaxWidth ; set max width
|
sta _swipeMaxWidth ; set max width
|
||||||
lda #0
|
lda #0
|
||||||
sta _swipeXOffset ; set x position
|
sta _swipeXOffset ; set x position
|
||||||
lda #3
|
lda #2
|
||||||
sta _swipeYOffset ; set y position
|
sta _swipeYOffset ; set y position
|
||||||
|
|
||||||
** DA LOOP!!! does one full pass of all lines.. this is the OUTERMOST LOOP
|
** DA LOOP!!! does one full pass of all lines.. this is the OUTERMOST LOOP
|
||||||
|
27
festrodata.s
27
festrodata.s
@ -1,3 +1,30 @@
|
|||||||
|
FinalText
|
||||||
|
asc "",00
|
||||||
|
asc " KFest is the world's only annual",00
|
||||||
|
asc " convention dedicated to the Apple II",00
|
||||||
|
asc " and it's the largest gathering of ",00
|
||||||
|
asc " active Apple II users you'll ever see!",00
|
||||||
|
asc "",00
|
||||||
|
asc " The next KFest is July 23-28, 2013.",00
|
||||||
|
asc "",00
|
||||||
|
asc " You can get more info on their site *",00
|
||||||
|
asc " www.kansasfest.org",00
|
||||||
|
asc "",00
|
||||||
|
asc "",00
|
||||||
|
asc "* I'm not affiliated with KansasFest.",00
|
||||||
|
asc " I was just looking for an excuse to",00
|
||||||
|
asc " write some code.",00
|
||||||
|
asc "",00
|
||||||
|
asc "",00
|
||||||
|
asc "",00
|
||||||
|
asc " The End?",00
|
||||||
|
asc "",00
|
||||||
|
asc "",00
|
||||||
|
asc " Press A Key",00
|
||||||
|
hex ff,ff
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
FireTextHeight equ #20 ; buffer height
|
FireTextHeight equ #20 ; buffer height
|
||||||
FireTextWidth equ #23 ; buffer width (INCLUDE 00 BYTE!!)
|
FireTextWidth equ #23 ; buffer width (INCLUDE 00 BYTE!!)
|
||||||
|
Loading…
Reference in New Issue
Block a user