2018-01-02 09:49:25 -08:00
|
|
|
Predef_PrintMonTypes: ; 5090d
|
2014-07-09 12:50:33 -07:00
|
|
|
; Print one or both types of [CurSpecies]
|
|
|
|
; on the stats screen at hl.
|
2013-09-07 20:24:22 -07:00
|
|
|
|
|
|
|
push hl
|
|
|
|
call GetBaseData
|
|
|
|
pop hl
|
|
|
|
|
|
|
|
push hl
|
|
|
|
ld a, [BaseType1]
|
2014-07-09 12:50:33 -07:00
|
|
|
call .Print
|
2013-09-07 20:24:22 -07:00
|
|
|
|
2014-07-09 12:50:33 -07:00
|
|
|
; Single-typed monsters really
|
|
|
|
; have two of the same type.
|
2013-09-07 20:24:22 -07:00
|
|
|
ld a, [BaseType1]
|
|
|
|
ld b, a
|
|
|
|
ld a, [BaseType2]
|
|
|
|
cp b
|
|
|
|
pop hl
|
2014-07-09 12:50:33 -07:00
|
|
|
jr z, .hide_type_2
|
2013-09-07 20:24:22 -07:00
|
|
|
|
2014-07-09 12:50:33 -07:00
|
|
|
ld bc, SCREEN_WIDTH
|
2013-09-07 20:24:22 -07:00
|
|
|
add hl, bc
|
|
|
|
|
2016-04-10 11:42:14 -07:00
|
|
|
.Print:
|
2013-09-07 20:24:22 -07:00
|
|
|
ld b, a
|
2018-01-02 09:49:25 -08:00
|
|
|
jr Predef_PrintType
|
2013-09-07 20:24:22 -07:00
|
|
|
|
2014-07-09 12:50:33 -07:00
|
|
|
.hide_type_2
|
|
|
|
; Erase any type name that was here before.
|
|
|
|
; Seems to be pointless in localized versions.
|
2013-09-07 20:24:22 -07:00
|
|
|
ld a, " "
|
2014-07-09 12:50:33 -07:00
|
|
|
ld bc, SCREEN_WIDTH - 3
|
2013-09-07 20:24:22 -07:00
|
|
|
add hl, bc
|
|
|
|
ld [hl], a
|
|
|
|
inc bc
|
|
|
|
add hl, bc
|
|
|
|
ld bc, 5
|
|
|
|
jp ByteFill
|
|
|
|
; 5093a
|
|
|
|
|
2014-07-09 12:50:33 -07:00
|
|
|
|
2018-01-02 09:49:25 -08:00
|
|
|
Predef_PrintMoveType: ; 5093a
|
2013-09-07 20:24:22 -07:00
|
|
|
; Print the type of move b at hl.
|
|
|
|
|
|
|
|
push hl
|
|
|
|
ld a, b
|
|
|
|
dec a
|
2014-06-10 23:23:55 -07:00
|
|
|
ld bc, MOVE_LENGTH
|
2013-09-07 20:24:22 -07:00
|
|
|
ld hl, Moves
|
|
|
|
call AddNTimes
|
|
|
|
ld de, StringBuffer1
|
|
|
|
ld a, BANK(Moves)
|
|
|
|
call FarCopyBytes
|
2014-06-10 23:23:55 -07:00
|
|
|
ld a, [StringBuffer1 + MOVE_TYPE]
|
2013-09-07 20:24:22 -07:00
|
|
|
pop hl
|
|
|
|
|
|
|
|
ld b, a
|
2014-07-09 12:50:33 -07:00
|
|
|
|
2013-09-07 20:24:22 -07:00
|
|
|
|
2018-01-02 09:49:25 -08:00
|
|
|
Predef_PrintType: ; 50953
|
2013-09-07 20:24:22 -07:00
|
|
|
; Print type b at hl.
|
2014-07-09 12:50:33 -07:00
|
|
|
|
2013-09-07 20:24:22 -07:00
|
|
|
ld a, b
|
|
|
|
|
|
|
|
push hl
|
|
|
|
add a
|
|
|
|
ld hl, TypeNames
|
|
|
|
ld e, a
|
|
|
|
ld d, 0
|
|
|
|
add hl, de
|
|
|
|
ld a, [hli]
|
|
|
|
ld e, a
|
|
|
|
ld d, [hl]
|
|
|
|
pop hl
|
|
|
|
|
|
|
|
jp PlaceString
|
|
|
|
; 50964
|
|
|
|
|
|
|
|
|
2018-01-02 09:49:25 -08:00
|
|
|
Predef_GetTypeName: ; 50964
|
2015-02-10 15:32:30 -08:00
|
|
|
; Copy the name of type [wd265] to StringBuffer1.
|
2014-07-09 12:50:33 -07:00
|
|
|
|
2015-02-10 15:32:30 -08:00
|
|
|
ld a, [wd265]
|
2013-09-07 20:24:22 -07:00
|
|
|
ld hl, TypeNames
|
|
|
|
ld e, a
|
|
|
|
ld d, 0
|
|
|
|
add hl, de
|
2016-05-04 08:46:23 -07:00
|
|
|
add hl, de
|
2013-09-07 20:24:22 -07:00
|
|
|
ld a, [hli]
|
|
|
|
ld h, [hl]
|
|
|
|
ld l, a
|
|
|
|
ld de, StringBuffer1
|
2014-07-09 12:50:33 -07:00
|
|
|
ld bc, 13
|
2013-09-07 20:24:22 -07:00
|
|
|
jp CopyBytes
|
|
|
|
; 5097b
|
|
|
|
|
|
|
|
|
2018-01-10 22:45:27 -08:00
|
|
|
INCLUDE "data/types/names.asm"
|