2018-06-24 07:09:41 -07:00
|
|
|
DrawPlayerHP:
|
2017-12-15 17:10:54 -08:00
|
|
|
ld a, $1
|
|
|
|
jr DrawHP
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
DrawEnemyHP:
|
2017-12-15 17:10:54 -08:00
|
|
|
ld a, $2
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
DrawHP:
|
2017-12-15 17:10:54 -08:00
|
|
|
ld [wWhichHPBar], a
|
|
|
|
push hl
|
|
|
|
push bc
|
|
|
|
; box mons have full HP
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wMonType]
|
2017-12-15 17:10:54 -08:00
|
|
|
cp BOXMON
|
|
|
|
jr z, .at_least_1_hp
|
|
|
|
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wTempMonHP]
|
2017-12-15 17:10:54 -08:00
|
|
|
ld b, a
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wTempMonHP + 1]
|
2017-12-15 17:10:54 -08:00
|
|
|
ld c, a
|
|
|
|
|
|
|
|
; Any HP?
|
|
|
|
or b
|
|
|
|
jr nz, .at_least_1_hp
|
|
|
|
|
|
|
|
xor a
|
|
|
|
ld c, a
|
|
|
|
ld e, a
|
|
|
|
ld a, 6
|
|
|
|
ld d, a
|
|
|
|
jp .fainted
|
|
|
|
|
|
|
|
.at_least_1_hp
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wTempMonMaxHP]
|
2017-12-15 17:10:54 -08:00
|
|
|
ld d, a
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wTempMonMaxHP + 1]
|
2017-12-15 17:10:54 -08:00
|
|
|
ld e, a
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wMonType]
|
2017-12-15 17:10:54 -08:00
|
|
|
cp BOXMON
|
|
|
|
jr nz, .not_boxmon
|
|
|
|
|
|
|
|
ld b, d
|
|
|
|
ld c, e
|
|
|
|
|
|
|
|
.not_boxmon
|
2018-01-16 11:30:10 -08:00
|
|
|
predef ComputeHPBarPixels
|
2017-12-15 17:10:54 -08:00
|
|
|
ld a, 6
|
|
|
|
ld d, a
|
|
|
|
ld c, a
|
|
|
|
|
|
|
|
.fainted
|
|
|
|
ld a, c
|
|
|
|
pop bc
|
|
|
|
ld c, a
|
|
|
|
pop hl
|
|
|
|
push de
|
|
|
|
push hl
|
|
|
|
push hl
|
|
|
|
call DrawBattleHPBar
|
|
|
|
pop hl
|
|
|
|
|
|
|
|
; Print HP
|
|
|
|
bccoord 1, 1, 0
|
|
|
|
add hl, bc
|
2018-01-23 14:39:09 -08:00
|
|
|
ld de, wTempMonHP
|
|
|
|
ld a, [wMonType]
|
2017-12-15 17:10:54 -08:00
|
|
|
cp BOXMON
|
|
|
|
jr nz, .not_boxmon_2
|
2018-01-23 14:39:09 -08:00
|
|
|
ld de, wTempMonMaxHP
|
2017-12-15 17:10:54 -08:00
|
|
|
.not_boxmon_2
|
|
|
|
lb bc, 2, 3
|
|
|
|
call PrintNum
|
|
|
|
|
|
|
|
ld a, "/"
|
|
|
|
ld [hli], a
|
|
|
|
|
|
|
|
; Print max HP
|
2018-01-23 14:39:09 -08:00
|
|
|
ld de, wTempMonMaxHP
|
2017-12-15 17:10:54 -08:00
|
|
|
lb bc, 2, 3
|
|
|
|
call PrintNum
|
|
|
|
pop hl
|
|
|
|
pop de
|
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
PrintTempMonStats:
|
2018-01-23 14:39:09 -08:00
|
|
|
; Print wTempMon's stats at hl, with spacing bc.
|
2017-12-15 17:10:54 -08:00
|
|
|
push bc
|
|
|
|
push hl
|
|
|
|
ld de, .StatNames
|
|
|
|
call PlaceString
|
|
|
|
pop hl
|
|
|
|
pop bc
|
|
|
|
add hl, bc
|
|
|
|
ld bc, SCREEN_WIDTH
|
|
|
|
add hl, bc
|
2018-01-23 14:39:09 -08:00
|
|
|
ld de, wTempMonAttack
|
2017-12-15 17:10:54 -08:00
|
|
|
lb bc, 2, 3
|
|
|
|
call .PrintStat
|
2018-01-23 14:39:09 -08:00
|
|
|
ld de, wTempMonDefense
|
2017-12-15 17:10:54 -08:00
|
|
|
call .PrintStat
|
2018-01-23 14:39:09 -08:00
|
|
|
ld de, wTempMonSpclAtk
|
2017-12-15 17:10:54 -08:00
|
|
|
call .PrintStat
|
2018-01-23 14:39:09 -08:00
|
|
|
ld de, wTempMonSpclDef
|
2017-12-15 17:10:54 -08:00
|
|
|
call .PrintStat
|
2018-01-23 14:39:09 -08:00
|
|
|
ld de, wTempMonSpeed
|
2017-12-15 17:10:54 -08:00
|
|
|
jp PrintNum
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
.PrintStat:
|
2017-12-15 17:10:54 -08:00
|
|
|
push hl
|
|
|
|
call PrintNum
|
|
|
|
pop hl
|
|
|
|
ld de, SCREEN_WIDTH * 2
|
|
|
|
add hl, de
|
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
.StatNames:
|
2017-12-15 17:10:54 -08:00
|
|
|
db "ATTACK"
|
|
|
|
next "DEFENSE"
|
|
|
|
next "SPCL.ATK"
|
|
|
|
next "SPCL.DEF"
|
|
|
|
next "SPEED"
|
|
|
|
next "@"
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
GetGender:
|
2018-02-03 15:21:53 -08:00
|
|
|
; Return the gender of a given monster (wCurPartyMon/wCurOTMon/wCurWildMon).
|
2018-01-23 14:39:09 -08:00
|
|
|
; When calling this function, a should be set to an appropriate wMonType value.
|
2017-12-15 17:10:54 -08:00
|
|
|
|
|
|
|
; return values:
|
|
|
|
; a = 1: f = nc|nz; male
|
|
|
|
; a = 0: f = nc|z; female
|
|
|
|
; f = c: genderless
|
|
|
|
|
|
|
|
; This is determined by comparing the Attack and Speed DVs
|
|
|
|
; with the species' gender ratio.
|
|
|
|
|
|
|
|
; Figure out what type of monster struct we're looking at.
|
|
|
|
|
|
|
|
; 0: PartyMon
|
2018-01-23 14:39:09 -08:00
|
|
|
ld hl, wPartyMon1DVs
|
2017-12-15 17:10:54 -08:00
|
|
|
ld bc, PARTYMON_STRUCT_LENGTH
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wMonType]
|
2017-12-15 17:10:54 -08:00
|
|
|
and a
|
|
|
|
jr z, .PartyMon
|
|
|
|
|
|
|
|
; 1: OTPartyMon
|
2018-01-23 14:39:09 -08:00
|
|
|
ld hl, wOTPartyMon1DVs
|
2017-12-15 17:10:54 -08:00
|
|
|
dec a
|
|
|
|
jr z, .PartyMon
|
|
|
|
|
|
|
|
; 2: sBoxMon
|
|
|
|
ld hl, sBoxMon1DVs
|
|
|
|
ld bc, BOXMON_STRUCT_LENGTH
|
|
|
|
dec a
|
|
|
|
jr z, .sBoxMon
|
|
|
|
|
|
|
|
; 3: Unknown
|
2018-01-23 14:39:09 -08:00
|
|
|
ld hl, wTempMonDVs
|
2017-12-15 17:10:54 -08:00
|
|
|
dec a
|
|
|
|
jr z, .DVs
|
|
|
|
|
|
|
|
; else: WildMon
|
2018-01-23 14:39:09 -08:00
|
|
|
ld hl, wEnemyMonDVs
|
2017-12-15 17:10:54 -08:00
|
|
|
jr .DVs
|
|
|
|
|
|
|
|
; Get our place in the party/box.
|
|
|
|
|
|
|
|
.PartyMon:
|
|
|
|
.sBoxMon
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wCurPartyMon]
|
2017-12-15 17:10:54 -08:00
|
|
|
call AddNTimes
|
|
|
|
|
|
|
|
.DVs:
|
|
|
|
; sBoxMon data is read directly from SRAM.
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wMonType]
|
2017-12-15 17:10:54 -08:00
|
|
|
cp BOXMON
|
2018-01-08 14:13:37 -08:00
|
|
|
ld a, BANK(sBox)
|
2020-06-17 14:03:38 -07:00
|
|
|
call z, OpenSRAM
|
2017-12-15 17:10:54 -08:00
|
|
|
|
|
|
|
; Attack DV
|
|
|
|
ld a, [hli]
|
|
|
|
and $f0
|
|
|
|
ld b, a
|
|
|
|
; Speed DV
|
|
|
|
ld a, [hl]
|
|
|
|
and $f0
|
|
|
|
swap a
|
|
|
|
|
|
|
|
; Put our DVs together.
|
|
|
|
or b
|
|
|
|
ld b, a
|
|
|
|
|
|
|
|
; Close SRAM if we were dealing with a sBoxMon.
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wMonType]
|
2017-12-15 17:10:54 -08:00
|
|
|
cp BOXMON
|
|
|
|
call z, CloseSRAM
|
|
|
|
|
|
|
|
; We need the gender ratio to do anything with this.
|
|
|
|
push bc
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wCurPartySpecies]
|
2017-12-15 17:10:54 -08:00
|
|
|
dec a
|
|
|
|
ld hl, BaseData + BASE_GENDER
|
|
|
|
ld bc, BASE_DATA_SIZE
|
|
|
|
call AddNTimes
|
|
|
|
pop bc
|
|
|
|
|
|
|
|
ld a, BANK(BaseData)
|
|
|
|
call GetFarByte
|
|
|
|
|
|
|
|
; The higher the ratio, the more likely the monster is to be female.
|
|
|
|
|
2018-02-26 09:43:30 -08:00
|
|
|
cp GENDER_UNKNOWN
|
2017-12-15 17:10:54 -08:00
|
|
|
jr z, .Genderless
|
|
|
|
|
|
|
|
and a ; GENDER_F0?
|
|
|
|
jr z, .Male
|
|
|
|
|
|
|
|
cp GENDER_F100
|
|
|
|
jr z, .Female
|
|
|
|
|
|
|
|
; Values below the ratio are male, and vice versa.
|
|
|
|
cp b
|
|
|
|
jr c, .Male
|
|
|
|
|
|
|
|
.Female:
|
|
|
|
xor a
|
|
|
|
ret
|
|
|
|
|
|
|
|
.Male:
|
|
|
|
ld a, 1
|
|
|
|
and a
|
|
|
|
ret
|
|
|
|
|
|
|
|
.Genderless:
|
|
|
|
scf
|
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
ListMovePP:
|
2017-12-15 17:10:54 -08:00
|
|
|
ld a, [wNumMoves]
|
|
|
|
inc a
|
|
|
|
ld c, a
|
|
|
|
ld a, NUM_MOVES
|
|
|
|
sub c
|
|
|
|
ld b, a
|
|
|
|
push hl
|
2020-11-03 16:53:07 -08:00
|
|
|
ld a, [wListMovesLineSpacing]
|
2017-12-15 17:10:54 -08:00
|
|
|
ld e, a
|
2020-11-03 16:53:07 -08:00
|
|
|
ld d, 0
|
2017-12-15 17:10:54 -08:00
|
|
|
ld a, $3e ; P
|
|
|
|
call .load_loop
|
|
|
|
ld a, b
|
|
|
|
and a
|
|
|
|
jr z, .skip
|
|
|
|
ld c, a
|
|
|
|
ld a, "-"
|
|
|
|
call .load_loop
|
|
|
|
|
|
|
|
.skip
|
|
|
|
pop hl
|
|
|
|
inc hl
|
|
|
|
inc hl
|
|
|
|
inc hl
|
|
|
|
ld d, h
|
|
|
|
ld e, l
|
2018-01-23 14:39:09 -08:00
|
|
|
ld hl, wTempMonMoves
|
2017-12-15 17:10:54 -08:00
|
|
|
ld b, 0
|
|
|
|
.loop
|
|
|
|
ld a, [hli]
|
|
|
|
and a
|
|
|
|
jr z, .done
|
|
|
|
push bc
|
|
|
|
push hl
|
|
|
|
push de
|
|
|
|
ld hl, wMenuCursorY
|
|
|
|
ld a, [hl]
|
|
|
|
push af
|
|
|
|
ld [hl], b
|
|
|
|
push hl
|
2017-12-24 09:47:30 -08:00
|
|
|
callfar GetMaxPPOfMove
|
2017-12-15 17:10:54 -08:00
|
|
|
pop hl
|
|
|
|
pop af
|
|
|
|
ld [hl], a
|
|
|
|
pop de
|
|
|
|
pop hl
|
|
|
|
push hl
|
2018-01-23 14:39:09 -08:00
|
|
|
ld bc, wTempMonPP - (wTempMonMoves + 1)
|
2017-12-15 17:10:54 -08:00
|
|
|
add hl, bc
|
|
|
|
ld a, [hl]
|
|
|
|
and $3f
|
2018-01-23 14:39:09 -08:00
|
|
|
ld [wStringBuffer1 + 4], a
|
2017-12-15 17:10:54 -08:00
|
|
|
ld h, d
|
|
|
|
ld l, e
|
|
|
|
push hl
|
2018-01-23 14:39:09 -08:00
|
|
|
ld de, wStringBuffer1 + 4
|
2017-12-15 17:10:54 -08:00
|
|
|
lb bc, 1, 2
|
|
|
|
call PrintNum
|
|
|
|
ld a, "/"
|
|
|
|
ld [hli], a
|
2018-07-28 16:27:34 -07:00
|
|
|
ld de, wTempPP
|
2017-12-15 17:10:54 -08:00
|
|
|
lb bc, 1, 2
|
|
|
|
call PrintNum
|
|
|
|
pop hl
|
2020-11-03 16:53:07 -08:00
|
|
|
ld a, [wListMovesLineSpacing]
|
2017-12-15 17:10:54 -08:00
|
|
|
ld e, a
|
|
|
|
ld d, 0
|
|
|
|
add hl, de
|
|
|
|
ld d, h
|
|
|
|
ld e, l
|
|
|
|
pop hl
|
|
|
|
pop bc
|
|
|
|
inc b
|
|
|
|
ld a, b
|
|
|
|
cp NUM_MOVES
|
|
|
|
jr nz, .loop
|
|
|
|
|
|
|
|
.done
|
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
.load_loop
|
2017-12-15 17:10:54 -08:00
|
|
|
ld [hli], a
|
|
|
|
ld [hld], a
|
|
|
|
add hl, de
|
|
|
|
dec c
|
|
|
|
jr nz, .load_loop
|
|
|
|
ret
|
|
|
|
|
2020-11-01 09:36:38 -08:00
|
|
|
BrokenPlacePPUnits: ; unreferenced
|
|
|
|
; Probably would have these parameters:
|
|
|
|
; hl = starting coordinate
|
|
|
|
; de = SCREEN_WIDTH or SCREEN_WIDTH * 2
|
|
|
|
; c = the number of moves (1-4)
|
2017-12-15 17:10:54 -08:00
|
|
|
.loop
|
2020-02-26 12:41:22 -08:00
|
|
|
ld [hl], $32 ; typo for P?
|
2017-12-15 17:10:54 -08:00
|
|
|
inc hl
|
2020-02-26 12:41:22 -08:00
|
|
|
ld [hl], $3e ; P
|
2017-12-15 17:10:54 -08:00
|
|
|
dec hl
|
|
|
|
add hl, de
|
|
|
|
dec c
|
|
|
|
jr nz, .loop
|
|
|
|
ret
|
|
|
|
|
2018-01-16 11:30:10 -08:00
|
|
|
Unused_PlaceEnemyHPLevel:
|
2017-12-15 17:10:54 -08:00
|
|
|
push hl
|
|
|
|
push hl
|
2018-01-23 14:39:09 -08:00
|
|
|
ld hl, wPartyMonNicknames
|
|
|
|
ld a, [wCurPartyMon]
|
2021-03-17 13:16:02 -07:00
|
|
|
call GetNickname
|
2017-12-15 17:10:54 -08:00
|
|
|
pop hl
|
|
|
|
call PlaceString
|
2018-02-22 08:13:29 -08:00
|
|
|
call CopyMonToTempMon
|
2017-12-15 17:10:54 -08:00
|
|
|
pop hl
|
2018-01-23 14:39:09 -08:00
|
|
|
ld a, [wCurPartySpecies]
|
2017-12-15 17:10:54 -08:00
|
|
|
cp EGG
|
|
|
|
jr z, .egg
|
|
|
|
push hl
|
|
|
|
ld bc, -12
|
|
|
|
add hl, bc
|
2020-11-03 16:53:07 -08:00
|
|
|
ld b, 0
|
2018-01-16 11:30:10 -08:00
|
|
|
call DrawEnemyHP
|
2017-12-15 17:10:54 -08:00
|
|
|
pop hl
|
|
|
|
ld bc, 5
|
|
|
|
add hl, bc
|
|
|
|
push de
|
|
|
|
call PrintLevel
|
|
|
|
pop de
|
|
|
|
|
|
|
|
.egg
|
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
PlaceStatusString:
|
2020-11-03 16:53:07 -08:00
|
|
|
; Return nz if the status is not OK
|
2017-12-15 17:10:54 -08:00
|
|
|
push de
|
|
|
|
inc de
|
|
|
|
inc de
|
|
|
|
ld a, [de]
|
|
|
|
ld b, a
|
|
|
|
inc de
|
|
|
|
ld a, [de]
|
|
|
|
or b
|
|
|
|
pop de
|
2018-01-16 11:30:10 -08:00
|
|
|
jr nz, PlaceNonFaintStatus
|
2017-12-15 17:10:54 -08:00
|
|
|
push de
|
|
|
|
ld de, FntString
|
|
|
|
call CopyStatusString
|
|
|
|
pop de
|
2020-11-03 16:53:07 -08:00
|
|
|
ld a, TRUE
|
2017-12-15 17:10:54 -08:00
|
|
|
and a
|
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
FntString:
|
2017-12-15 17:10:54 -08:00
|
|
|
db "FNT@"
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
CopyStatusString:
|
2017-12-15 17:10:54 -08:00
|
|
|
ld a, [de]
|
|
|
|
inc de
|
|
|
|
ld [hli], a
|
|
|
|
ld a, [de]
|
|
|
|
inc de
|
|
|
|
ld [hli], a
|
|
|
|
ld a, [de]
|
|
|
|
ld [hl], a
|
|
|
|
ret
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
PlaceNonFaintStatus:
|
2017-12-15 17:10:54 -08:00
|
|
|
push de
|
|
|
|
ld a, [de]
|
|
|
|
ld de, PsnString
|
|
|
|
bit PSN, a
|
|
|
|
jr nz, .place
|
|
|
|
ld de, BrnString
|
|
|
|
bit BRN, a
|
|
|
|
jr nz, .place
|
|
|
|
ld de, FrzString
|
|
|
|
bit FRZ, a
|
|
|
|
jr nz, .place
|
|
|
|
ld de, ParString
|
|
|
|
bit PAR, a
|
|
|
|
jr nz, .place
|
|
|
|
ld de, SlpString
|
2022-06-17 19:25:56 -07:00
|
|
|
and SLP_MASK
|
2017-12-15 17:10:54 -08:00
|
|
|
jr z, .no_status
|
|
|
|
|
|
|
|
.place
|
|
|
|
call CopyStatusString
|
2020-11-03 16:53:07 -08:00
|
|
|
ld a, TRUE
|
2017-12-15 17:10:54 -08:00
|
|
|
and a
|
|
|
|
|
|
|
|
.no_status
|
|
|
|
pop de
|
|
|
|
ret
|
|
|
|
|
|
|
|
SlpString: db "SLP@"
|
|
|
|
PsnString: db "PSN@"
|
|
|
|
BrnString: db "BRN@"
|
|
|
|
FrzString: db "FRZ@"
|
|
|
|
ParString: db "PAR@"
|
|
|
|
|
2018-06-24 07:09:41 -07:00
|
|
|
ListMoves:
|
2020-11-03 16:53:07 -08:00
|
|
|
; List moves at hl, spaced every [wListMovesLineSpacing] tiles.
|
2017-12-15 17:10:54 -08:00
|
|
|
ld de, wListMoves_MoveIndicesBuffer
|
2020-11-03 16:53:07 -08:00
|
|
|
ld b, 0
|
2017-12-15 17:10:54 -08:00
|
|
|
.moves_loop
|
|
|
|
ld a, [de]
|
|
|
|
inc de
|
|
|
|
and a
|
|
|
|
jr z, .no_more_moves
|
|
|
|
push de
|
|
|
|
push hl
|
|
|
|
push hl
|
2018-01-23 14:39:09 -08:00
|
|
|
ld [wCurSpecies], a
|
2017-12-15 17:10:54 -08:00
|
|
|
ld a, MOVE_NAME
|
2020-12-23 13:29:30 -08:00
|
|
|
ld [wNamedObjectType], a
|
2017-12-15 17:10:54 -08:00
|
|
|
call GetName
|
2018-01-23 14:39:09 -08:00
|
|
|
ld de, wStringBuffer1
|
2017-12-15 17:10:54 -08:00
|
|
|
pop hl
|
|
|
|
push bc
|
|
|
|
call PlaceString
|
|
|
|
pop bc
|
|
|
|
ld a, b
|
|
|
|
ld [wNumMoves], a
|
|
|
|
inc b
|
|
|
|
pop hl
|
|
|
|
push bc
|
2020-11-03 16:53:07 -08:00
|
|
|
ld a, [wListMovesLineSpacing]
|
2017-12-15 17:10:54 -08:00
|
|
|
ld c, a
|
|
|
|
ld b, 0
|
|
|
|
add hl, bc
|
|
|
|
pop bc
|
|
|
|
pop de
|
|
|
|
ld a, b
|
|
|
|
cp NUM_MOVES
|
|
|
|
jr z, .done
|
|
|
|
jr .moves_loop
|
|
|
|
|
|
|
|
.no_more_moves
|
|
|
|
ld a, b
|
|
|
|
.nonmove_loop
|
|
|
|
push af
|
|
|
|
ld [hl], "-"
|
2020-11-03 16:53:07 -08:00
|
|
|
ld a, [wListMovesLineSpacing]
|
2017-12-15 17:10:54 -08:00
|
|
|
ld c, a
|
|
|
|
ld b, 0
|
|
|
|
add hl, bc
|
|
|
|
pop af
|
|
|
|
inc a
|
|
|
|
cp NUM_MOVES
|
|
|
|
jr nz, .nonmove_loop
|
|
|
|
|
|
|
|
.done
|
|
|
|
ret
|