4cade/src/ui.attract.shr.a

134 lines
3.8 KiB
Plaintext
Raw Normal View History

2019-01-15 00:06:58 +00:00
;license:MIT
;(c) 2018-9 by 4am
2019-01-15 00:06:58 +00:00
;
; Super hi-res slideshows
;
; Public functions
2019-06-26 02:44:39 +00:00
; - SHRSlideshow
; - SHRSingle
2019-01-15 00:06:58 +00:00
;
2019-06-26 02:44:39 +00:00
!zone {
SHRSlideshow
lda MachineStatus ; only show SHR on IIgs or if we have a VidHD card
2019-01-15 00:06:58 +00:00
and #SUPPORTS_SHR
bne +
rts
2019-06-27 02:51:34 +00:00
+ jsr .LoadSHRTransition
2019-01-15 00:06:58 +00:00
jsr okvs_iter
!word gSlideshowStore
2019-06-30 19:18:51 +00:00
!word .SHRArtworkCallback
2019-01-15 00:06:58 +00:00
jmp BlankHGR
2019-06-26 02:44:39 +00:00
SHRSingle
2019-09-10 02:38:17 +00:00
+STAY @fname
lda MachineStatus ; only show SHR on IIgs or if we have a VidHD card
2019-06-27 02:51:34 +00:00
and #SUPPORTS_SHR
bne +
2019-06-26 02:44:39 +00:00
rts
2019-09-10 02:38:17 +00:00
+ jsr .BlankSHR
2019-06-27 02:51:34 +00:00
jsr LoadFile
2019-09-10 02:38:17 +00:00
!word kRootDirectory
@fname !word $FDFD ; SMC
!word $2000
2019-06-27 02:51:34 +00:00
jsr .LoadSHRTransition
+LDADDR $A000
jsr ExecuteTransitionAndWait
jmp BlankHGR
2019-06-26 02:44:39 +00:00
2019-01-15 00:06:58 +00:00
;------------------------------------------------------------------------------
2019-06-27 02:51:34 +00:00
; .LoadSHGRTransition [private]
2019-01-15 00:06:58 +00:00
;
; in: none
2019-01-15 00:06:58 +00:00
; out: all registers and flags clobbered
; $A000..$BFFF/main contains transition effect code
;------------------------------------------------------------------------------
2019-06-27 02:51:34 +00:00
.LoadSHRTransition
2019-09-10 02:38:17 +00:00
jsr LoadFile
!word kFXDirectory
!word kSFXFizzleFile
!word $A000
2019-01-15 00:06:58 +00:00
rts
kSFXFizzleFile
2019-09-10 02:38:17 +00:00
!byte 10
!text "SHR.FIZZLE"
2019-01-15 00:06:58 +00:00
;------------------------------------------------------------------------------
2019-06-30 19:18:51 +00:00
; .SHRArtworkCallback [private]
2019-01-15 00:06:58 +00:00
; callback called by okvs_iter on gSlideshowStore
; to load and display a single SHR graphic
; in: A/Y contains address of filename (name only, path is always /ARTWORK.SHR/)
2019-01-15 00:06:58 +00:00
; X contains 0-based index of the current record in gSlideshowStore
; out: all registers and flags clobbered
; $0800..$1EFF preserved (this contains the gSlideshowStore OKVS data)
; $2000..$BFFF clobbered by graphics data and transition code
; $2000..$5FFF/aux clobbered
;------------------------------------------------------------------------------
2019-06-30 19:18:51 +00:00
.SHRArtworkCallback
2019-09-10 02:38:17 +00:00
bit KBD
2019-01-15 00:06:58 +00:00
bpl +
rts
+
2019-09-10 02:38:17 +00:00
+STAY @sfname
2019-01-15 00:06:58 +00:00
stx gCurrentlyVisibleSlideshowIndex
2019-06-26 02:44:39 +00:00
jsr .BlankSHR
2019-01-15 00:06:58 +00:00
; load SHR artwork at $2000/main (not aux)
jsr LoadFile
2019-09-10 02:38:17 +00:00
!word kSHRArtworkDirectory
@sfname !word $FDFD
!word $2000
2019-01-15 00:06:58 +00:00
2019-06-26 02:44:39 +00:00
+LDADDR $A000
jmp ExecuteTransitionAndWait
2019-01-15 00:06:58 +00:00
;------------------------------------------------------------------------------
2019-06-26 02:44:39 +00:00
; .BlankSHR [private]
2019-01-15 00:06:58 +00:00
; clear and show SHR mode without flickering
;
2019-06-27 14:55:07 +00:00
; in: Machine is a IIgs or has a VidHD card that responds appropriately to
; IIgs-specific softswitches for graphics and memory modes.
; NOTE: THIS ROUTINE WILL CRASH ON AN APPLE //C due to writing to $C029,
; so it is imperative that the caller ensures the machine type.
2019-06-30 17:59:06 +00:00
; Thanks to John Brooks for explaining all of this to me. Twice.
2019-01-15 00:06:58 +00:00
; out: text page clobbered (but screen holes preserved)
; $2000..$9FFF/aux cleared
;------------------------------------------------------------------------------
2019-06-26 02:44:39 +00:00
.BlankSHR
2019-01-15 00:06:58 +00:00
jsr Home
2019-06-27 14:55:07 +00:00
lda NEWVIDEO ; set GS NEWVIDEO mode to turn on linearize
2019-01-15 00:06:58 +00:00
ora #$40
2019-06-27 14:55:07 +00:00
sta NEWVIDEO
2019-01-15 00:06:58 +00:00
2019-06-27 14:55:07 +00:00
sta WRITEAUXMEM ; writes go to auxmem
2019-01-15 00:06:58 +00:00
2019-06-27 14:55:07 +00:00
lda SHADOW ; enable auxmem-to-bank-E1 shadowing on IIgs
2019-01-15 00:06:58 +00:00
and #$F7
2019-06-27 14:55:07 +00:00
sta SHADOW
2019-01-15 00:06:58 +00:00
lda #$20 ; clear $2000..$9FFF in auxmem
sta @a+2
ldx #$80
lda #0
tay
@a sta $2000,y
iny
bne @a
inc @a+2
dex
bne @a
2019-06-27 14:55:07 +00:00
sta WRITEMAINMEM ; writes go to main memory
2019-01-15 00:06:58 +00:00
2019-06-27 14:55:07 +00:00
lda NEWVIDEO ; set GS NEWVIDEO mode to turn on SHR mode
2019-01-15 00:06:58 +00:00
ora #$81
2019-06-27 14:55:07 +00:00
sta NEWVIDEO
2019-01-15 00:06:58 +00:00
rts
2019-06-26 02:44:39 +00:00
}