aboutsummaryrefslogtreecommitdiffstats
path: root/engine/battle/animations.asm
diff options
context:
space:
mode:
authorColton G. Rushton <colton51919@gmail.com>2022-07-09 18:18:20 -0300
committerGitHub <noreply@github.com>2022-07-09 17:18:20 -0400
commitc0085ea1b21a171ef9f4c73ad28a5306558f2cc3 (patch)
tree311a4a64f13395e2f711b46f8b13bbc1b5ff849e /engine/battle/animations.asm
parentFix typo: HeatButt -> HeadButt (diff)
downloadpokeyellow-c0085ea1b21a171ef9f4c73ad28a5306558f2cc3.tar.gz
pokeyellow-c0085ea1b21a171ef9f4c73ad28a5306558f2cc3.tar.xz
pokeyellow-c0085ea1b21a171ef9f4c73ad28a5306558f2cc3.zip
wOAMBuffer -> wShadowOAM (#95)
Diffstat (limited to 'engine/battle/animations.asm')
-rw-r--r--engine/battle/animations.asm32
1 files changed, 16 insertions, 16 deletions
diff --git a/engine/battle/animations.asm b/engine/battle/animations.asm
index 8cd62d2b..9a58c221 100644
--- a/engine/battle/animations.asm
+++ b/engine/battle/animations.asm
@@ -174,7 +174,7 @@ DrawFrameBlock:
jr z, .resetFrameBlockDestAddr
call AnimationCleanOAM
.resetFrameBlockDestAddr
- ld hl, wOAMBuffer ; OAM buffer
+ ld hl, wShadowOAM
ld a, l
ld [wFBDestAddr + 1], a
ld a, h
@@ -622,7 +622,7 @@ PlaySubanimation:
call GetMoveSound
call PlaySound
.skipPlayingSound
- ld hl, wOAMBuffer ; base address of OAM buffer
+ ld hl, wShadowOAM
ld a, l
ld [wFBDestAddr + 1], a
ld a, h
@@ -895,7 +895,7 @@ TradeShakePokeball:
; if it's the end of the animation, make the ball jump up
ld de, BallMoveDistances1
.loop
- ld hl, wOAMBuffer ; OAM buffer
+ ld hl, wShadowOAM
ld bc, 4
.innerLoop
ld a, [de]
@@ -925,7 +925,7 @@ BallMoveDistances1:
TradeJumpPokeball:
ld de, BallMoveDistances2
.loop
- ld hl, wOAMBuffer ; OAM buffer
+ ld hl, wShadowOAM
ld bc, 4
.innerLoop
ld a, [de]
@@ -965,8 +965,8 @@ BallMoveDistances2:
; this function copies the current musical note graphic
; so that there are two musical notes flying towards the defending pokemon
DoGrowlSpecialEffects:
- ld hl, wOAMBuffer ; OAM buffer
- ld de, wOAMBuffer + $10
+ ld hl, wShadowOAM
+ ld de, wShadowOAMSprite04
ld bc, $10
call CopyData ; copy the musical note graphic
ld a, [wSubAnimCounter]
@@ -1180,7 +1180,7 @@ AnimationWaterDropletsEverywhere:
ret
_AnimationWaterDroplets:
- ld hl, wOAMBuffer
+ ld hl, wShadowOAM
.loop
ld a, $1
ld [wdef5], a
@@ -1323,7 +1323,7 @@ ShakeEnemyHUD_WritePlayerMonPicOAM:
ld [wBaseCoordX], a
ld a, $30
ld [wBaseCoordY], a
- ld hl, wOAMBuffer
+ ld hl, wShadowOAM
ld d, 0
ld c, 7
.loop
@@ -1571,7 +1571,7 @@ AnimationSpiralBallsInward:
.loop
push hl
ld c, 3
- ld de, wOAMBuffer
+ ld de, wShadowOAM
.innerLoop
ld a, [hl]
cp $ff
@@ -1723,7 +1723,7 @@ _AnimationShootBallsUpward:
call LoadAnimationTileset
pop bc
ld d, $7a ; ball tile
- ld hl, wOAMBuffer
+ ld hl, wShadowOAM
push bc
ld a, [wBaseCoordY]
ld e, a
@@ -1737,7 +1737,7 @@ _AnimationShootBallsUpward:
ld [wNumShootingBalls], a
.loop
push bc
- ld hl, wOAMBuffer
+ ld hl, wShadowOAM
.innerLoop
ld a, [wBaseCoordY]
add 8
@@ -2240,7 +2240,7 @@ InitMultipleObjectsOAM:
xor a
ld e, a
ld [wBaseCoordX], a
- ld hl, wOAMBuffer
+ ld hl, wShadowOAM
.loop
call BattleAnimWriteOAMEntry
dec c
@@ -2494,7 +2494,7 @@ AnimationFallingObjects:
call InitMultipleObjectsOAM
call FallingObjects_InitXCoords
call FallingObjects_InitMovementData
- ld hl, wOAMBuffer
+ ld hl, wShadowOAM
ld [hl], 0
.loop
ld hl, wFallingObjectsMovementData
@@ -2521,7 +2521,7 @@ AnimationFallingObjects:
dec c
jr nz, .innerLoop
call Delay3
- ld hl, wOAMBuffer
+ ld hl, wShadowOAM
ld a, [hl] ; Y
cp 104 ; has the top falling object reached 104 yet?
jr nz, .loop ; keep moving the falling objects down until it does
@@ -2530,7 +2530,7 @@ AnimationFallingObjects:
FallingObjects_UpdateOAMEntry:
; Increases Y by 2 pixels and adjusts X and X flip based on the falling object's
; movement byte.
- ld hl, wOAMBuffer
+ ld hl, wShadowOAM
add hl, de
ld a, $1
ld [wdef5], a
@@ -2616,7 +2616,7 @@ FallingObjects_UpdateMovementByte:
ret
FallingObjects_InitXCoords:
- ld hl, wOAMBuffer + $01
+ ld hl, wShadowOAMSprite00XCoord
ld de, FallingObjects_InitialXCoords
ld a, [wNumFallingObjects]
ld c, a