mirror of
https://github.com/blondie7575/GSCats.git
synced 2024-11-19 03:06:12 +00:00
Revert "Top to bottom terrain rendering"
This reverts commit e49d1ea908
.
This commit is contained in:
parent
e49d1ea908
commit
0ba976a321
14
graphics.s
14
graphics.s
@ -155,20 +155,6 @@ drawNumber:
|
||||
rts
|
||||
|
||||
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
; BORDER_COLOR
|
||||
;
|
||||
; Trashes A
|
||||
;
|
||||
.macro BORDER_COLOR color
|
||||
BITS8
|
||||
lda BORDERCOLOR
|
||||
and #$f0
|
||||
ora color
|
||||
sta BORDERCOLOR
|
||||
BITS16
|
||||
.endmacro
|
||||
|
||||
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
||||
; Vertical blank checkers
|
||||
;
|
||||
|
26
terrain.s
26
terrain.s
@ -21,9 +21,9 @@ VISIBLETERRAINWINDOW = 80 ; In words
|
||||
;
|
||||
renderTerrain:
|
||||
FASTGRAPHICS
|
||||
lda #0
|
||||
lda #MAXTERRAINHEIGHT
|
||||
sta SCRATCHL2 ; Row counter
|
||||
lda #$5f1f ; 4 Point stack to end of VRAM
|
||||
lda #$9cff ; 4 Point stack to end of VRAM
|
||||
tcs ; 2
|
||||
|
||||
sec
|
||||
@ -43,20 +43,9 @@ renderRowComplete:
|
||||
sec
|
||||
sbc #COMPILEDTERRAINROW
|
||||
sta PARAML0
|
||||
dec SCRATCHL2
|
||||
bne renderTerrainLoop
|
||||
|
||||
tsc
|
||||
clc
|
||||
adc #320
|
||||
tcs
|
||||
|
||||
lda SCRATCHL2
|
||||
inc
|
||||
cmp #MAXTERRAINHEIGHT
|
||||
beq renderTerrainDone
|
||||
sta SCRATCHL2
|
||||
bra renderTerrainLoop
|
||||
|
||||
renderTerrainDone:
|
||||
SLOWGRAPHICS
|
||||
rts
|
||||
|
||||
@ -227,16 +216,15 @@ unclipTerrainLoop:
|
||||
compileTerrain:
|
||||
SAVE_AY
|
||||
|
||||
ldy #0
|
||||
ldy #MAXTERRAINHEIGHT-1
|
||||
lda #compiledTerrain
|
||||
sta PARAML0
|
||||
|
||||
compileTerrainLoop:
|
||||
sty PARAML1
|
||||
jsr compileTerrainRow
|
||||
iny
|
||||
cpy #MAXTERRAINHEIGHT
|
||||
beq compileTerrainDone
|
||||
dey
|
||||
bmi compileTerrainDone
|
||||
|
||||
clc
|
||||
lda #COMPILEDTERRAINROW
|
||||
|
Loading…
Reference in New Issue
Block a user