pokecrystal-board/engine/events/bug_contest/judging.asm

378 lines
6.7 KiB
NASM
Raw Normal View History

2018-06-24 07:09:41 -07:00
_BugContestJudging:
2015-11-11 13:11:08 -08:00
call ContestScore
farcall StubbedTrainerRankings_BugContestScore
2015-12-18 17:07:09 -08:00
call BugContest_JudgeContestants
ld a, [wBugContestThirdPlaceWinnerID]
2015-11-11 13:11:08 -08:00
call LoadContestantName
2015-11-23 18:19:53 -08:00
ld a, [wBugContestThirdPlaceMon]
ld [wNamedObjectIndexBuffer], a
2015-11-11 13:11:08 -08:00
call GetPokemonName
ld hl, BugContest_ThirdPlaceText
call PrintText
ld a, [wBugContestSecondPlaceWinnerID]
2015-11-11 13:11:08 -08:00
call LoadContestantName
2015-11-23 18:19:53 -08:00
ld a, [wBugContestSecondPlaceMon]
ld [wNamedObjectIndexBuffer], a
2015-11-11 13:11:08 -08:00
call GetPokemonName
ld hl, BugContest_SecondPlaceText
call PrintText
ld a, [wBugContestFirstPlaceWinnerID]
2015-11-11 13:11:08 -08:00
call LoadContestantName
2015-11-23 18:19:53 -08:00
ld a, [wBugContestFirstPlaceMon]
ld [wNamedObjectIndexBuffer], a
2015-11-11 13:11:08 -08:00
call GetPokemonName
ld hl, BugContest_FirstPlaceText
call PrintText
2015-12-18 17:07:09 -08:00
jp BugContest_GetPlayersResult
2015-11-11 13:11:08 -08:00
BugContest_FirstPlaceText:
text_far ContestJudging_FirstPlaceText
2015-11-11 13:11:08 -08:00
start_asm
ld de, SFX_1ST_PLACE
call PlaySFX
call WaitSFX
ld hl, BugContest_FirstPlaceScoreText
ret
BugContest_FirstPlaceScoreText:
2015-11-11 13:11:08 -08:00
; The winning score was @ points!
text_far ContestJudging_FirstPlaceScoreText
2015-11-11 13:11:08 -08:00
db "@"
BugContest_SecondPlaceText:
2015-11-11 13:11:08 -08:00
; Placing second was @ , who caught a @ !@ @
text_far ContestJudging_SecondPlaceText
2015-11-11 13:11:08 -08:00
start_asm
ld de, SFX_2ND_PLACE
call PlaySFX
call WaitSFX
ld hl, BugContest_SecondPlaceScoreText
ret
BugContest_SecondPlaceScoreText:
2015-11-11 13:11:08 -08:00
; The score was @ points!
text_far ContestJudging_SecondPlaceScoreText
2015-11-11 13:11:08 -08:00
db "@"
BugContest_ThirdPlaceText:
2015-11-11 13:11:08 -08:00
; Placing third was @ , who caught a @ !@ @
text_far ContestJudging_ThirdPlaceText
2015-11-11 13:11:08 -08:00
start_asm
ld de, SFX_3RD_PLACE
call PlaySFX
call WaitSFX
ld hl, BugContest_ThirdPlaceScoreText
ret
BugContest_ThirdPlaceScoreText:
2015-11-11 13:11:08 -08:00
; The score was @ points!
text_far ContestJudging_ThirdPlaceScoreText
2015-11-11 13:11:08 -08:00
db "@"
2018-06-24 07:09:41 -07:00
LoadContestantName:
2018-01-11 09:00:01 -08:00
; If a = 1, get your name.
dec a ; BUG_CONTEST_PLAYER
2015-11-23 18:19:53 -08:00
jr z, .player
2015-11-11 13:11:08 -08:00
; Find the pointer for the trainer class of the Bug Catching Contestant whose ID is in a.
ld c, a
ld b, 0
ld hl, BugContestantPointers
add hl, bc
add hl, bc
2015-11-11 13:11:08 -08:00
ld a, [hli]
ld h, [hl]
ld l, a
; Copy the Trainer Class to c.
ld a, [hli]
ld c, a
; Save hl and bc for later.
push hl
push bc
2015-11-23 18:19:53 -08:00
; Get the Trainer Class name and copy it into wBugContestWinnerName.
2017-12-24 09:47:30 -08:00
callfar GetTrainerClassName
2018-01-23 14:39:09 -08:00
ld hl, wStringBuffer1
2015-11-23 18:19:53 -08:00
ld de, wBugContestWinnerName
2015-11-11 13:11:08 -08:00
ld bc, TRAINER_CLASS_NAME_LENGTH
call CopyBytes
2015-11-23 18:19:53 -08:00
ld hl, wBugContestWinnerName
2015-11-11 13:11:08 -08:00
; Delete the trailing terminator and replace it with a space.
.next
ld a, [hli]
cp "@"
jr nz, .next
dec hl
ld [hl], " "
inc hl
ld d, h
ld e, l
; Restore the Trainer Class ID and Trainer ID pointer. Save de for later.
pop bc
pop hl
push de
; Get the name of the trainer with class c and ID b.
ld a, [hl]
ld b, a
2017-12-24 09:47:30 -08:00
callfar GetTrainerName
2015-11-23 18:19:53 -08:00
; Append the name to wBugContestWinnerName.
2018-01-23 14:39:09 -08:00
ld hl, wStringBuffer1
2015-11-11 13:11:08 -08:00
pop de
ld bc, NAME_LENGTH - 1
jp CopyBytes
2015-11-23 18:19:53 -08:00
.player
2018-01-23 14:39:09 -08:00
ld hl, wPlayerName
2015-11-23 18:19:53 -08:00
ld de, wBugContestWinnerName
2015-11-11 13:11:08 -08:00
ld bc, NAME_LENGTH
jp CopyBytes
2018-01-25 19:19:24 -08:00
INCLUDE "data/events/bug_contest_winners.asm"
2015-11-11 13:11:08 -08:00
2018-06-24 07:09:41 -07:00
BugContest_GetPlayersResult:
ld hl, wBugContestThirdPlaceWinnerID
2018-01-11 09:00:01 -08:00
ld de, - BUG_CONTESTANT_SIZE
ld b, 3 ; 3rd, 2nd, or 1st
2015-11-11 13:11:08 -08:00
.loop
ld a, [hl]
2018-01-11 09:00:01 -08:00
cp BUG_CONTEST_PLAYER
2015-11-11 13:11:08 -08:00
jr z, .done
add hl, de
dec b
jr nz, .loop
.done
ret
2018-06-24 07:09:41 -07:00
BugContest_JudgeContestants:
2015-11-23 18:19:53 -08:00
call ClearContestResults
call ComputeAIContestantScores
ld hl, wBugContestTempWinnerID
2018-01-11 09:00:01 -08:00
ld a, BUG_CONTEST_PLAYER
2015-11-11 13:11:08 -08:00
ld [hli], a
ld a, [wContestMon]
ld [hli], a
ldh a, [hProduct]
2015-11-11 13:11:08 -08:00
ld [hli], a
ldh a, [hProduct + 1]
2015-11-11 13:11:08 -08:00
ld [hl], a
2015-11-23 18:19:53 -08:00
call DetermineContestWinners
2015-11-11 13:11:08 -08:00
ret
2018-06-24 07:09:41 -07:00
ClearContestResults:
2015-12-18 17:07:09 -08:00
ld hl, wBugContestResults
ld b, wBugContestWinnersEnd - wBugContestResults
2015-11-11 13:11:08 -08:00
xor a
.loop
ld [hli], a
dec b
jr nz, .loop
ret
2018-06-24 07:09:41 -07:00
DetermineContestWinners:
2015-11-23 18:19:53 -08:00
ld de, wBugContestTempScore
ld hl, wBugContestFirstPlaceScore
2015-11-11 13:11:08 -08:00
ld c, 2
call CompareBytes
2015-11-23 18:19:53 -08:00
jr c, .not_first_place
ld hl, wBugContestSecondPlaceWinnerID
ld de, wBugContestThirdPlaceWinnerID
2018-01-11 09:00:01 -08:00
ld bc, BUG_CONTESTANT_SIZE
2015-11-11 13:11:08 -08:00
call CopyBytes
ld hl, wBugContestFirstPlaceWinnerID
ld de, wBugContestSecondPlaceWinnerID
2018-01-11 09:00:01 -08:00
ld bc, BUG_CONTESTANT_SIZE
2015-11-11 13:11:08 -08:00
call CopyBytes
ld hl, wBugContestFirstPlaceWinnerID
2015-11-23 18:19:53 -08:00
call CopyTempContestant
2015-11-11 13:11:08 -08:00
jr .done
2015-11-23 18:19:53 -08:00
.not_first_place
ld de, wBugContestTempScore
ld hl, wBugContestSecondPlaceScore
2015-11-11 13:11:08 -08:00
ld c, 2
call CompareBytes
2015-11-23 18:19:53 -08:00
jr c, .not_second_place
ld hl, wBugContestSecondPlaceWinnerID
ld de, wBugContestThirdPlaceWinnerID
2018-01-11 09:00:01 -08:00
ld bc, BUG_CONTESTANT_SIZE
2015-11-11 13:11:08 -08:00
call CopyBytes
ld hl, wBugContestSecondPlaceWinnerID
2015-11-23 18:19:53 -08:00
call CopyTempContestant
2015-11-11 13:11:08 -08:00
jr .done
2015-11-23 18:19:53 -08:00
.not_second_place
ld de, wBugContestTempScore
ld hl, wBugContestThirdPlaceScore
2015-11-11 13:11:08 -08:00
ld c, 2
call CompareBytes
2015-11-11 13:11:08 -08:00
jr c, .done
ld hl, wBugContestThirdPlaceWinnerID
2015-11-23 18:19:53 -08:00
call CopyTempContestant
2015-11-11 13:11:08 -08:00
.done
ret
2018-06-24 07:09:41 -07:00
CopyTempContestant:
2015-11-23 18:19:53 -08:00
; Could've just called CopyBytes.
ld de, wBugContestTempWinnerID
rept BUG_CONTESTANT_SIZE + -1
2015-11-11 13:11:08 -08:00
ld a, [de]
inc de
ld [hli], a
2015-11-23 18:19:53 -08:00
endr
2015-11-11 13:11:08 -08:00
ld a, [de]
inc de
ld [hl], a
ret
2018-06-24 07:09:41 -07:00
ComputeAIContestantScores:
2015-11-11 13:11:08 -08:00
ld e, 0
.loop
push de
call CheckBugContestContestantFlag
2015-11-11 13:11:08 -08:00
pop de
jr nz, .done
ld a, e
inc a
inc a
ld [wBugContestTempWinnerID], a
2015-11-11 13:11:08 -08:00
dec a
ld c, a
ld b, 0
ld hl, BugContestantPointers
add hl, bc
add hl, bc
2015-11-11 13:11:08 -08:00
ld a, [hli]
ld h, [hl]
ld l, a
inc hl
inc hl
2015-11-11 13:11:08 -08:00
.loop2
2018-01-11 09:00:01 -08:00
; 0, 1, or 2 for 1st, 2nd, or 3rd
2015-11-11 13:11:08 -08:00
call Random
and 3
cp 3
jr z, .loop2
ld c, a
ld b, 0
add hl, bc
add hl, bc
add hl, bc
2015-11-11 13:11:08 -08:00
ld a, [hli]
2015-11-23 18:19:53 -08:00
ld [wBugContestTempMon], a
2015-11-11 13:11:08 -08:00
ld a, [hli]
ld h, [hl]
ld l, a
2018-01-11 09:00:01 -08:00
; randomly perturb score
2015-11-11 13:11:08 -08:00
call Random
2018-01-11 09:00:01 -08:00
and %111
2015-11-11 13:11:08 -08:00
ld c, a
ld b, 0
add hl, bc
ld a, h
2015-11-23 18:19:53 -08:00
ld [wBugContestTempScore], a
2015-11-11 13:11:08 -08:00
ld a, l
2015-11-23 18:19:53 -08:00
ld [wBugContestTempScore + 1], a
2015-11-11 13:11:08 -08:00
push de
2015-11-23 18:19:53 -08:00
call DetermineContestWinners
2015-11-11 13:11:08 -08:00
pop de
.done
inc e
ld a, e
2018-01-11 09:00:01 -08:00
cp NUM_BUG_CONTESTANTS
2015-11-11 13:11:08 -08:00
jr nz, .loop
ret
2018-06-24 07:09:41 -07:00
ContestScore:
2015-11-11 13:11:08 -08:00
; Determine the player's score in the Bug Catching Contest.
xor a
ldh [hProduct], a
ldh [hMultiplicand], a
2015-11-11 13:11:08 -08:00
ld a, [wContestMonSpecies] ; Species
and a
jr z, .done
; Tally the following:
; Max HP * 4
ld a, [wContestMonMaxHP + 1]
call .AddContestStat
ld a, [wContestMonMaxHP + 1]
call .AddContestStat
ld a, [wContestMonMaxHP + 1]
call .AddContestStat
ld a, [wContestMonMaxHP + 1]
call .AddContestStat
; Stats
ld a, [wContestMonAttack + 1]
call .AddContestStat
ld a, [wContestMonDefense + 1]
call .AddContestStat
ld a, [wContestMonSpeed + 1]
call .AddContestStat
ld a, [wContestMonSpclAtk + 1]
call .AddContestStat
ld a, [wContestMonSpclDef + 1]
call .AddContestStat
; DVs
ld a, [wContestMonDVs + 0]
ld b, a
2018-01-11 09:00:01 -08:00
and %0010
2015-11-11 13:11:08 -08:00
add a
add a
2015-11-11 13:11:08 -08:00
ld c, a
swap b
ld a, b
2018-01-11 09:00:01 -08:00
and %0010
2015-11-11 13:11:08 -08:00
add a
add c
ld d, a
ld a, [wContestMonDVs + 1]
ld b, a
2018-01-11 09:00:01 -08:00
and %0010
2015-11-11 13:11:08 -08:00
ld c, a
swap b
ld a, b
2018-01-11 09:00:01 -08:00
and %0010
2015-11-11 13:11:08 -08:00
srl a
add c
add c
add d
2015-11-11 13:11:08 -08:00
add d
call .AddContestStat
; Remaining HP / 8
ld a, [wContestMonHP + 1]
srl a
srl a
srl a
call .AddContestStat
; Whether it's holding an item
ld a, [wContestMonItem]
and a
jr z, .done
ld a, 1
call .AddContestStat
.done
ret
2018-06-24 07:09:41 -07:00
.AddContestStat:
2015-11-11 13:11:08 -08:00
ld hl, hMultiplicand
add [hl]
ld [hl], a
ret nc
dec hl
inc [hl]
ret