2009-11-10 21:53:55 +00:00
|
|
|
;
|
|
|
|
; Generic Atari graphics driver
|
|
|
|
;
|
|
|
|
|
2009-11-15 14:46:09 +00:00
|
|
|
.macpack longbranch
|
|
|
|
|
2013-10-01 09:32:08 +00:00
|
|
|
.ifdef __ATARIXL__
|
2013-08-25 09:20:27 +00:00
|
|
|
CIO_vec := my_CIOV
|
|
|
|
.else
|
|
|
|
CIO_vec := CIOV
|
|
|
|
.endif
|
|
|
|
|
2009-11-10 21:53:55 +00:00
|
|
|
; ******************************************************************************
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
; ----------------------------------------------------------------------
|
|
|
|
;
|
|
|
|
; Header. Includes jump table and constants.
|
|
|
|
;
|
|
|
|
; ----------------------------------------------------------------------
|
2009-11-10 21:53:55 +00:00
|
|
|
|
|
|
|
.segment "JUMPTABLE"
|
|
|
|
|
|
|
|
; Header
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.byte $74, $67, $69 ; "tgi"
|
|
|
|
.byte TGI_API_VERSION ; TGI API version number
|
2013-08-25 09:20:27 +00:00
|
|
|
libref: .addr $0000 ; Library reference
|
2013-05-09 11:56:54 +00:00
|
|
|
.word x_res ; X resolution
|
|
|
|
.word y_res ; Y resolution
|
|
|
|
.byte colors ; Number of drawing colors
|
|
|
|
.byte pages ; Number of screens available
|
|
|
|
.byte 8 ; System font X size
|
|
|
|
.byte 8 ; System font Y size
|
|
|
|
.word aspect ; Aspect ratio
|
2011-07-17 11:23:27 +00:00
|
|
|
.byte 0 ; TGI driver flags
|
2009-11-10 21:53:55 +00:00
|
|
|
|
|
|
|
; Function table
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.addr INSTALL
|
|
|
|
.addr UNINSTALL
|
|
|
|
.addr INIT
|
|
|
|
.addr DONE
|
|
|
|
.addr GETERROR
|
|
|
|
.addr CONTROL
|
|
|
|
.addr CLEAR
|
|
|
|
.addr SETVIEWPAGE
|
|
|
|
.addr SETDRAWPAGE
|
|
|
|
.addr SETCOLOR
|
|
|
|
.addr SETPALETTE
|
|
|
|
.addr GETPALETTE
|
|
|
|
.addr GETDEFPALETTE
|
|
|
|
.addr SETPIXEL
|
|
|
|
.addr GETPIXEL
|
|
|
|
.addr LINE
|
|
|
|
.addr BAR
|
|
|
|
.addr TEXTSTYLE
|
|
|
|
.addr OUTTEXT
|
|
|
|
.addr 0 ; IRQ entry is unused
|
2009-11-10 21:53:55 +00:00
|
|
|
|
|
|
|
; ******************************************************************************
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
; ----------------------------------------------------------------------
|
|
|
|
;
|
|
|
|
; Parameters
|
|
|
|
;
|
|
|
|
; ----------------------------------------------------------------------
|
2009-11-10 21:53:55 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
x1 := ptr1
|
|
|
|
y1 := ptr2
|
|
|
|
x2 := ptr3
|
|
|
|
y2 := ptr4
|
|
|
|
radius := tmp1
|
2009-11-10 21:53:55 +00:00
|
|
|
|
|
|
|
; ******************************************************************************
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
; ----------------------------------------------------------------------
|
|
|
|
;
|
|
|
|
; Global variables
|
|
|
|
;
|
|
|
|
; ----------------------------------------------------------------------
|
2009-11-10 21:53:55 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
sptr := regsave + 2
|
2009-11-10 21:53:55 +00:00
|
|
|
|
|
|
|
.bss
|
2013-05-09 11:56:54 +00:00
|
|
|
error:
|
|
|
|
.res 1 ; Error code
|
2009-11-15 14:46:09 +00:00
|
|
|
|
|
|
|
.if ::grmode = 9 || ::grmode = 11
|
2013-05-09 11:56:54 +00:00
|
|
|
palette = default_palette
|
2009-11-15 14:46:09 +00:00
|
|
|
.else
|
2013-05-09 11:56:54 +00:00
|
|
|
palette:
|
|
|
|
.res colors ; The current palette
|
2009-11-15 14:46:09 +00:00
|
|
|
.endif
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
mask:
|
|
|
|
.res 1 ; Current pixel mask
|
|
|
|
griocb:
|
|
|
|
.res 1 ; IOCB channel number for graphics
|
2009-11-10 21:53:55 +00:00
|
|
|
|
|
|
|
.if pages = 2
|
2013-05-09 11:56:54 +00:00
|
|
|
p0scr:
|
|
|
|
.res 1 ; High byte of screen address for screen page 0
|
|
|
|
p0dls:
|
|
|
|
.res 1 ; High byte of display list address for screen page 0
|
|
|
|
; Page 1's addresses are 8K higher
|
2009-11-10 21:53:55 +00:00
|
|
|
.endif
|
|
|
|
|
|
|
|
.data
|
2013-05-09 11:56:54 +00:00
|
|
|
mag_x:
|
|
|
|
.byte 1 ; Horizontal text scaling factor
|
|
|
|
mag_y:
|
|
|
|
.byte 1 ; Vertical text scaling factor
|
|
|
|
mag_x8:
|
|
|
|
.word 8 ; Horizontal text scaling factor * 8
|
|
|
|
mag_y8:
|
|
|
|
.word 8 ; Vertical text scaling factor * 8
|
|
|
|
text_dir:
|
|
|
|
.byte 0 ; Text direction,
|
2009-11-10 21:53:55 +00:00
|
|
|
|
2013-10-01 09:32:08 +00:00
|
|
|
.ifdef __ATARIXL__
|
2013-08-25 09:20:27 +00:00
|
|
|
my_CIOV:
|
|
|
|
.byte $4C, 0, 0
|
|
|
|
.endif
|
2009-11-10 21:53:55 +00:00
|
|
|
.code
|
|
|
|
|
|
|
|
; ******************************************************************************
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.macro put_pixel
|
2009-11-10 21:53:55 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
; ----------------------------------------------------------------------
|
|
|
|
;
|
|
|
|
; Put a pixel at (sptr),y using x as the bit mask offset
|
|
|
|
;
|
|
|
|
; ----------------------------------------------------------------------
|
2009-11-10 21:53:55 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
lda (sptr),y
|
|
|
|
eor mask
|
|
|
|
and mask_table,x
|
|
|
|
eor (sptr),y
|
|
|
|
sta (sptr),y
|
2009-11-10 21:53:55 +00:00
|
|
|
.endmacro
|
|
|
|
|
|
|
|
; ******************************************************************************
|
|
|
|
|
|
|
|
.rodata
|
|
|
|
screen_device:
|
2013-05-09 11:56:54 +00:00
|
|
|
.byte "S:",$9B ; Device code for screen
|
2009-11-10 21:53:55 +00:00
|
|
|
screen_device_length := * - screen_device
|
|
|
|
|
|
|
|
.code
|
|
|
|
|
|
|
|
.proc INIT
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
; ----------------------------------------------------------------------
|
|
|
|
;
|
|
|
|
; INIT: Switch to graphics mode
|
|
|
|
;
|
|
|
|
; ----------------------------------------------------------------------
|
2009-11-10 21:53:55 +00:00
|
|
|
|
|
|
|
|
|
|
|
.code
|
2013-05-09 11:56:54 +00:00
|
|
|
; Initialize drawing color
|
2009-11-15 14:46:09 +00:00
|
|
|
|
|
|
|
.if ::ppb = 8
|
2013-05-09 11:56:54 +00:00
|
|
|
ldx #$FF
|
2009-11-15 14:46:09 +00:00
|
|
|
.elseif ::ppb = 4
|
2013-05-09 11:56:54 +00:00
|
|
|
ldx #$55
|
2009-11-15 14:46:09 +00:00
|
|
|
.elseif ::ppb = 2
|
2013-05-09 11:56:54 +00:00
|
|
|
ldx #$11
|
2009-11-15 14:46:09 +00:00
|
|
|
.endif
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
stx mask
|
2009-11-10 21:53:55 +00:00
|
|
|
|
2013-10-01 09:32:08 +00:00
|
|
|
.ifdef __ATARIXL__
|
2013-08-25 09:20:27 +00:00
|
|
|
|
|
|
|
; setup pointer to CIO
|
|
|
|
|
|
|
|
lda libref
|
|
|
|
sta my_CIOV+1
|
|
|
|
lda libref+1
|
|
|
|
sta my_CIOV+2
|
|
|
|
.endif
|
|
|
|
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
; Find a free IOCB
|
|
|
|
lda #$70
|
2009-11-10 21:53:55 +00:00
|
|
|
search: tax
|
2013-05-09 11:56:54 +00:00
|
|
|
ldy ICHID,x
|
|
|
|
cpy #$FF
|
|
|
|
beq found
|
|
|
|
sub #$10
|
|
|
|
bcs search
|
|
|
|
|
|
|
|
; Not enough resources available (free IOCB or memory)
|
|
|
|
; enter with C cleared!
|
|
|
|
nores: lda #TGI_ERR_NO_RES
|
|
|
|
bcc exit
|
|
|
|
|
|
|
|
found: ; Check if enough RAM is available
|
|
|
|
lda #0
|
|
|
|
sub #<mem_needed
|
|
|
|
tay
|
|
|
|
lda RAMTOP
|
|
|
|
sbc #>mem_needed
|
|
|
|
cmp APPMHI + 1
|
|
|
|
bcc nores
|
|
|
|
bne switch
|
|
|
|
cpy APPMHI
|
|
|
|
bcc nores ; not enough memory
|
|
|
|
|
|
|
|
; Switch into graphics mode
|
|
|
|
switch: lda #OPEN
|
|
|
|
sta ICCOM,x
|
|
|
|
lda #OPNIN | OPNOT
|
|
|
|
sta ICAX1,x
|
|
|
|
lda #::grmode
|
|
|
|
sta ICAX2,x
|
|
|
|
lda #<screen_device
|
|
|
|
sta ICBAL,x
|
|
|
|
lda #>screen_device
|
|
|
|
sta ICBAH,x
|
|
|
|
lda #<screen_device_length
|
|
|
|
sta ICBLL,x
|
|
|
|
lda #>screen_device_length
|
|
|
|
sta ICBLH,x
|
2013-08-25 09:20:27 +00:00
|
|
|
jsr CIO_vec
|
2009-11-10 21:53:55 +00:00
|
|
|
|
2009-11-15 14:46:09 +00:00
|
|
|
.if ::pages = 2
|
2013-05-09 11:56:54 +00:00
|
|
|
; Reserve 8K of high memory
|
|
|
|
lda RAMTOP
|
|
|
|
sub #32
|
|
|
|
sta RAMTOP
|
|
|
|
; Close and reopen graphics
|
|
|
|
lda #CLOSE
|
|
|
|
sta ICCOM,x
|
2013-08-25 09:20:27 +00:00
|
|
|
jsr CIO_vec
|
2013-05-09 11:56:54 +00:00
|
|
|
; Reopen graphics
|
|
|
|
lda #OPEN
|
|
|
|
sta ICCOM,x
|
|
|
|
lda #OPNIN | OPNOT
|
|
|
|
sta ICAX1,x
|
|
|
|
lda #::grmode
|
|
|
|
sta ICAX2,x
|
|
|
|
lda #<screen_device
|
|
|
|
sta ICBAL,x
|
|
|
|
lda #>screen_device
|
|
|
|
sta ICBAH,x
|
|
|
|
lda #<screen_device_length
|
|
|
|
sta ICBLL,x
|
|
|
|
lda #>screen_device_length
|
|
|
|
sta ICBLH,x
|
2013-08-25 09:20:27 +00:00
|
|
|
jsr CIO_vec
|
2013-05-09 11:56:54 +00:00
|
|
|
; Save screen pointers
|
|
|
|
lda SAVMSC + 1
|
|
|
|
sta p0scr
|
|
|
|
lda SDLSTH
|
|
|
|
sta p0dls
|
2009-11-15 14:46:09 +00:00
|
|
|
.endif ; ::pages = 2
|
2009-11-10 21:53:55 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
stx griocb
|
2009-11-15 14:46:09 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
; Reset the error code and return
|
2009-11-10 21:53:55 +00:00
|
|
|
lda #TGI_ERR_OK
|
2013-05-09 11:56:54 +00:00
|
|
|
exit: sta error
|
2009-11-10 21:53:55 +00:00
|
|
|
rts
|
|
|
|
.endproc
|
|
|
|
|
|
|
|
; ******************************************************************************
|
|
|
|
|
|
|
|
.proc DONE
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
; ----------------------------------------------------------------------
|
|
|
|
;
|
|
|
|
; DONE: Switch back to text mode
|
|
|
|
;
|
|
|
|
; ----------------------------------------------------------------------
|
2009-11-10 21:53:55 +00:00
|
|
|
|
|
|
|
.code
|
2009-11-15 14:46:09 +00:00
|
|
|
|
|
|
|
.if ::pages = 2
|
2013-05-09 11:56:54 +00:00
|
|
|
; Free 8K of high memory
|
|
|
|
lda RAMTOP
|
|
|
|
add #32
|
|
|
|
sta RAMTOP
|
2009-11-15 14:46:09 +00:00
|
|
|
.endif
|
2009-11-10 21:53:55 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
; Clear griocb
|
|
|
|
lda #$FF
|
|
|
|
ldx griocb
|
|
|
|
sta griocb
|
|
|
|
|
|
|
|
; Close the S: device
|
|
|
|
lda #CLOSE
|
|
|
|
sta ICCOM,x
|
2013-08-25 09:20:27 +00:00
|
|
|
jsr CIO_vec
|
2013-05-09 11:56:54 +00:00
|
|
|
|
|
|
|
; Reopen it in Graphics 0
|
|
|
|
lda #OPEN
|
|
|
|
sta ICCOM,x
|
|
|
|
lda #OPNIN | OPNOT
|
|
|
|
sta ICAX1,x
|
|
|
|
lda #0
|
|
|
|
sta ICAX2,x
|
|
|
|
lda #<screen_device
|
|
|
|
sta ICBAL,x
|
|
|
|
lda #>screen_device
|
|
|
|
sta ICBAH,x
|
|
|
|
lda #<screen_device_length
|
|
|
|
sta ICBLL,x
|
|
|
|
lda #>screen_device_length
|
|
|
|
sta ICBLH,x
|
2013-08-25 09:20:27 +00:00
|
|
|
jsr CIO_vec
|
2013-05-09 11:56:54 +00:00
|
|
|
|
|
|
|
; Now close it again; we don't need it anymore :)
|
|
|
|
lda #CLOSE
|
|
|
|
sta ICCOM,x
|
2013-08-25 09:20:27 +00:00
|
|
|
jmp CIO_vec
|
2009-11-10 21:53:55 +00:00
|
|
|
.endproc
|
|
|
|
|
|
|
|
; ******************************************************************************
|
|
|
|
|
|
|
|
.proc GETERROR
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
; ----------------------------------------------------------------------
|
|
|
|
;
|
|
|
|
; GETERROR: Return the error code in A and clear it
|
|
|
|
;
|
|
|
|
; ----------------------------------------------------------------------
|
2009-11-10 21:53:55 +00:00
|
|
|
|
|
|
|
.code
|
2013-05-09 11:56:54 +00:00
|
|
|
ldx #TGI_ERR_OK
|
|
|
|
lda error
|
|
|
|
stx error
|
|
|
|
rts
|
2009-11-10 21:53:55 +00:00
|
|
|
.endproc
|
|
|
|
|
|
|
|
; ******************************************************************************
|
|
|
|
|
|
|
|
.proc CLEAR
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
; ----------------------------------------------------------------------
|
|
|
|
;
|
|
|
|
; CLEAR: Clear the screen
|
|
|
|
;
|
|
|
|
; ----------------------------------------------------------------------
|
2009-11-10 21:53:55 +00:00
|
|
|
|
|
|
|
.code
|
2013-05-09 11:56:54 +00:00
|
|
|
; Load the screen address in sptr
|
|
|
|
lda SAVMSC
|
|
|
|
sta sptr
|
|
|
|
lda SAVMSC + 1
|
|
|
|
sta sptr + 1
|
2009-11-10 21:53:55 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
; Fill with zero
|
|
|
|
lda #0
|
|
|
|
tay
|
2009-11-10 21:53:55 +00:00
|
|
|
|
2009-11-15 14:46:09 +00:00
|
|
|
.if >::scrsize > 0
|
2013-05-09 11:56:54 +00:00
|
|
|
; Clear full pages if any
|
|
|
|
ldx #>::scrsize
|
|
|
|
loop1: sta (sptr),y
|
|
|
|
iny
|
|
|
|
bne loop1
|
|
|
|
inc sptr + 1
|
|
|
|
dex
|
|
|
|
bne loop1
|
2009-11-15 14:46:09 +00:00
|
|
|
.endif
|
2009-11-10 21:53:55 +00:00
|
|
|
|
2009-11-15 14:46:09 +00:00
|
|
|
.if <::scrsize > 0
|
2013-05-09 11:56:54 +00:00
|
|
|
; Clear the rest, if any
|
|
|
|
loop2: sta (sptr),y
|
|
|
|
iny
|
|
|
|
cpy #<::scrsize
|
|
|
|
bne loop2
|
2009-11-15 14:46:09 +00:00
|
|
|
.endif
|
2009-11-10 21:53:55 +00:00
|
|
|
|
|
|
|
rts
|
|
|
|
.endproc
|
|
|
|
|
|
|
|
; ******************************************************************************
|
|
|
|
|
|
|
|
.proc GETPALETTE
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
; ----------------------------------------------------------------------
|
|
|
|
;
|
|
|
|
; GETPALETTE: Return the current palette in A/X
|
|
|
|
;
|
|
|
|
; ----------------------------------------------------------------------
|
2009-11-10 21:53:55 +00:00
|
|
|
|
|
|
|
.code
|
|
|
|
lda #<palette
|
|
|
|
ldx #>palette
|
|
|
|
rts
|
|
|
|
.endproc
|
|
|
|
|
|
|
|
; ******************************************************************************
|
|
|
|
|
|
|
|
.proc GETDEFPALETTE
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
; ----------------------------------------------------------------------
|
|
|
|
;
|
|
|
|
; GETDEFPALETTE: Return the default palette in A/X
|
|
|
|
;
|
|
|
|
; ----------------------------------------------------------------------
|
2009-11-10 21:53:55 +00:00
|
|
|
|
|
|
|
.code
|
|
|
|
lda #<default_palette
|
|
|
|
ldx #>default_palette
|
|
|
|
rts
|
|
|
|
.endproc
|
|
|
|
|
|
|
|
; ******************************************************************************
|
|
|
|
|
|
|
|
.proc SETCOLOR
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
; ----------------------------------------------------------------------
|
|
|
|
;
|
|
|
|
; SETCOLOR: Set the drawing color (in A)
|
|
|
|
;
|
|
|
|
; ----------------------------------------------------------------------
|
2009-11-10 21:53:55 +00:00
|
|
|
|
|
|
|
.code
|
2013-05-09 11:56:54 +00:00
|
|
|
tax
|
2009-11-15 14:46:09 +00:00
|
|
|
|
|
|
|
.if ::grmode = 9
|
2013-05-09 11:56:54 +00:00
|
|
|
; Map colors like this: 0 -> 0, 1 -> 15, 2 -> 1, 3 -> 2 etc.
|
|
|
|
beq cont
|
|
|
|
cpx #1
|
|
|
|
bne map
|
|
|
|
ldx #16
|
|
|
|
map: dex
|
2009-11-15 14:46:09 +00:00
|
|
|
cont:
|
|
|
|
.endif
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
lda masks,x
|
|
|
|
sta mask
|
|
|
|
rts
|
2009-11-10 21:53:55 +00:00
|
|
|
.endproc
|
|
|
|
|
|
|
|
; ******************************************************************************
|
|
|
|
|
|
|
|
.proc CALC
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
; ----------------------------------------------------------------------
|
|
|
|
;
|
|
|
|
; CALC: Calculate the screen address
|
|
|
|
; in
|
|
|
|
; x1 (ptr1) x coordinate
|
|
|
|
; y1 (ptr2) y coordinate
|
|
|
|
; out
|
|
|
|
; sptr + y screen address
|
|
|
|
; x bit mask index
|
|
|
|
;
|
|
|
|
; ----------------------------------------------------------------------
|
2009-11-10 21:53:55 +00:00
|
|
|
|
|
|
|
.bss
|
2013-05-09 11:56:54 +00:00
|
|
|
temp: .res 1
|
2009-11-10 21:53:55 +00:00
|
|
|
.code
|
2013-05-09 11:56:54 +00:00
|
|
|
; calculate line offset
|
|
|
|
lda y1 + 1
|
|
|
|
sta temp
|
|
|
|
lda y1
|
2009-11-10 21:53:55 +00:00
|
|
|
|
2009-11-15 14:46:09 +00:00
|
|
|
.if ::x_res / ::ppb = 40
|
2013-05-09 11:56:54 +00:00
|
|
|
yrep = 3
|
2009-11-15 14:46:09 +00:00
|
|
|
.elseif ::x_res / ::ppb = 20
|
2013-05-09 11:56:54 +00:00
|
|
|
yrep = 2
|
2009-11-15 14:46:09 +00:00
|
|
|
.elseif ::x_res / ::ppb = 10
|
2013-05-09 11:56:54 +00:00
|
|
|
yrep = 1
|
2009-11-15 14:46:09 +00:00
|
|
|
.endif
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.repeat yrep
|
|
|
|
asl a
|
|
|
|
rol temp
|
2009-11-15 14:46:09 +00:00
|
|
|
.endrepeat
|
2009-11-10 21:53:55 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
sta sptr
|
|
|
|
ldx temp
|
|
|
|
stx sptr + 1
|
2009-11-15 14:46:09 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.repeat 2
|
|
|
|
asl a
|
|
|
|
rol temp
|
2009-11-15 14:46:09 +00:00
|
|
|
.endrepeat
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
add sptr
|
|
|
|
sta sptr
|
|
|
|
lda temp
|
|
|
|
adc sptr + 1
|
|
|
|
sta sptr + 1
|
2009-11-10 21:53:55 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
; calculate bit mask offset
|
|
|
|
lda x1
|
|
|
|
and #ppb - 1
|
|
|
|
tax
|
2009-11-10 21:53:55 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
; calculate row offset
|
|
|
|
lda x1 + 1
|
|
|
|
sta temp
|
|
|
|
lda x1
|
2009-11-10 21:53:55 +00:00
|
|
|
|
2009-11-15 14:46:09 +00:00
|
|
|
.if ::ppb = 8
|
2013-05-09 11:56:54 +00:00
|
|
|
xrep = 3
|
2009-11-15 14:46:09 +00:00
|
|
|
.elseif ::ppb = 4
|
2013-05-09 11:56:54 +00:00
|
|
|
xrep = 2
|
2009-11-15 14:46:09 +00:00
|
|
|
.elseif ::ppb = 2
|
2013-05-09 11:56:54 +00:00
|
|
|
xrep = 1
|
2009-11-15 14:46:09 +00:00
|
|
|
.endif
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.repeat xrep
|
|
|
|
lsr temp
|
|
|
|
ror a
|
2009-11-15 14:46:09 +00:00
|
|
|
.endrepeat
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
tay
|
2009-11-10 21:53:55 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
; sptr += SAVMSC
|
|
|
|
lda SAVMSC
|
|
|
|
add sptr
|
|
|
|
sta sptr
|
|
|
|
lda SAVMSC + 1
|
|
|
|
adc sptr + 1
|
|
|
|
sta sptr + 1
|
2009-11-10 21:53:55 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
; We're done!
|
|
|
|
rts
|
2009-11-10 21:53:55 +00:00
|
|
|
.endproc
|
|
|
|
|
|
|
|
; ******************************************************************************
|
|
|
|
|
|
|
|
.proc SETPIXEL
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
; ----------------------------------------------------------------------
|
|
|
|
;
|
|
|
|
; Draw one pixel at x1, y1
|
|
|
|
;
|
|
|
|
; ----------------------------------------------------------------------
|
2009-11-10 21:53:55 +00:00
|
|
|
|
|
|
|
.code
|
2013-05-09 11:56:54 +00:00
|
|
|
jsr CALC
|
|
|
|
put_pixel
|
|
|
|
rts
|
2009-11-10 21:53:55 +00:00
|
|
|
.endproc
|
|
|
|
|
|
|
|
; ******************************************************************************
|
|
|
|
|
|
|
|
.proc GETPIXEL
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
; ----------------------------------------------------------------------
|
|
|
|
;
|
|
|
|
; GETPIXEL: Read the color value of a pixel and return it in A/X
|
|
|
|
;
|
|
|
|
; ----------------------------------------------------------------------
|
2009-11-10 21:53:55 +00:00
|
|
|
|
|
|
|
.code
|
2013-05-09 11:56:54 +00:00
|
|
|
jsr CALC
|
|
|
|
lda (sptr),y
|
|
|
|
and mask_table,x
|
2009-11-15 14:46:09 +00:00
|
|
|
|
|
|
|
.if ::ppb = 8
|
2013-05-09 11:56:54 +00:00
|
|
|
beq zero
|
|
|
|
lda #1
|
|
|
|
zero: ldx #0
|
|
|
|
rts
|
2009-11-15 14:46:09 +00:00
|
|
|
.elseif ::ppb = 4
|
2013-05-09 11:56:54 +00:00
|
|
|
loop: cpx #3
|
|
|
|
beq done4
|
|
|
|
lsr a
|
|
|
|
lsr a
|
|
|
|
inx
|
|
|
|
bne loop
|
|
|
|
done4: and #$03
|
|
|
|
ldx #0
|
|
|
|
rts
|
2009-11-15 14:46:09 +00:00
|
|
|
.elseif ::ppb = 2
|
2013-05-09 11:56:54 +00:00
|
|
|
dex
|
|
|
|
bne shift
|
|
|
|
and #$0F
|
|
|
|
jmp exit
|
|
|
|
shift: lsr a
|
|
|
|
lsr a
|
|
|
|
lsr a
|
|
|
|
lsr a
|
2009-11-10 21:53:55 +00:00
|
|
|
|
2009-11-15 14:46:09 +00:00
|
|
|
exit:
|
|
|
|
|
|
|
|
.if ::grmode = 9
|
2013-05-09 11:56:54 +00:00
|
|
|
; Mode 9 mapping
|
|
|
|
; Map colors like this: 0 -> 0, 15 -> 1, 2 -> 3, 3 -> 4 etc.
|
|
|
|
beq done9
|
|
|
|
cmp #15
|
|
|
|
bne map9
|
|
|
|
lda #0
|
|
|
|
map9: add #1
|
2009-11-15 14:46:09 +00:00
|
|
|
done9:
|
|
|
|
.endif
|
2009-11-10 21:53:55 +00:00
|
|
|
|
2009-11-15 14:46:09 +00:00
|
|
|
.if ::grmode = 10
|
2013-05-09 11:56:54 +00:00
|
|
|
; Mode 10 mapping
|
|
|
|
; Map out of range colors like this:
|
|
|
|
; 9 -> 8
|
|
|
|
; 10 -> 8
|
|
|
|
; 11 -> 8
|
|
|
|
; 12 -> 0
|
|
|
|
; 13 -> 1
|
|
|
|
; 14 -> 2
|
|
|
|
; 15 -> 3
|
|
|
|
cmp #9
|
|
|
|
bcc done10
|
|
|
|
sub #12
|
|
|
|
bcs done10
|
|
|
|
lda #8
|
2009-11-15 14:46:09 +00:00
|
|
|
done10:
|
|
|
|
.endif ; ::grmode = 10
|
2009-11-10 21:53:55 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
; Done!
|
|
|
|
ldx #0
|
|
|
|
rts
|
|
|
|
.endif ; ::ppb = 2
|
2009-11-15 14:46:09 +00:00
|
|
|
|
2009-11-10 21:53:55 +00:00
|
|
|
.endproc
|
|
|
|
|
|
|
|
; ******************************************************************************
|
|
|
|
|
|
|
|
.proc LINE
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
; ----------------------------------------------------------------------
|
|
|
|
;
|
|
|
|
; LINE: Draw a line from x1,y1 to x2,y2
|
|
|
|
;
|
|
|
|
; ----------------------------------------------------------------------
|
2009-11-10 21:53:55 +00:00
|
|
|
|
2009-11-15 14:46:09 +00:00
|
|
|
.ifdef USE_CIO_LINE
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
; position ptr1, ptr2
|
|
|
|
lda x1
|
|
|
|
sta OLDCOL
|
|
|
|
lda x1 + 1
|
|
|
|
sta OLDCOL + 1
|
|
|
|
lda y1
|
|
|
|
sta OLDROW
|
|
|
|
; plot
|
|
|
|
jsr SETPIXEL
|
|
|
|
; position ptr3,ptr4
|
|
|
|
lda x2
|
|
|
|
sta COLCRS
|
|
|
|
lda x2 + 1
|
|
|
|
sta COLCRS + 1
|
|
|
|
lda y2
|
|
|
|
sta ROWCRS
|
|
|
|
; drawto
|
|
|
|
ldx griocb
|
|
|
|
lda #DRAWLN
|
|
|
|
sta ICCOM,x
|
|
|
|
lda mask
|
2009-11-15 14:46:09 +00:00
|
|
|
|
|
|
|
.if ::grmode = 10
|
2013-05-09 11:56:54 +00:00
|
|
|
and #$0f
|
2009-11-15 14:46:09 +00:00
|
|
|
.else
|
2013-05-09 11:56:54 +00:00
|
|
|
and #colors - 1
|
2009-11-15 14:46:09 +00:00
|
|
|
.endif
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
sta ATACHR
|
2013-08-25 09:20:27 +00:00
|
|
|
jmp CIO_vec
|
2009-11-15 14:46:09 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
.else ; USE_CIO_LINE
|
2009-11-15 14:46:09 +00:00
|
|
|
|
2009-11-10 21:53:55 +00:00
|
|
|
; locals
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
dx := sreg
|
|
|
|
dy := y1
|
|
|
|
dx2 := x2
|
|
|
|
dy2 := y2
|
|
|
|
iy := tmp1
|
|
|
|
err := tmp3
|
2009-11-10 21:53:55 +00:00
|
|
|
|
|
|
|
.code
|
2013-05-09 11:56:54 +00:00
|
|
|
; dx = x2 - x1
|
|
|
|
lda x2
|
|
|
|
sub x1
|
|
|
|
sta dx
|
|
|
|
lda x2 + 1
|
|
|
|
sbc x1 + 1
|
|
|
|
sta dx + 1
|
|
|
|
; if dx is positive, no problem
|
|
|
|
bcs dx_positive
|
|
|
|
|
|
|
|
; if dx is negative, swap x1,y1 with x2,y2
|
|
|
|
lda x1 ; x1 <-> x2, low byte
|
|
|
|
ldx x2
|
|
|
|
sta x2
|
|
|
|
stx x1
|
|
|
|
lda x1 + 1 ; x1 <-> x2, high byte
|
|
|
|
ldx x2 + 1
|
|
|
|
sta x2 + 1
|
|
|
|
stx x1 + 1
|
|
|
|
lda y1 ; y1 <-> y2, low byte
|
|
|
|
ldx y2
|
|
|
|
sta y2
|
|
|
|
stx y1
|
|
|
|
lda y1 + 1 ; y1 <-> y2, high byte
|
|
|
|
ldx y2 + 1
|
|
|
|
sta y2 + 1
|
|
|
|
stx y1 + 1
|
|
|
|
; Calculate again
|
|
|
|
jmp LINE
|
2009-11-10 21:53:55 +00:00
|
|
|
|
|
|
|
dx_positive:
|
2013-05-09 11:56:54 +00:00
|
|
|
; Calculate coords
|
|
|
|
jsr CALC
|
|
|
|
|
|
|
|
; dy = y2 - y1
|
|
|
|
lda y2
|
|
|
|
sub y1
|
|
|
|
sta dy
|
|
|
|
lda y2 + 1
|
|
|
|
sbc y1 + 1
|
|
|
|
sta dy + 1
|
|
|
|
|
|
|
|
; if dy is negative
|
|
|
|
bcs dy_positive
|
|
|
|
; dy = -dy
|
|
|
|
lda #0
|
|
|
|
sub dy
|
|
|
|
sta dy
|
|
|
|
lda #0
|
|
|
|
sbc dy + 1
|
|
|
|
sta dy + 1
|
|
|
|
; iy = -row_size
|
|
|
|
lda #<(65536 - x_res / ppb)
|
|
|
|
sta iy
|
|
|
|
lda #>(65536 - x_res / ppb)
|
|
|
|
sta iy + 1
|
|
|
|
bne skip_iy_1 ; always
|
2009-11-10 21:53:55 +00:00
|
|
|
|
|
|
|
dy_positive:
|
2013-05-09 11:56:54 +00:00
|
|
|
; iy = row_size
|
|
|
|
lda #<(x_res / ppb)
|
|
|
|
sta iy
|
|
|
|
lda #>(x_res / ppb)
|
|
|
|
sta iy + 1
|
2009-11-10 21:53:55 +00:00
|
|
|
skip_iy_1:
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
; dx2 = dx * 2
|
|
|
|
lda dx
|
|
|
|
asl a
|
|
|
|
sta dx2
|
|
|
|
lda dx + 1
|
|
|
|
rol a
|
|
|
|
sta dx2 + 1
|
|
|
|
|
|
|
|
; dy2 = dy * 2
|
|
|
|
lda dy
|
|
|
|
asl a
|
|
|
|
sta dy2
|
|
|
|
lda dy + 1
|
|
|
|
rol a
|
|
|
|
sta dy2 + 1
|
|
|
|
|
|
|
|
; if dx >= dy
|
|
|
|
lda dx
|
|
|
|
cmp dy
|
|
|
|
lda dx + 1
|
|
|
|
sbc dy + 1
|
|
|
|
bcc dy_major
|
|
|
|
|
|
|
|
; dx is the major axis
|
|
|
|
|
|
|
|
; err = dy2 - dx
|
|
|
|
lda dy2
|
|
|
|
sub dx
|
|
|
|
sta err
|
|
|
|
lda dy2 + 1
|
|
|
|
sbc dx + 1
|
|
|
|
sta err + 1
|
|
|
|
|
|
|
|
.scope
|
|
|
|
loop: ; main loop
|
|
|
|
put_pixel
|
|
|
|
; if err >= 0
|
|
|
|
lda err + 1
|
|
|
|
bmi err_neg
|
|
|
|
; err -= dx2
|
|
|
|
lda err
|
|
|
|
sub dx2
|
|
|
|
sta err
|
|
|
|
lda err + 1
|
|
|
|
sbc dx2 + 1
|
|
|
|
sta err + 1
|
|
|
|
; move_vertical (iy)
|
|
|
|
lda sptr
|
|
|
|
add iy
|
|
|
|
sta sptr
|
|
|
|
lda sptr + 1
|
|
|
|
adc iy + 1
|
|
|
|
sta sptr + 1
|
2009-11-10 21:53:55 +00:00
|
|
|
err_neg:
|
2013-05-09 11:56:54 +00:00
|
|
|
; err += dy2
|
|
|
|
lda err
|
|
|
|
add dy2
|
|
|
|
sta err
|
|
|
|
lda err + 1
|
|
|
|
adc dy2 + 1
|
|
|
|
sta err + 1
|
|
|
|
; move_right
|
|
|
|
inx
|
|
|
|
cpx #ppb
|
|
|
|
bne end_move
|
|
|
|
ldx #0
|
|
|
|
iny
|
|
|
|
bne end_move
|
|
|
|
inc sptr + 1
|
2009-11-10 21:53:55 +00:00
|
|
|
end_move:
|
2013-05-09 11:56:54 +00:00
|
|
|
; loop while dx-- >= 0
|
|
|
|
lda dx
|
|
|
|
ora dx + 1
|
|
|
|
beq exit
|
|
|
|
dec dx
|
|
|
|
lda dx
|
|
|
|
cmp #$FF
|
|
|
|
bne loop
|
|
|
|
dec dx + 1
|
|
|
|
jmp loop
|
|
|
|
exit: rts
|
|
|
|
.endscope
|
2009-11-10 21:53:55 +00:00
|
|
|
|
|
|
|
dy_major:
|
2013-05-09 11:56:54 +00:00
|
|
|
; dy is the major axis
|
|
|
|
|
|
|
|
; err = dx2 - dy;
|
|
|
|
lda dx2
|
|
|
|
sub dy
|
|
|
|
sta err
|
|
|
|
lda dx2 + 1
|
|
|
|
sbc dy + 1
|
|
|
|
sta err + 1
|
|
|
|
|
|
|
|
.scope
|
|
|
|
loop: ; main loop
|
|
|
|
put_pixel
|
|
|
|
; if err >= 0
|
|
|
|
lda err + 1
|
|
|
|
bmi end_move
|
|
|
|
; err -= dy2
|
|
|
|
lda err
|
|
|
|
sub dy2
|
|
|
|
sta err
|
|
|
|
lda err + 1
|
|
|
|
sbc dy2 + 1
|
|
|
|
sta err + 1
|
|
|
|
; move_right
|
|
|
|
inx
|
|
|
|
cpx #ppb
|
|
|
|
bne end_move
|
|
|
|
ldx #0
|
|
|
|
iny
|
|
|
|
bne end_move
|
|
|
|
inc sptr + 1
|
2009-11-10 21:53:55 +00:00
|
|
|
end_move:
|
2013-05-09 11:56:54 +00:00
|
|
|
; err += dx2
|
|
|
|
lda err
|
|
|
|
add dx2
|
|
|
|
sta err
|
|
|
|
lda err + 1
|
|
|
|
adc dx2 + 1
|
|
|
|
sta err + 1
|
|
|
|
; move_vertical(iy)
|
|
|
|
lda sptr
|
|
|
|
add iy
|
|
|
|
sta sptr
|
|
|
|
lda sptr + 1
|
|
|
|
adc iy + 1
|
|
|
|
sta sptr + 1
|
|
|
|
; loop while dy-- >= 0
|
|
|
|
lda dy
|
|
|
|
ora dy + 1
|
|
|
|
beq exit
|
|
|
|
dec dy
|
|
|
|
lda dy
|
|
|
|
cmp #$FF
|
|
|
|
bne loop
|
|
|
|
dec dy + 1
|
|
|
|
jmp loop
|
|
|
|
exit: rts
|
|
|
|
.endscope
|
|
|
|
.endif ; USE_CIO_LINE
|
2009-11-10 21:53:55 +00:00
|
|
|
.endproc
|
|
|
|
|
|
|
|
; ******************************************************************************
|
|
|
|
|
|
|
|
.proc clipped_bar
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
; ----------------------------------------------------------------------
|
|
|
|
;
|
|
|
|
; Clip and draw bar, this function will disappear when text clipping
|
|
|
|
; will be done int the TGI kernel
|
|
|
|
;
|
|
|
|
; ----------------------------------------------------------------------
|
2009-11-10 21:53:55 +00:00
|
|
|
|
|
|
|
.code
|
2013-05-09 11:56:54 +00:00
|
|
|
lda y1 + 1
|
|
|
|
bne off
|
|
|
|
lda y1
|
|
|
|
cmp #y_res
|
|
|
|
bcs off
|
2009-11-10 21:53:55 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
lda x1 + 1
|
2009-11-15 14:46:09 +00:00
|
|
|
|
|
|
|
.if >(::x_res - 1) > 0
|
2013-05-09 11:56:54 +00:00
|
|
|
cmp #>x_res
|
|
|
|
bcc check2
|
2009-11-15 14:46:09 +00:00
|
|
|
.endif
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
bne off
|
|
|
|
lda x1
|
|
|
|
cmp #<x_res
|
|
|
|
bcc check2
|
|
|
|
off: rts
|
2009-11-10 21:53:55 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
check2: lda y2 + 1
|
|
|
|
bne off
|
|
|
|
lda y2
|
|
|
|
cmp #y_res
|
|
|
|
bcs off
|
2009-11-10 21:53:55 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
lda x2 + 1
|
2009-11-15 14:46:09 +00:00
|
|
|
|
|
|
|
.if >(::x_res - 1) > 0
|
2013-05-09 11:56:54 +00:00
|
|
|
cmp #>x_res
|
|
|
|
bcc BAR
|
2009-11-15 14:46:09 +00:00
|
|
|
.endif
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
bne off
|
|
|
|
lda x2
|
|
|
|
cmp #<x_res
|
|
|
|
bcs off
|
2009-11-10 21:53:55 +00:00
|
|
|
.endproc
|
|
|
|
|
|
|
|
; ******************************************************************************
|
|
|
|
|
|
|
|
.proc BAR
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
; ----------------------------------------------------------------------
|
|
|
|
;
|
|
|
|
; BAR: Draw a filled rectangle with the corners at x1,y1,x2,y2
|
|
|
|
;
|
|
|
|
; ----------------------------------------------------------------------
|
2009-11-10 21:53:55 +00:00
|
|
|
|
|
|
|
; locals
|
2013-05-09 11:56:54 +00:00
|
|
|
lmem := sreg
|
2009-11-10 21:53:55 +00:00
|
|
|
.bss
|
2013-05-09 11:56:54 +00:00
|
|
|
lmask: .res 1
|
|
|
|
rmask: .res 1
|
|
|
|
dy: .res 1
|
|
|
|
dx: .res 1
|
|
|
|
fmask: .res 1
|
2009-11-10 21:53:55 +00:00
|
|
|
.code
|
2013-05-09 11:56:54 +00:00
|
|
|
; dy = y2 - y1 + 1
|
|
|
|
lda y2
|
|
|
|
sub y1
|
|
|
|
sta dy
|
|
|
|
inc dy
|
|
|
|
; Calculate upper left corner
|
|
|
|
jsr CALC
|
|
|
|
; Save the values
|
|
|
|
tya
|
|
|
|
add sptr
|
|
|
|
sta lmem
|
|
|
|
lda sptr + 1
|
|
|
|
adc #0
|
|
|
|
sta lmem + 1
|
|
|
|
lda bar_table,x
|
|
|
|
sta lmask
|
|
|
|
; Calculate upper right corner
|
|
|
|
lda x2
|
|
|
|
sta x1
|
2009-11-15 14:46:09 +00:00
|
|
|
|
|
|
|
.if >(::x_res - 1) > 0
|
2013-05-09 11:56:54 +00:00
|
|
|
lda x2 + 1
|
|
|
|
sta x1 + 1
|
2009-11-15 14:46:09 +00:00
|
|
|
.endif
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
jsr CALC
|
|
|
|
; Save the values
|
|
|
|
tya
|
|
|
|
add sptr
|
|
|
|
sta sptr
|
|
|
|
bcc skips
|
|
|
|
inc sptr + 1
|
|
|
|
skips: inx
|
|
|
|
lda bar_table,x
|
|
|
|
eor #$FF
|
|
|
|
sta rmask
|
|
|
|
; Calculate memory difference between x1 and x2
|
|
|
|
lda sptr
|
|
|
|
sub lmem
|
|
|
|
sta dx
|
|
|
|
loop: ; Main loop
|
|
|
|
ldy #0
|
|
|
|
ldx dx
|
|
|
|
beq same
|
|
|
|
; Left
|
|
|
|
lda (lmem),y
|
|
|
|
eor mask
|
|
|
|
and lmask
|
|
|
|
eor (lmem),y
|
|
|
|
sta (lmem),y
|
|
|
|
iny
|
|
|
|
; Between
|
|
|
|
lda mask
|
|
|
|
jmp next
|
|
|
|
btwn: sta (lmem),y
|
|
|
|
iny
|
|
|
|
next: dex
|
|
|
|
bne btwn
|
|
|
|
; Right
|
|
|
|
lda (lmem),y
|
|
|
|
eor mask
|
|
|
|
and rmask
|
|
|
|
eor (lmem),y
|
|
|
|
sta (lmem),y
|
|
|
|
jmp cont
|
|
|
|
same: ; Same byte
|
|
|
|
lda lmask
|
|
|
|
and rmask
|
|
|
|
sta fmask
|
|
|
|
lda (lmem),y
|
|
|
|
eor mask
|
|
|
|
and fmask
|
|
|
|
eor (lmem),y
|
|
|
|
sta (lmem),y
|
|
|
|
cont: ; Go to next row
|
|
|
|
lda lmem
|
|
|
|
add #<(x_res / ppb)
|
|
|
|
sta lmem
|
|
|
|
bcc skipm
|
|
|
|
inc lmem + 1
|
|
|
|
skipm: ; Loop while --dy > 0
|
|
|
|
dec dy
|
|
|
|
bne loop
|
|
|
|
|
|
|
|
rts
|
2009-11-10 21:53:55 +00:00
|
|
|
|
|
|
|
.endproc
|
|
|
|
|
|
|
|
; ******************************************************************************
|
|
|
|
|
|
|
|
.proc TEXTSTYLE
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
; ----------------------------------------------------------------------
|
|
|
|
;
|
|
|
|
; TEXTSTYLE: Set text style. Scale factors in X and Y and direction in A
|
|
|
|
;
|
|
|
|
; ----------------------------------------------------------------------
|
2009-11-10 21:53:55 +00:00
|
|
|
|
|
|
|
.code
|
2013-05-09 11:56:54 +00:00
|
|
|
stx mag_x
|
|
|
|
sty mag_y
|
|
|
|
; Save text direction in bit 8 so that we can use BIT instruction later
|
|
|
|
lsr a
|
|
|
|
ror a
|
|
|
|
sta text_dir
|
|
|
|
; Save 8 * scaling factors
|
|
|
|
lda #0
|
|
|
|
sta mag_x8 + 1
|
|
|
|
sta mag_y8 + 1
|
|
|
|
; Save 8 * mag_x
|
|
|
|
txa
|
|
|
|
|
|
|
|
.repeat 3
|
|
|
|
asl a
|
|
|
|
rol mag_x8 + 1
|
|
|
|
.endrepeat
|
|
|
|
|
|
|
|
sta mag_x8
|
|
|
|
; Save 8 * mag_y
|
|
|
|
tya
|
|
|
|
|
|
|
|
.repeat 3
|
|
|
|
asl a
|
|
|
|
rol mag_y8 + 1
|
|
|
|
.endrepeat
|
|
|
|
|
|
|
|
sta mag_y8
|
|
|
|
; Done!
|
|
|
|
rts
|
2009-11-10 21:53:55 +00:00
|
|
|
.endproc
|
|
|
|
|
|
|
|
; ******************************************************************************
|
|
|
|
|
|
|
|
.proc OUTTEXT
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
; ----------------------------------------------------------------------
|
|
|
|
;
|
|
|
|
; OUTTEXT: Draw text at x1, y1. String is in ptr3
|
|
|
|
;
|
|
|
|
; ----------------------------------------------------------------------
|
2009-11-10 21:53:55 +00:00
|
|
|
|
|
|
|
; locals
|
2013-05-09 11:56:54 +00:00
|
|
|
string := tmp1
|
|
|
|
cols := tmp3
|
|
|
|
pixels := tmp4
|
|
|
|
font := regsave
|
2009-11-10 21:53:55 +00:00
|
|
|
.rodata
|
2013-05-09 11:56:54 +00:00
|
|
|
ataint: .byte 64,0,32,96
|
2009-11-10 21:53:55 +00:00
|
|
|
.bss
|
2013-05-09 11:56:54 +00:00
|
|
|
rows: .res 1
|
2009-11-15 14:46:09 +00:00
|
|
|
|
|
|
|
.if >(::x_res - 1) > 0
|
2013-05-09 11:56:54 +00:00
|
|
|
oldx1: .res 2
|
|
|
|
oldx2: .res 2
|
2009-11-15 14:46:09 +00:00
|
|
|
.else
|
2013-05-09 11:56:54 +00:00
|
|
|
oldx1: .res 1
|
|
|
|
oldx2: .res 1
|
2009-11-15 14:46:09 +00:00
|
|
|
.endif
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
oldy1: .res 1
|
|
|
|
oldy2: .res 1
|
|
|
|
inv: .res 1
|
2009-11-15 14:46:09 +00:00
|
|
|
|
2009-11-10 21:53:55 +00:00
|
|
|
.code
|
2013-05-09 11:56:54 +00:00
|
|
|
; Don't draw zero sized characters
|
|
|
|
lda mag_x
|
|
|
|
ora mag_y
|
|
|
|
bne not0
|
|
|
|
rts
|
|
|
|
|
|
|
|
not0: ; Save string address, ptr3 is needed by BAR
|
|
|
|
lda ptr3
|
|
|
|
sta string
|
|
|
|
lda ptr3 + 1
|
|
|
|
sta string + 1
|
|
|
|
|
|
|
|
bit text_dir
|
|
|
|
bmi vert
|
|
|
|
|
|
|
|
; Calculate x2
|
|
|
|
lda mag_x
|
|
|
|
sub #1
|
|
|
|
add x1
|
|
|
|
sta x2
|
2009-11-15 14:46:09 +00:00
|
|
|
|
|
|
|
.if >(::x_res - 1) > 0
|
2013-05-09 11:56:54 +00:00
|
|
|
lda x1 + 1
|
|
|
|
adc #0
|
|
|
|
sta x2 + 1
|
2009-11-15 14:46:09 +00:00
|
|
|
.else
|
2013-05-09 11:56:54 +00:00
|
|
|
lda #0
|
|
|
|
sta x2 + 1
|
2009-11-15 14:46:09 +00:00
|
|
|
.endif
|
2009-11-10 21:53:55 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
; Calculate y2 and adjust y1
|
|
|
|
dec y1
|
|
|
|
lda y1
|
|
|
|
sta y2
|
|
|
|
sub mag_y
|
|
|
|
add #1
|
|
|
|
sta y1
|
|
|
|
lda #0
|
|
|
|
sta y2 + 1
|
|
|
|
|
|
|
|
jmp while
|
|
|
|
|
|
|
|
; Calculate for vertical text
|
|
|
|
vert: lda x1
|
|
|
|
sub #1
|
|
|
|
sta x2
|
|
|
|
lda x1 + 1
|
|
|
|
sbc #0
|
|
|
|
sta x2 + 1
|
|
|
|
lda x1
|
|
|
|
sub mag_y
|
|
|
|
sta x1
|
|
|
|
lda x1 + 1
|
|
|
|
sbc #0
|
|
|
|
sta x1 + 1
|
|
|
|
|
|
|
|
lda mag_x
|
|
|
|
sub #1
|
|
|
|
add y1
|
|
|
|
sta y2
|
|
|
|
lda #0
|
|
|
|
sta y2 + 1
|
|
|
|
jmp while
|
|
|
|
|
|
|
|
; Main loop
|
|
|
|
loop: inc string
|
|
|
|
bne skiph
|
|
|
|
inc string + 1
|
|
|
|
skiph: ; Save coords
|
|
|
|
bit text_dir
|
|
|
|
bmi scvert
|
|
|
|
|
|
|
|
ldx y1
|
|
|
|
stx oldy1
|
|
|
|
ldx y2
|
|
|
|
stx oldy2
|
|
|
|
jmp draw
|
|
|
|
|
|
|
|
scvert: ldx x1
|
|
|
|
stx oldx1
|
|
|
|
ldx x2
|
|
|
|
stx oldx2
|
2009-11-15 14:46:09 +00:00
|
|
|
|
|
|
|
.if >(::x_res - 1) > 0
|
2013-05-09 11:56:54 +00:00
|
|
|
ldx x1 + 1
|
|
|
|
stx oldx1 + 1
|
|
|
|
ldx x2 + 1
|
|
|
|
stx oldx2 + 1
|
2009-11-15 14:46:09 +00:00
|
|
|
.endif
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
; Draw one character
|
|
|
|
; Convert to ANTIC code
|
|
|
|
draw: tay
|
|
|
|
rol a
|
|
|
|
rol a
|
|
|
|
rol a
|
|
|
|
rol a
|
|
|
|
and #3
|
|
|
|
tax
|
|
|
|
tya
|
|
|
|
and #$9f
|
|
|
|
ora ataint,x
|
|
|
|
; Save and clear inverse video bit
|
|
|
|
sta inv
|
|
|
|
and #$7F
|
|
|
|
; Calculate font data address
|
|
|
|
sta font
|
|
|
|
lda #0
|
|
|
|
sta font + 1
|
|
|
|
|
|
|
|
.repeat 3
|
|
|
|
asl font
|
|
|
|
rol a
|
|
|
|
.endrepeat
|
|
|
|
|
|
|
|
adc CHBAS
|
|
|
|
sta font + 1
|
|
|
|
; Save old coords
|
|
|
|
bit text_dir
|
|
|
|
bpl hor
|
|
|
|
lda y1
|
|
|
|
sta oldy1
|
|
|
|
lda y2
|
|
|
|
sta oldy2
|
|
|
|
jmp cont
|
|
|
|
hor: lda x1
|
|
|
|
sta oldx1
|
|
|
|
lda x2
|
|
|
|
sta oldx2
|
2009-11-15 14:46:09 +00:00
|
|
|
|
|
|
|
.if >(::x_res - 1) > 0
|
2013-05-09 11:56:54 +00:00
|
|
|
lda x1 + 1
|
|
|
|
sta oldx1 + 1
|
|
|
|
lda x2 + 1
|
|
|
|
sta oldx2 + 1
|
2009-11-15 14:46:09 +00:00
|
|
|
.endif
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
; Get glyph pixels
|
|
|
|
cont: ldy #7
|
|
|
|
; Put one row of the glyph
|
|
|
|
putrow: sty rows
|
|
|
|
lda (font),y
|
|
|
|
bit inv
|
|
|
|
bpl noinv
|
|
|
|
eor #$FF
|
|
|
|
noinv: sta pixels
|
|
|
|
lda #7
|
|
|
|
sta cols
|
|
|
|
; Put one column of the row
|
|
|
|
putcol: asl pixels
|
|
|
|
bcc next_col
|
|
|
|
lda x1
|
|
|
|
pha
|
|
|
|
lda x1 + 1
|
|
|
|
pha
|
|
|
|
jsr clipped_bar
|
|
|
|
pla
|
|
|
|
sta x1 + 1
|
|
|
|
pla
|
|
|
|
sta x1
|
2009-11-10 21:53:55 +00:00
|
|
|
next_col:
|
2013-05-09 11:56:54 +00:00
|
|
|
; Go to next column
|
|
|
|
; increase x coords
|
|
|
|
bit text_dir
|
|
|
|
bmi vertinc
|
|
|
|
|
|
|
|
lda mag_x
|
|
|
|
add x1
|
|
|
|
sta x1
|
|
|
|
bcc L1
|
|
|
|
inc x1 + 1
|
|
|
|
L1: lda mag_x
|
|
|
|
add x2
|
|
|
|
sta x2
|
|
|
|
bcc L2
|
|
|
|
inc x2 + 1
|
|
|
|
jmp L2
|
2009-11-10 21:53:55 +00:00
|
|
|
|
2009-11-15 14:46:09 +00:00
|
|
|
vertinc:
|
2013-05-09 11:56:54 +00:00
|
|
|
lda y1
|
|
|
|
sub mag_x
|
|
|
|
sta y1
|
|
|
|
lda y2
|
|
|
|
sub mag_x
|
|
|
|
sta y2
|
2009-11-15 14:46:09 +00:00
|
|
|
L2:
|
2013-05-09 11:56:54 +00:00
|
|
|
dec cols
|
|
|
|
bpl putcol
|
2009-11-15 14:46:09 +00:00
|
|
|
next_row:
|
2013-05-09 11:56:54 +00:00
|
|
|
; Go to next row
|
|
|
|
bit text_dir
|
|
|
|
bmi verty
|
|
|
|
|
|
|
|
lda y1
|
|
|
|
sub mag_y
|
|
|
|
sta y1
|
|
|
|
bcs L3
|
|
|
|
dec y1 + 1
|
|
|
|
L3: lda y2
|
|
|
|
sub mag_y
|
|
|
|
sta y2
|
|
|
|
bcs L6
|
|
|
|
dec y2 + 1
|
|
|
|
L4: jmp L6
|
|
|
|
|
|
|
|
verty: lda x1
|
|
|
|
sub mag_y
|
|
|
|
sta x1
|
|
|
|
bcs L5
|
|
|
|
dec x1 + 1
|
|
|
|
L5: lda x2
|
|
|
|
sub mag_y
|
|
|
|
sta x2
|
|
|
|
bcs L6
|
|
|
|
dec x2 + 1
|
2009-11-15 14:46:09 +00:00
|
|
|
L6:
|
2013-05-09 11:56:54 +00:00
|
|
|
; Restore old values
|
|
|
|
bit text_dir
|
|
|
|
bpl reshor
|
|
|
|
lda oldy1
|
|
|
|
sta y1
|
|
|
|
lda oldy2
|
|
|
|
sta y2
|
|
|
|
jmp nextrow
|
|
|
|
reshor: lda oldx1
|
|
|
|
sta x1
|
|
|
|
lda oldx2
|
|
|
|
sta x2
|
2009-11-15 14:46:09 +00:00
|
|
|
|
|
|
|
.if >(::x_res - 1) > 0
|
2013-05-09 11:56:54 +00:00
|
|
|
lda oldx1 + 1
|
|
|
|
sta x1 + 1
|
|
|
|
lda oldx2 + 1
|
|
|
|
sta x2 + 1
|
2009-11-15 14:46:09 +00:00
|
|
|
.endif
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
; Next row
|
2009-11-15 14:46:09 +00:00
|
|
|
nextrow:
|
2013-05-09 11:56:54 +00:00
|
|
|
ldy rows
|
|
|
|
dey
|
|
|
|
jpl putrow
|
|
|
|
|
|
|
|
; Restore coords
|
|
|
|
bit text_dir
|
|
|
|
bmi resvert
|
|
|
|
|
|
|
|
ldx oldy1
|
|
|
|
stx y1
|
|
|
|
ldx oldy2
|
|
|
|
stx y2
|
|
|
|
ldx #0
|
|
|
|
stx y1 + 1
|
|
|
|
stx y2 + 1
|
|
|
|
|
|
|
|
lda mag_x8
|
|
|
|
add x1
|
|
|
|
sta x1
|
|
|
|
lda mag_x8 + 1
|
|
|
|
adc x1 + 1
|
|
|
|
sta x1 + 1
|
|
|
|
lda mag_x8
|
|
|
|
add x2
|
|
|
|
sta x2
|
|
|
|
lda mag_x8 + 1
|
|
|
|
adc x2 + 1
|
|
|
|
sta x2 + 1
|
|
|
|
|
|
|
|
jmp while
|
2009-11-10 21:53:55 +00:00
|
|
|
|
2009-11-15 14:46:09 +00:00
|
|
|
resvert:
|
2013-05-09 11:56:54 +00:00
|
|
|
ldx oldx1
|
|
|
|
stx x1
|
|
|
|
ldx oldx2
|
|
|
|
stx x2
|
2009-11-15 14:46:09 +00:00
|
|
|
|
|
|
|
.if >(::x_res - 1) > 0
|
2013-05-09 11:56:54 +00:00
|
|
|
ldx oldx1 + 1
|
|
|
|
stx x1 + 1
|
|
|
|
ldx oldx2 + 1
|
|
|
|
stx x2 + 1
|
2009-11-15 14:46:09 +00:00
|
|
|
.endif
|
2009-11-10 21:53:55 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
lda y1
|
|
|
|
sub mag_x8
|
|
|
|
sta y1
|
|
|
|
lda y1 +1
|
|
|
|
sbc mag_x8 + 1
|
|
|
|
sta y1 + 1
|
|
|
|
lda y2
|
|
|
|
sub mag_x8
|
|
|
|
sta y2
|
|
|
|
lda y2 +1
|
|
|
|
sbc mag_x8 + 1
|
|
|
|
sta y2 + 1
|
|
|
|
|
|
|
|
; End of loop
|
|
|
|
while: ldy #0
|
|
|
|
lda (string),y
|
|
|
|
jne loop ; Check for null character
|
|
|
|
rts
|
2009-11-10 21:53:55 +00:00
|
|
|
|
|
|
|
.endproc
|
|
|
|
|
|
|
|
.if pages = 2
|
|
|
|
; ******************************************************************************
|
|
|
|
|
|
|
|
.proc SETVIEWPAGE
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
; ----------------------------------------------------------------------
|
|
|
|
;
|
|
|
|
; SETVIEWPAGE, page in A
|
|
|
|
;
|
|
|
|
; ----------------------------------------------------------------------
|
2009-11-10 21:53:55 +00:00
|
|
|
|
|
|
|
.code
|
2013-05-09 11:56:54 +00:00
|
|
|
tax
|
|
|
|
beq cont
|
|
|
|
lda #32
|
2009-11-10 21:53:55 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
cont: add p0dls
|
|
|
|
cmp SDLSTH
|
|
|
|
beq done ; We're already in the desired page
|
2009-11-10 21:53:55 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
ldx RTCLOK + 2
|
|
|
|
sta SDLSTH
|
2009-11-10 21:53:55 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
; Wait until next VBLANK
|
|
|
|
wait: cpx RTCLOK + 2
|
|
|
|
beq wait
|
2009-11-10 21:53:55 +00:00
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
; Done
|
|
|
|
done: rts
|
2009-11-10 21:53:55 +00:00
|
|
|
.endproc
|
|
|
|
|
|
|
|
; ******************************************************************************
|
|
|
|
|
|
|
|
.proc SETDRAWPAGE
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
; ----------------------------------------------------------------------
|
|
|
|
;
|
|
|
|
; SETDRAWPAGE, page in A
|
|
|
|
;
|
|
|
|
; ----------------------------------------------------------------------
|
2009-11-10 21:53:55 +00:00
|
|
|
|
|
|
|
.code
|
2013-05-09 11:56:54 +00:00
|
|
|
tax
|
|
|
|
beq cont
|
|
|
|
lda #32
|
|
|
|
cont: add p0scr
|
|
|
|
sta SAVMSC + 1
|
|
|
|
rts
|
2009-11-10 21:53:55 +00:00
|
|
|
.endproc
|
|
|
|
.endif
|
|
|
|
|
|
|
|
; ******************************************************************************
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
; ----------------------------------------------------------------------
|
|
|
|
;
|
|
|
|
; Unimplemented functions that require an error code
|
|
|
|
;
|
|
|
|
; ----------------------------------------------------------------------
|
2009-11-10 21:53:55 +00:00
|
|
|
|
|
|
|
CONTROL:
|
2013-05-09 11:56:54 +00:00
|
|
|
lda #TGI_ERR_INV_FUNC
|
|
|
|
sta error
|
|
|
|
; fall through
|
2009-11-10 21:53:55 +00:00
|
|
|
|
|
|
|
; ******************************************************************************
|
|
|
|
|
2013-05-09 11:56:54 +00:00
|
|
|
; ----------------------------------------------------------------------
|
|
|
|
;
|
|
|
|
; Unimplemented functions that don't require an error code
|
|
|
|
;
|
|
|
|
; ----------------------------------------------------------------------
|
2009-11-10 21:53:55 +00:00
|
|
|
|
|
|
|
INSTALL:
|
|
|
|
UNINSTALL:
|
2009-11-15 14:46:09 +00:00
|
|
|
|
2009-11-10 21:53:55 +00:00
|
|
|
.if pages = 1
|
|
|
|
SETVIEWPAGE:
|
|
|
|
SETDRAWPAGE:
|
|
|
|
.endif
|
2009-11-15 14:46:09 +00:00
|
|
|
|
2009-11-10 21:53:55 +00:00
|
|
|
rts
|