pitch-dark/src/parse.gameinfo.a

196 lines
5.6 KiB
Plaintext
Raw Normal View History

2018-02-07 14:05:24 +00:00
;license:MIT
;(c) 2018 by 4am
;
2018-03-27 21:00:02 +00:00
; Parser for per-game configuration files
2018-02-07 14:05:24 +00:00
;
; Public functions
; - LoadGameInfo
2018-04-11 19:12:36 +00:00
; - CheckForSavedGames
2018-02-07 14:05:24 +00:00
;
; Public variables
2018-04-11 19:12:36 +00:00
; - gHasSavedGames 0=false, 1=true (set in CheckForSavedGames)
;
; Public constants (keys in gOptionsStore)
; - kHasArtwork
; - kHasHints
; - kHasVersions
2018-02-07 14:05:24 +00:00
kTextRootDirectory
2018-02-03 17:01:34 +00:00
!byte 5
!raw "TEXT/"
2018-02-03 17:01:34 +00:00
gVersionsStore
2018-03-28 15:48:47 +00:00
!word $FDFD ; set in LoadGlobalPreferences
gOptionsStore
2018-03-28 15:48:47 +00:00
!word $FDFD ; set in LoadGameInfo
gHasSavedGames
!byte 0
kHasArtwork
!byte 7
!raw "ARTWORK"
kHasHints
!byte 5
!raw "CLUES"
kHasVersions
!byte 8
!raw "VERSIONS"
2018-03-03 22:45:39 +00:00
sectionPointers ; array of pointers to start of each section
2018-03-03 23:07:13 +00:00
addrEOF
!word 0
addrOptions
!word 0
2018-03-03 22:45:39 +00:00
addrVersions
2018-02-07 14:05:24 +00:00
!word 0
addrDescription
!word 0
2018-03-03 22:45:39 +00:00
addrInfo
2018-02-07 14:05:24 +00:00
!word 0
;------------------------------------------------------------------------------
; LoadGameInfo
; load file with information about the current game
;
; in: current ProDOS prefix is the same as the PITCH.DARK binary
2018-03-03 23:07:13 +00:00
; out: addrInfo, addrDescription, addrVersions, addrOptions populated
2018-03-28 15:48:47 +00:00
; gVersionsStore populated with keys/values in [versions] section
; gOptionsStore populated with keys/values in [options] section
2018-03-03 22:45:39 +00:00
; all registers and flags clobbered
2018-03-28 15:48:47 +00:00
; $00..$05 clobbered
; $0800..$1FFF clobbered
2018-02-07 14:05:24 +00:00
;------------------------------------------------------------------------------
!zone {
2018-02-03 17:01:34 +00:00
LoadGameInfo
jsr ResetPath
2018-03-29 02:49:51 +00:00
+LDADDR kTextRootDirectory
jsr AddToPath
2018-03-28 15:48:47 +00:00
jsr okvs_get
!word gGlobalPrefsStore
!word kLastPlayed
jsr AddToPath
jsr LoadFile
!word gPathname
!word kGameInfoBuffer
!word kProDOSFileBuffer
2018-02-05 17:17:06 +00:00
+LDADDR (kGameInfoBuffer-1)
+STAY $FE ; ($FE) points to start of data buffer
ldy #$00 ; index into ($FE) pointing to current character
2018-03-03 23:07:13 +00:00
ldx #$08 ; index into sectionPointers array, stores pointer to start of each section
2018-03-03 22:45:39 +00:00
.convertSectionLoop
jsr IncAndGetChar
.convertSectionNoInc
2018-03-03 22:53:50 +00:00
cmp #$5B ; '[' is the start of a new section
2018-03-03 22:45:39 +00:00
beq .skipSectionName
2018-03-27 19:19:48 +00:00
cmp #$0D ; CR -> 0x00 (WeeGUI wants null-terminated strings)
2018-03-03 22:45:39 +00:00
beq .null
2018-02-08 21:28:49 +00:00
cmp #$5E ; '^' -> closed-apple mousetext
2018-03-03 22:45:39 +00:00
beq .ca
cmp #$26 ; '&' -> open-apple mousetext
beq .oa
2018-03-03 22:53:50 +00:00
ora #$80 ; all other characters -> set high bit
2018-03-03 22:45:39 +00:00
!byte $2C
.null lda #$00
!byte $2C
.ca lda #$40
!byte $2C
.oa lda #$41
2018-03-27 19:19:48 +00:00
sta ($FE),y
2018-03-03 22:45:39 +00:00
bra .convertSectionLoop
; We found the start of a new section, so skip to the first character on the next line
.skipSectionName
jsr IncAndGetChar
2018-03-27 19:19:48 +00:00
cmp #$0D ; CR
2018-03-03 22:45:39 +00:00
bne .skipSectionName
jsr IncAndGetChar
; We are at the start of a section, so save this address in the sectionPointers array
pha
2018-03-03 16:41:09 +00:00
tya
clc
2018-03-27 19:19:48 +00:00
adc $FE
2018-03-03 22:45:39 +00:00
sta sectionPointers,x
2018-03-27 19:19:48 +00:00
lda $FF
2018-03-03 16:41:09 +00:00
bcc +
inc
2018-03-03 22:45:39 +00:00
+ sta sectionPointers+1,x
2018-02-05 17:17:06 +00:00
pla
2018-03-03 22:45:39 +00:00
dex
dex
bpl .convertSectionNoInc
2018-03-28 14:44:47 +00:00
; We are done converting the game info file.
; Now handle the individual sections that require further parsing.
jsr ParseKeyValueText ; parse [versions] section into gVersionsStore
!word gVersionsStore ; (this handle was initialized in LoadGlobalPreferences)
!word addrVersions
!byte 0
2018-03-29 02:49:51 +00:00
+LDAY SRC
+STAY gOptionsStore ; save pointer to free space for next store
2018-03-28 14:44:47 +00:00
jsr ParseKeyValueText ; parse [options] section into gOptionsStore
!word gOptionsStore
!word addrOptions
!byte 0
2018-04-11 19:12:36 +00:00
; execution falls through here
CheckForSavedGames
2018-03-31 14:59:02 +00:00
jsr okvs_get ; get shortname of current game
!word gGlobalPrefsStore
!word kLastPlayed
+STAY + ; A/Y contains address
jsr okvs_get ; get selected version of this game
!word gGlobalPrefsStore
+ !word $FDFD ; SMC
2018-03-31 16:38:51 +00:00
+STAY SRC ; A/Y contains address
lda (SRC)
dec
tay
phy
- lda (SRC),y
sta gVal,y
dey
bpl -
ply
lda #$53 ; add new suffix ('SAV')
2018-03-31 16:38:51 +00:00
sta gVal,y
iny
lda #$41
2018-03-31 16:38:51 +00:00
sta gVal,y
iny
lda #$56
2018-03-31 16:38:51 +00:00
sta gVal,y
inc gVal ; fix string length
2018-03-31 16:38:51 +00:00
jsr ResetPath
+LDADDR kGameRootDirectory
jsr AddToPath
jsr okvs_get
!word gGlobalPrefsStore
!word kLastPlayed
jsr AddToPath
+LDADDR kPathSeparator
jsr AddToPath
2018-03-31 16:38:51 +00:00
+LDADDR gVal
jsr AddToPath
jsr GetFileInfo
!word gPathname
bcs .no ; no file -> no saved games
lda blocks+1
bne .yes ; file exists and is quite large -> assume saved games
lda blocks
cmp #$06 ; file exists but is small -> no saved games (.Z4/.Z5 files have a 5 block 'empty' .sav file)
bcc .no
.yes lda #1
!byte $2C
.no lda #0
sta gHasSavedGames
2018-02-03 17:01:34 +00:00
rts
2018-02-05 17:17:06 +00:00
}