2018-06-24 07:09:41 -07:00
|
|
|
UserPartyAttr::
|
2014-05-21 13:37:18 -07:00
|
|
|
push af
|
2018-08-25 11:28:22 -07:00
|
|
|
ldh a, [hBattleTurn]
|
2014-05-21 13:37:18 -07:00
|
|
|
and a
|
|
|
|
jr nz, .ot
|
|
|
|
pop af
|
|
|
|
jr BattlePartyAttr
|
|
|
|
.ot
|
|
|
|
pop af
|
|
|
|
jr OTPartyAttr
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
OpponentPartyAttr::
|
2014-05-21 13:37:18 -07:00
|
|
|
push af
|
2018-08-25 11:28:22 -07:00
|
|
|
ldh a, [hBattleTurn]
|
2014-05-21 13:37:18 -07:00
|
|
|
and a
|
|
|
|
jr z, .ot
|
|
|
|
pop af
|
|
|
|
jr BattlePartyAttr
|
|
|
|
.ot
|
|
|
|
pop af
|
|
|
|
jr OTPartyAttr
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
BattlePartyAttr::
|
2018-01-30 11:05:25 -08:00
|
|
|
; Get attribute a from the party struct of the active battle mon.
|
2014-05-21 13:37:18 -07:00
|
|
|
push bc
|
|
|
|
ld c, a
|
|
|
|
ld b, 0
|
2018-01-23 14:39:09 -08:00
|
|
|
ld hl, wPartyMons
|
2014-05-21 13:37:18 -07:00
|
|
|
add hl, bc
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wCurBattleMon]
|
2014-05-21 13:37:18 -07:00
|
|
|
call GetPartyLocation
|
|
|
|
pop bc
|
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
OTPartyAttr::
|
2018-01-30 11:05:25 -08:00
|
|
|
; Get attribute a from the party struct of the active enemy mon.
|
2014-05-21 13:37:18 -07:00
|
|
|
push bc
|
|
|
|
ld c, a
|
|
|
|
ld b, 0
|
2018-01-23 14:39:09 -08:00
|
|
|
ld hl, wOTPartyMon1Species
|
2014-05-21 13:37:18 -07:00
|
|
|
add hl, bc
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wCurOTMon]
|
2014-05-21 13:37:18 -07:00
|
|
|
call GetPartyLocation
|
|
|
|
pop bc
|
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
ResetDamage::
|
2014-05-21 13:37:18 -07:00
|
|
|
xor a
|
2018-01-23 14:39:09 -08:00
|
|
|
ld [wCurDamage], a
|
|
|
|
ld [wCurDamage + 1], a
|
2014-05-21 13:37:18 -07:00
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
SetPlayerTurn::
|
2014-05-21 13:37:18 -07:00
|
|
|
xor a
|
2018-08-25 11:28:22 -07:00
|
|
|
ldh [hBattleTurn], a
|
2014-05-21 13:37:18 -07:00
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
SetEnemyTurn::
|
2014-05-21 13:37:18 -07:00
|
|
|
ld a, 1
|
2018-08-25 11:28:22 -07:00
|
|
|
ldh [hBattleTurn], a
|
2014-05-21 13:37:18 -07:00
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
UpdateOpponentInParty::
|
2018-08-25 11:28:22 -07:00
|
|
|
ldh a, [hBattleTurn]
|
2014-05-21 13:37:18 -07:00
|
|
|
and a
|
|
|
|
jr z, UpdateEnemyMonInParty
|
|
|
|
jr UpdateBattleMonInParty
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
UpdateUserInParty::
|
2018-08-25 11:28:22 -07:00
|
|
|
ldh a, [hBattleTurn]
|
2014-05-21 13:37:18 -07:00
|
|
|
and a
|
|
|
|
jr z, UpdateBattleMonInParty
|
|
|
|
jr UpdateEnemyMonInParty
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
UpdateBattleMonInParty::
|
2014-05-21 13:37:18 -07:00
|
|
|
; Update level, status, current HP
|
|
|
|
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wCurBattleMon]
|
2014-05-21 13:37:18 -07:00
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
UpdateBattleMon::
|
2018-01-23 14:39:09 -08:00
|
|
|
ld hl, wPartyMon1Level
|
2014-05-21 13:37:18 -07:00
|
|
|
call GetPartyLocation
|
|
|
|
|
|
|
|
ld d, h
|
|
|
|
ld e, l
|
2018-01-23 14:39:09 -08:00
|
|
|
ld hl, wBattleMonLevel
|
|
|
|
ld bc, wBattleMonMaxHP - wBattleMonLevel
|
2014-05-21 13:37:18 -07:00
|
|
|
jp CopyBytes
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
UpdateEnemyMonInParty::
|
2014-05-21 13:37:18 -07:00
|
|
|
; Update level, status, current HP
|
|
|
|
|
|
|
|
; No wildmons.
|
2015-10-19 07:23:58 -07:00
|
|
|
ld a, [wBattleMode]
|
2014-05-21 13:37:18 -07:00
|
|
|
dec a
|
|
|
|
ret z
|
|
|
|
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wCurOTMon]
|
|
|
|
ld hl, wOTPartyMon1Level
|
2014-05-21 13:37:18 -07:00
|
|
|
call GetPartyLocation
|
|
|
|
|
|
|
|
ld d, h
|
|
|
|
ld e, l
|
2018-01-23 14:39:09 -08:00
|
|
|
ld hl, wEnemyMonLevel
|
|
|
|
ld bc, wEnemyMonMaxHP - wEnemyMonLevel
|
2014-05-21 13:37:18 -07:00
|
|
|
jp CopyBytes
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
RefreshBattleHuds::
|
2014-05-21 13:37:18 -07:00
|
|
|
call UpdateBattleHuds
|
|
|
|
ld c, 3
|
|
|
|
call DelayFrames
|
|
|
|
jp WaitBGMap
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
UpdateBattleHuds::
|
2017-12-24 09:47:30 -08:00
|
|
|
farcall UpdatePlayerHUD
|
|
|
|
farcall UpdateEnemyHUD
|
2014-05-21 13:37:18 -07:00
|
|
|
ret
|
|
|
|
|
2018-01-30 11:05:25 -08:00
|
|
|
INCLUDE "home/battle_vars.asm"
|
2014-05-21 13:37:18 -07:00
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
FarCopyRadioText::
|
2014-05-21 13:37:18 -07:00
|
|
|
inc hl
|
2018-08-25 11:28:22 -07:00
|
|
|
ldh a, [hROMBank]
|
2014-05-21 13:37:18 -07:00
|
|
|
push af
|
|
|
|
ld a, [hli]
|
|
|
|
ld e, a
|
|
|
|
ld a, [hli]
|
|
|
|
ld d, a
|
|
|
|
ld a, [hli]
|
2018-08-25 11:28:22 -07:00
|
|
|
ldh [hROMBank], a
|
2014-05-21 13:37:18 -07:00
|
|
|
ld [MBC3RomBank], a
|
|
|
|
ld a, e
|
|
|
|
ld l, a
|
|
|
|
ld a, d
|
|
|
|
ld h, a
|
2015-11-09 20:01:45 -08:00
|
|
|
ld de, wRadioText
|
|
|
|
ld bc, 2 * SCREEN_WIDTH
|
2014-05-21 13:37:18 -07:00
|
|
|
call CopyBytes
|
|
|
|
pop af
|
2018-08-25 11:28:22 -07:00
|
|
|
ldh [hROMBank], a
|
2014-05-21 13:37:18 -07:00
|
|
|
ld [MBC3RomBank], a
|
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
MobileTextBorder::
|
2014-05-21 13:37:18 -07:00
|
|
|
; For mobile link battles only.
|
2015-10-19 07:23:58 -07:00
|
|
|
ld a, [wLinkMode]
|
|
|
|
cp LINK_MOBILE
|
2014-05-21 13:37:18 -07:00
|
|
|
ret c
|
|
|
|
|
|
|
|
; Draw a cell phone icon at the
|
|
|
|
; top right corner of the border.
|
|
|
|
hlcoord 19, 12
|
2018-06-25 09:24:18 -07:00
|
|
|
ld [hl], $5e ; top
|
2014-05-21 13:37:18 -07:00
|
|
|
hlcoord 19, 13
|
2018-06-25 09:24:18 -07:00
|
|
|
ld [hl], $5f ; bottom
|
2014-05-21 13:37:18 -07:00
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
BattleTextBox::
|
2014-05-21 13:37:18 -07:00
|
|
|
; Open a textbox and print text at hl.
|
|
|
|
push hl
|
|
|
|
call SpeechTextBox
|
|
|
|
call MobileTextBorder
|
2015-07-22 12:57:02 -07:00
|
|
|
call UpdateSprites
|
2015-11-25 07:26:30 -08:00
|
|
|
call ApplyTilemap
|
2014-05-21 13:37:18 -07:00
|
|
|
pop hl
|
|
|
|
call PrintTextBoxText
|
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
StdBattleTextBox::
|
2014-05-21 13:37:18 -07:00
|
|
|
; Open a textbox and print battle text at 20:hl.
|
|
|
|
|
2018-08-25 11:28:22 -07:00
|
|
|
ldh a, [hROMBank]
|
2014-05-21 13:37:18 -07:00
|
|
|
push af
|
|
|
|
|
|
|
|
ld a, BANK(BattleText)
|
|
|
|
rst Bankswitch
|
|
|
|
|
|
|
|
call BattleTextBox
|
|
|
|
|
|
|
|
pop af
|
|
|
|
rst Bankswitch
|
|
|
|
ret
|
2015-11-09 13:41:09 -08:00
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
GetBattleAnimPointer::
|
2015-11-09 13:41:09 -08:00
|
|
|
ld a, BANK(BattleAnimations)
|
|
|
|
rst Bankswitch
|
|
|
|
|
|
|
|
ld a, [hli]
|
2018-01-23 14:39:09 -08:00
|
|
|
ld [wBattleAnimAddress], a
|
2015-11-09 13:41:09 -08:00
|
|
|
ld a, [hl]
|
2018-01-23 14:39:09 -08:00
|
|
|
ld [wBattleAnimAddress + 1], a
|
2015-11-09 13:41:09 -08:00
|
|
|
|
2018-12-25 09:49:54 -08:00
|
|
|
; ClearBattleAnims is the only function that calls this...
|
|
|
|
ld a, BANK(ClearBattleAnims)
|
2015-11-09 13:41:09 -08:00
|
|
|
rst Bankswitch
|
|
|
|
|
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
GetBattleAnimByte::
|
2015-11-09 13:41:09 -08:00
|
|
|
push hl
|
|
|
|
push de
|
|
|
|
|
2018-01-23 14:39:09 -08:00
|
|
|
ld hl, wBattleAnimAddress
|
2015-11-09 13:41:09 -08:00
|
|
|
ld e, [hl]
|
|
|
|
inc hl
|
|
|
|
ld d, [hl]
|
|
|
|
|
|
|
|
ld a, BANK(BattleAnimations)
|
|
|
|
rst Bankswitch
|
|
|
|
|
|
|
|
ld a, [de]
|
2018-01-23 14:39:09 -08:00
|
|
|
ld [wBattleAnimByte], a
|
2015-11-09 13:41:09 -08:00
|
|
|
inc de
|
|
|
|
|
|
|
|
ld a, BANK(BattleAnimCommands)
|
|
|
|
rst Bankswitch
|
|
|
|
|
|
|
|
ld [hl], d
|
|
|
|
dec hl
|
|
|
|
ld [hl], e
|
|
|
|
|
|
|
|
pop de
|
|
|
|
pop hl
|
|
|
|
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wBattleAnimByte]
|
2015-11-09 13:41:09 -08:00
|
|
|
ret
|