GSCats/gamemanager.s

343 lines
5.8 KiB
ArmAsm
Raw Normal View History

2017-08-16 02:04:22 +00:00
;
; gamemanager
; The manager for overall game logic
;
; Created by Quinn Dunki on 8/15/17
;
2017-09-03 00:31:12 +00:00
NUMPLAYERS = 2
2017-08-16 02:04:22 +00:00
beginGameplay:
; Set up palette for terrain and players
lda #basePalette
sta PARAML0
lda #0
jsr setPalette
2017-10-06 19:28:18 +00:00
; Set up sprite rendering
BITS8
lda #3
sta SpriteBankBank00+3 ; Tell compiled sprites what bank they are in
2017-10-06 19:28:18 +00:00
BITS16
2017-08-16 02:04:22 +00:00
; Erase the screen
ldx #$0000
2017-08-16 02:04:22 +00:00
jsr colorFill
; Generate, compile, and clip terrain
2018-01-16 20:56:53 +00:00
stz leftScreenEdge
2017-08-16 02:04:22 +00:00
jsr generateTerrain
2018-01-16 20:56:53 +00:00
jsl compileTerrainSpans
2017-12-24 19:36:31 +00:00
; jsr compileTerrain
; jsr clipTerrain
2018-01-16 20:56:53 +00:00
jsl renderTerrainSpans
2017-08-16 02:04:22 +00:00
; Create players
lda #56
2017-09-03 00:31:12 +00:00
ldy #0
jsr playerCreate
lda #568
2017-09-03 00:31:12 +00:00
ldy #1
jsr playerCreate
2017-08-16 02:04:22 +00:00
ldy #0
jsr renderPlayerHeader
2017-10-19 19:59:24 +00:00
jsr protectPlayers
jsr protectProjectiles
2017-12-24 19:36:31 +00:00
jsr prepareRowRendering
2017-10-19 19:59:24 +00:00
2017-08-16 02:04:22 +00:00
gameplayLoop:
jsr syncVBL
BORDER_COLOR #$0
2017-08-16 02:04:22 +00:00
; Render the terrain if needed
; lda terrainDirty
; beq gameplayLoopKbd
BORDER_COLOR #$3
2018-01-16 20:56:53 +00:00
jsl unrenderTerrainSpans
jsl renderTerrainSpans
2017-12-26 05:23:22 +00:00
2017-08-16 02:04:22 +00:00
stz terrainDirty
BORDER_COLOR #$1
2017-08-16 02:04:22 +00:00
; Render players
jsr renderPlayers
gameplayLoopKbd:
2017-10-22 20:37:06 +00:00
lda projectileActive
bpl gameplayLoopShotTracking ; Skip input during shots
2017-09-05 19:48:30 +00:00
2017-08-16 02:04:22 +00:00
; Check for keys down
jsr kbdScan
; Check for pause
lda paused
bne gameplayLoopEndFrame
2017-10-22 20:37:06 +00:00
gameplayLoopScroll:
2017-08-16 02:04:22 +00:00
; Scroll map if needed
lda mapScrollRequested
bmi gameplayLoopAngle
2017-08-16 02:04:22 +00:00
jsr scrollMap
gameplayLoopAngle:
; Update aim angle if needed
2017-08-16 02:04:22 +00:00
lda angleDeltaRequested
2017-09-05 19:55:27 +00:00
beq gameplayLoopPower
2017-08-16 02:04:22 +00:00
jsr changeAngle
2017-09-05 19:55:27 +00:00
gameplayLoopPower:
; Update power if needed
lda powerDeltaRequested
beq gameplayLoopFire
jsr changePower
gameplayLoopFire:
lda fireRequested
2017-08-23 03:33:07 +00:00
beq gameplayLoopProjectiles
jsr fire
2017-08-23 03:33:07 +00:00
gameplayLoopProjectiles:
2017-09-05 19:48:30 +00:00
sta KBDSTROBE
jsr unrenderProjectiles
jsr updateProjectilePhysics
jsr protectProjectiles
jsr renderProjectiles
jsr updateProjectileCollisions
2017-08-23 03:33:07 +00:00
2017-09-03 00:31:12 +00:00
lda turnRequested
2017-09-04 00:20:24 +00:00
beq gameplayLoopVictoryCondition
2017-09-03 00:31:12 +00:00
jsr endTurn
2017-08-16 02:04:22 +00:00
2017-09-04 00:20:24 +00:00
gameplayLoopVictoryCondition:
lda gameOver
bmi gameplayLoopEndFrame
jsr endGame
2017-09-03 00:31:12 +00:00
gameplayLoopEndFrame:
2017-08-16 02:04:22 +00:00
lda quitRequested
beq gameplayLoopContinue
2017-08-16 02:04:22 +00:00
jmp quitGame
gameplayLoopContinue:
jmp gameplayLoop
2017-08-16 02:04:22 +00:00
2017-10-22 20:37:06 +00:00
gameplayLoopShotTracking:
jsr trackActiveShot
bra gameplayLoopScroll
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; trackActiveShot
;
; Handles tracking the projectile with the camera
;
; Trashes SCRATCHL
;
trackActiveShot:
lda projectileData+JD_PRECISEX
lsr ; Convert to integer and divide by two for byte distance
lsr
lsr
lsr
lsr
sta SCRATCHL ; Save this for later
lda projectileData+JD_VX
bmi trackActiveShotNeg
; Left-to-right
lda mapScrollPos
cmp #VISIBLETERRAINWIDTH-VISIBLETERRAINWINDOW
beq trackActiveShotDone ; Logical-right edge clamp
lda SCRATCHL
sec
sbc #80 ; Check for moving past center
cmp leftScreenEdge
bpl trackActiveShotCameraMove
bra trackActiveShotDone
trackActiveShotNeg:
; Right-to-left
lda mapScrollPos
beq trackActiveShotDone ; Logical-left edge clamp
lda SCRATCHL
clc
adc #80 ; Check for moving past center
cmp rightScreenEdge
bpl trackActiveShotDone
trackActiveShotCameraMove:
lda SCRATCHL
sbc #80
lsr
and #$fffe ; Force even
sta mapScrollRequested
trackActiveShotDone:
rts
2017-08-16 02:04:22 +00:00
2017-09-03 00:31:12 +00:00
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; endTurn
;
; Handles changing the active player
;
endTurn:
lda currentPlayer
inc
cmp #NUMPLAYERS
beq endTurnWrap
sta currentPlayer
endTurnRefresh:
ldy currentPlayer
jsr renderPlayerHeader
stz turnRequested
rts
endTurnWrap:
stz currentPlayer
bra endTurnRefresh
2017-09-04 00:20:24 +00:00
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; endGame
;
; Handles someone winning
;
endGame:
lda #1
sta quitRequested
rts
2017-08-16 02:04:22 +00:00
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; scrollMap
;
; Handles updating the state of the terrain in response to scrolling
;
; A = New map scroll position
;
2017-08-16 02:04:22 +00:00
scrollMap:
2017-12-24 19:36:31 +00:00
; jsr unclipTerrain
2017-12-26 05:23:22 +00:00
; jsr unrenderTerrainSpans
jsr unrenderPlayers
jsr unrenderProjectiles
2017-08-16 02:04:22 +00:00
sta mapScrollPos
asl
sta leftScreenEdge
clc
2017-09-05 19:48:30 +00:00
adc #160-GAMEOBJECTWIDTH/4-1
sta rightScreenEdge
2017-08-16 02:04:22 +00:00
2017-12-24 19:36:31 +00:00
; jsr clipTerrain
2017-08-16 02:04:22 +00:00
lda #$ffff
sta mapScrollRequested
2017-10-19 19:59:24 +00:00
jsr protectPlayers
jsr protectProjectiles
jsr renderPlayers
2017-08-16 02:04:22 +00:00
lda #1
sta terrainDirty
rts
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; changeAngle
;
; Handles changing a player's aim
;
changeAngle:
2017-09-03 00:31:12 +00:00
ldy currentPlayer
2017-08-16 02:04:22 +00:00
tax
jsr playerDeltaAngle
2017-09-03 00:31:12 +00:00
ldy currentPlayer
2017-08-16 02:04:22 +00:00
jsr renderPlayerHeader
stz angleDeltaRequested
rts
2017-09-05 19:55:27 +00:00
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; changePower
;
; Handles changing a player's power
;
changePower:
ldy currentPlayer
tax
jsr playerDeltaPower
ldy currentPlayer
jsr renderPlayerHeader
stz powerDeltaRequested
rts
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; fire
;
; Handles firing a player's weapon
;
fire:
stz fireRequested
2017-09-03 00:31:12 +00:00
ldy currentPlayer
jsr playerFire
rts
2017-08-16 02:04:22 +00:00
basePalette:
.word $0aef,$0080,$0861,$0c93,$0eb4,$0d66,$0f9a,$0000,$007b,$0000,$0000,$0000,$0000,$0000,$0000,$0FFF
2017-08-16 02:04:22 +00:00
quitRequested:
.word $0000
mapScrollRequested:
.word $FFFF
angleDeltaRequested:
.word $0000
2017-09-05 19:55:27 +00:00
powerDeltaRequested:
.word $0000
fireRequested:
.word $0000
2017-09-03 00:31:12 +00:00
turnRequested:
.word $0000
2017-08-16 02:04:22 +00:00
terrainDirty:
.word 1
2017-08-16 02:20:47 +00:00
activePlayer:
.word 0
2017-09-03 00:31:12 +00:00
currentPlayer:
.word 0
2017-09-04 00:20:24 +00:00
gameOver:
.word -1 ; Player index of winner
2017-09-05 19:48:30 +00:00
projectileActive:
.word -1
paused:
.word 0
2017-09-03 00:31:12 +00:00
2017-08-16 02:04:22 +00:00
; Position of map viewing window. Can be visualized in two ways:
; a) Word-distance from right edge of terrain data (which is in memory right-to-left) to left edge of visible screen
; b) Byte-distance from left edge of logical terrain to left edge of visible screen
; c) Byte-distance from left edge of logical terrain to right edge of visible screen minus game object width in words
2017-08-16 02:04:22 +00:00
mapScrollPos:
.word 0
2018-01-16 20:56:53 +00:00
;leftScreenEdge = $6E ; Moved to zero page for speed and cross-bank convenience
; .word 0
rightScreenEdge:
2017-09-05 19:48:30 +00:00
.word 160-GAMEOBJECTWIDTH/4-1