Sprite housekeeping

This commit is contained in:
scawful
2023-11-17 20:27:06 -05:00
parent 1b39a834c0
commit cd601e32d0
8 changed files with 1807 additions and 101 deletions

View File

@@ -56,14 +56,17 @@ incsrc "Sprites/minecart.asm"
print "End of minecart.asm ", pc print "End of minecart.asm ", pc
incsrc "Sprites/twinrova.asm" incsrc "Sprites/twinrova.asm"
print "End of twinrova.asm ", pc
incsrc "Sprites/portal_sprite.asm" incsrc "Sprites/portal_sprite.asm"
print "End of portal_sprite.asm ", pc
incsrc "Sprites/impa.asm" incsrc "Sprites/impa.asm"
print "End of impa.asm ", pc print "End of impa.asm ", pc
incsrc "Sprites/poltergeist.asm"
print "End of poltergeist.asm ", pc
incsrc "Sprites/bug_net_kid.asm" incsrc "Sprites/bug_net_kid.asm"
warnpc $2B8000 warnpc $2B8000

View File

@@ -1,3 +1,5 @@
pushpc
org $07F4D0 org $07F4D0
Sprite_CheckIfPlayerPreoccupied: Sprite_CheckIfPlayerPreoccupied:
@@ -54,3 +56,5 @@ BugNetKid_GrantBugNet:
RTS RTS
} }
pullpc

1705
Sprites/dark_link.asm Normal file

File diff suppressed because it is too large Load Diff

View File

@@ -1,5 +1,6 @@
pushpc
; Impa Fix ; Impa Fix
org $05EBCF org $05EBCF
LDA $7EF359 : CMP.b #$04 LDA $7EF359 : CMP.b #$04
pullpc

View File

@@ -9,12 +9,12 @@
!Health = 00 ; Number of Health the sprite have !Health = 00 ; Number of Health the sprite have
!Damage = 00 ; (08 is a whole heart), 04 is half heart !Damage = 00 ; (08 is a whole heart), 04 is half heart
!DeathAnimation = 00 ; 00 = normal death, 01 = no death animation !DeathAnimation = 00 ; 00 = normal death, 01 = no death animation
!ImperviousAll = 00 ; 00 = Can be attack, 01 = attack will clink on it !ImperviousAll = 01 ; 00 = Can be attack, 01 = attack will clink on it
!SmallShadow = 00 ; 01 = small shadow, 00 = no shadow !SmallShadow = 00 ; 01 = small shadow, 00 = no shadow
!Shadow = 00 ; 00 = don't draw shadow, 01 = draw a shadow !Shadow = 00 ; 00 = don't draw shadow, 01 = draw a shadow
!Palette = 00 ; Unused in this template (can be 0 to 7) !Palette = 00 ; Unused in this template (can be 0 to 7)
!Hitbox = 00 ; 00 to 31, can be viewed in sprite draw tool !Hitbox = 00 ; 00 to 31, can be viewed in sprite draw tool
!Persist = 00 ; 01 = your sprite continue to live offscreen !Persist = 01 ; 01 = your sprite continue to live offscreen
!Statis = 00 ; 00 = is sprite is alive?, (kill all enemies room) !Statis = 00 ; 00 = is sprite is alive?, (kill all enemies room)
!CollisionLayer = 00 ; 01 = will check both layer for collision !CollisionLayer = 00 ; 01 = will check both layer for collision
!CanFall = 00 ; 01 sprite can fall in hole, 01 = can't fall !CanFall = 00 ; 01 sprite can fall in hole, 01 = can't fall
@@ -36,7 +36,6 @@
;============================================================================== ;==============================================================================
print "Minecart: ", pc
Sprite_Minecart_Long: Sprite_Minecart_Long:
{ {
PHB : PHK : PLB PHB : PHK : PLB
@@ -55,6 +54,16 @@ Sprite_Minecart_Long:
;============================================================================== ;==============================================================================
; $0DE0[0x10] - (Sprite) ;functions
; udlr
; 0 - up
; 1 - down
; 2 - left
; 3 - right
!MinecartSpeed = 20
!MinecartDirection = $012B
Sprite_Minecart_Prep: Sprite_Minecart_Prep:
{ {
PHB : PHK : PLB PHB : PHK : PLB
@@ -76,6 +85,7 @@ Sprite_Minecart_Prep:
CMP.b #$03 : BEQ .west CMP.b #$03 : BEQ .west
.north .north
LDA #$01 : STA !MinecartDirection
%GotoAction(1) ; Minecart_MoveNorth %GotoAction(1) ; Minecart_MoveNorth
JMP .done JMP .done
.east .east
@@ -95,6 +105,8 @@ Sprite_Minecart_Prep:
;============================================================================== ;==============================================================================
macro HandlePlayerCamera() macro HandlePlayerCamera()
LDA $22 : SEC : SBC $3F : STA $31
LDA $20 : SEC : SBC $3E : STA $30
PHX PHX
JSL $07E6A6 ; Link_HandleMovingAnimation_FullLongEntry JSL $07E6A6 ; Link_HandleMovingAnimation_FullLongEntry
JSL $07F42F ; HandleIndoorCameraAndDoors_Long JSL $07F42F ; HandleIndoorCameraAndDoors_Long
@@ -102,9 +114,6 @@ macro HandlePlayerCamera()
PLX PLX
endmacro endmacro
!MinecartSpeed = 20
!MinecartDirection = $012B
Sprite_Minecart_Main: Sprite_Minecart_Main:
{ {
LDA.w SprAction, X ; Load the SprAction LDA.w SprAction, X ; Load the SprAction
@@ -155,10 +164,12 @@ Sprite_Minecart_Main:
LDA $0FDA : SEC : SBC #$0B : STA $20 ; Adjust player pos LDA $0FDA : SEC : SBC #$0B : STA $20 ; Adjust player pos
LDA !MinecartDirection : BNE .opposite_direction LDA !MinecartDirection : BNE .opposite_direction
LDA #$01 : STA $0DE0, X
%GotoAction(4) ; Minecart_MoveSouth %GotoAction(4) ; Minecart_MoveSouth
RTS RTS
.opposite_direction .opposite_direction
LDA #$00 : STA $0DE0, X
%GotoAction(2) ; Minecart_MoveNorth %GotoAction(2) ; Minecart_MoveNorth
.not_on_platform .not_on_platform
.not_ready .not_ready
@@ -171,17 +182,15 @@ Sprite_Minecart_Main:
{ {
%PlayAnimation(2,3,8) %PlayAnimation(2,3,8)
LDA.b #-!MinecartSpeed : STA SprYSpeed, X LDA.b #-!MinecartSpeed : STA SprYSpeed, X
LDA #$35 : STA $012E
JSL Sprite_MoveVert JSL Sprite_MoveVert
LDA SprY, X : SEC : SBC #$04 : STA $20
LDA $0FD8 : CLC : ADC #$02 : STA $22 ; X ; LDA SprY, X : SEC : SBC #$04 : STA $20
; LDA $0FD8 : CLC : ADC #$02 : STA $22 ; X
JSR DragPlayer JSR DragPlayer
%HandlePlayerCamera() %HandlePlayerCamera()
JSR HandleTileDirections JSR HandleTileDirections
LDA #$35 : STA $012E
RTS RTS
} }
@@ -191,21 +200,17 @@ Sprite_Minecart_Main:
Minecart_MoveEast: Minecart_MoveEast:
{ {
%PlayAnimation(0,1,8) %PlayAnimation(0,1,8)
%HandlePlayerCamera()
LDA.b #!MinecartSpeed : STA $0D50, X LDA.b #!MinecartSpeed : STA $0D50, X
JSL Sprite_MoveHoriz JSL Sprite_MoveHoriz
LDA #$35 : STA $012E
; Make Link move with the minecart ; Make Link move with the minecart
LDA SprX, X : STA $22 ; LDA SprX, X : STA $22
JSR DragPlayer JSR DragPlayer
%HandlePlayerCamera() %HandlePlayerCamera()
JSR HandleTileDirections JSR HandleTileDirections
LDA #$35 : STA $012E
RTS RTS
} }
@@ -217,14 +222,15 @@ Sprite_Minecart_Main:
%PlayAnimation(2,3,8) %PlayAnimation(2,3,8)
LDA.b #!MinecartSpeed : STA SprYSpeed, X LDA.b #!MinecartSpeed : STA SprYSpeed, X
JSL Sprite_MoveVert JSL Sprite_MoveVert
LDA SprY, X : SEC : SBC #$04 : STA $20
LDA $0FD8 : CLC : ADC #$02 : STA $22 ; X
; LDA SprY, X : SEC : SBC #$04 : STA $20
; LDA $0FD8 : CLC : ADC #$02 : STA $22 ; X
JSR DragPlayer
%HandlePlayerCamera() %HandlePlayerCamera()
JSR HandleTileDirections JSR HandleTileDirections
LDA #$35 : STA $012E
LDA $40 : SEC : SBC.b #$FF : STA $40 LDA $40 : SEC : SBC.b #$FF : STA $40
LDA $68 : SEC : SBC.b #$FF : STA $68 LDA $68 : SEC : SBC.b #$FF : STA $68
@@ -240,29 +246,14 @@ Sprite_Minecart_Main:
%PlayAnimation(0,1,8) %PlayAnimation(0,1,8)
LDA.b #-!MinecartSpeed : STA $0D50, X LDA.b #-!MinecartSpeed : STA $0D50, X
JSL Sprite_MoveHoriz JSL Sprite_MoveHoriz
LDA #$35 : STA $012E
; Make Link move with the minecart ; Make Link move with the minecart
LDA SprX, X : STA $22 ; LDA SprX, X : STA $22
JSR DragPlayer JSR DragPlayer
JSR HandleTileDirections
; ; Set Minecart sprite coords to look for tile attributes
; LDA.w SprY, X : CLC : ADC.b #$04 : STA.b $00
; LDA.w SprYH, X : STA.b $01
; LDA.w SprX, X : STA.b $02
; LDA.w SprXH, X : STA.b $03
; LDA.b #$00 : JSL Sprite_GetTileAttr
; ; Check for bottom left corner tile
; LDA $0FA5 : CMP.b #$B1 : BNE .continue
%HandlePlayerCamera() %HandlePlayerCamera()
JSR HandleTileDirections
LDA #$35 : STA $012E
RTS RTS
} }
@@ -297,7 +288,6 @@ macro SwapSubtype()
STA SprSubtype, X ; Store the new direction subtype STA SprSubtype, X ; Store the new direction subtype
endmacro endmacro
print pc
HandleTileDirections: HandleTileDirections:
{ {
; Setup Minecart position to look for tile IDs ; Setup Minecart position to look for tile IDs
@@ -400,7 +390,6 @@ HandleTileDirections:
} }
.check_direction .check_direction
print pc
LDA SprSubtype, X LDA SprSubtype, X
BNE .not_zero BNE .not_zero
@@ -425,18 +414,22 @@ HandleTileDirections:
.move_north .move_north
LDA #$00 : STA SprSubtype, X LDA #$00 : STA SprSubtype, X
STA $0DE0, X
%GotoAction(2) ; Minecart_MoveNorth %GotoAction(2) ; Minecart_MoveNorth
RTS RTS
.move_east .move_east
LDA #$01 : STA SprSubtype, X LDA #$01 : STA SprSubtype, X
LDA #$03 : STA $0DE0, X
%GotoAction(3) ; Minecart_MoveEast %GotoAction(3) ; Minecart_MoveEast
RTS RTS
.move_south .move_south
LDA #$02 : STA SprSubtype, X LDA #$02 : STA SprSubtype, X
LDA #$01 : STA $0DE0, X
%GotoAction(4) ; Minecart_MoveSouth %GotoAction(4) ; Minecart_MoveSouth
RTS RTS
.move_west .move_west
LDA #$03 : STA SprSubtype, X LDA #$03 : STA SprSubtype, X
LDA #$02 : STA $0DE0, X
%GotoAction(5) ; Minecart_MoveWest %GotoAction(5) ; Minecart_MoveWest
.done .done
RTS RTS
@@ -468,7 +461,7 @@ DragPlayer:
.SomariaPlatform_DragLink .SomariaPlatform_DragLink
REP #$20 REP #$20
LDA $0FD8 : SEC : SBC.w #$0008 : CMP $22 : BEQ .x_done LDA $0FD8 : SEC : SBC.w #$0002 : CMP $22 : BEQ .x_done
BPL .x_too_low BPL .x_too_low
DEC $0B7C DEC $0B7C

View File

@@ -3,7 +3,7 @@
; Portal Sprite ; Portal Sprite
; ========================================================= ; =========================================================
!SPRID = $B6 ; The sprite ID you are overwriting (HEX) !SPRID = $B8 ; The sprite ID you are overwriting (HEX)
!NbrTiles = 01 ; Number of tiles used in a frame !NbrTiles = 01 ; Number of tiles used in a frame
!Harmless = 00 ; 00 = Sprite is Harmful, 01 = Sprite is Harmless !Harmless = 00 ; 00 = Sprite is Harmful, 01 = Sprite is Harmless
!HVelocity = 00 ; Is your sprite going super fast? put 01 if it is !HVelocity = 00 ; Is your sprite going super fast? put 01 if it is
@@ -60,6 +60,7 @@ Sprite_Portal_Prep:
PHB : PHK : PLB PHB : PHK : PLB
; Persist outside of camera ; Persist outside of camera
LDA #$00 : STA $0CAA, X
LDA SprHitbox, X : AND.b #$20 : STA SprHitbox, X LDA SprHitbox, X : AND.b #$20 : STA SprHitbox, X
PLB PLB

View File

@@ -703,7 +703,6 @@ db $02, $02, $02, $02
db $02, $02, $02, $02 db $02, $02, $02, $02
} }
print "TWINROVA ============ ", pc
ApplyTwinrovaGraphics: ApplyTwinrovaGraphics:
{ {
PHX PHX