2018-01-31 08:38:45 -08:00
|
|
|
const_def 1
|
2018-01-11 09:00:01 -08:00
|
|
|
const PINK_PAGE ; 1
|
|
|
|
const GREEN_PAGE ; 2
|
|
|
|
const BLUE_PAGE ; 3
|
2022-06-06 14:25:42 -07:00
|
|
|
DEF NUM_STAT_PAGES EQU const_value - 1
|
2018-01-11 09:00:01 -08:00
|
|
|
|
2022-06-06 14:25:42 -07:00
|
|
|
DEF STAT_PAGE_MASK EQU %00000011
|
2020-03-21 10:07:18 -07:00
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
BattleStatsScreenInit:
|
2023-08-20 16:45:06 -07:00
|
|
|
; fallthrough
|
2015-11-19 20:38:16 -08:00
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
StatsScreenInit:
|
2015-11-19 20:38:16 -08:00
|
|
|
ld hl, StatsScreenMain
|
2018-08-25 11:28:22 -07:00
|
|
|
ldh a, [hMapAnims]
|
2015-11-19 20:38:16 -08:00
|
|
|
push af
|
|
|
|
xor a
|
2018-08-25 11:28:22 -07:00
|
|
|
ldh [hMapAnims], a ; disable overworld tile animations
|
2015-12-19 11:48:30 -08:00
|
|
|
ld a, [wBoxAlignment] ; whether sprite is to be mirrorred
|
2015-11-19 20:38:16 -08:00
|
|
|
push af
|
|
|
|
ld a, [wJumptableIndex]
|
|
|
|
ld b, a
|
2020-10-28 10:35:39 -07:00
|
|
|
ld a, [wStatsScreenFlags]
|
2015-11-19 20:38:16 -08:00
|
|
|
ld c, a
|
|
|
|
|
|
|
|
push bc
|
|
|
|
push hl
|
|
|
|
call ClearBGPalettes
|
2020-02-13 09:30:13 -08:00
|
|
|
call ClearTilemap
|
2015-11-19 20:38:16 -08:00
|
|
|
call UpdateSprites
|
2017-12-24 09:47:30 -08:00
|
|
|
farcall StatsScreen_LoadFont
|
2015-11-19 20:38:16 -08:00
|
|
|
pop hl
|
|
|
|
call _hl_
|
|
|
|
call ClearBGPalettes
|
2020-02-13 09:30:13 -08:00
|
|
|
call ClearTilemap
|
2015-11-19 20:38:16 -08:00
|
|
|
pop bc
|
|
|
|
|
|
|
|
; restore old values
|
|
|
|
ld a, b
|
|
|
|
ld [wJumptableIndex], a
|
|
|
|
ld a, c
|
2020-10-28 10:35:39 -07:00
|
|
|
ld [wStatsScreenFlags], a
|
2015-11-19 20:38:16 -08:00
|
|
|
pop af
|
2015-12-19 11:48:30 -08:00
|
|
|
ld [wBoxAlignment], a
|
2015-11-19 20:38:16 -08:00
|
|
|
pop af
|
2018-08-25 11:28:22 -07:00
|
|
|
ldh [hMapAnims], a
|
2015-11-19 20:38:16 -08:00
|
|
|
ret
|
|
|
|
|
2018-06-24 17:10:37 -07:00
|
|
|
StatsScreenMain:
|
2015-11-19 20:38:16 -08:00
|
|
|
xor a
|
|
|
|
ld [wJumptableIndex], a
|
2020-02-23 12:30:21 -08:00
|
|
|
; ???
|
2020-10-28 10:35:39 -07:00
|
|
|
ld [wStatsScreenFlags], a
|
|
|
|
ld a, [wStatsScreenFlags]
|
2021-11-23 17:37:18 -08:00
|
|
|
and ~STAT_PAGE_MASK
|
2020-03-21 10:07:18 -07:00
|
|
|
or PINK_PAGE ; first_page
|
2020-10-28 10:35:39 -07:00
|
|
|
ld [wStatsScreenFlags], a
|
2018-06-24 07:09:41 -07:00
|
|
|
.loop
|
2015-11-19 20:38:16 -08:00
|
|
|
ld a, [wJumptableIndex]
|
2021-11-23 17:37:18 -08:00
|
|
|
and ~(1 << 7)
|
2015-11-19 20:38:16 -08:00
|
|
|
ld hl, StatsScreenPointerTable
|
|
|
|
rst JumpTable
|
2020-03-21 10:07:18 -07:00
|
|
|
call StatsScreen_WaitAnim
|
2015-11-19 20:38:16 -08:00
|
|
|
ld a, [wJumptableIndex]
|
|
|
|
bit 7, a
|
|
|
|
jr z, .loop
|
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
StatsScreenPointerTable:
|
2015-12-26 18:59:03 -08:00
|
|
|
dw MonStatsInit ; regular pokémon
|
|
|
|
dw EggStatsInit ; egg
|
|
|
|
dw StatsScreenWaitCry
|
|
|
|
dw EggStatsJoypad
|
|
|
|
dw StatsScreen_LoadPage
|
|
|
|
dw StatsScreenWaitCry
|
|
|
|
dw MonStatsJoypad
|
|
|
|
dw StatsScreen_Exit
|
2015-11-19 20:38:16 -08:00
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
StatsScreen_WaitAnim:
|
2020-10-28 10:35:39 -07:00
|
|
|
ld hl, wStatsScreenFlags
|
2015-11-19 20:38:16 -08:00
|
|
|
bit 6, [hl]
|
2015-12-22 19:19:33 -08:00
|
|
|
jr nz, .try_anim
|
2015-11-19 20:38:16 -08:00
|
|
|
bit 5, [hl]
|
2015-12-22 19:19:33 -08:00
|
|
|
jr nz, .finish
|
2015-11-19 20:38:16 -08:00
|
|
|
call DelayFrame
|
|
|
|
ret
|
2015-12-22 19:19:33 -08:00
|
|
|
|
|
|
|
.try_anim
|
2017-12-24 09:47:30 -08:00
|
|
|
farcall SetUpPokeAnim
|
2015-12-22 19:19:33 -08:00
|
|
|
jr nc, .finish
|
2020-10-28 10:35:39 -07:00
|
|
|
ld hl, wStatsScreenFlags
|
2015-11-19 20:38:16 -08:00
|
|
|
res 6, [hl]
|
2015-12-22 19:19:33 -08:00
|
|
|
.finish
|
2020-10-28 10:35:39 -07:00
|
|
|
ld hl, wStatsScreenFlags
|
2015-11-19 20:38:16 -08:00
|
|
|
res 5, [hl]
|
2020-02-13 09:30:13 -08:00
|
|
|
farcall HDMATransferTilemapToWRAMBank3
|
2015-11-19 20:38:16 -08:00
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
StatsScreen_SetJumptableIndex:
|
2015-11-19 20:38:16 -08:00
|
|
|
ld a, [wJumptableIndex]
|
|
|
|
and $80
|
|
|
|
or h
|
|
|
|
ld [wJumptableIndex], a
|
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
StatsScreen_Exit:
|
2015-11-19 20:38:16 -08:00
|
|
|
ld hl, wJumptableIndex
|
|
|
|
set 7, [hl]
|
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
MonStatsInit:
|
2020-10-28 10:35:39 -07:00
|
|
|
ld hl, wStatsScreenFlags
|
2015-11-19 20:38:16 -08:00
|
|
|
res 6, [hl]
|
|
|
|
call ClearBGPalettes
|
2020-02-13 09:30:13 -08:00
|
|
|
call ClearTilemap
|
|
|
|
farcall HDMATransferTilemapToWRAMBank3
|
2015-12-23 06:12:29 -08:00
|
|
|
call StatsScreen_CopyToTempMon
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wCurPartySpecies]
|
2015-11-19 20:38:16 -08:00
|
|
|
cp EGG
|
2015-12-22 19:19:33 -08:00
|
|
|
jr z, .egg
|
|
|
|
call StatsScreen_InitUpperHalf
|
2020-10-28 10:35:39 -07:00
|
|
|
ld hl, wStatsScreenFlags
|
2015-11-19 20:38:16 -08:00
|
|
|
set 4, [hl]
|
2015-12-26 18:59:03 -08:00
|
|
|
ld h, 4
|
2015-12-22 19:19:33 -08:00
|
|
|
call StatsScreen_SetJumptableIndex
|
2015-11-19 20:38:16 -08:00
|
|
|
ret
|
2015-12-22 19:19:33 -08:00
|
|
|
|
|
|
|
.egg
|
2015-12-26 18:59:03 -08:00
|
|
|
ld h, 1
|
2015-12-22 19:19:33 -08:00
|
|
|
call StatsScreen_SetJumptableIndex
|
2015-11-19 20:38:16 -08:00
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
EggStatsInit:
|
2015-11-19 20:38:16 -08:00
|
|
|
call EggStatsScreen
|
|
|
|
ld a, [wJumptableIndex]
|
|
|
|
inc a
|
|
|
|
ld [wJumptableIndex], a
|
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
EggStatsJoypad:
|
2015-12-22 19:19:33 -08:00
|
|
|
call StatsScreen_GetJoypad
|
|
|
|
jr nc, .check
|
2015-12-26 18:59:03 -08:00
|
|
|
ld h, 0
|
2015-12-22 19:19:33 -08:00
|
|
|
call StatsScreen_SetJumptableIndex
|
2015-11-19 20:38:16 -08:00
|
|
|
ret
|
2015-12-22 19:19:33 -08:00
|
|
|
|
|
|
|
.check
|
|
|
|
bit A_BUTTON_F, a
|
|
|
|
jr nz, .quit
|
2020-07-13 10:05:05 -07:00
|
|
|
if DEF(_DEBUG)
|
|
|
|
cp START
|
|
|
|
jr z, .hatch
|
|
|
|
endc
|
2015-12-22 19:19:33 -08:00
|
|
|
and D_DOWN | D_UP | A_BUTTON | B_BUTTON
|
|
|
|
jp StatsScreen_JoypadAction
|
|
|
|
|
|
|
|
.quit
|
2015-12-26 18:59:03 -08:00
|
|
|
ld h, 7
|
2015-12-22 19:19:33 -08:00
|
|
|
call StatsScreen_SetJumptableIndex
|
2015-11-19 20:38:16 -08:00
|
|
|
ret
|
|
|
|
|
2020-07-13 10:05:05 -07:00
|
|
|
if DEF(_DEBUG)
|
|
|
|
.hatch
|
|
|
|
ld a, [wMonType]
|
|
|
|
or a
|
|
|
|
jr nz, .skip
|
|
|
|
push bc
|
|
|
|
push de
|
|
|
|
push hl
|
|
|
|
ld a, [wCurPartyMon]
|
|
|
|
ld bc, PARTYMON_STRUCT_LENGTH
|
|
|
|
ld hl, wPartyMon1Happiness
|
|
|
|
call AddNTimes
|
|
|
|
ld [hl], 1
|
|
|
|
ld a, 1
|
|
|
|
ld [wTempMonHappiness], a
|
|
|
|
ld a, 127
|
|
|
|
ld [wStepCount], a
|
|
|
|
ld de, .HatchSoonString
|
|
|
|
hlcoord 8, 17
|
|
|
|
call PlaceString
|
2020-10-28 10:35:39 -07:00
|
|
|
ld hl, wStatsScreenFlags
|
2020-07-13 10:05:05 -07:00
|
|
|
set 5, [hl]
|
|
|
|
pop hl
|
|
|
|
pop de
|
|
|
|
pop bc
|
|
|
|
.skip
|
|
|
|
xor a
|
|
|
|
jp StatsScreen_JoypadAction
|
|
|
|
|
|
|
|
.HatchSoonString:
|
|
|
|
db "▶HATCH SOON!@"
|
|
|
|
endc
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
StatsScreen_LoadPage:
|
2015-12-22 19:19:33 -08:00
|
|
|
call StatsScreen_LoadGFX
|
2020-10-28 10:35:39 -07:00
|
|
|
ld hl, wStatsScreenFlags
|
2015-11-19 20:38:16 -08:00
|
|
|
res 4, [hl]
|
|
|
|
ld a, [wJumptableIndex]
|
|
|
|
inc a
|
|
|
|
ld [wJumptableIndex], a
|
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
MonStatsJoypad:
|
2015-12-22 19:19:33 -08:00
|
|
|
call StatsScreen_GetJoypad
|
|
|
|
jr nc, .next
|
2015-12-26 18:59:03 -08:00
|
|
|
ld h, 0
|
2015-12-22 19:19:33 -08:00
|
|
|
call StatsScreen_SetJumptableIndex
|
2015-11-19 20:38:16 -08:00
|
|
|
ret
|
|
|
|
|
2015-12-22 19:19:33 -08:00
|
|
|
.next
|
|
|
|
and D_DOWN | D_UP | D_LEFT | D_RIGHT | A_BUTTON | B_BUTTON
|
|
|
|
jp StatsScreen_JoypadAction
|
2015-11-19 20:38:16 -08:00
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
StatsScreenWaitCry:
|
2015-11-19 20:38:16 -08:00
|
|
|
call IsSFXPlaying
|
|
|
|
ret nc
|
|
|
|
ld a, [wJumptableIndex]
|
|
|
|
inc a
|
|
|
|
ld [wJumptableIndex], a
|
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
StatsScreen_CopyToTempMon:
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wMonType]
|
2016-05-11 14:16:03 -07:00
|
|
|
cp TEMPMON
|
2020-06-17 14:03:38 -07:00
|
|
|
jr nz, .not_tempmon
|
2018-02-12 14:58:19 -08:00
|
|
|
ld a, [wBufferMonSpecies]
|
2018-01-23 14:39:09 -08:00
|
|
|
ld [wCurSpecies], a
|
2015-11-19 20:38:16 -08:00
|
|
|
call GetBaseData
|
2015-12-16 09:32:08 -08:00
|
|
|
ld hl, wBufferMon
|
2018-01-23 14:39:09 -08:00
|
|
|
ld de, wTempMon
|
2015-11-19 20:38:16 -08:00
|
|
|
ld bc, PARTYMON_STRUCT_LENGTH
|
|
|
|
call CopyBytes
|
2015-12-23 06:12:29 -08:00
|
|
|
jr .done
|
|
|
|
|
2020-06-17 14:03:38 -07:00
|
|
|
.not_tempmon
|
2018-02-22 08:13:29 -08:00
|
|
|
farcall CopyMonToTempMon
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wCurPartySpecies]
|
2015-11-19 20:38:16 -08:00
|
|
|
cp EGG
|
2015-12-23 06:12:29 -08:00
|
|
|
jr z, .done
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wMonType]
|
2015-11-19 20:38:16 -08:00
|
|
|
cp BOXMON
|
2015-12-23 06:12:29 -08:00
|
|
|
jr c, .done
|
2017-12-24 09:47:30 -08:00
|
|
|
farcall CalcTempmonStats
|
2015-12-23 06:12:29 -08:00
|
|
|
.done
|
2015-11-19 20:38:16 -08:00
|
|
|
and a
|
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
StatsScreen_GetJoypad:
|
2015-11-19 20:38:16 -08:00
|
|
|
call GetJoypad
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wMonType]
|
2016-05-11 14:16:03 -07:00
|
|
|
cp TEMPMON
|
2020-06-17 14:03:38 -07:00
|
|
|
jr nz, .not_tempmon
|
2015-11-19 20:38:16 -08:00
|
|
|
push hl
|
|
|
|
push de
|
|
|
|
push bc
|
2017-12-24 09:47:30 -08:00
|
|
|
farcall StatsScreenDPad
|
2015-11-19 20:38:16 -08:00
|
|
|
pop bc
|
|
|
|
pop de
|
|
|
|
pop hl
|
2015-12-15 15:59:49 -08:00
|
|
|
ld a, [wMenuJoypad]
|
2015-12-22 19:19:33 -08:00
|
|
|
and D_DOWN | D_UP
|
2015-11-19 20:38:16 -08:00
|
|
|
jr nz, .set_carry
|
2015-12-15 15:59:49 -08:00
|
|
|
ld a, [wMenuJoypad]
|
2020-06-17 14:03:38 -07:00
|
|
|
jr .clear_carry
|
2015-11-19 20:38:16 -08:00
|
|
|
|
2020-06-17 14:03:38 -07:00
|
|
|
.not_tempmon
|
2018-08-25 11:28:22 -07:00
|
|
|
ldh a, [hJoyPressed]
|
2020-06-17 14:03:38 -07:00
|
|
|
.clear_carry
|
2015-11-19 20:38:16 -08:00
|
|
|
and a
|
|
|
|
ret
|
|
|
|
|
|
|
|
.set_carry
|
|
|
|
scf
|
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
StatsScreen_JoypadAction:
|
2015-11-19 20:38:16 -08:00
|
|
|
push af
|
2020-10-28 10:35:39 -07:00
|
|
|
ld a, [wStatsScreenFlags]
|
2018-01-16 14:27:50 -08:00
|
|
|
maskbits NUM_STAT_PAGES
|
2015-11-19 20:38:16 -08:00
|
|
|
ld c, a
|
|
|
|
pop af
|
2015-12-22 19:19:33 -08:00
|
|
|
bit B_BUTTON_F, a
|
|
|
|
jp nz, .b_button
|
|
|
|
bit D_LEFT_F, a
|
|
|
|
jr nz, .d_left
|
|
|
|
bit D_RIGHT_F, a
|
|
|
|
jr nz, .d_right
|
|
|
|
bit A_BUTTON_F, a
|
|
|
|
jr nz, .a_button
|
|
|
|
bit D_UP_F, a
|
|
|
|
jr nz, .d_up
|
|
|
|
bit D_DOWN_F, a
|
|
|
|
jr nz, .d_down
|
|
|
|
jr .done
|
2015-12-23 06:12:29 -08:00
|
|
|
|
2015-12-22 19:19:33 -08:00
|
|
|
.d_down
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wMonType]
|
2015-11-19 20:38:16 -08:00
|
|
|
cp BOXMON
|
2015-12-22 19:19:33 -08:00
|
|
|
jr nc, .done
|
2015-11-19 20:38:16 -08:00
|
|
|
and a
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wPartyCount]
|
2015-12-22 19:19:33 -08:00
|
|
|
jr z, .next_mon
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wOTPartyCount]
|
2015-12-22 19:19:33 -08:00
|
|
|
.next_mon
|
2015-11-19 20:38:16 -08:00
|
|
|
ld b, a
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wCurPartyMon]
|
2015-11-19 20:38:16 -08:00
|
|
|
inc a
|
|
|
|
cp b
|
2015-12-22 19:19:33 -08:00
|
|
|
jr z, .done
|
2018-01-23 14:39:09 -08:00
|
|
|
ld [wCurPartyMon], a
|
2015-11-19 20:38:16 -08:00
|
|
|
ld b, a
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wMonType]
|
2015-11-19 20:38:16 -08:00
|
|
|
and a
|
2015-12-22 19:19:33 -08:00
|
|
|
jr nz, .load_mon
|
2015-11-19 20:38:16 -08:00
|
|
|
ld a, b
|
|
|
|
inc a
|
2015-12-23 06:12:29 -08:00
|
|
|
ld [wPartyMenuCursor], a
|
2015-12-22 19:19:33 -08:00
|
|
|
jr .load_mon
|
2015-12-23 06:12:29 -08:00
|
|
|
|
2015-12-22 19:19:33 -08:00
|
|
|
.d_up
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wCurPartyMon]
|
2015-11-19 20:38:16 -08:00
|
|
|
and a
|
2015-12-22 19:19:33 -08:00
|
|
|
jr z, .done
|
2015-11-19 20:38:16 -08:00
|
|
|
dec a
|
2018-01-23 14:39:09 -08:00
|
|
|
ld [wCurPartyMon], a
|
2015-11-19 20:38:16 -08:00
|
|
|
ld b, a
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wMonType]
|
2015-11-19 20:38:16 -08:00
|
|
|
and a
|
2015-12-22 19:19:33 -08:00
|
|
|
jr nz, .load_mon
|
2015-11-19 20:38:16 -08:00
|
|
|
ld a, b
|
|
|
|
inc a
|
2015-12-23 06:12:29 -08:00
|
|
|
ld [wPartyMenuCursor], a
|
2015-12-22 19:19:33 -08:00
|
|
|
jr .load_mon
|
2015-12-23 06:12:29 -08:00
|
|
|
|
2015-12-22 19:19:33 -08:00
|
|
|
.a_button
|
2015-11-19 20:38:16 -08:00
|
|
|
ld a, c
|
2018-01-11 09:00:01 -08:00
|
|
|
cp BLUE_PAGE ; last page
|
2015-12-22 19:19:33 -08:00
|
|
|
jr z, .b_button
|
|
|
|
.d_right
|
2015-11-19 20:38:16 -08:00
|
|
|
inc c
|
2018-01-11 09:00:01 -08:00
|
|
|
ld a, BLUE_PAGE ; last page
|
2015-11-19 20:38:16 -08:00
|
|
|
cp c
|
2015-12-22 19:19:33 -08:00
|
|
|
jr nc, .set_page
|
2018-01-11 09:00:01 -08:00
|
|
|
ld c, PINK_PAGE ; first page
|
2015-12-22 19:19:33 -08:00
|
|
|
jr .set_page
|
2015-12-23 06:12:29 -08:00
|
|
|
|
2015-12-22 19:19:33 -08:00
|
|
|
.d_left
|
2015-11-19 20:38:16 -08:00
|
|
|
dec c
|
2015-12-22 19:19:33 -08:00
|
|
|
jr nz, .set_page
|
2018-01-11 09:00:01 -08:00
|
|
|
ld c, BLUE_PAGE ; last page
|
2015-12-22 19:19:33 -08:00
|
|
|
jr .set_page
|
2015-12-23 06:12:29 -08:00
|
|
|
|
2015-12-22 19:19:33 -08:00
|
|
|
.done
|
2015-11-19 20:38:16 -08:00
|
|
|
ret
|
2015-12-22 19:19:33 -08:00
|
|
|
|
|
|
|
.set_page
|
2020-10-28 10:35:39 -07:00
|
|
|
ld a, [wStatsScreenFlags]
|
2021-11-23 17:37:18 -08:00
|
|
|
and ~STAT_PAGE_MASK
|
2015-11-19 20:38:16 -08:00
|
|
|
or c
|
2020-10-28 10:35:39 -07:00
|
|
|
ld [wStatsScreenFlags], a
|
2015-12-26 18:59:03 -08:00
|
|
|
ld h, 4
|
2015-12-22 19:19:33 -08:00
|
|
|
call StatsScreen_SetJumptableIndex
|
2015-11-19 20:38:16 -08:00
|
|
|
ret
|
2015-12-22 19:19:33 -08:00
|
|
|
|
|
|
|
.load_mon
|
2015-12-26 18:59:03 -08:00
|
|
|
ld h, 0
|
2015-12-22 19:19:33 -08:00
|
|
|
call StatsScreen_SetJumptableIndex
|
2015-11-19 20:38:16 -08:00
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
.b_button
|
2015-12-26 18:59:03 -08:00
|
|
|
ld h, 7
|
2015-12-22 19:19:33 -08:00
|
|
|
call StatsScreen_SetJumptableIndex
|
2015-11-19 20:38:16 -08:00
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
StatsScreen_InitUpperHalf:
|
2015-12-22 19:19:33 -08:00
|
|
|
call .PlaceHPBar
|
2015-11-19 20:38:16 -08:00
|
|
|
xor a
|
2018-08-25 11:28:22 -07:00
|
|
|
ldh [hBGMapMode], a
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wBaseDexNo]
|
2020-12-23 13:29:30 -08:00
|
|
|
ld [wTextDecimalByte], a
|
2018-01-23 14:39:09 -08:00
|
|
|
ld [wCurSpecies], a
|
2015-11-19 20:38:16 -08:00
|
|
|
hlcoord 8, 0
|
|
|
|
ld [hl], "№"
|
|
|
|
inc hl
|
|
|
|
ld [hl], "."
|
|
|
|
inc hl
|
|
|
|
hlcoord 10, 0
|
|
|
|
lb bc, PRINTNUM_LEADINGZEROS | 1, 3
|
2020-12-23 13:29:30 -08:00
|
|
|
ld de, wTextDecimalByte
|
2015-11-19 20:38:16 -08:00
|
|
|
call PrintNum
|
|
|
|
hlcoord 14, 0
|
|
|
|
call PrintLevel
|
2015-12-22 19:19:33 -08:00
|
|
|
ld hl, .NicknamePointers
|
2023-02-26 03:28:06 -08:00
|
|
|
call GetNicknamePointer
|
2015-12-22 19:19:33 -08:00
|
|
|
call CopyNickname
|
2015-11-19 20:38:16 -08:00
|
|
|
hlcoord 8, 2
|
|
|
|
call PlaceString
|
|
|
|
hlcoord 18, 0
|
2015-12-22 19:19:33 -08:00
|
|
|
call .PlaceGenderChar
|
2015-11-19 20:38:16 -08:00
|
|
|
hlcoord 9, 4
|
|
|
|
ld a, "/"
|
|
|
|
ld [hli], a
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wBaseDexNo]
|
2020-12-23 13:29:30 -08:00
|
|
|
ld [wNamedObjectIndex], a
|
2015-11-19 20:38:16 -08:00
|
|
|
call GetPokemonName
|
|
|
|
call PlaceString
|
2015-12-22 19:19:33 -08:00
|
|
|
call StatsScreen_PlaceHorizontalDivider
|
|
|
|
call StatsScreen_PlacePageSwitchArrows
|
|
|
|
call StatsScreen_PlaceShinyIcon
|
2015-11-19 20:38:16 -08:00
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
.PlaceHPBar:
|
2018-01-23 14:39:09 -08:00
|
|
|
ld hl, wTempMonHP
|
2015-11-19 20:38:16 -08:00
|
|
|
ld a, [hli]
|
|
|
|
ld b, a
|
|
|
|
ld c, [hl]
|
2018-01-23 14:39:09 -08:00
|
|
|
ld hl, wTempMonMaxHP
|
2015-11-19 20:38:16 -08:00
|
|
|
ld a, [hli]
|
|
|
|
ld d, a
|
|
|
|
ld e, [hl]
|
2018-01-16 11:30:10 -08:00
|
|
|
farcall ComputeHPBarPixels
|
2017-12-09 16:41:03 -08:00
|
|
|
ld hl, wCurHPPal
|
2015-11-19 20:38:16 -08:00
|
|
|
call SetHPPal
|
2023-07-26 08:01:20 -07:00
|
|
|
ld b, CGB_STATS_SCREEN_HP_PALS
|
|
|
|
call GetCGBLayout
|
2015-11-19 20:38:16 -08:00
|
|
|
call DelayFrame
|
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
.PlaceGenderChar:
|
2015-11-19 20:38:16 -08:00
|
|
|
push hl
|
2018-01-16 11:30:10 -08:00
|
|
|
farcall GetGender
|
2015-11-19 20:38:16 -08:00
|
|
|
pop hl
|
|
|
|
ret c
|
|
|
|
ld a, "♂"
|
|
|
|
jr nz, .got_gender
|
|
|
|
ld a, "♀"
|
|
|
|
.got_gender
|
|
|
|
ld [hl], a
|
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
.NicknamePointers:
|
2018-01-23 14:39:09 -08:00
|
|
|
dw wPartyMonNicknames
|
|
|
|
dw wOTPartyMonNicknames
|
2015-11-19 20:38:16 -08:00
|
|
|
dw sBoxMonNicknames
|
2021-03-17 13:16:02 -07:00
|
|
|
dw wBufferMonNickname
|
2015-11-19 20:38:16 -08:00
|
|
|
|
2020-10-05 13:15:57 -07:00
|
|
|
StatsScreen_PlaceVerticalDivider: ; unreferenced
|
|
|
|
; The Japanese stats screen has a vertical divider.
|
2015-11-19 20:38:16 -08:00
|
|
|
hlcoord 7, 0
|
|
|
|
ld bc, SCREEN_WIDTH
|
|
|
|
ld d, SCREEN_HEIGHT
|
|
|
|
.loop
|
2018-01-11 19:16:17 -08:00
|
|
|
ld a, $31 ; vertical divider
|
2015-11-19 20:38:16 -08:00
|
|
|
ld [hl], a
|
|
|
|
add hl, bc
|
|
|
|
dec d
|
|
|
|
jr nz, .loop
|
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
StatsScreen_PlaceHorizontalDivider:
|
2015-11-19 20:38:16 -08:00
|
|
|
hlcoord 0, 7
|
|
|
|
ld b, SCREEN_WIDTH
|
2018-01-11 19:16:17 -08:00
|
|
|
ld a, $62 ; horizontal divider (empty HP/exp bar)
|
2015-11-19 20:38:16 -08:00
|
|
|
.loop
|
|
|
|
ld [hli], a
|
|
|
|
dec b
|
|
|
|
jr nz, .loop
|
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
StatsScreen_PlacePageSwitchArrows:
|
2015-11-19 20:38:16 -08:00
|
|
|
hlcoord 12, 6
|
|
|
|
ld [hl], "◀"
|
|
|
|
hlcoord 19, 6
|
|
|
|
ld [hl], "▶"
|
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
StatsScreen_PlaceShinyIcon:
|
2018-01-23 14:39:09 -08:00
|
|
|
ld bc, wTempMonDVs
|
2017-12-24 09:47:30 -08:00
|
|
|
farcall CheckShininess
|
2015-11-19 20:38:16 -08:00
|
|
|
ret nc
|
|
|
|
hlcoord 19, 0
|
2018-01-18 23:30:19 -08:00
|
|
|
ld [hl], "⁂"
|
2015-11-19 20:38:16 -08:00
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
StatsScreen_LoadGFX:
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wBaseDexNo]
|
2018-07-28 16:27:34 -07:00
|
|
|
ld [wTempSpecies], a
|
2018-01-23 14:39:09 -08:00
|
|
|
ld [wCurSpecies], a
|
2015-11-19 20:38:16 -08:00
|
|
|
xor a
|
2018-08-25 11:28:22 -07:00
|
|
|
ldh [hBGMapMode], a
|
2015-12-22 19:19:33 -08:00
|
|
|
call .ClearBox
|
|
|
|
call .PageTilemap
|
|
|
|
call .LoadPals
|
2020-10-28 10:35:39 -07:00
|
|
|
ld hl, wStatsScreenFlags
|
2015-11-19 20:38:16 -08:00
|
|
|
bit 4, [hl]
|
2015-12-21 11:10:16 -08:00
|
|
|
jr nz, .place_frontpic
|
2024-02-10 15:16:00 -08:00
|
|
|
call SetDefaultBGPAndOBP
|
2015-11-19 20:38:16 -08:00
|
|
|
ret
|
|
|
|
|
2015-12-21 11:10:16 -08:00
|
|
|
.place_frontpic
|
|
|
|
call StatsScreen_PlaceFrontpic
|
2015-11-19 20:38:16 -08:00
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
.ClearBox:
|
2020-10-28 10:35:39 -07:00
|
|
|
ld a, [wStatsScreenFlags]
|
2018-01-16 14:27:50 -08:00
|
|
|
maskbits NUM_STAT_PAGES
|
2015-11-19 20:38:16 -08:00
|
|
|
ld c, a
|
2015-12-23 06:12:29 -08:00
|
|
|
call StatsScreen_LoadPageIndicators
|
2015-11-19 20:38:16 -08:00
|
|
|
hlcoord 0, 8
|
|
|
|
lb bc, 10, 20
|
|
|
|
call ClearBox
|
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
.LoadPals:
|
2020-10-28 10:35:39 -07:00
|
|
|
ld a, [wStatsScreenFlags]
|
2018-01-16 14:27:50 -08:00
|
|
|
maskbits NUM_STAT_PAGES
|
2015-11-19 20:38:16 -08:00
|
|
|
ld c, a
|
2017-12-24 09:47:30 -08:00
|
|
|
farcall LoadStatsScreenPals
|
2015-11-19 20:38:16 -08:00
|
|
|
call DelayFrame
|
2020-10-28 10:35:39 -07:00
|
|
|
ld hl, wStatsScreenFlags
|
2015-11-19 20:38:16 -08:00
|
|
|
set 5, [hl]
|
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
.PageTilemap:
|
2020-10-28 10:35:39 -07:00
|
|
|
ld a, [wStatsScreenFlags]
|
2018-01-16 14:27:50 -08:00
|
|
|
maskbits NUM_STAT_PAGES
|
2015-11-19 20:38:16 -08:00
|
|
|
dec a
|
2015-12-21 11:10:16 -08:00
|
|
|
ld hl, .Jumptable
|
2015-11-19 20:38:16 -08:00
|
|
|
rst JumpTable
|
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
.Jumptable:
|
2018-01-11 09:00:01 -08:00
|
|
|
; entries correspond to *_PAGE constants
|
2021-10-24 15:25:44 -07:00
|
|
|
table_width 2, StatsScreen_LoadGFX.Jumptable
|
2020-06-17 14:03:38 -07:00
|
|
|
dw LoadPinkPage
|
|
|
|
dw LoadGreenPage
|
|
|
|
dw LoadBluePage
|
2021-10-24 15:25:44 -07:00
|
|
|
assert_table_length NUM_STAT_PAGES
|
2015-11-19 20:38:16 -08:00
|
|
|
|
2020-06-17 14:03:38 -07:00
|
|
|
LoadPinkPage:
|
2015-11-19 20:38:16 -08:00
|
|
|
hlcoord 0, 9
|
|
|
|
ld b, $0
|
2018-01-16 11:30:10 -08:00
|
|
|
predef DrawPlayerHP
|
2015-11-19 20:38:16 -08:00
|
|
|
hlcoord 8, 9
|
2018-01-11 19:16:17 -08:00
|
|
|
ld [hl], $41 ; right HP/exp bar end cap
|
2015-12-21 11:10:16 -08:00
|
|
|
ld de, .Status_Type
|
2015-11-19 20:38:16 -08:00
|
|
|
hlcoord 0, 12
|
|
|
|
call PlaceString
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wTempMonPokerusStatus]
|
2015-11-19 20:38:16 -08:00
|
|
|
ld b, a
|
|
|
|
and $f
|
2015-12-21 11:10:16 -08:00
|
|
|
jr nz, .HasPokerus
|
2015-11-19 20:38:16 -08:00
|
|
|
ld a, b
|
|
|
|
and $f0
|
2015-12-21 11:10:16 -08:00
|
|
|
jr z, .NotImmuneToPkrs
|
2015-11-19 20:38:16 -08:00
|
|
|
hlcoord 8, 8
|
2018-01-11 19:16:17 -08:00
|
|
|
ld [hl], "." ; Pokérus immunity dot
|
2016-04-10 11:42:14 -07:00
|
|
|
.NotImmuneToPkrs:
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wMonType]
|
2015-12-21 11:10:16 -08:00
|
|
|
cp BOXMON
|
|
|
|
jr z, .StatusOK
|
2015-11-19 20:38:16 -08:00
|
|
|
hlcoord 6, 13
|
|
|
|
push hl
|
2018-01-23 14:39:09 -08:00
|
|
|
ld de, wTempMonStatus
|
2018-01-16 11:30:10 -08:00
|
|
|
predef PlaceStatusString
|
2015-11-19 20:38:16 -08:00
|
|
|
pop hl
|
2015-12-21 11:10:16 -08:00
|
|
|
jr nz, .done_status
|
|
|
|
jr .StatusOK
|
2016-04-10 11:42:14 -07:00
|
|
|
.HasPokerus:
|
2015-12-21 11:10:16 -08:00
|
|
|
ld de, .PkrsStr
|
2015-11-19 20:38:16 -08:00
|
|
|
hlcoord 1, 13
|
|
|
|
call PlaceString
|
2015-12-21 11:10:16 -08:00
|
|
|
jr .done_status
|
2016-04-10 11:42:14 -07:00
|
|
|
.StatusOK:
|
2015-12-21 11:10:16 -08:00
|
|
|
ld de, .OK_str
|
2015-11-19 20:38:16 -08:00
|
|
|
call PlaceString
|
2015-12-21 11:10:16 -08:00
|
|
|
.done_status
|
2015-11-19 20:38:16 -08:00
|
|
|
hlcoord 1, 15
|
2018-01-16 11:30:10 -08:00
|
|
|
predef PrintMonTypes
|
2015-11-19 20:38:16 -08:00
|
|
|
hlcoord 9, 8
|
2015-12-21 11:10:16 -08:00
|
|
|
ld de, SCREEN_WIDTH
|
|
|
|
ld b, 10
|
2018-01-11 19:16:17 -08:00
|
|
|
ld a, $31 ; vertical divider
|
2015-12-21 11:10:16 -08:00
|
|
|
.vertical_divider
|
2015-11-19 20:38:16 -08:00
|
|
|
ld [hl], a
|
|
|
|
add hl, de
|
|
|
|
dec b
|
2015-12-21 11:10:16 -08:00
|
|
|
jr nz, .vertical_divider
|
|
|
|
ld de, .ExpPointStr
|
2015-11-19 20:38:16 -08:00
|
|
|
hlcoord 10, 9
|
|
|
|
call PlaceString
|
|
|
|
hlcoord 17, 14
|
2015-12-21 11:10:16 -08:00
|
|
|
call .PrintNextLevel
|
2015-11-19 20:38:16 -08:00
|
|
|
hlcoord 13, 10
|
|
|
|
lb bc, 3, 7
|
2018-01-23 14:39:09 -08:00
|
|
|
ld de, wTempMonExp
|
2015-11-19 20:38:16 -08:00
|
|
|
call PrintNum
|
2015-12-21 11:10:16 -08:00
|
|
|
call .CalcExpToNextLevel
|
2015-11-19 20:38:16 -08:00
|
|
|
hlcoord 13, 13
|
|
|
|
lb bc, 3, 7
|
2020-11-03 16:53:07 -08:00
|
|
|
ld de, wExpToNextLevel
|
2015-11-19 20:38:16 -08:00
|
|
|
call PrintNum
|
2015-12-21 11:10:16 -08:00
|
|
|
ld de, .LevelUpStr
|
2015-11-19 20:38:16 -08:00
|
|
|
hlcoord 10, 12
|
|
|
|
call PlaceString
|
2015-12-21 11:10:16 -08:00
|
|
|
ld de, .ToStr
|
2015-11-19 20:38:16 -08:00
|
|
|
hlcoord 14, 14
|
|
|
|
call PlaceString
|
|
|
|
hlcoord 11, 16
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wTempMonLevel]
|
2015-11-19 20:38:16 -08:00
|
|
|
ld b, a
|
2018-01-23 14:39:09 -08:00
|
|
|
ld de, wTempMonExp + 2
|
2018-01-16 11:30:10 -08:00
|
|
|
predef FillInExpBar
|
2015-11-19 20:38:16 -08:00
|
|
|
hlcoord 10, 16
|
2018-01-11 19:16:17 -08:00
|
|
|
ld [hl], $40 ; left exp bar end cap
|
2015-11-19 20:38:16 -08:00
|
|
|
hlcoord 19, 16
|
2018-01-11 19:16:17 -08:00
|
|
|
ld [hl], $41 ; right exp bar end cap
|
2015-11-19 20:38:16 -08:00
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
.PrintNextLevel:
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wTempMonLevel]
|
2015-11-19 20:38:16 -08:00
|
|
|
push af
|
|
|
|
cp MAX_LEVEL
|
2015-12-21 11:10:16 -08:00
|
|
|
jr z, .AtMaxLevel
|
2015-11-19 20:38:16 -08:00
|
|
|
inc a
|
2018-01-23 14:39:09 -08:00
|
|
|
ld [wTempMonLevel], a
|
2016-04-10 11:42:14 -07:00
|
|
|
.AtMaxLevel:
|
2015-11-19 20:38:16 -08:00
|
|
|
call PrintLevel
|
|
|
|
pop af
|
2018-01-23 14:39:09 -08:00
|
|
|
ld [wTempMonLevel], a
|
2015-11-19 20:38:16 -08:00
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
.CalcExpToNextLevel:
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wTempMonLevel]
|
2015-11-19 20:38:16 -08:00
|
|
|
cp MAX_LEVEL
|
2015-12-21 11:10:16 -08:00
|
|
|
jr z, .AlreadyAtMaxLevel
|
2015-11-19 20:38:16 -08:00
|
|
|
inc a
|
|
|
|
ld d, a
|
2017-12-24 09:47:30 -08:00
|
|
|
farcall CalcExpAtLevel
|
2018-01-23 14:39:09 -08:00
|
|
|
ld hl, wTempMonExp + 2
|
|
|
|
ld hl, wTempMonExp + 2
|
2018-08-26 10:49:38 -07:00
|
|
|
ldh a, [hQuotient + 3]
|
2015-11-19 20:38:16 -08:00
|
|
|
sub [hl]
|
|
|
|
dec hl
|
2020-11-03 16:53:07 -08:00
|
|
|
ld [wExpToNextLevel + 2], a
|
2018-08-26 10:49:38 -07:00
|
|
|
ldh a, [hQuotient + 2]
|
2015-11-19 20:38:16 -08:00
|
|
|
sbc [hl]
|
|
|
|
dec hl
|
2020-11-03 16:53:07 -08:00
|
|
|
ld [wExpToNextLevel + 1], a
|
2018-08-26 10:49:38 -07:00
|
|
|
ldh a, [hQuotient + 1]
|
2015-11-19 20:38:16 -08:00
|
|
|
sbc [hl]
|
2020-11-03 16:53:07 -08:00
|
|
|
ld [wExpToNextLevel], a
|
2015-11-19 20:38:16 -08:00
|
|
|
ret
|
2015-12-21 11:10:16 -08:00
|
|
|
|
2016-04-10 11:42:14 -07:00
|
|
|
.AlreadyAtMaxLevel:
|
2020-11-03 16:53:07 -08:00
|
|
|
ld hl, wExpToNextLevel
|
2015-11-19 20:38:16 -08:00
|
|
|
xor a
|
|
|
|
ld [hli], a
|
2016-05-04 08:46:23 -07:00
|
|
|
ld [hli], a
|
2015-11-19 20:38:16 -08:00
|
|
|
ld [hl], a
|
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
.Status_Type:
|
2015-11-19 20:38:16 -08:00
|
|
|
db "STATUS/"
|
|
|
|
next "TYPE/@"
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
.OK_str:
|
2015-11-19 20:38:16 -08:00
|
|
|
db "OK @"
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
.ExpPointStr:
|
2015-11-19 20:38:16 -08:00
|
|
|
db "EXP POINTS@"
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
.LevelUpStr:
|
2015-11-19 20:38:16 -08:00
|
|
|
db "LEVEL UP@"
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
.ToStr:
|
2015-11-19 20:38:16 -08:00
|
|
|
db "TO@"
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
.PkrsStr:
|
2015-11-19 20:38:16 -08:00
|
|
|
db "#RUS@"
|
|
|
|
|
2020-06-17 14:03:38 -07:00
|
|
|
LoadGreenPage:
|
2015-12-21 11:10:16 -08:00
|
|
|
ld de, .Item
|
2015-11-19 20:38:16 -08:00
|
|
|
hlcoord 0, 8
|
|
|
|
call PlaceString
|
2015-12-21 11:10:16 -08:00
|
|
|
call .GetItemName
|
2015-11-19 20:38:16 -08:00
|
|
|
hlcoord 8, 8
|
|
|
|
call PlaceString
|
2015-12-21 11:10:16 -08:00
|
|
|
ld de, .Move
|
2015-11-19 20:38:16 -08:00
|
|
|
hlcoord 0, 10
|
|
|
|
call PlaceString
|
2018-01-23 14:39:09 -08:00
|
|
|
ld hl, wTempMonMoves
|
2015-11-19 20:38:16 -08:00
|
|
|
ld de, wListMoves_MoveIndicesBuffer
|
|
|
|
ld bc, NUM_MOVES
|
|
|
|
call CopyBytes
|
|
|
|
hlcoord 8, 10
|
|
|
|
ld a, SCREEN_WIDTH * 2
|
2020-11-03 16:53:07 -08:00
|
|
|
ld [wListMovesLineSpacing], a
|
2018-01-16 11:30:10 -08:00
|
|
|
predef ListMoves
|
2015-11-19 20:38:16 -08:00
|
|
|
hlcoord 12, 11
|
2015-12-21 11:10:16 -08:00
|
|
|
ld a, SCREEN_WIDTH * 2
|
2020-11-03 16:53:07 -08:00
|
|
|
ld [wListMovesLineSpacing], a
|
2018-01-16 11:30:10 -08:00
|
|
|
predef ListMovePP
|
2015-11-19 20:38:16 -08:00
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
.GetItemName:
|
2015-12-21 11:10:16 -08:00
|
|
|
ld de, .ThreeDashes
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wTempMonItem]
|
2015-11-19 20:38:16 -08:00
|
|
|
and a
|
|
|
|
ret z
|
|
|
|
ld b, a
|
2017-12-24 09:47:30 -08:00
|
|
|
farcall TimeCapsule_ReplaceTeruSama
|
2015-11-19 20:38:16 -08:00
|
|
|
ld a, b
|
2020-12-23 13:29:30 -08:00
|
|
|
ld [wNamedObjectIndex], a
|
2015-11-19 20:38:16 -08:00
|
|
|
call GetItemName
|
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
.Item:
|
2015-11-19 20:38:16 -08:00
|
|
|
db "ITEM@"
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
.ThreeDashes:
|
2015-11-19 20:38:16 -08:00
|
|
|
db "---@"
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
.Move:
|
2015-11-19 20:38:16 -08:00
|
|
|
db "MOVE@"
|
|
|
|
|
2020-06-17 14:03:38 -07:00
|
|
|
LoadBluePage:
|
2015-12-21 11:10:16 -08:00
|
|
|
call .PlaceOTInfo
|
2015-11-19 20:38:16 -08:00
|
|
|
hlcoord 10, 8
|
2015-12-21 11:10:16 -08:00
|
|
|
ld de, SCREEN_WIDTH
|
|
|
|
ld b, 10
|
2018-01-11 19:16:17 -08:00
|
|
|
ld a, $31 ; vertical divider
|
2020-06-17 14:03:38 -07:00
|
|
|
.vertical_divider
|
2015-11-19 20:38:16 -08:00
|
|
|
ld [hl], a
|
|
|
|
add hl, de
|
|
|
|
dec b
|
2020-06-17 14:03:38 -07:00
|
|
|
jr nz, .vertical_divider
|
2015-11-19 20:38:16 -08:00
|
|
|
hlcoord 11, 8
|
2015-12-21 11:10:16 -08:00
|
|
|
ld bc, 6
|
2018-01-16 11:30:10 -08:00
|
|
|
predef PrintTempMonStats
|
2015-11-19 20:38:16 -08:00
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
.PlaceOTInfo:
|
2015-11-19 20:38:16 -08:00
|
|
|
ld de, IDNoString
|
|
|
|
hlcoord 0, 9
|
|
|
|
call PlaceString
|
|
|
|
ld de, OTString
|
|
|
|
hlcoord 0, 12
|
|
|
|
call PlaceString
|
|
|
|
hlcoord 2, 10
|
|
|
|
lb bc, PRINTNUM_LEADINGZEROS | 2, 5
|
2018-01-23 14:39:09 -08:00
|
|
|
ld de, wTempMonID
|
2015-11-19 20:38:16 -08:00
|
|
|
call PrintNum
|
2015-12-21 11:10:16 -08:00
|
|
|
ld hl, .OTNamePointers
|
2023-02-26 03:28:06 -08:00
|
|
|
call GetNicknamePointer
|
2015-12-22 19:19:33 -08:00
|
|
|
call CopyNickname
|
2018-04-04 21:04:53 -07:00
|
|
|
farcall CorrectNickErrors
|
2015-11-19 20:38:16 -08:00
|
|
|
hlcoord 2, 13
|
|
|
|
call PlaceString
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wTempMonCaughtGender]
|
2015-11-19 20:38:16 -08:00
|
|
|
and a
|
2015-12-21 11:10:16 -08:00
|
|
|
jr z, .done
|
2015-11-19 20:38:16 -08:00
|
|
|
cp $7f
|
2015-12-21 11:10:16 -08:00
|
|
|
jr z, .done
|
2020-03-21 10:07:18 -07:00
|
|
|
and CAUGHT_GENDER_MASK
|
2015-11-19 20:38:16 -08:00
|
|
|
ld a, "♂"
|
2015-12-21 11:10:16 -08:00
|
|
|
jr z, .got_gender
|
2015-11-19 20:38:16 -08:00
|
|
|
ld a, "♀"
|
2015-12-21 11:10:16 -08:00
|
|
|
.got_gender
|
2015-11-19 20:38:16 -08:00
|
|
|
hlcoord 9, 13
|
|
|
|
ld [hl], a
|
2015-12-21 11:10:16 -08:00
|
|
|
.done
|
2015-11-19 20:38:16 -08:00
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
.OTNamePointers:
|
2021-03-17 13:16:02 -07:00
|
|
|
dw wPartyMonOTs
|
|
|
|
dw wOTPartyMonOTs
|
|
|
|
dw sBoxMonOTs
|
2015-12-21 11:10:16 -08:00
|
|
|
dw wBufferMonOT
|
2015-11-19 20:38:16 -08:00
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
IDNoString:
|
2015-12-21 11:10:16 -08:00
|
|
|
db "<ID>№.@"
|
2015-11-19 20:38:16 -08:00
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
OTString:
|
2015-11-19 20:38:16 -08:00
|
|
|
db "OT/@"
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
StatsScreen_PlaceFrontpic:
|
2018-01-23 14:39:09 -08:00
|
|
|
ld hl, wTempMonDVs
|
2018-01-16 11:30:10 -08:00
|
|
|
predef GetUnownLetter
|
2015-12-21 11:10:16 -08:00
|
|
|
call StatsScreen_GetAnimationParam
|
|
|
|
jr c, .egg
|
2015-11-19 20:38:16 -08:00
|
|
|
and a
|
2015-12-21 11:10:16 -08:00
|
|
|
jr z, .no_cry
|
|
|
|
jr .cry
|
|
|
|
|
|
|
|
.egg
|
2015-12-23 06:12:29 -08:00
|
|
|
call .AnimateEgg
|
2024-02-10 15:16:00 -08:00
|
|
|
call SetDefaultBGPAndOBP
|
2015-11-19 20:38:16 -08:00
|
|
|
ret
|
2015-12-21 11:10:16 -08:00
|
|
|
|
|
|
|
.no_cry
|
2015-12-23 06:12:29 -08:00
|
|
|
call .AnimateMon
|
2024-02-10 15:16:00 -08:00
|
|
|
call SetDefaultBGPAndOBP
|
2015-11-19 20:38:16 -08:00
|
|
|
ret
|
2015-12-21 11:10:16 -08:00
|
|
|
|
|
|
|
.cry
|
2024-02-10 15:16:00 -08:00
|
|
|
call SetDefaultBGPAndOBP
|
2015-12-23 06:12:29 -08:00
|
|
|
call .AnimateMon
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wCurPartySpecies]
|
2018-01-16 20:47:45 -08:00
|
|
|
call PlayMonCry2
|
2015-11-19 20:38:16 -08:00
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
.AnimateMon:
|
2020-10-28 10:35:39 -07:00
|
|
|
ld hl, wStatsScreenFlags
|
2015-11-19 20:38:16 -08:00
|
|
|
set 5, [hl]
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wCurPartySpecies]
|
2015-11-19 20:38:16 -08:00
|
|
|
cp UNOWN
|
2015-12-21 11:10:16 -08:00
|
|
|
jr z, .unown
|
2015-11-19 20:38:16 -08:00
|
|
|
hlcoord 0, 0
|
|
|
|
call PrepMonFrontpic
|
|
|
|
ret
|
2015-12-21 11:10:16 -08:00
|
|
|
|
|
|
|
.unown
|
2015-11-19 20:38:16 -08:00
|
|
|
xor a
|
2015-12-19 11:48:30 -08:00
|
|
|
ld [wBoxAlignment], a
|
2015-11-19 20:38:16 -08:00
|
|
|
hlcoord 0, 0
|
|
|
|
call _PrepMonFrontpic
|
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
.AnimateEgg:
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wCurPartySpecies]
|
2015-11-19 20:38:16 -08:00
|
|
|
cp UNOWN
|
2015-12-23 06:12:29 -08:00
|
|
|
jr z, .unownegg
|
|
|
|
ld a, TRUE
|
2015-12-19 11:48:30 -08:00
|
|
|
ld [wBoxAlignment], a
|
2015-12-23 06:12:29 -08:00
|
|
|
call .get_animation
|
2015-11-19 20:38:16 -08:00
|
|
|
ret
|
2015-12-21 11:10:16 -08:00
|
|
|
|
2015-12-23 06:12:29 -08:00
|
|
|
.unownegg
|
2015-11-19 20:38:16 -08:00
|
|
|
xor a
|
2015-12-19 11:48:30 -08:00
|
|
|
ld [wBoxAlignment], a
|
2015-12-23 06:12:29 -08:00
|
|
|
call .get_animation
|
2015-11-19 20:38:16 -08:00
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
.get_animation
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wCurPartySpecies]
|
2015-11-19 20:38:16 -08:00
|
|
|
call IsAPokemon
|
|
|
|
ret c
|
2019-04-08 05:15:10 -07:00
|
|
|
call StatsScreen_LoadTextboxSpaceGFX
|
2017-12-28 04:32:33 -08:00
|
|
|
ld de, vTiles2 tile $00
|
2018-01-16 11:30:10 -08:00
|
|
|
predef GetAnimatedFrontpic
|
2015-11-19 20:38:16 -08:00
|
|
|
hlcoord 0, 0
|
|
|
|
ld d, $0
|
2017-11-02 17:09:27 -07:00
|
|
|
ld e, ANIM_MON_MENU
|
2018-01-16 11:30:10 -08:00
|
|
|
predef LoadMonAnimation
|
2020-10-28 10:35:39 -07:00
|
|
|
ld hl, wStatsScreenFlags
|
2015-11-19 20:38:16 -08:00
|
|
|
set 6, [hl]
|
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
StatsScreen_GetAnimationParam:
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wMonType]
|
2015-11-19 20:38:16 -08:00
|
|
|
ld hl, .Jumptable
|
|
|
|
rst JumpTable
|
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
.Jumptable:
|
2015-12-21 11:10:16 -08:00
|
|
|
dw .PartyMon
|
|
|
|
dw .OTPartyMon
|
|
|
|
dw .BoxMon
|
|
|
|
dw .Tempmon
|
|
|
|
dw .Wildmon
|
2015-11-19 20:38:16 -08:00
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
.PartyMon:
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wCurPartyMon]
|
|
|
|
ld hl, wPartyMon1
|
2015-11-19 20:38:16 -08:00
|
|
|
ld bc, PARTYMON_STRUCT_LENGTH
|
|
|
|
call AddNTimes
|
|
|
|
ld b, h
|
|
|
|
ld c, l
|
2015-12-21 11:10:16 -08:00
|
|
|
jr .CheckEggFaintedFrzSlp
|
2015-11-19 20:38:16 -08:00
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
.OTPartyMon:
|
2015-11-19 20:38:16 -08:00
|
|
|
xor a
|
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
.BoxMon:
|
2015-11-19 20:38:16 -08:00
|
|
|
ld hl, sBoxMons
|
|
|
|
ld bc, PARTYMON_STRUCT_LENGTH
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wCurPartyMon]
|
2015-11-19 20:38:16 -08:00
|
|
|
call AddNTimes
|
|
|
|
ld b, h
|
|
|
|
ld c, l
|
|
|
|
ld a, BANK(sBoxMons)
|
2020-06-17 14:03:38 -07:00
|
|
|
call OpenSRAM
|
2015-12-21 11:10:16 -08:00
|
|
|
call .CheckEggFaintedFrzSlp
|
2015-11-19 20:38:16 -08:00
|
|
|
push af
|
|
|
|
call CloseSRAM
|
|
|
|
pop af
|
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
.Tempmon:
|
2018-01-23 14:39:09 -08:00
|
|
|
ld bc, wTempMonSpecies
|
2015-12-21 11:10:16 -08:00
|
|
|
jr .CheckEggFaintedFrzSlp ; utterly pointless
|
2015-11-19 20:38:16 -08:00
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
.CheckEggFaintedFrzSlp:
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wCurPartySpecies]
|
2015-11-19 20:38:16 -08:00
|
|
|
cp EGG
|
|
|
|
jr z, .egg
|
|
|
|
call CheckFaintedFrzSlp
|
2015-12-21 11:10:16 -08:00
|
|
|
jr c, .FaintedFrzSlp
|
2015-11-19 20:38:16 -08:00
|
|
|
.egg
|
|
|
|
xor a
|
|
|
|
scf
|
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
.Wildmon:
|
2015-11-19 20:38:16 -08:00
|
|
|
ld a, $1
|
|
|
|
and a
|
|
|
|
ret
|
2015-12-21 11:10:16 -08:00
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
.FaintedFrzSlp:
|
2015-11-19 20:38:16 -08:00
|
|
|
xor a
|
|
|
|
ret
|
|
|
|
|
2019-04-08 05:15:10 -07:00
|
|
|
StatsScreen_LoadTextboxSpaceGFX:
|
2015-11-19 20:38:16 -08:00
|
|
|
nop
|
|
|
|
push hl
|
|
|
|
push de
|
|
|
|
push bc
|
|
|
|
push af
|
|
|
|
call DelayFrame
|
2018-08-25 11:28:22 -07:00
|
|
|
ldh a, [rVBK]
|
2015-11-19 20:38:16 -08:00
|
|
|
push af
|
|
|
|
ld a, $1
|
2018-08-25 11:28:22 -07:00
|
|
|
ldh [rVBK], a
|
2019-04-08 05:15:10 -07:00
|
|
|
ld de, TextboxSpaceGFX
|
|
|
|
lb bc, BANK(TextboxSpaceGFX), 1
|
2018-01-13 12:22:16 -08:00
|
|
|
ld hl, vTiles2 tile " "
|
2015-11-19 20:38:16 -08:00
|
|
|
call Get2bpp
|
|
|
|
pop af
|
2018-08-25 11:28:22 -07:00
|
|
|
ldh [rVBK], a
|
2015-11-19 20:38:16 -08:00
|
|
|
pop af
|
|
|
|
pop bc
|
|
|
|
pop de
|
|
|
|
pop hl
|
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
EggStatsScreen:
|
2015-11-19 20:38:16 -08:00
|
|
|
xor a
|
2018-08-25 11:28:22 -07:00
|
|
|
ldh [hBGMapMode], a
|
2017-12-09 16:41:03 -08:00
|
|
|
ld hl, wCurHPPal
|
2015-11-19 20:38:16 -08:00
|
|
|
call SetHPPal
|
2023-07-26 08:01:20 -07:00
|
|
|
ld b, CGB_STATS_SCREEN_HP_PALS
|
|
|
|
call GetCGBLayout
|
2015-12-22 19:19:33 -08:00
|
|
|
call StatsScreen_PlaceHorizontalDivider
|
2015-11-19 20:38:16 -08:00
|
|
|
ld de, EggString
|
|
|
|
hlcoord 8, 1
|
|
|
|
call PlaceString
|
|
|
|
ld de, IDNoString
|
|
|
|
hlcoord 8, 3
|
|
|
|
call PlaceString
|
|
|
|
ld de, OTString
|
|
|
|
hlcoord 8, 5
|
|
|
|
call PlaceString
|
|
|
|
ld de, FiveQMarkString
|
|
|
|
hlcoord 11, 3
|
|
|
|
call PlaceString
|
|
|
|
ld de, FiveQMarkString
|
|
|
|
hlcoord 11, 5
|
|
|
|
call PlaceString
|
2020-07-13 10:05:05 -07:00
|
|
|
if DEF(_DEBUG)
|
|
|
|
ld de, .PushStartString
|
|
|
|
hlcoord 8, 17
|
|
|
|
call PlaceString
|
|
|
|
jr .placed_push_start
|
|
|
|
|
|
|
|
.PushStartString:
|
|
|
|
db "▶PUSH START.@"
|
|
|
|
|
|
|
|
.placed_push_start
|
|
|
|
endc
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wTempMonHappiness] ; egg status
|
2015-11-19 20:38:16 -08:00
|
|
|
ld de, EggSoonString
|
|
|
|
cp $6
|
|
|
|
jr c, .picked
|
|
|
|
ld de, EggCloseString
|
|
|
|
cp $b
|
|
|
|
jr c, .picked
|
|
|
|
ld de, EggMoreTimeString
|
|
|
|
cp $29
|
|
|
|
jr c, .picked
|
|
|
|
ld de, EggALotMoreTimeString
|
|
|
|
.picked
|
|
|
|
hlcoord 1, 9
|
|
|
|
call PlaceString
|
2020-10-28 10:35:39 -07:00
|
|
|
ld hl, wStatsScreenFlags
|
2015-11-19 20:38:16 -08:00
|
|
|
set 5, [hl]
|
2024-02-10 15:16:00 -08:00
|
|
|
call SetDefaultBGPAndOBP
|
2015-11-19 20:38:16 -08:00
|
|
|
call DelayFrame
|
|
|
|
hlcoord 0, 0
|
|
|
|
call PrepMonFrontpic
|
2020-02-13 09:30:13 -08:00
|
|
|
farcall HDMATransferTilemapToWRAMBank3
|
2015-12-21 11:10:16 -08:00
|
|
|
call StatsScreen_AnimateEgg
|
2015-11-19 20:38:16 -08:00
|
|
|
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wTempMonHappiness]
|
2015-11-19 20:38:16 -08:00
|
|
|
cp 6
|
|
|
|
ret nc
|
|
|
|
ld de, SFX_2_BOOPS
|
|
|
|
call PlaySFX
|
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
EggString:
|
2015-11-19 20:38:16 -08:00
|
|
|
db "EGG@"
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
FiveQMarkString:
|
2015-11-19 20:38:16 -08:00
|
|
|
db "?????@"
|
|
|
|
|
2018-06-24 17:10:37 -07:00
|
|
|
EggSoonString:
|
2015-11-19 20:38:16 -08:00
|
|
|
db "It's making sounds"
|
|
|
|
next "inside. It's going"
|
|
|
|
next "to hatch soon!@"
|
|
|
|
|
2018-06-24 17:10:37 -07:00
|
|
|
EggCloseString:
|
2015-11-19 20:38:16 -08:00
|
|
|
db "It moves around"
|
|
|
|
next "inside sometimes."
|
|
|
|
next "It must be close"
|
|
|
|
next "to hatching.@"
|
|
|
|
|
2018-06-24 17:10:37 -07:00
|
|
|
EggMoreTimeString:
|
2015-11-19 20:38:16 -08:00
|
|
|
db "Wonder what's"
|
|
|
|
next "inside? It needs"
|
|
|
|
next "more time, though.@"
|
|
|
|
|
2018-06-24 17:10:37 -07:00
|
|
|
EggALotMoreTimeString:
|
2015-11-19 20:38:16 -08:00
|
|
|
db "This EGG needs a"
|
|
|
|
next "lot more time to"
|
|
|
|
next "hatch.@"
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
StatsScreen_AnimateEgg:
|
2015-12-21 11:10:16 -08:00
|
|
|
call StatsScreen_GetAnimationParam
|
2015-11-19 20:38:16 -08:00
|
|
|
ret nc
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wTempMonHappiness]
|
2015-11-19 20:38:16 -08:00
|
|
|
ld e, $7
|
2015-12-21 11:10:16 -08:00
|
|
|
cp 6
|
|
|
|
jr c, .animate
|
2015-11-19 20:38:16 -08:00
|
|
|
ld e, $8
|
2015-12-21 11:10:16 -08:00
|
|
|
cp 11
|
|
|
|
jr c, .animate
|
2015-11-19 20:38:16 -08:00
|
|
|
ret
|
2015-12-21 11:10:16 -08:00
|
|
|
|
|
|
|
.animate
|
2015-11-19 20:38:16 -08:00
|
|
|
push de
|
|
|
|
ld a, $1
|
2015-12-19 11:48:30 -08:00
|
|
|
ld [wBoxAlignment], a
|
2019-04-08 05:15:10 -07:00
|
|
|
call StatsScreen_LoadTextboxSpaceGFX
|
2017-12-28 04:32:33 -08:00
|
|
|
ld de, vTiles2 tile $00
|
2018-01-16 11:30:10 -08:00
|
|
|
predef GetAnimatedFrontpic
|
2015-11-19 20:38:16 -08:00
|
|
|
pop de
|
|
|
|
hlcoord 0, 0
|
|
|
|
ld d, $0
|
2018-01-16 11:30:10 -08:00
|
|
|
predef LoadMonAnimation
|
2020-10-28 10:35:39 -07:00
|
|
|
ld hl, wStatsScreenFlags
|
2015-11-19 20:38:16 -08:00
|
|
|
set 6, [hl]
|
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
StatsScreen_LoadPageIndicators:
|
2015-11-19 20:38:16 -08:00
|
|
|
hlcoord 13, 5
|
2018-01-11 19:16:17 -08:00
|
|
|
ld a, $36 ; first of 4 small square tiles
|
2015-11-19 20:38:16 -08:00
|
|
|
call .load_square
|
|
|
|
hlcoord 15, 5
|
2018-01-18 18:15:59 -08:00
|
|
|
ld a, $36 ; " " " "
|
2015-11-19 20:38:16 -08:00
|
|
|
call .load_square
|
|
|
|
hlcoord 17, 5
|
2018-01-18 18:15:59 -08:00
|
|
|
ld a, $36 ; " " " "
|
2015-11-19 20:38:16 -08:00
|
|
|
call .load_square
|
|
|
|
ld a, c
|
2018-01-11 09:00:01 -08:00
|
|
|
cp GREEN_PAGE
|
2018-01-11 19:16:17 -08:00
|
|
|
ld a, $3a ; first of 4 large square tiles
|
2018-01-11 09:00:01 -08:00
|
|
|
hlcoord 13, 5 ; PINK_PAGE (< GREEN_PAGE)
|
2015-11-19 20:38:16 -08:00
|
|
|
jr c, .load_square
|
2018-01-11 09:00:01 -08:00
|
|
|
hlcoord 15, 5 ; GREEN_PAGE (= GREEN_PAGE)
|
2015-11-19 20:38:16 -08:00
|
|
|
jr z, .load_square
|
2018-01-11 09:00:01 -08:00
|
|
|
hlcoord 17, 5 ; BLUE_PAGE (> GREEN_PAGE)
|
2018-06-24 07:09:41 -07:00
|
|
|
.load_square
|
2015-11-19 20:38:16 -08:00
|
|
|
push bc
|
|
|
|
ld [hli], a
|
|
|
|
inc a
|
|
|
|
ld [hld], a
|
|
|
|
ld bc, SCREEN_WIDTH
|
|
|
|
add hl, bc
|
|
|
|
inc a
|
|
|
|
ld [hli], a
|
|
|
|
inc a
|
|
|
|
ld [hl], a
|
|
|
|
pop bc
|
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
CopyNickname:
|
2018-01-23 14:39:09 -08:00
|
|
|
ld de, wStringBuffer1
|
2018-01-20 09:25:55 -08:00
|
|
|
ld bc, MON_NAME_LENGTH
|
2018-01-11 19:16:17 -08:00
|
|
|
jr .okay ; utterly pointless
|
2015-11-19 20:38:16 -08:00
|
|
|
.okay
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wMonType]
|
2015-11-19 20:38:16 -08:00
|
|
|
cp BOXMON
|
|
|
|
jr nz, .partymon
|
|
|
|
ld a, BANK(sBoxMonNicknames)
|
2020-06-17 14:03:38 -07:00
|
|
|
call OpenSRAM
|
2015-11-19 20:38:16 -08:00
|
|
|
push de
|
|
|
|
call CopyBytes
|
|
|
|
pop de
|
|
|
|
call CloseSRAM
|
|
|
|
ret
|
|
|
|
|
|
|
|
.partymon
|
|
|
|
push de
|
|
|
|
call CopyBytes
|
|
|
|
pop de
|
|
|
|
ret
|
|
|
|
|
2023-02-26 03:28:06 -08:00
|
|
|
GetNicknamePointer:
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wMonType]
|
2015-11-19 20:38:16 -08:00
|
|
|
add a
|
|
|
|
ld c, a
|
|
|
|
ld b, 0
|
|
|
|
add hl, bc
|
|
|
|
ld a, [hli]
|
|
|
|
ld h, [hl]
|
|
|
|
ld l, a
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wMonType]
|
2016-05-11 14:16:03 -07:00
|
|
|
cp TEMPMON
|
2015-11-19 20:38:16 -08:00
|
|
|
ret z
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wCurPartyMon]
|
2015-11-19 20:38:16 -08:00
|
|
|
jp SkipNames
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
CheckFaintedFrzSlp:
|
2015-11-19 20:38:16 -08:00
|
|
|
ld hl, MON_HP
|
|
|
|
add hl, bc
|
|
|
|
ld a, [hli]
|
|
|
|
or [hl]
|
|
|
|
jr z, .fainted_frz_slp
|
|
|
|
ld hl, MON_STATUS
|
|
|
|
add hl, bc
|
|
|
|
ld a, [hl]
|
2022-06-17 19:25:56 -07:00
|
|
|
and 1 << FRZ | SLP_MASK
|
2015-11-19 20:38:16 -08:00
|
|
|
jr nz, .fainted_frz_slp
|
|
|
|
and a
|
|
|
|
ret
|
|
|
|
|
|
|
|
.fainted_frz_slp
|
|
|
|
scf
|
|
|
|
ret
|