pokecrystal-board/engine/events/prof_oaks_pc.asm

194 lines
2.6 KiB
NASM
Raw Normal View History

ProfOaksPC:
2016-01-10 14:44:09 -08:00
ld hl, OakPCText1
2019-04-08 05:15:10 -07:00
call MenuTextbox
2016-01-10 14:44:09 -08:00
call YesNoBox
jr c, .shutdown
call ProfOaksPCBoot ; player chose "yes"?
2016-01-10 14:44:09 -08:00
.shutdown
ld hl, OakPCText4
call PrintText1bpp
2016-01-10 14:44:09 -08:00
call JoyWaitAorB
call ExitMenu
ret
ProfOaksPCBoot:
2016-01-10 14:44:09 -08:00
ld hl, OakPCText2
call PrintText1bpp
2016-01-10 14:44:09 -08:00
call Rate
call PlaySFX ; sfx loaded by previous Rate function call
call JoyWaitAorB
call WaitSFX
ret
ProfOaksPCRating:
2016-01-10 14:44:09 -08:00
call Rate
push de
ld de, MUSIC_NONE
call PlayMusic
pop de
call PlaySFX
call JoyWaitAorB
call WaitSFX
ret
Rate:
2016-01-10 14:44:09 -08:00
; calculate Seen/Owned
2018-01-23 14:39:09 -08:00
ld hl, wPokedexSeen
ld b, wEndPokedexSeen - wPokedexSeen
2016-01-10 14:44:09 -08:00
call CountSetBits
ld [wTempPokedexSeenCount], a
2018-01-23 14:39:09 -08:00
ld hl, wPokedexCaught
ld b, wEndPokedexCaught - wPokedexCaught
2016-01-10 14:44:09 -08:00
call CountSetBits
ld [wTempPokedexCaughtCount], a
2016-01-10 14:44:09 -08:00
; print appropriate rating
call .UpdateRatingBuffers
ld hl, OakPCText3
call PrintText1bpp
2016-01-10 14:44:09 -08:00
call JoyWaitAorB
ld a, [wTempPokedexCaughtCount]
2016-01-10 14:44:09 -08:00
ld hl, OakRatings
call FindOakRating
push de
call PrintText1bpp
2016-01-10 14:44:09 -08:00
pop de
ret
.UpdateRatingBuffers:
2018-01-23 14:39:09 -08:00
ld hl, wStringBuffer3
ld de, wTempPokedexSeenCount
2016-01-10 14:44:09 -08:00
call .UpdateRatingBuffer
2018-01-23 14:39:09 -08:00
ld hl, wStringBuffer4
ld de, wTempPokedexCaughtCount
2016-01-10 14:44:09 -08:00
call .UpdateRatingBuffer
ret
.UpdateRatingBuffer:
2016-01-10 14:44:09 -08:00
push hl
ld a, "@"
ld bc, ITEM_NAME_LENGTH
call ByteFill
pop hl
2019-11-03 17:17:04 -08:00
lb bc, PRINTNUM_LEFTALIGN | 1, 3
2016-01-10 14:44:09 -08:00
call PrintNum
ret
FindOakRating:
2016-01-10 14:44:09 -08:00
; return sound effect in de
; return text pointer in hl
nop
ld c, a
.loop
ld a, [hli]
cp c
jr nc, .match
rept 4
inc hl
endr
jr .loop
.match
ld a, [hli]
ld e, a
ld a, [hli]
ld d, a
ld a, [hli]
ld h, [hl]
ld l, a
ret
2018-01-25 19:19:24 -08:00
INCLUDE "data/events/pokedex_ratings.asm"
2016-01-10 14:44:09 -08:00
OakPCText1:
text_far _OakPCText1
text_end
2016-01-10 14:44:09 -08:00
OakPCText2:
text_far _OakPCText2
text_end
2016-01-10 14:44:09 -08:00
OakPCText3:
text_far _OakPCText3
text_end
2016-01-10 14:44:09 -08:00
OakRating01:
text_far _OakRating01
text_end
2016-01-10 14:44:09 -08:00
OakRating02:
text_far _OakRating02
text_end
2016-01-10 14:44:09 -08:00
OakRating03:
text_far _OakRating03
text_end
2016-01-10 14:44:09 -08:00
OakRating04:
text_far _OakRating04
text_end
2016-01-10 14:44:09 -08:00
OakRating05:
text_far _OakRating05
text_end
2016-01-10 14:44:09 -08:00
OakRating06:
text_far _OakRating06
text_end
2016-01-10 14:44:09 -08:00
OakRating07:
text_far _OakRating07
text_end
2016-01-10 14:44:09 -08:00
OakRating08:
text_far _OakRating08
text_end
2016-01-10 14:44:09 -08:00
OakRating09:
text_far _OakRating09
text_end
2016-01-10 14:44:09 -08:00
OakRating10:
text_far _OakRating10
text_end
2016-01-10 14:44:09 -08:00
OakRating11:
text_far _OakRating11
text_end
2016-01-10 14:44:09 -08:00
OakRating12:
text_far _OakRating12
text_end
2016-01-10 14:44:09 -08:00
OakRating13:
text_far _OakRating13
text_end
2016-01-10 14:44:09 -08:00
OakRating14:
text_far _OakRating14
text_end
2016-01-10 14:44:09 -08:00
OakRating15:
text_far _OakRating15
text_end
2016-01-10 14:44:09 -08:00
OakRating16:
text_far _OakRating16
text_end
2016-01-10 14:44:09 -08:00
OakRating17:
text_far _OakRating17
text_end
2016-01-10 14:44:09 -08:00
OakRating18:
text_far _OakRating18
text_end
2016-01-10 14:44:09 -08:00
OakRating19:
text_far _OakRating19
text_end
2016-01-10 14:44:09 -08:00
OakPCText4:
text_far _OakPCText4
text_end