further refactoring in HGRActionCallback

This commit is contained in:
4am 2019-09-21 18:46:45 -04:00
parent a2e8ae2332
commit bf940d29d7
2 changed files with 35 additions and 39 deletions

View File

@ -9,7 +9,7 @@
; D000..E5F4 - persistent data structures (per-game cheat categories,
; gGlobalPrefsStore, gGamesListStore)
; ...unused...
; EC15..FFF9 - main program code
; EC22..FFF9 - main program code
; FFFA..FFFF - NMI, reset, IRQ vectors
;
; LC RAM BANK 2

View File

@ -106,48 +106,44 @@ HGRSingle
!word $4000
; display game name in the bottom-left corner
ldx #39
lda #0
- sta UILine1,x
dex
bpl -
sta HTAB
ldx #22
stx VTAB
tay
lda (SAVE),y
tax
+LDADDR UILine1
sec
jsr DrawBuffer
ldx #3
+LDADDR @toprightcorner
sec
jsr DrawBuffer
lda #22
sta VTAB
lda #0 ; solid horizontal bar character
jsr @resetline
lda (SAVE),y ; (SAVE) -> game title, Y = 0, so A = title length
clc
adc #$03
sta gPathname
lda #7 ; top-right rounded corner character
jsr @drawline
inc VTAB
ldx #0
stx HTAB
inx
+LDADDR @rightline
sec
jsr DrawBuffer
+LDAY SAVE
jsr SetPath
+LDADDR gPathname
sec
jsr DrawString
ldx #2
+LDADDR @rightline
sec
jsr DrawBuffer
lda #" "
jsr @resetline
lda (SAVE),y ; A = title length
tay
- lda (SAVE),y
sta gPathname+1,y
dey
bne -
lda #3 ; solid vertical bar character
jsr @drawline
+LDADDR $6000
jmp ExecuteTransitionAndWait
@toprightcorner
!byte 0,0,7
@rightline
!text " "
!byte 3
@resetline
ldy #40
- sta gPathname,y
dey
bne -
sty HTAB
rts
@drawline
ldy gPathname
sta gPathname,y
+LDADDR gPathname
sec
jmp DrawString
;------------------------------------------------------------------------------
; .LoadHGRTransition [private]