2002-11-16 23:45:15 +00:00
|
|
|
;
|
|
|
|
; Ullrich von Bassewitz, 16.11.2002
|
|
|
|
;
|
|
|
|
; File name handling for CBM file I/O
|
|
|
|
;
|
|
|
|
|
2009-02-22 14:11:34 +00:00
|
|
|
.export fnparse, fnparsename, fnset
|
|
|
|
.export fnadd, fnaddmode, fncomplete, fndefunit
|
2002-11-16 23:45:15 +00:00
|
|
|
.export fnunit, fnlen, fncmd, fnbuf
|
|
|
|
|
2002-11-19 23:02:47 +00:00
|
|
|
.import SETNAM
|
2002-11-16 23:45:15 +00:00
|
|
|
.import __curunit, __filetype
|
2009-02-22 14:06:12 +00:00
|
|
|
.importzp ptr1, tmp1
|
2002-11-16 23:45:15 +00:00
|
|
|
|
|
|
|
.include "ctype.inc"
|
2009-02-22 14:11:34 +00:00
|
|
|
|
2002-11-16 23:45:15 +00:00
|
|
|
|
2009-02-22 14:06:12 +00:00
|
|
|
;------------------------------------------------------------------------------
|
|
|
|
; fnparsename: Parse a filename (without drive spec) passed in in ptr1 and y.
|
2002-11-16 23:45:15 +00:00
|
|
|
|
2009-02-22 14:06:12 +00:00
|
|
|
.proc fnparsename
|
|
|
|
|
|
|
|
lda #0
|
|
|
|
sta tmp1 ; Remember length of name
|
|
|
|
|
|
|
|
nameloop:
|
|
|
|
lda (ptr1),y ; Get next char from filename
|
|
|
|
beq namedone ; Jump if end of name reached
|
|
|
|
|
|
|
|
; Check for valid chars in the file name. We allow letters, digits, plus some
|
|
|
|
; additional chars from a table.
|
|
|
|
|
|
|
|
ldx #fncharcount-1
|
|
|
|
namecheck:
|
|
|
|
cmp fnchars,x
|
|
|
|
beq nameok
|
|
|
|
dex
|
|
|
|
bpl namecheck
|
|
|
|
tax
|
|
|
|
lda __ctype,x
|
|
|
|
and #CT_ALNUM
|
|
|
|
beq invalidname
|
|
|
|
|
|
|
|
; Check the maximum length, store the character
|
|
|
|
|
|
|
|
nameok: ldx tmp1
|
|
|
|
cpx #16 ; Maximum length reached?
|
|
|
|
bcs invalidname
|
|
|
|
lda (ptr1),y ; Reload char
|
|
|
|
jsr fnadd ; Add character to name
|
|
|
|
iny ; Next char from name
|
|
|
|
inc tmp1 ; Increment length of name
|
|
|
|
bne nameloop ; Branch always
|
|
|
|
|
|
|
|
; Invalid file name
|
|
|
|
|
|
|
|
invalidname:
|
|
|
|
lda #33 ; Invalid file name
|
|
|
|
|
|
|
|
; Done, we've successfully parsed the name.
|
|
|
|
|
|
|
|
namedone:
|
|
|
|
rts
|
|
|
|
|
|
|
|
.endproc
|
|
|
|
|
|
|
|
|
|
|
|
;------------------------------------------------------------------------------
|
|
|
|
; fnparse: Parse a full filename passed in in a/x. Will set the following
|
2002-11-16 23:45:15 +00:00
|
|
|
; variables:
|
|
|
|
;
|
|
|
|
; fnlen -> length of filename
|
|
|
|
; fnbuf -> filename including drive spec
|
|
|
|
; fnunit -> unit from spec or default unit
|
2008-04-13 14:49:16 +00:00
|
|
|
;
|
|
|
|
; Returns an error code in A or zero if all is ok.
|
2002-11-16 23:45:15 +00:00
|
|
|
|
|
|
|
.proc fnparse
|
|
|
|
|
|
|
|
sta ptr1
|
|
|
|
stx ptr1+1 ; Save pointer to name
|
|
|
|
|
2008-04-13 14:49:16 +00:00
|
|
|
; For now we will always use the default unit
|
2002-11-16 23:45:15 +00:00
|
|
|
|
2008-04-13 14:49:16 +00:00
|
|
|
jsr fndefunit
|
2002-11-16 23:45:15 +00:00
|
|
|
|
|
|
|
; Check the name for a drive spec
|
|
|
|
|
|
|
|
ldy #0
|
|
|
|
lda (ptr1),y
|
|
|
|
cmp #'0'
|
|
|
|
beq digit
|
|
|
|
cmp #'1'
|
|
|
|
bne nodrive
|
|
|
|
|
2009-02-22 14:06:12 +00:00
|
|
|
digit: sta fnbuf+0
|
|
|
|
iny
|
2002-11-16 23:45:15 +00:00
|
|
|
lda (ptr1),y
|
|
|
|
cmp #':'
|
|
|
|
bne nodrive
|
|
|
|
|
|
|
|
; We found a drive spec, copy it to the buffer
|
|
|
|
|
|
|
|
sta fnbuf+1
|
|
|
|
iny ; Skip colon
|
|
|
|
bne drivedone ; Branch always
|
|
|
|
|
|
|
|
; We did not find a drive spec, always use drive zero
|
|
|
|
|
|
|
|
nodrive:
|
|
|
|
lda #'0'
|
|
|
|
sta fnbuf+0
|
|
|
|
lda #':'
|
|
|
|
sta fnbuf+1
|
|
|
|
ldy #$00 ; Reposition to start of name
|
|
|
|
|
2009-02-22 14:06:12 +00:00
|
|
|
; Drive spec done. We do now have a drive spec in the buffer.
|
2002-11-16 23:45:15 +00:00
|
|
|
|
|
|
|
drivedone:
|
|
|
|
lda #2 ; Length of drive spec
|
|
|
|
sta fnlen
|
|
|
|
|
2009-02-22 14:06:12 +00:00
|
|
|
; Copy the name into the file name buffer. The subroutine returns an error
|
|
|
|
; code in A and zero flag set if the were no errors.
|
2002-11-18 19:37:02 +00:00
|
|
|
|
2009-02-22 14:06:12 +00:00
|
|
|
jmp fnparsename
|
2002-11-16 23:45:15 +00:00
|
|
|
|
|
|
|
.endproc
|
|
|
|
|
2008-04-13 14:49:16 +00:00
|
|
|
;--------------------------------------------------------------------------
|
|
|
|
; fndefunit: Use the default unit
|
|
|
|
|
|
|
|
.proc fndefunit
|
|
|
|
|
|
|
|
lda __curunit
|
|
|
|
sta fnunit
|
|
|
|
rts
|
|
|
|
|
|
|
|
.endproc
|
2002-11-16 23:45:15 +00:00
|
|
|
|
|
|
|
;--------------------------------------------------------------------------
|
|
|
|
; fnset: Tell the kernal about the file name
|
|
|
|
|
|
|
|
.proc fnset
|
|
|
|
|
|
|
|
lda fnlen
|
|
|
|
ldx #<fnbuf
|
|
|
|
ldy #>fnbuf
|
|
|
|
jmp SETNAM
|
|
|
|
|
|
|
|
.endproc
|
|
|
|
|
|
|
|
;--------------------------------------------------------------------------
|
|
|
|
; fncomplete: Complete a filename by adding ",t,m" where t is the file type
|
|
|
|
; and m is the access mode passed in in the A register
|
2003-03-13 23:09:53 +00:00
|
|
|
;
|
|
|
|
; fnaddmode: Add ",m" to a filename, where "m" is passed in A
|
2002-11-16 23:45:15 +00:00
|
|
|
|
2003-03-13 23:09:53 +00:00
|
|
|
fncomplete:
|
2002-12-21 00:06:41 +00:00
|
|
|
pha ; Save mode
|
2003-03-13 23:09:53 +00:00
|
|
|
jsr fnaddcomma ; Add a comma
|
|
|
|
lda __filetype
|
|
|
|
jsr fnadd ; Add the type
|
|
|
|
pla
|
|
|
|
fnaddmode:
|
|
|
|
pha
|
|
|
|
jsr fnaddcomma
|
|
|
|
pla
|
|
|
|
|
|
|
|
fnadd: ldx fnlen
|
|
|
|
inc fnlen
|
|
|
|
sta fnbuf,x
|
|
|
|
rts
|
2002-11-16 23:45:15 +00:00
|
|
|
|
2003-03-13 23:09:53 +00:00
|
|
|
fnaddcomma:
|
|
|
|
lda #','
|
|
|
|
bne fnadd
|
2002-11-16 23:45:15 +00:00
|
|
|
|
|
|
|
;--------------------------------------------------------------------------
|
|
|
|
; Data
|
|
|
|
|
|
|
|
.bss
|
|
|
|
|
|
|
|
fnunit: .res 1
|
|
|
|
fnlen: .res 1
|
|
|
|
|
|
|
|
.data
|
2002-11-19 14:27:06 +00:00
|
|
|
fncmd: .byte 's' ; Use as scratch command
|
2009-02-22 14:06:12 +00:00
|
|
|
fnbuf: .res 35 ; Either 0:0123456789012345,t,m
|
|
|
|
; Or 0:0123456789012345=0123456789012345
|
2002-11-18 19:37:02 +00:00
|
|
|
.rodata
|
|
|
|
; Characters that are ok in filenames besides digits and letters
|
|
|
|
fnchars:.byte ".,-_+()"
|
|
|
|
fncharcount = *-fnchars
|
2002-11-16 23:45:15 +00:00
|
|
|
|
|
|
|
|
2003-03-13 23:09:53 +00:00
|
|
|
|