2017-07-29 21:47:17 +00:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
2017-07-28 22:11:25 +00:00
|
|
|
; colorFill
|
2017-07-29 21:47:17 +00:00
|
|
|
; Fills the screen with a color (or two). Pretty fast, but not fastest possible
|
2018-06-08 19:55:22 +00:00
|
|
|
; X = 4:4:4:4 = Palette entries to fill
|
|
|
|
; Y = Scanline count (fills backwards to 0)
|
2017-07-29 21:47:17 +00:00
|
|
|
;
|
2018-06-08 19:55:22 +00:00
|
|
|
; Trashes A,Y,PARAML0,PARAML1
|
2017-07-28 22:11:25 +00:00
|
|
|
|
|
|
|
colorFill:
|
2017-07-29 21:47:17 +00:00
|
|
|
|
2018-06-08 19:55:22 +00:00
|
|
|
; Calculate end of VRAM we're going to touch
|
|
|
|
sty PARAML0
|
|
|
|
lda #160 ; Bytes per row in VRAM
|
|
|
|
sta PARAML1
|
|
|
|
phx
|
|
|
|
jsr mult16
|
|
|
|
clc
|
|
|
|
adc #$2000
|
|
|
|
dec ; A now holds address of highest byte we'll touch (e.g. $9d00-1 for full screen fill)
|
|
|
|
sta PARAML0 ; Cache values for highspeed zone
|
|
|
|
sty PARAML1
|
|
|
|
plx
|
2017-07-29 21:47:17 +00:00
|
|
|
|
2018-06-08 19:55:22 +00:00
|
|
|
FASTGRAPHICS
|
|
|
|
lda PARAML0
|
|
|
|
tcs
|
|
|
|
ldy PARAML1
|
2017-07-28 22:11:25 +00:00
|
|
|
|
|
|
|
colorFillLoop:
|
2017-07-29 21:47:17 +00:00
|
|
|
; 80 PHXs, for 1 line
|
|
|
|
; We could do the entire screen with PHXs, but this is a
|
2017-09-30 00:53:05 +00:00
|
|
|
; balance between speed and code size
|
2017-07-29 21:47:17 +00:00
|
|
|
.byte $da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da
|
|
|
|
.byte $da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da
|
|
|
|
.byte $da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da
|
|
|
|
.byte $da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da
|
|
|
|
|
|
|
|
dey
|
2017-07-28 22:11:25 +00:00
|
|
|
bne colorFillLoop
|
|
|
|
|
2017-07-29 21:47:17 +00:00
|
|
|
SLOWGRAPHICS
|
2017-07-28 22:11:25 +00:00
|
|
|
rts
|
|
|
|
|
|
|
|
|
2017-08-10 02:33:52 +00:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
; bottomFill
|
|
|
|
; Fills the bottom of the screen with a color (or two). Pretty fast, but not fastest possible
|
|
|
|
; A 4:4:4:4 = Palette entries
|
|
|
|
; X = Color to fill (doubled)
|
|
|
|
;
|
|
|
|
; Trashes Y
|
|
|
|
|
|
|
|
bottomFill:
|
|
|
|
FASTGRAPHICS
|
|
|
|
|
|
|
|
lda #$9d00-1 ; Point stack to end of VRAM
|
|
|
|
tcs
|
|
|
|
|
|
|
|
ldy #58
|
|
|
|
|
|
|
|
bottomFillLoop:
|
|
|
|
; 80 PHXs, for 1 line
|
|
|
|
; We could do the entire screen with PHXs, but this is a
|
|
|
|
; balance between speed and super-verbose code
|
|
|
|
.byte $da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da
|
|
|
|
.byte $da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da
|
|
|
|
.byte $da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da
|
|
|
|
.byte $da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da,$da
|
|
|
|
|
|
|
|
dey
|
|
|
|
bne bottomFillLoop
|
|
|
|
|
|
|
|
SLOWGRAPHICS
|
|
|
|
rts
|
|
|
|
|
|
|
|
|
2017-07-28 22:11:25 +00:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
; initSCBs
|
|
|
|
; Initialize all scanline control bytes
|
|
|
|
;
|
|
|
|
; Trashes A,X
|
|
|
|
|
|
|
|
initSCBs:
|
|
|
|
lda #0
|
|
|
|
ldx #$0100 ;set all $100 scbs to A
|
|
|
|
|
|
|
|
initSCBsLoop:
|
|
|
|
dex
|
|
|
|
dex
|
2017-07-29 21:47:17 +00:00
|
|
|
sta $e19d00,x
|
2017-07-28 22:11:25 +00:00
|
|
|
bne initSCBsLoop
|
|
|
|
rts
|
|
|
|
|
|
|
|
|
2018-06-06 20:23:00 +00:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
; setScanlinePalette
|
|
|
|
; Set the palette for a given scan line
|
|
|
|
;
|
|
|
|
; PARAML0 = Palette index
|
|
|
|
; X = Start scan line
|
|
|
|
; Y = Count
|
|
|
|
|
|
|
|
setScanlinePalette:
|
|
|
|
pha
|
|
|
|
|
|
|
|
setScanlinePaletteLoop:
|
|
|
|
lda $e19d00,x
|
|
|
|
ora PARAML0
|
|
|
|
sta $e19d00,x
|
|
|
|
inx
|
|
|
|
dey
|
|
|
|
bne setScanlinePaletteLoop
|
|
|
|
|
|
|
|
pla
|
|
|
|
rts
|
|
|
|
|
|
|
|
|
2017-11-01 19:53:27 +00:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
; enableFillMode
|
|
|
|
; Enables fill mode for a given scanline
|
|
|
|
;
|
|
|
|
; X = Scan line
|
|
|
|
;
|
|
|
|
enableFillMode:
|
2017-12-24 02:01:16 +00:00
|
|
|
SAVE_AXY
|
2017-11-01 19:53:27 +00:00
|
|
|
BITS8
|
|
|
|
lda $e19d00,x
|
|
|
|
ora #%00100000
|
|
|
|
sta $e19d00,x
|
|
|
|
BITS16
|
2017-12-24 02:01:16 +00:00
|
|
|
RESTORE_AXY
|
2017-11-01 19:53:27 +00:00
|
|
|
rts
|
|
|
|
|
|
|
|
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
; disableFillMode
|
|
|
|
; Disables fill mode for a given scanline
|
|
|
|
;
|
|
|
|
; X = Scan line
|
|
|
|
;
|
|
|
|
; Trashes A
|
|
|
|
|
|
|
|
disableFillMode:
|
2017-12-24 19:36:31 +00:00
|
|
|
SAVE_AXY
|
2017-11-01 19:53:27 +00:00
|
|
|
BITS8
|
|
|
|
lda $e19d00,x
|
|
|
|
and #%11011111
|
|
|
|
sta $e19d00,x
|
|
|
|
BITS16
|
2017-12-24 19:36:31 +00:00
|
|
|
RESTORE_AXY
|
2017-11-01 19:53:27 +00:00
|
|
|
rts
|
|
|
|
|
|
|
|
|
2017-07-28 22:11:25 +00:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
; setPaletteColor
|
|
|
|
; Set a single color in a palette
|
|
|
|
; PARAML0 = 0:Color index
|
|
|
|
; PARAML1 = 0:R:G:B
|
|
|
|
; A = Palette index
|
|
|
|
;
|
|
|
|
; Trashes X
|
|
|
|
|
|
|
|
setPaletteColor:
|
|
|
|
asl
|
|
|
|
asl
|
|
|
|
asl
|
|
|
|
asl
|
|
|
|
asl
|
|
|
|
sta SCRATCHL
|
|
|
|
lda PARAML0
|
|
|
|
asl
|
|
|
|
clc
|
|
|
|
adc SCRATCHL
|
|
|
|
tax
|
|
|
|
lda PARAML1
|
|
|
|
sta $e19e00,x
|
|
|
|
rts
|
|
|
|
|
|
|
|
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
; setPalette
|
2018-06-06 20:23:00 +00:00
|
|
|
; Set all colors in a palette from memory
|
2017-07-28 22:11:25 +00:00
|
|
|
; PARAML0 = Pointer to 32 color bytes
|
|
|
|
; A = Palette index
|
|
|
|
;
|
|
|
|
setPalette:
|
|
|
|
SAVE_XY
|
|
|
|
|
|
|
|
asl
|
|
|
|
asl
|
|
|
|
asl
|
|
|
|
asl
|
|
|
|
asl
|
2018-06-06 20:23:00 +00:00
|
|
|
BITS8A
|
|
|
|
sta setPaletteLoop_SMC+1
|
|
|
|
BITS16
|
|
|
|
ldx #0
|
2017-07-28 22:11:25 +00:00
|
|
|
ldy #0
|
|
|
|
|
|
|
|
setPaletteLoop:
|
|
|
|
lda (PARAML0),y
|
2018-06-06 20:23:00 +00:00
|
|
|
setPaletteLoop_SMC:
|
|
|
|
sta $e19e00,x ; Self-modifying code!
|
|
|
|
|
2017-07-28 22:11:25 +00:00
|
|
|
iny
|
|
|
|
iny
|
|
|
|
inx
|
|
|
|
inx
|
2017-07-29 21:47:17 +00:00
|
|
|
cpx #32
|
2017-07-28 22:11:25 +00:00
|
|
|
bne setPaletteLoop
|
|
|
|
|
|
|
|
RESTORE_XY
|
|
|
|
rts
|
2017-07-29 21:47:17 +00:00
|
|
|
|
|
|
|
|
2017-08-15 19:40:14 +00:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
; drawNumber
|
|
|
|
;
|
|
|
|
; A = Number to render
|
|
|
|
; X = VRAM position to render at
|
|
|
|
;
|
|
|
|
; Trashes PARAML0
|
|
|
|
;
|
|
|
|
drawNumber:
|
2023-07-16 21:17:02 +00:00
|
|
|
SAVE_AXY
|
|
|
|
|
2017-08-15 19:40:14 +00:00
|
|
|
sta PARAML0
|
|
|
|
jsr intToString
|
|
|
|
lda #intToStringResult
|
2023-07-16 21:17:02 +00:00
|
|
|
sta PARAML0
|
|
|
|
txy
|
|
|
|
ldx #0
|
|
|
|
jsl renderStringFar
|
2017-08-15 19:40:14 +00:00
|
|
|
|
2023-07-16 21:17:02 +00:00
|
|
|
RESTORE_AXY
|
2017-08-15 19:40:14 +00:00
|
|
|
rts
|
|
|
|
|
|
|
|
|
2023-06-30 22:32:17 +00:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
; drawSpriteBankSafe
|
|
|
|
;
|
|
|
|
; A slightly slower version of Mr Sprite's DrawSpriteBank that
|
|
|
|
; preserves all registers and requires no secret flag clearing
|
|
|
|
;
|
|
|
|
; Y = VRAM position at which to draw
|
|
|
|
; A = Sprite Index
|
|
|
|
;
|
|
|
|
drawSpriteBankSafe:
|
|
|
|
SAVE_AXY
|
|
|
|
clc
|
|
|
|
jsr DrawSpriteBank
|
|
|
|
RESTORE_AXY
|
|
|
|
rts
|
|
|
|
|
|
|
|
|
2017-11-01 19:42:52 +00:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
; BORDER_COLOR
|
|
|
|
;
|
|
|
|
; Trashes A
|
|
|
|
;
|
|
|
|
.macro BORDER_COLOR color
|
2017-12-24 19:36:31 +00:00
|
|
|
SAVE_AXY
|
2017-11-01 19:42:52 +00:00
|
|
|
BITS8
|
|
|
|
lda BORDERCOLOR
|
|
|
|
and #$f0
|
|
|
|
ora color
|
|
|
|
sta BORDERCOLOR
|
|
|
|
BITS16
|
2017-12-24 19:36:31 +00:00
|
|
|
RESTORE_AXY
|
2017-11-01 19:42:52 +00:00
|
|
|
.endmacro
|
|
|
|
|
2017-08-10 02:33:52 +00:00
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
; Vertical blank checkers
|
|
|
|
;
|
|
|
|
|
|
|
|
; The Brutal Deluxe version, taken from LemminGS
|
|
|
|
;
|
|
|
|
nextVBL:
|
|
|
|
lda #75
|
|
|
|
pha
|
|
|
|
nextVBL0:
|
|
|
|
lda $e0c02e
|
|
|
|
and #$7f
|
|
|
|
cmp 1,s
|
|
|
|
blt nextVBL0
|
|
|
|
cmp #100
|
|
|
|
bge nextVBL0
|
|
|
|
pla
|
|
|
|
waitVBL:
|
|
|
|
lda $e0c018
|
|
|
|
bpl waitVBL
|
|
|
|
rts
|
|
|
|
|
2018-07-22 15:11:51 +00:00
|
|
|
|
2017-08-10 02:33:52 +00:00
|
|
|
; The Apple version, taken from GS Tech Note 039
|
|
|
|
;
|
|
|
|
syncVBL:
|
2018-07-22 15:11:51 +00:00
|
|
|
;sei
|
2017-08-10 02:33:52 +00:00
|
|
|
BITS8
|
|
|
|
syncVBL0:
|
2018-07-22 15:11:51 +00:00
|
|
|
ldaA $C02f
|
2017-08-10 02:33:52 +00:00
|
|
|
asl ; VA is now in the Carry flag
|
2018-07-22 15:11:51 +00:00
|
|
|
ldaA $C02e
|
2017-08-10 02:33:52 +00:00
|
|
|
rol ; Roll Carry into bit 0
|
|
|
|
cmp #200 ; A now contains line number
|
2018-07-22 15:11:51 +00:00
|
|
|
blt syncVBL0
|
2017-08-10 02:33:52 +00:00
|
|
|
BITS16
|
2018-07-22 15:11:51 +00:00
|
|
|
;cli
|
2017-08-10 02:33:52 +00:00
|
|
|
rts
|
|
|
|
|
|
|
|
; The old style //e version
|
|
|
|
;
|
|
|
|
vblSync:
|
|
|
|
BITS8
|
|
|
|
|
|
|
|
waitVBLToFinish:
|
|
|
|
lda $E0C019
|
|
|
|
bmi waitVBLToFinish
|
|
|
|
waitVBLToStart:
|
|
|
|
lda $E0C019
|
|
|
|
bpl waitVBLToStart
|
|
|
|
|
|
|
|
BITS16
|
|
|
|
rts
|
|
|
|
|
2017-10-01 22:40:29 +00:00
|
|
|
.include "spritebank.s"
|