2014-08-14 23:50:39 -07:00
|
|
|
BORDER_WIDTH EQU 2
|
|
|
|
TEXTBOX_WIDTH EQU SCREEN_WIDTH
|
|
|
|
TEXTBOX_INNERW EQU TEXTBOX_WIDTH - BORDER_WIDTH
|
|
|
|
TEXTBOX_HEIGHT EQU 6
|
|
|
|
TEXTBOX_INNERH EQU TEXTBOX_HEIGHT - BORDER_WIDTH
|
|
|
|
TEXTBOX_X EQU 0
|
|
|
|
TEXTBOX_INNERX EQU TEXTBOX_X + 1
|
|
|
|
TEXTBOX_Y EQU SCREEN_HEIGHT - TEXTBOX_HEIGHT
|
|
|
|
TEXTBOX_INNERY EQU TEXTBOX_Y + 2
|
|
|
|
|
|
|
|
TEXTBOX_PAL EQU 7
|
|
|
|
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
ClearBox:: ; fb6
|
2013-08-20 12:58:08 -07:00
|
|
|
; Fill a c*b box at hl with blank tiles.
|
|
|
|
|
|
|
|
ld a, " "
|
2014-08-14 23:50:39 -07:00
|
|
|
|
2015-10-13 09:46:40 -07:00
|
|
|
FillBoxWithByte::
|
2015-10-16 10:35:43 -07:00
|
|
|
.row
|
2013-08-20 12:58:08 -07:00
|
|
|
push bc
|
|
|
|
push hl
|
2015-10-16 10:35:43 -07:00
|
|
|
.col
|
2013-08-20 12:58:08 -07:00
|
|
|
ld [hli], a
|
|
|
|
dec c
|
2015-10-16 10:35:43 -07:00
|
|
|
jr nz, .col
|
2013-08-20 12:58:08 -07:00
|
|
|
pop hl
|
2014-08-14 23:50:39 -07:00
|
|
|
ld bc, SCREEN_WIDTH
|
2013-08-20 12:58:08 -07:00
|
|
|
add hl, bc
|
|
|
|
pop bc
|
|
|
|
dec b
|
2015-10-16 10:35:43 -07:00
|
|
|
jr nz, .row
|
2013-08-20 12:58:08 -07:00
|
|
|
ret
|
|
|
|
; fc8
|
|
|
|
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
ClearTileMap:: ; fc8
|
2013-08-20 12:58:08 -07:00
|
|
|
; Fill TileMap with blank tiles.
|
|
|
|
|
2015-07-22 12:57:02 -07:00
|
|
|
hlcoord 0, 0
|
2013-08-20 12:58:08 -07:00
|
|
|
ld a, " "
|
2014-08-14 23:50:39 -07:00
|
|
|
ld bc, TileMapEnd - TileMap
|
2013-08-20 12:58:08 -07:00
|
|
|
call ByteFill
|
|
|
|
|
2014-08-14 23:50:39 -07:00
|
|
|
; Update the BG Map.
|
2013-08-20 12:58:08 -07:00
|
|
|
ld a, [rLCDC]
|
|
|
|
bit 7, a
|
|
|
|
ret z
|
|
|
|
jp WaitBGMap
|
|
|
|
; fdb
|
|
|
|
|
|
|
|
|
2014-08-14 23:50:39 -07:00
|
|
|
ClearScreen:: ; fdb
|
|
|
|
ld a, TEXTBOX_PAL
|
2015-07-22 12:57:02 -07:00
|
|
|
hlcoord 0, 0, AttrMap
|
2014-08-14 23:50:39 -07:00
|
|
|
ld bc, SCREEN_WIDTH * SCREEN_HEIGHT
|
2013-08-20 12:58:08 -07:00
|
|
|
call ByteFill
|
|
|
|
jr ClearTileMap
|
|
|
|
; fe8
|
|
|
|
|
|
|
|
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
TextBox:: ; fe8
|
2015-10-16 10:35:43 -07:00
|
|
|
; Draw a text box at hl with room for
|
|
|
|
; b lines of c characters each.
|
|
|
|
; Places a border around the textbox,
|
|
|
|
; then switches the palette to the
|
|
|
|
; text black-and-white scheme.
|
2013-08-20 12:58:08 -07:00
|
|
|
push bc
|
|
|
|
push hl
|
|
|
|
call TextBoxBorder
|
|
|
|
pop hl
|
|
|
|
pop bc
|
|
|
|
jr TextBoxPalette
|
|
|
|
; ff1
|
|
|
|
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
TextBoxBorder:: ; ff1
|
2013-08-20 12:58:08 -07:00
|
|
|
|
2014-08-14 23:50:39 -07:00
|
|
|
; Top
|
2013-08-20 12:58:08 -07:00
|
|
|
push hl
|
|
|
|
ld a, "┌"
|
|
|
|
ld [hli], a
|
|
|
|
inc a ; "─"
|
2014-08-14 23:50:39 -07:00
|
|
|
call .PlaceChars
|
2013-08-20 12:58:08 -07:00
|
|
|
inc a ; "┐"
|
|
|
|
ld [hl], a
|
|
|
|
pop hl
|
2014-08-14 23:50:39 -07:00
|
|
|
|
|
|
|
; Middle
|
|
|
|
ld de, SCREEN_WIDTH
|
2013-08-20 12:58:08 -07:00
|
|
|
add hl, de
|
2014-08-14 23:50:39 -07:00
|
|
|
.row
|
2013-08-20 12:58:08 -07:00
|
|
|
push hl
|
|
|
|
ld a, "│"
|
|
|
|
ld [hli], a
|
|
|
|
ld a, " "
|
2014-08-14 23:50:39 -07:00
|
|
|
call .PlaceChars
|
2013-08-20 12:58:08 -07:00
|
|
|
ld [hl], "│"
|
|
|
|
pop hl
|
2014-08-14 23:50:39 -07:00
|
|
|
|
|
|
|
ld de, SCREEN_WIDTH
|
2013-08-20 12:58:08 -07:00
|
|
|
add hl, de
|
|
|
|
dec b
|
2014-08-14 23:50:39 -07:00
|
|
|
jr nz, .row
|
2013-08-20 12:58:08 -07:00
|
|
|
|
2014-08-14 23:50:39 -07:00
|
|
|
; Bottom
|
2013-08-20 12:58:08 -07:00
|
|
|
ld a, "└"
|
|
|
|
ld [hli], a
|
|
|
|
ld a, "─"
|
2014-08-14 23:50:39 -07:00
|
|
|
call .PlaceChars
|
2013-08-20 12:58:08 -07:00
|
|
|
ld [hl], "┘"
|
|
|
|
|
|
|
|
ret
|
|
|
|
; 101e
|
|
|
|
|
2014-08-14 23:50:39 -07:00
|
|
|
.PlaceChars: ; 101e
|
|
|
|
; Place char a c times.
|
|
|
|
ld d, c
|
2013-08-20 12:58:08 -07:00
|
|
|
.loop
|
2014-08-14 23:50:39 -07:00
|
|
|
ld [hli], a
|
2013-08-20 12:58:08 -07:00
|
|
|
dec d
|
|
|
|
jr nz, .loop
|
|
|
|
ret
|
|
|
|
; 1024
|
|
|
|
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
TextBoxPalette:: ; 1024
|
2013-08-20 12:58:08 -07:00
|
|
|
; Fill text box width c height b at hl with pal 7
|
|
|
|
ld de, AttrMap - TileMap
|
|
|
|
add hl, de
|
2015-07-20 19:18:18 -07:00
|
|
|
rept 2
|
2013-08-20 12:58:08 -07:00
|
|
|
inc b
|
2015-07-20 19:18:18 -07:00
|
|
|
endr
|
|
|
|
rept 2
|
2013-08-20 12:58:08 -07:00
|
|
|
inc c
|
2015-07-20 19:18:18 -07:00
|
|
|
endr
|
2014-08-14 23:50:39 -07:00
|
|
|
ld a, TEXTBOX_PAL
|
|
|
|
.col
|
2013-08-20 12:58:08 -07:00
|
|
|
push bc
|
|
|
|
push hl
|
2014-08-14 23:50:39 -07:00
|
|
|
.row
|
2013-08-20 12:58:08 -07:00
|
|
|
ld [hli], a
|
|
|
|
dec c
|
2014-08-14 23:50:39 -07:00
|
|
|
jr nz, .row
|
2013-08-20 12:58:08 -07:00
|
|
|
pop hl
|
2014-08-14 23:50:39 -07:00
|
|
|
ld de, SCREEN_WIDTH
|
2013-08-20 12:58:08 -07:00
|
|
|
add hl, de
|
|
|
|
pop bc
|
|
|
|
dec b
|
2014-08-14 23:50:39 -07:00
|
|
|
jr nz, .col
|
2013-08-20 12:58:08 -07:00
|
|
|
ret
|
|
|
|
; 103e
|
|
|
|
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
SpeechTextBox:: ; 103e
|
2013-08-20 12:58:08 -07:00
|
|
|
; Standard textbox.
|
2014-08-14 23:50:39 -07:00
|
|
|
hlcoord TEXTBOX_X, TEXTBOX_Y
|
|
|
|
ld b, TEXTBOX_INNERH
|
|
|
|
ld c, TEXTBOX_INNERW
|
2013-08-20 12:58:08 -07:00
|
|
|
jp TextBox
|
|
|
|
; 1048
|
|
|
|
|
2014-08-14 23:50:39 -07:00
|
|
|
TestText:: ; 1048
|
|
|
|
text "ゲームフりーク!"
|
|
|
|
done
|
2013-08-20 12:58:08 -07:00
|
|
|
; 1052
|
|
|
|
|
2015-07-22 12:57:02 -07:00
|
|
|
RadioTerminator:: ; 1052
|
2014-08-14 23:50:39 -07:00
|
|
|
ld hl, .stop
|
2013-08-20 12:58:08 -07:00
|
|
|
ret
|
2014-08-14 23:50:39 -07:00
|
|
|
.stop db "@"
|
2013-08-20 12:58:08 -07:00
|
|
|
; 1057
|
|
|
|
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
PrintText:: ; 1057
|
2015-07-15 12:48:44 -07:00
|
|
|
call SetUpTextBox
|
2015-10-31 18:05:02 -07:00
|
|
|
BuenaPrintText:: ; 105a
|
2013-08-20 12:58:08 -07:00
|
|
|
push hl
|
2014-08-14 23:50:39 -07:00
|
|
|
hlcoord TEXTBOX_INNERX, TEXTBOX_INNERY
|
|
|
|
lb bc, TEXTBOX_INNERH - 1, TEXTBOX_INNERW
|
2013-08-20 12:58:08 -07:00
|
|
|
call ClearBox
|
|
|
|
pop hl
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
PrintTextBoxText:: ; 1065
|
2014-08-14 23:50:39 -07:00
|
|
|
bccoord TEXTBOX_INNERX, TEXTBOX_INNERY
|
2015-07-22 12:57:02 -07:00
|
|
|
call PlaceWholeStringInBoxAtOnce
|
2013-08-20 12:58:08 -07:00
|
|
|
ret
|
|
|
|
; 106c
|
|
|
|
|
2015-07-15 12:48:44 -07:00
|
|
|
SetUpTextBox:: ; 106c
|
2013-08-20 12:58:08 -07:00
|
|
|
push hl
|
|
|
|
call SpeechTextBox
|
2015-07-22 12:57:02 -07:00
|
|
|
call UpdateSprites
|
2013-08-20 12:58:08 -07:00
|
|
|
call Function321c
|
|
|
|
pop hl
|
|
|
|
ret
|
|
|
|
; 1078
|
|
|
|
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
PlaceString:: ; 1078
|
2013-08-20 12:58:08 -07:00
|
|
|
push hl
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
PlaceNextChar:: ; 1079
|
2013-08-20 12:58:08 -07:00
|
|
|
ld a, [de]
|
|
|
|
cp "@"
|
|
|
|
jr nz, CheckDict
|
|
|
|
ld b, h
|
|
|
|
ld c, l
|
|
|
|
pop hl
|
|
|
|
ret
|
|
|
|
pop de
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
NextChar:: ; 1083
|
2013-08-20 12:58:08 -07:00
|
|
|
inc de
|
|
|
|
jp PlaceNextChar
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
CheckDict:: ; 1087
|
2014-08-14 23:50:39 -07:00
|
|
|
dict: macro
|
|
|
|
if \1 == 0
|
2013-08-20 12:58:08 -07:00
|
|
|
and a
|
2014-08-14 23:50:39 -07:00
|
|
|
else
|
|
|
|
cp \1
|
|
|
|
endc
|
|
|
|
jp z, \2
|
|
|
|
endm
|
2015-10-04 11:14:51 -07:00
|
|
|
|
|
|
|
dict2: macro
|
|
|
|
if \1 == 0
|
|
|
|
and a
|
|
|
|
else
|
|
|
|
cp \1
|
|
|
|
endc
|
|
|
|
jr nz, \@
|
|
|
|
ld a, \2
|
|
|
|
\@:
|
|
|
|
endm
|
|
|
|
|
|
|
|
dict3: macro
|
|
|
|
if \1 == 0
|
|
|
|
and a
|
|
|
|
else
|
|
|
|
cp \1
|
|
|
|
endc
|
|
|
|
jr z, \2
|
|
|
|
endm
|
|
|
|
|
|
|
|
dict "<DAY>", Char15
|
|
|
|
dict "<LINE>", LineChar
|
|
|
|
dict "<NEXT>", NextLineChar
|
|
|
|
dict TX_FAR, TextFar
|
2014-08-14 23:50:39 -07:00
|
|
|
dict $00, NullChar
|
2015-10-04 11:14:51 -07:00
|
|
|
dict $4c, Char4C
|
2014-08-14 23:50:39 -07:00
|
|
|
dict $4b, Char4B
|
2015-10-04 11:14:51 -07:00
|
|
|
dict "<PARA>", Paragraph
|
|
|
|
dict "<MOM>", PrintMomsName
|
|
|
|
dict "<PLAYER>", PrintPlayerName
|
|
|
|
dict "<RIVAL>", PrintRivalName
|
2014-08-14 23:50:39 -07:00
|
|
|
dict $35, Char35
|
|
|
|
dict $36, Char36
|
|
|
|
dict $37, Char37
|
2015-10-04 11:14:51 -07:00
|
|
|
dict "<RED>", PrintRedsName
|
|
|
|
dict "<GREEN>", PrintGreensName
|
|
|
|
dict "#", PlacePOKe
|
|
|
|
dict "<PC>", PCChar
|
|
|
|
dict "<ROCKET>", RocketChar
|
|
|
|
dict "<TM>", TMChar
|
|
|
|
dict "<TRNER>", TrainerChar
|
2015-10-16 10:35:43 -07:00
|
|
|
dict $23, PlaceKougeki
|
|
|
|
dict "<LNBRK>", Char22
|
2015-10-04 11:14:51 -07:00
|
|
|
dict "<CONT>", ContText
|
|
|
|
dict "<......>", SixDotsChar
|
|
|
|
dict "<DONE>", DoneText
|
|
|
|
dict "<PROMPT>", PromptText
|
|
|
|
dict "<PKMN>", PlacePKMN
|
2015-10-16 10:35:43 -07:00
|
|
|
dict "<POKE>", PlacePOKE
|
2014-08-14 23:50:39 -07:00
|
|
|
dict $25, NextChar
|
2015-10-04 11:14:51 -07:00
|
|
|
dict2 $1f, " "
|
2015-10-09 20:09:03 -07:00
|
|
|
dict "<DEXEND>", PlaceDexEnd
|
2015-10-04 11:14:51 -07:00
|
|
|
dict "<TARGET>", PlaceMoveTargetsName
|
|
|
|
dict "<USER>", PlaceMoveUsersName
|
|
|
|
dict "<ENEMY>", PlaceEnemysName
|
|
|
|
dict "<PLAY_G>", PlaceGenderedPlayerName
|
|
|
|
dict3 $e4, .place
|
|
|
|
dict3 $e5, .place
|
2014-08-14 23:50:39 -07:00
|
|
|
|
|
|
|
jr .nope
|
2013-08-20 12:58:08 -07:00
|
|
|
ld b, a
|
2014-08-14 23:50:39 -07:00
|
|
|
call Diacritic
|
2013-08-20 12:58:08 -07:00
|
|
|
jp NextChar
|
2014-08-14 23:50:39 -07:00
|
|
|
.nope
|
|
|
|
|
2013-08-20 12:58:08 -07:00
|
|
|
cp $60
|
2014-08-14 23:50:39 -07:00
|
|
|
jr nc, .place
|
|
|
|
|
2013-08-20 12:58:08 -07:00
|
|
|
cp $40
|
2014-08-14 23:50:39 -07:00
|
|
|
jr nc, .handakuten
|
|
|
|
|
|
|
|
.dakuten
|
|
|
|
|
2013-08-20 12:58:08 -07:00
|
|
|
cp $20
|
2014-08-14 23:50:39 -07:00
|
|
|
jr nc, .daku1
|
2013-08-20 12:58:08 -07:00
|
|
|
add $80
|
2014-08-14 23:50:39 -07:00
|
|
|
jr .daku2
|
|
|
|
.daku1
|
2013-08-20 12:58:08 -07:00
|
|
|
add $90
|
2014-08-14 23:50:39 -07:00
|
|
|
.daku2
|
|
|
|
ld b, $e5 ; dakuten
|
|
|
|
call Diacritic
|
|
|
|
jr .place
|
|
|
|
|
|
|
|
.handakuten
|
|
|
|
cp "ぱ"
|
|
|
|
jr nc, .han1
|
|
|
|
add "ハ" - "パ"
|
|
|
|
jr .han2
|
|
|
|
.han1
|
|
|
|
add "は" - "ぱ"
|
|
|
|
.han2
|
|
|
|
ld b, $e4 ; handakuten
|
|
|
|
call Diacritic
|
|
|
|
|
|
|
|
.place
|
2013-08-20 12:58:08 -07:00
|
|
|
ld [hli], a
|
|
|
|
call PrintLetterDelay
|
|
|
|
jp NextChar
|
|
|
|
; 0x117b
|
|
|
|
|
|
|
|
|
2014-08-14 23:50:39 -07:00
|
|
|
Char15:: ; 117b
|
2013-08-20 12:58:08 -07:00
|
|
|
ld c, l
|
|
|
|
ld b, h
|
2013-10-01 17:47:54 -07:00
|
|
|
callba Function17f036
|
2013-08-20 12:58:08 -07:00
|
|
|
jp PlaceNextChar
|
|
|
|
; 1186
|
|
|
|
|
|
|
|
|
2014-08-14 23:50:39 -07:00
|
|
|
print_name: macro
|
2013-08-20 12:58:08 -07:00
|
|
|
push de
|
2014-08-14 23:50:39 -07:00
|
|
|
ld de, \1
|
2015-10-04 11:14:51 -07:00
|
|
|
jp PlaceCommandCharacter
|
2014-08-14 23:50:39 -07:00
|
|
|
endm
|
|
|
|
|
|
|
|
PrintMomsName: print_name MomsName ; 1186
|
|
|
|
PrintPlayerName: print_name PlayerName ; 118d
|
|
|
|
PrintRivalName: print_name RivalName ; 1194
|
|
|
|
PrintRedsName: print_name RedsName ; 119b
|
|
|
|
PrintGreensName: print_name GreensName ; 11a2
|
|
|
|
|
2015-10-04 11:14:51 -07:00
|
|
|
TrainerChar: print_name TrainerCharText ; 11a9
|
|
|
|
TMChar: print_name TMCharText ; 11b0
|
|
|
|
PCChar: print_name PCCharText ; 11b7
|
|
|
|
RocketChar: print_name RocketCharText ; 11be
|
|
|
|
PlacePOKe: print_name PlacePOKeText ; 11c5
|
2015-10-16 10:35:43 -07:00
|
|
|
PlaceKougeki: print_name KougekiText ; 11cc
|
2015-10-04 11:14:51 -07:00
|
|
|
SixDotsChar: print_name SixDotsCharText ; 11d3
|
|
|
|
PlacePKMN: print_name PlacePKMNText ; 11da
|
|
|
|
PlacePOKE: print_name PlacePOKEText ; 11e1
|
2014-08-14 23:50:39 -07:00
|
|
|
Char35: print_name Char35Text ; 11e8
|
|
|
|
Char36: print_name Char36Text ; 11ef
|
|
|
|
Char37: print_name Char37Text ; 11f6
|
|
|
|
|
|
|
|
|
2015-10-04 11:14:51 -07:00
|
|
|
PlaceMoveTargetsName:: ; 11fd
|
2013-08-20 12:58:08 -07:00
|
|
|
ld a, [hBattleTurn]
|
2014-08-14 23:50:39 -07:00
|
|
|
xor 1
|
2015-10-04 11:14:51 -07:00
|
|
|
jr PlaceMoveTargetsName_5A
|
2013-08-20 12:58:08 -07:00
|
|
|
|
2015-10-04 11:14:51 -07:00
|
|
|
PlaceMoveUsersName:: ; 1203
|
2013-08-20 12:58:08 -07:00
|
|
|
ld a, [hBattleTurn]
|
|
|
|
|
2015-10-04 11:14:51 -07:00
|
|
|
PlaceMoveTargetsName_5A: ; 1205
|
2013-08-20 12:58:08 -07:00
|
|
|
push de
|
|
|
|
and a
|
2014-08-14 23:50:39 -07:00
|
|
|
jr nz, .enemy
|
|
|
|
|
2013-08-20 12:58:08 -07:00
|
|
|
ld de, BattleMonNick
|
2015-10-04 11:14:51 -07:00
|
|
|
jr PlaceCommandCharacter
|
2014-08-14 23:50:39 -07:00
|
|
|
|
|
|
|
.enemy
|
2015-10-04 11:14:51 -07:00
|
|
|
ld de, EnemyText ; Enemy
|
2013-08-20 12:58:08 -07:00
|
|
|
call PlaceString
|
|
|
|
ld h, b
|
|
|
|
ld l, c
|
|
|
|
ld de, EnemyMonNick
|
2015-10-04 11:14:51 -07:00
|
|
|
jr PlaceCommandCharacter
|
2014-08-14 23:50:39 -07:00
|
|
|
|
2014-03-02 22:28:54 -08:00
|
|
|
|
2015-10-04 11:14:51 -07:00
|
|
|
PlaceEnemysName:: ; 121b
|
2013-08-20 12:58:08 -07:00
|
|
|
push de
|
2014-08-14 23:50:39 -07:00
|
|
|
|
2015-10-19 07:23:58 -07:00
|
|
|
ld a, [wLinkMode]
|
2013-08-20 12:58:08 -07:00
|
|
|
and a
|
|
|
|
jr nz, .linkbattle
|
2014-08-14 23:50:39 -07:00
|
|
|
|
2013-08-20 12:58:08 -07:00
|
|
|
ld a, [TrainerClass]
|
2014-03-02 22:28:54 -08:00
|
|
|
cp RIVAL1
|
2014-08-14 23:50:39 -07:00
|
|
|
jr z, .rival
|
2014-03-02 22:28:54 -08:00
|
|
|
cp RIVAL2
|
2014-08-14 23:50:39 -07:00
|
|
|
jr z, .rival
|
|
|
|
|
|
|
|
ld de, OTName
|
2013-08-20 12:58:08 -07:00
|
|
|
call PlaceString
|
|
|
|
ld h, b
|
|
|
|
ld l, c
|
|
|
|
ld de, String12a2
|
|
|
|
call PlaceString
|
|
|
|
push bc
|
2015-07-15 12:48:44 -07:00
|
|
|
callab Battle_GetTrainerName
|
2013-08-20 12:58:08 -07:00
|
|
|
pop hl
|
|
|
|
ld de, StringBuffer1
|
2015-10-04 11:14:51 -07:00
|
|
|
jr PlaceCommandCharacter
|
2014-08-14 23:50:39 -07:00
|
|
|
|
|
|
|
.rival
|
2013-08-20 12:58:08 -07:00
|
|
|
ld de, RivalName
|
2015-10-04 11:14:51 -07:00
|
|
|
jr PlaceCommandCharacter
|
2014-08-14 23:50:39 -07:00
|
|
|
|
2013-08-20 12:58:08 -07:00
|
|
|
.linkbattle
|
2014-08-14 23:50:39 -07:00
|
|
|
ld de, OTName
|
2015-10-04 11:14:51 -07:00
|
|
|
jr PlaceCommandCharacter
|
2014-08-14 23:50:39 -07:00
|
|
|
|
2014-03-02 22:28:54 -08:00
|
|
|
|
2015-10-04 11:14:51 -07:00
|
|
|
PlaceGenderedPlayerName:: ; 1252
|
2013-08-20 12:58:08 -07:00
|
|
|
push de
|
|
|
|
ld de, PlayerName
|
|
|
|
call PlaceString
|
|
|
|
ld h, b
|
|
|
|
ld l, c
|
|
|
|
ld a, [PlayerGender]
|
|
|
|
bit 0, a
|
2015-10-19 07:23:58 -07:00
|
|
|
ld de, String_kun
|
2015-10-04 11:14:51 -07:00
|
|
|
jr z, PlaceCommandCharacter
|
2015-10-19 07:23:58 -07:00
|
|
|
ld de, String_chan
|
2015-10-04 11:14:51 -07:00
|
|
|
jr PlaceCommandCharacter
|
2014-08-14 23:50:39 -07:00
|
|
|
|
2014-03-02 22:28:54 -08:00
|
|
|
|
2015-10-04 11:14:51 -07:00
|
|
|
PlaceCommandCharacter:: ; 126a
|
2013-08-20 12:58:08 -07:00
|
|
|
call PlaceString
|
|
|
|
ld h, b
|
|
|
|
ld l, c
|
|
|
|
pop de
|
|
|
|
jp NextChar
|
|
|
|
; 0x1273
|
|
|
|
|
2015-10-04 11:14:51 -07:00
|
|
|
TMCharText:: db "TM@" ; 1273
|
|
|
|
TrainerCharText:: db "TRAINER@" ; 1276
|
|
|
|
PCCharText:: db "PC@" ; 127e
|
|
|
|
RocketCharText:: db "ROCKET@" ; 1281
|
|
|
|
PlacePOKeText:: db "POKé@" ; 1288
|
2015-10-16 10:35:43 -07:00
|
|
|
KougekiText:: db "こうげき@" ; 128d
|
2015-10-04 11:14:51 -07:00
|
|
|
SixDotsCharText:: db "……@" ; 1292
|
|
|
|
EnemyText:: db "Enemy @" ; 1295
|
|
|
|
PlacePKMNText:: db "<PK><MN>@" ; PK MN ; 129c
|
|
|
|
PlacePOKEText:: db "<PO><KE>@" ; PO KE ; 129f
|
2014-08-14 23:50:39 -07:00
|
|
|
String12a2:: db " @" ; 12a2
|
2014-02-01 17:26:39 -08:00
|
|
|
Char35Text::
|
|
|
|
Char36Text::
|
2014-08-14 23:50:39 -07:00
|
|
|
Char37Text:: db "@" ; 12a4
|
2015-10-19 07:23:58 -07:00
|
|
|
String_kun:: db "@" ; 12a5
|
|
|
|
String_chan:: db "@" ; 12a6
|
2013-08-20 12:58:08 -07:00
|
|
|
; 12a7
|
|
|
|
|
2015-10-04 11:14:51 -07:00
|
|
|
NextLineChar:: ; 12a7
|
2013-08-20 12:58:08 -07:00
|
|
|
pop hl
|
2014-08-14 23:50:39 -07:00
|
|
|
ld bc, SCREEN_WIDTH * 2
|
2013-08-20 12:58:08 -07:00
|
|
|
add hl, bc
|
|
|
|
push hl
|
|
|
|
jp NextChar
|
|
|
|
; 12b0
|
|
|
|
|
2014-08-14 23:50:39 -07:00
|
|
|
Char22:: ; 12b0
|
2013-08-20 12:58:08 -07:00
|
|
|
pop hl
|
2014-08-14 23:50:39 -07:00
|
|
|
ld bc, SCREEN_WIDTH
|
2013-08-20 12:58:08 -07:00
|
|
|
add hl, bc
|
|
|
|
push hl
|
|
|
|
jp NextChar
|
|
|
|
; 12b9
|
|
|
|
|
2015-10-04 11:14:51 -07:00
|
|
|
TextFar:: ; 12b9
|
2013-08-20 12:58:08 -07:00
|
|
|
pop hl
|
|
|
|
push de
|
2014-08-14 23:50:39 -07:00
|
|
|
ld bc, -TileMap + $10000
|
2013-08-20 12:58:08 -07:00
|
|
|
add hl, bc
|
2014-08-14 23:50:39 -07:00
|
|
|
ld de, -SCREEN_WIDTH
|
|
|
|
ld c, 1
|
2015-10-19 07:23:58 -07:00
|
|
|
.loop
|
2013-08-20 12:58:08 -07:00
|
|
|
ld a, h
|
|
|
|
and a
|
2015-10-19 07:23:58 -07:00
|
|
|
jr nz, .next
|
2013-08-20 12:58:08 -07:00
|
|
|
ld a, l
|
2014-08-14 23:50:39 -07:00
|
|
|
cp SCREEN_WIDTH
|
2015-10-19 07:23:58 -07:00
|
|
|
jr c, .done
|
2013-08-20 12:58:08 -07:00
|
|
|
|
2015-10-19 07:23:58 -07:00
|
|
|
.next
|
2013-08-20 12:58:08 -07:00
|
|
|
add hl, de
|
|
|
|
inc c
|
2015-10-19 07:23:58 -07:00
|
|
|
jr .loop
|
2013-08-20 12:58:08 -07:00
|
|
|
|
2015-10-19 07:23:58 -07:00
|
|
|
.done
|
2015-07-22 12:57:02 -07:00
|
|
|
hlcoord 0, 0
|
2014-08-14 23:50:39 -07:00
|
|
|
ld de, SCREEN_WIDTH
|
2013-08-20 12:58:08 -07:00
|
|
|
ld a, c
|
2015-10-19 07:23:58 -07:00
|
|
|
.loop2
|
2013-08-20 12:58:08 -07:00
|
|
|
and a
|
2015-10-19 07:23:58 -07:00
|
|
|
jr z, .done2
|
2013-08-20 12:58:08 -07:00
|
|
|
add hl, de
|
|
|
|
dec a
|
2015-10-19 07:23:58 -07:00
|
|
|
jr .loop2
|
2013-08-20 12:58:08 -07:00
|
|
|
|
2015-10-19 07:23:58 -07:00
|
|
|
.done2
|
2013-08-20 12:58:08 -07:00
|
|
|
pop de
|
|
|
|
inc de
|
|
|
|
ld a, [de]
|
|
|
|
ld c, a
|
2014-08-14 23:50:39 -07:00
|
|
|
ld b, 0
|
2013-08-20 12:58:08 -07:00
|
|
|
add hl, bc
|
|
|
|
push hl
|
|
|
|
jp NextChar
|
|
|
|
; 12ea
|
|
|
|
|
|
|
|
|
2015-10-04 11:14:51 -07:00
|
|
|
LineChar:: ; 12ea
|
2013-08-20 12:58:08 -07:00
|
|
|
pop hl
|
2014-08-14 23:50:39 -07:00
|
|
|
hlcoord TEXTBOX_INNERX, TEXTBOX_INNERY + 2
|
2013-08-20 12:58:08 -07:00
|
|
|
push hl
|
|
|
|
jp NextChar
|
|
|
|
; 0x12f2
|
|
|
|
|
2014-08-14 23:50:39 -07:00
|
|
|
Paragraph:: ; 12f2
|
2013-08-20 12:58:08 -07:00
|
|
|
push de
|
2014-08-14 23:50:39 -07:00
|
|
|
|
2015-10-19 07:23:58 -07:00
|
|
|
ld a, [wLinkMode]
|
|
|
|
cp LINK_COLOSSEUM
|
|
|
|
jr z, .linkbattle
|
|
|
|
cp LINK_MOBILE
|
|
|
|
jr z, .linkbattle
|
|
|
|
call LoadBlinkingCursor
|
2014-08-14 23:50:39 -07:00
|
|
|
|
2015-10-19 07:23:58 -07:00
|
|
|
.linkbattle
|
2013-08-20 12:58:08 -07:00
|
|
|
call Function13b6
|
2015-07-15 12:48:44 -07:00
|
|
|
call KeepTextOpen
|
2014-08-14 23:50:39 -07:00
|
|
|
hlcoord TEXTBOX_INNERX, TEXTBOX_INNERY
|
|
|
|
lb bc, TEXTBOX_INNERH - 1, TEXTBOX_INNERW
|
2013-08-20 12:58:08 -07:00
|
|
|
call ClearBox
|
2015-10-19 07:23:58 -07:00
|
|
|
call UnloadBlinkingCursor
|
2014-08-14 23:50:39 -07:00
|
|
|
ld c, 20
|
2013-08-20 12:58:08 -07:00
|
|
|
call DelayFrames
|
2014-08-14 23:50:39 -07:00
|
|
|
hlcoord TEXTBOX_INNERX, TEXTBOX_INNERY
|
2013-08-20 12:58:08 -07:00
|
|
|
pop de
|
|
|
|
jp NextChar
|
|
|
|
; 131f
|
|
|
|
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
Char4B:: ; 131f
|
2015-10-19 07:23:58 -07:00
|
|
|
ld a, [wLinkMode]
|
2013-08-20 12:58:08 -07:00
|
|
|
or a
|
2015-10-19 07:23:58 -07:00
|
|
|
jr nz, .communication
|
|
|
|
call LoadBlinkingCursor
|
2014-08-14 23:50:39 -07:00
|
|
|
|
2015-10-19 07:23:58 -07:00
|
|
|
.communication
|
2013-08-20 12:58:08 -07:00
|
|
|
call Function13b6
|
|
|
|
|
|
|
|
push de
|
2015-07-15 12:48:44 -07:00
|
|
|
call KeepTextOpen
|
2013-08-20 12:58:08 -07:00
|
|
|
pop de
|
|
|
|
|
2015-10-19 07:23:58 -07:00
|
|
|
ld a, [wLinkMode]
|
2013-08-20 12:58:08 -07:00
|
|
|
or a
|
2015-10-19 07:23:58 -07:00
|
|
|
call z, UnloadBlinkingCursor
|
2013-08-20 12:58:08 -07:00
|
|
|
|
2015-10-04 11:14:51 -07:00
|
|
|
Char4C:: ; 1337
|
2013-08-20 12:58:08 -07:00
|
|
|
push de
|
2015-10-19 07:23:58 -07:00
|
|
|
call TextScroll
|
|
|
|
call TextScroll
|
2014-08-14 23:50:39 -07:00
|
|
|
hlcoord TEXTBOX_INNERX, TEXTBOX_INNERY + 2
|
2013-08-20 12:58:08 -07:00
|
|
|
pop de
|
|
|
|
jp NextChar
|
|
|
|
; 1345
|
|
|
|
|
|
|
|
|
2014-08-14 23:50:39 -07:00
|
|
|
ContText:: ; 1345
|
2013-08-20 12:58:08 -07:00
|
|
|
push de
|
2014-08-14 23:50:39 -07:00
|
|
|
ld de, .cont
|
2013-08-20 12:58:08 -07:00
|
|
|
ld b, h
|
|
|
|
ld c, l
|
|
|
|
call PlaceString
|
|
|
|
ld h, b
|
|
|
|
ld l, c
|
|
|
|
pop de
|
|
|
|
jp NextChar
|
|
|
|
|
2014-08-14 23:50:39 -07:00
|
|
|
.cont db $4b, "@"
|
2013-08-20 12:58:08 -07:00
|
|
|
; 1356
|
|
|
|
|
|
|
|
|
2015-10-09 20:09:03 -07:00
|
|
|
PlaceDexEnd:: ; 1356
|
2014-08-14 23:50:39 -07:00
|
|
|
; Legacy: ends a Pokédex entry (Red).
|
|
|
|
; Dex entries are now regular strings.
|
2013-08-20 12:58:08 -07:00
|
|
|
ld [hl], "."
|
|
|
|
pop hl
|
|
|
|
ret
|
|
|
|
; 135a
|
|
|
|
|
2014-08-14 23:50:39 -07:00
|
|
|
PromptText:: ; 135a
|
2015-10-19 07:23:58 -07:00
|
|
|
ld a, [wLinkMode]
|
|
|
|
cp LINK_COLOSSEUM
|
2014-08-14 23:50:39 -07:00
|
|
|
jr z, .ok
|
2015-10-19 07:23:58 -07:00
|
|
|
cp LINK_MOBILE
|
2014-08-14 23:50:39 -07:00
|
|
|
jr z, .ok
|
2015-10-19 07:23:58 -07:00
|
|
|
call LoadBlinkingCursor
|
2013-08-20 12:58:08 -07:00
|
|
|
|
2015-10-19 07:23:58 -07:00
|
|
|
.ok
|
2013-08-20 12:58:08 -07:00
|
|
|
call Function13b6
|
2015-07-15 12:48:44 -07:00
|
|
|
call KeepTextOpen
|
2015-10-19 07:23:58 -07:00
|
|
|
ld a, [wLinkMode]
|
|
|
|
cp LINK_COLOSSEUM
|
2014-08-14 23:50:39 -07:00
|
|
|
jr z, DoneText
|
2015-10-19 07:23:58 -07:00
|
|
|
cp LINK_MOBILE
|
2014-08-14 23:50:39 -07:00
|
|
|
jr z, DoneText
|
2015-10-19 07:23:58 -07:00
|
|
|
call UnloadBlinkingCursor
|
2013-08-20 12:58:08 -07:00
|
|
|
|
2014-08-14 23:50:39 -07:00
|
|
|
DoneText:: ; 137c
|
2013-08-20 12:58:08 -07:00
|
|
|
pop hl
|
2014-08-14 23:50:39 -07:00
|
|
|
ld de, .stop
|
2013-08-20 12:58:08 -07:00
|
|
|
dec de
|
|
|
|
ret
|
2014-08-14 23:50:39 -07:00
|
|
|
.stop db "@"
|
2013-08-20 12:58:08 -07:00
|
|
|
; 1383
|
|
|
|
|
2014-08-14 23:50:39 -07:00
|
|
|
NullChar:: ; 1383
|
|
|
|
ld a, "?"
|
2013-08-20 12:58:08 -07:00
|
|
|
ld [hli], a
|
|
|
|
call PrintLetterDelay
|
|
|
|
jp NextChar
|
|
|
|
; 138c
|
|
|
|
|
2015-10-19 07:23:58 -07:00
|
|
|
TextScroll:: ; 138c
|
2014-08-14 23:50:39 -07:00
|
|
|
hlcoord TEXTBOX_INNERX, TEXTBOX_INNERY
|
|
|
|
decoord TEXTBOX_INNERX, TEXTBOX_INNERY - 1
|
|
|
|
ld a, TEXTBOX_INNERH - 1
|
2015-10-19 07:23:58 -07:00
|
|
|
|
2014-08-14 23:50:39 -07:00
|
|
|
.col
|
2013-08-20 12:58:08 -07:00
|
|
|
push af
|
2014-08-14 23:50:39 -07:00
|
|
|
ld c, TEXTBOX_INNERW
|
2015-10-19 07:23:58 -07:00
|
|
|
|
2014-08-14 23:50:39 -07:00
|
|
|
.row
|
2013-08-20 12:58:08 -07:00
|
|
|
ld a, [hli]
|
|
|
|
ld [de], a
|
|
|
|
inc de
|
|
|
|
dec c
|
2014-08-14 23:50:39 -07:00
|
|
|
jr nz, .row
|
2015-10-19 07:23:58 -07:00
|
|
|
|
2015-07-20 19:18:18 -07:00
|
|
|
rept 2
|
2013-08-20 12:58:08 -07:00
|
|
|
inc de
|
2015-07-20 19:18:18 -07:00
|
|
|
endr
|
|
|
|
rept 2
|
2013-08-20 12:58:08 -07:00
|
|
|
inc hl
|
2015-07-20 19:18:18 -07:00
|
|
|
endr
|
2013-08-20 12:58:08 -07:00
|
|
|
pop af
|
|
|
|
dec a
|
2014-08-14 23:50:39 -07:00
|
|
|
jr nz, .col
|
2015-10-19 07:23:58 -07:00
|
|
|
|
2014-08-14 23:50:39 -07:00
|
|
|
hlcoord TEXTBOX_INNERX, TEXTBOX_INNERY + 2
|
|
|
|
ld a, " "
|
|
|
|
ld bc, TEXTBOX_INNERW
|
2013-08-20 12:58:08 -07:00
|
|
|
call ByteFill
|
2014-08-14 23:50:39 -07:00
|
|
|
ld c, 5
|
2013-08-20 12:58:08 -07:00
|
|
|
call DelayFrames
|
|
|
|
ret
|
|
|
|
; 13b6
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
Function13b6:: ; 13b6
|
2013-08-20 12:58:08 -07:00
|
|
|
push bc
|
|
|
|
ld a, [hOAMUpdate]
|
|
|
|
push af
|
2014-08-14 23:50:39 -07:00
|
|
|
ld a, 1
|
2013-08-20 12:58:08 -07:00
|
|
|
ld [hOAMUpdate], a
|
2015-10-19 07:23:58 -07:00
|
|
|
|
2013-08-20 12:58:08 -07:00
|
|
|
call WaitBGMap
|
2015-10-19 07:23:58 -07:00
|
|
|
|
2013-08-20 12:58:08 -07:00
|
|
|
pop af
|
|
|
|
ld [hOAMUpdate], a
|
|
|
|
pop bc
|
|
|
|
ret
|
|
|
|
; 13c6
|
|
|
|
|
2014-08-14 23:50:39 -07:00
|
|
|
Diacritic:: ; 13c6
|
2013-08-20 12:58:08 -07:00
|
|
|
ret
|
|
|
|
; 13c7
|
|
|
|
|
2015-10-19 07:23:58 -07:00
|
|
|
LoadBlinkingCursor:: ; 13c7
|
2014-08-14 23:50:39 -07:00
|
|
|
ld a, "▼"
|
2015-10-19 07:23:58 -07:00
|
|
|
ldcoord_a 18, 17
|
2013-08-20 12:58:08 -07:00
|
|
|
ret
|
|
|
|
; 13cd
|
|
|
|
|
2015-10-19 07:23:58 -07:00
|
|
|
UnloadBlinkingCursor:: ; 13cd
|
|
|
|
lda_coord 17, 17
|
|
|
|
ldcoord_a 18, 17
|
2013-08-20 12:58:08 -07:00
|
|
|
ret
|
|
|
|
; 13d4
|
|
|
|
|
2014-08-14 23:50:39 -07:00
|
|
|
FarString:: ; 13d4
|
2013-08-20 12:58:08 -07:00
|
|
|
ld b, a
|
|
|
|
ld a, [hROMBank]
|
|
|
|
push af
|
2014-08-14 23:50:39 -07:00
|
|
|
|
2013-08-20 12:58:08 -07:00
|
|
|
ld a, b
|
|
|
|
rst Bankswitch
|
|
|
|
call PlaceString
|
2014-08-14 23:50:39 -07:00
|
|
|
|
2013-08-20 12:58:08 -07:00
|
|
|
pop af
|
|
|
|
rst Bankswitch
|
|
|
|
ret
|
|
|
|
; 13e0
|
|
|
|
|
2015-11-18 15:35:44 -08:00
|
|
|
PokeFluteTerminatorCharacter:: ; 13e0
|
2014-08-14 23:50:39 -07:00
|
|
|
ld hl, .stop
|
2013-08-20 12:58:08 -07:00
|
|
|
ret
|
|
|
|
|
2014-08-14 23:50:39 -07:00
|
|
|
.stop db "@"
|
2013-08-20 12:58:08 -07:00
|
|
|
; 13e5
|
|
|
|
|
|
|
|
|
2015-07-22 12:57:02 -07:00
|
|
|
PlaceWholeStringInBoxAtOnce:: ; 13e5
|
2015-02-10 15:14:41 -08:00
|
|
|
ld a, [TextBoxFrame + 1]
|
2013-08-20 12:58:08 -07:00
|
|
|
push af
|
|
|
|
set 1, a
|
2015-02-10 15:14:41 -08:00
|
|
|
ld [TextBoxFrame + 1], a
|
2014-08-14 23:50:39 -07:00
|
|
|
|
2015-10-19 07:23:58 -07:00
|
|
|
call DoTextUntilTerminator
|
2014-08-14 23:50:39 -07:00
|
|
|
|
2013-08-20 12:58:08 -07:00
|
|
|
pop af
|
2015-02-10 15:14:41 -08:00
|
|
|
ld [TextBoxFrame + 1], a
|
2013-08-20 12:58:08 -07:00
|
|
|
ret
|
|
|
|
; 13f6
|
|
|
|
|
2015-10-19 07:23:58 -07:00
|
|
|
DoTextUntilTerminator:: ; 13f6
|
2013-08-20 12:58:08 -07:00
|
|
|
ld a, [hli]
|
|
|
|
cp "@"
|
|
|
|
ret z
|
2014-08-14 23:50:39 -07:00
|
|
|
call .TextCommand
|
2015-10-19 07:23:58 -07:00
|
|
|
jr DoTextUntilTerminator
|
2013-08-20 12:58:08 -07:00
|
|
|
|
2014-08-14 23:50:39 -07:00
|
|
|
.TextCommand:
|
2013-08-20 12:58:08 -07:00
|
|
|
push hl
|
|
|
|
push bc
|
|
|
|
ld c, a
|
|
|
|
ld b, 0
|
|
|
|
ld hl, TextCommands
|
2015-07-20 19:18:18 -07:00
|
|
|
rept 2
|
2013-08-20 12:58:08 -07:00
|
|
|
add hl, bc
|
2015-07-20 19:18:18 -07:00
|
|
|
endr
|
2013-08-20 12:58:08 -07:00
|
|
|
ld e, [hl]
|
|
|
|
inc hl
|
|
|
|
ld d, [hl]
|
|
|
|
pop bc
|
|
|
|
pop hl
|
2014-08-14 23:50:39 -07:00
|
|
|
|
|
|
|
; jp de
|
2013-08-20 12:58:08 -07:00
|
|
|
push de
|
|
|
|
ret
|
|
|
|
; 1410
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
TextCommands:: ; 1410
|
2015-10-19 07:23:58 -07:00
|
|
|
dw Text_TX
|
|
|
|
dw Text_TX_RAM
|
|
|
|
dw Text_TX_BCD
|
|
|
|
dw Text_TX_MOVE
|
|
|
|
dw Text_TX_BOX
|
|
|
|
dw Text_TX_LOW
|
|
|
|
dw Text_WAIT_BUTTON
|
|
|
|
dw Text_TX_SCROLL
|
|
|
|
dw Text_START_ASM
|
|
|
|
dw Text_TX_NUM
|
|
|
|
dw Text_TX_EXIT
|
2013-08-20 12:58:08 -07:00
|
|
|
dw Text_PlaySound ; $0b
|
2015-10-19 07:23:58 -07:00
|
|
|
dw Text_TX_DOTS
|
2013-08-20 12:58:08 -07:00
|
|
|
dw Text_0D
|
|
|
|
dw Text_PlaySound ; $0e
|
|
|
|
dw Text_PlaySound ; $0f
|
|
|
|
dw Text_PlaySound ; $10
|
|
|
|
dw Text_PlaySound ; $11
|
|
|
|
dw Text_PlaySound ; $12
|
|
|
|
dw Text_PlaySound ; $13
|
2015-10-19 07:23:58 -07:00
|
|
|
dw Text_TX_STRINGBUFFER
|
|
|
|
dw Text_TX_DAY
|
|
|
|
dw Text_TX_FAR
|
2013-08-20 12:58:08 -07:00
|
|
|
; 143e
|
|
|
|
|
2015-10-19 07:23:58 -07:00
|
|
|
Text_TX:: ; 143e
|
2013-08-20 12:58:08 -07:00
|
|
|
; TX
|
|
|
|
; write text until "@"
|
|
|
|
; [$00]["...@"]
|
|
|
|
|
|
|
|
ld d, h
|
|
|
|
ld e, l
|
|
|
|
ld h, b
|
|
|
|
ld l, c
|
|
|
|
call PlaceString
|
|
|
|
ld h, d
|
|
|
|
ld l, e
|
|
|
|
inc hl
|
|
|
|
ret
|
|
|
|
; 1449
|
|
|
|
|
2015-10-19 07:23:58 -07:00
|
|
|
Text_TX_RAM:: ; 1449
|
2015-07-22 12:57:02 -07:00
|
|
|
; text_from_ram
|
2013-08-20 12:58:08 -07:00
|
|
|
; write text from a ram address
|
|
|
|
; little endian
|
|
|
|
; [$01][addr]
|
|
|
|
|
|
|
|
ld a, [hli]
|
|
|
|
ld e, a
|
|
|
|
ld a, [hli]
|
|
|
|
ld d, a
|
|
|
|
push hl
|
|
|
|
ld h, b
|
|
|
|
ld l, c
|
|
|
|
call PlaceString
|
|
|
|
pop hl
|
|
|
|
ret
|
|
|
|
; 1455
|
|
|
|
|
2015-10-19 07:23:58 -07:00
|
|
|
Text_TX_FAR:: ; 1455
|
2015-07-22 12:57:02 -07:00
|
|
|
; text_jump
|
2013-08-20 12:58:08 -07:00
|
|
|
; write text from a different bank
|
|
|
|
; little endian
|
|
|
|
; [$16][addr][bank]
|
|
|
|
|
|
|
|
ld a, [hROMBank]
|
|
|
|
push af
|
|
|
|
|
|
|
|
ld a, [hli]
|
|
|
|
ld e, a
|
|
|
|
ld a, [hli]
|
|
|
|
ld d, a
|
|
|
|
ld a, [hli]
|
|
|
|
|
|
|
|
ld [hROMBank], a
|
|
|
|
ld [MBC3RomBank], a
|
|
|
|
|
|
|
|
push hl
|
|
|
|
ld h, d
|
|
|
|
ld l, e
|
2015-10-19 07:23:58 -07:00
|
|
|
call DoTextUntilTerminator
|
2013-08-20 12:58:08 -07:00
|
|
|
pop hl
|
|
|
|
|
|
|
|
pop af
|
|
|
|
ld [hROMBank], a
|
|
|
|
ld [MBC3RomBank], a
|
|
|
|
ret
|
|
|
|
; 1470
|
|
|
|
|
2015-10-19 07:23:58 -07:00
|
|
|
Text_TX_BCD:: ; 1470
|
2014-08-14 23:50:39 -07:00
|
|
|
; TX_BCD
|
|
|
|
; write bcd from address, typically ram
|
2013-08-20 12:58:08 -07:00
|
|
|
; [$02][addr][flags]
|
|
|
|
; flags: see PrintBCDNumber
|
|
|
|
|
|
|
|
ld a, [hli]
|
|
|
|
ld e, a
|
|
|
|
ld a, [hli]
|
|
|
|
ld d, a
|
|
|
|
ld a, [hli]
|
|
|
|
push hl
|
|
|
|
ld h, b
|
|
|
|
ld l, c
|
|
|
|
ld c, a
|
|
|
|
call PrintBCDNumber
|
|
|
|
ld b, h
|
|
|
|
ld c, l
|
|
|
|
pop hl
|
|
|
|
ret
|
|
|
|
; 1480
|
|
|
|
|
2015-10-19 07:23:58 -07:00
|
|
|
Text_TX_MOVE:: ; 1480
|
2013-08-20 12:58:08 -07:00
|
|
|
; TX_MOVE
|
|
|
|
; move to a new tile
|
2014-08-14 23:50:39 -07:00
|
|
|
; [$03][addr]
|
2013-08-20 12:58:08 -07:00
|
|
|
|
|
|
|
ld a, [hli]
|
2015-02-10 15:14:41 -08:00
|
|
|
ld [wd0e4 + 2], a
|
2013-08-20 12:58:08 -07:00
|
|
|
ld c, a
|
|
|
|
ld a, [hli]
|
2015-02-10 15:14:41 -08:00
|
|
|
ld [wd0e4 + 2 + 1], a
|
2013-08-20 12:58:08 -07:00
|
|
|
ld b, a
|
|
|
|
ret
|
|
|
|
; 148b
|
|
|
|
|
2015-10-19 07:23:58 -07:00
|
|
|
Text_TX_BOX:: ; 148b
|
2013-08-20 12:58:08 -07:00
|
|
|
; TX_BOX
|
|
|
|
; draw a box
|
|
|
|
; little endian
|
2014-08-14 23:50:39 -07:00
|
|
|
; [$04][addr][height][width]
|
2013-08-20 12:58:08 -07:00
|
|
|
|
|
|
|
ld a, [hli]
|
|
|
|
ld e, a
|
|
|
|
ld a, [hli]
|
|
|
|
ld d, a
|
|
|
|
ld a, [hli]
|
|
|
|
ld b, a
|
|
|
|
ld a, [hli]
|
|
|
|
ld c, a
|
|
|
|
push hl
|
|
|
|
ld h, d
|
|
|
|
ld l, e
|
|
|
|
call TextBox
|
|
|
|
pop hl
|
|
|
|
ret
|
|
|
|
; 149b
|
|
|
|
|
2015-10-19 07:23:58 -07:00
|
|
|
Text_TX_LOW:: ; 149b
|
2013-08-20 12:58:08 -07:00
|
|
|
; TX_LOW
|
|
|
|
; write text at (1,16)
|
|
|
|
; [$05]
|
|
|
|
|
2014-08-14 23:50:39 -07:00
|
|
|
bccoord TEXTBOX_INNERX, TEXTBOX_INNERY + 2
|
2013-08-20 12:58:08 -07:00
|
|
|
ret
|
|
|
|
; 149f
|
|
|
|
|
2015-10-19 07:23:58 -07:00
|
|
|
Text_WAIT_BUTTON:: ; 149f
|
2013-08-20 12:58:08 -07:00
|
|
|
; TX_WAITBUTTON
|
|
|
|
; wait for button press
|
|
|
|
; show arrow
|
|
|
|
; [06]
|
|
|
|
|
2015-10-19 07:23:58 -07:00
|
|
|
ld a, [wLinkMode]
|
|
|
|
cp LINK_COLOSSEUM
|
2013-08-20 12:58:08 -07:00
|
|
|
jp z, Text_0D
|
2015-10-19 07:23:58 -07:00
|
|
|
cp LINK_MOBILE
|
2013-08-20 12:58:08 -07:00
|
|
|
jp z, Text_0D
|
2014-08-14 23:50:39 -07:00
|
|
|
|
2013-08-20 12:58:08 -07:00
|
|
|
push hl
|
2015-10-19 07:23:58 -07:00
|
|
|
call LoadBlinkingCursor
|
2013-08-20 12:58:08 -07:00
|
|
|
push bc
|
2015-07-15 12:48:44 -07:00
|
|
|
call KeepTextOpen
|
2013-08-20 12:58:08 -07:00
|
|
|
pop bc
|
2015-10-19 07:23:58 -07:00
|
|
|
call UnloadBlinkingCursor
|
2013-08-20 12:58:08 -07:00
|
|
|
pop hl
|
|
|
|
ret
|
|
|
|
; 14ba
|
|
|
|
|
2015-10-19 07:23:58 -07:00
|
|
|
Text_TX_SCROLL:: ; 14ba
|
|
|
|
; pushes text up two lines and sets the BC cursor to the border tile
|
|
|
|
; below the first character column of the text box.
|
2013-08-20 12:58:08 -07:00
|
|
|
push hl
|
2015-10-19 07:23:58 -07:00
|
|
|
call UnloadBlinkingCursor
|
|
|
|
call TextScroll
|
|
|
|
call TextScroll
|
2013-08-20 12:58:08 -07:00
|
|
|
pop hl
|
2014-08-14 23:50:39 -07:00
|
|
|
bccoord TEXTBOX_INNERX, TEXTBOX_INNERY + 2
|
2013-08-20 12:58:08 -07:00
|
|
|
ret
|
|
|
|
; 14c9
|
|
|
|
|
2015-10-19 07:23:58 -07:00
|
|
|
Text_START_ASM:: ; 14c9
|
2013-08-20 12:58:08 -07:00
|
|
|
; TX_ASM
|
|
|
|
|
|
|
|
bit 7, h
|
2014-08-14 23:50:39 -07:00
|
|
|
jr nz, .not_rom
|
2013-08-20 12:58:08 -07:00
|
|
|
jp [hl]
|
|
|
|
|
2014-08-14 23:50:39 -07:00
|
|
|
.not_rom
|
2013-08-20 12:58:08 -07:00
|
|
|
ld a, "@"
|
|
|
|
ld [hl], a
|
|
|
|
ret
|
|
|
|
; 14d2
|
|
|
|
|
2015-10-19 07:23:58 -07:00
|
|
|
Text_TX_NUM:: ; 14d2
|
2014-08-14 23:50:39 -07:00
|
|
|
; TX_NUM
|
|
|
|
; [$09][addr][hi:bytes lo:digits]
|
2013-08-20 12:58:08 -07:00
|
|
|
ld a, [hli]
|
|
|
|
ld e, a
|
|
|
|
ld a, [hli]
|
|
|
|
ld d, a
|
|
|
|
ld a, [hli]
|
|
|
|
push hl
|
|
|
|
ld h, b
|
|
|
|
ld l, c
|
|
|
|
ld b, a
|
|
|
|
and $f
|
|
|
|
ld c, a
|
|
|
|
ld a, b
|
|
|
|
and $f0
|
|
|
|
swap a
|
2015-10-11 09:15:03 -07:00
|
|
|
set PRINTNUM_RIGHTALIGN_F, a
|
2013-08-20 12:58:08 -07:00
|
|
|
ld b, a
|
|
|
|
call PrintNum
|
|
|
|
ld b, h
|
|
|
|
ld c, l
|
|
|
|
pop hl
|
|
|
|
ret
|
|
|
|
; 14ed
|
|
|
|
|
2015-10-19 07:23:58 -07:00
|
|
|
Text_TX_EXIT:: ; 14ed
|
2013-08-20 12:58:08 -07:00
|
|
|
push hl
|
|
|
|
push bc
|
2013-12-22 14:30:35 -08:00
|
|
|
call GetJoypad
|
2013-08-20 12:58:08 -07:00
|
|
|
ld a, [hJoyDown]
|
2013-09-07 20:49:20 -07:00
|
|
|
and A_BUTTON | B_BUTTON
|
2014-08-14 23:50:39 -07:00
|
|
|
jr nz, .done
|
2013-08-20 12:58:08 -07:00
|
|
|
ld c, 30
|
|
|
|
call DelayFrames
|
2014-08-14 23:50:39 -07:00
|
|
|
.done
|
2013-08-20 12:58:08 -07:00
|
|
|
pop bc
|
|
|
|
pop hl
|
|
|
|
ret
|
|
|
|
; 1500
|
|
|
|
|
|
|
|
Text_PlaySound:: ; 1500
|
|
|
|
; chars:
|
|
|
|
; $0b, $0e, $0f, $10, $11, $12, $13
|
|
|
|
; see TextSFX
|
|
|
|
|
|
|
|
push bc
|
|
|
|
dec hl
|
|
|
|
ld a, [hli]
|
|
|
|
ld b, a
|
|
|
|
push hl
|
|
|
|
ld hl, TextSFX
|
2014-08-14 23:50:39 -07:00
|
|
|
.loop
|
2013-08-20 12:58:08 -07:00
|
|
|
ld a, [hli]
|
2014-08-14 23:50:39 -07:00
|
|
|
cp -1
|
|
|
|
jr z, .done
|
2013-08-20 12:58:08 -07:00
|
|
|
cp b
|
2014-08-14 23:50:39 -07:00
|
|
|
jr z, .play
|
2015-07-20 19:18:18 -07:00
|
|
|
rept 2
|
2013-08-20 12:58:08 -07:00
|
|
|
inc hl
|
2015-07-20 19:18:18 -07:00
|
|
|
endr
|
2014-08-14 23:50:39 -07:00
|
|
|
jr .loop
|
2013-08-20 12:58:08 -07:00
|
|
|
|
2014-08-14 23:50:39 -07:00
|
|
|
.play
|
2013-08-20 12:58:08 -07:00
|
|
|
push de
|
|
|
|
ld e, [hl]
|
|
|
|
inc hl
|
|
|
|
ld d, [hl]
|
2013-10-08 10:10:36 -07:00
|
|
|
call PlaySFX
|
2013-08-20 12:58:08 -07:00
|
|
|
call WaitSFX
|
|
|
|
pop de
|
|
|
|
|
2014-08-14 23:50:39 -07:00
|
|
|
.done
|
2013-08-20 12:58:08 -07:00
|
|
|
pop hl
|
|
|
|
pop bc
|
|
|
|
ret
|
|
|
|
; 1522
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
Function1522:: ; 1522
|
2013-08-20 12:58:08 -07:00
|
|
|
push de
|
|
|
|
ld e, [hl]
|
|
|
|
inc hl
|
|
|
|
ld d, [hl]
|
2014-07-18 10:25:03 -07:00
|
|
|
call PlayCry
|
2013-08-20 12:58:08 -07:00
|
|
|
pop de
|
|
|
|
pop hl
|
|
|
|
pop bc
|
|
|
|
ret
|
|
|
|
; 152d
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
TextSFX:: ; 152d
|
2015-10-30 07:34:35 -07:00
|
|
|
dbw TX_SOUND_0B, SFX_DEX_FANFARE_50_79
|
|
|
|
dbw TX_SOUND_12, SFX_FANFARE
|
|
|
|
dbw TX_SOUND_0E, SFX_DEX_FANFARE_20_49
|
|
|
|
dbw TX_SOUND_0F, SFX_ITEM
|
|
|
|
dbw TX_SOUND_10, SFX_CAUGHT_MON
|
|
|
|
dbw TX_SOUND_11, SFX_DEX_FANFARE_80_109
|
|
|
|
dbw TX_SOUND_13, SFX_SLOT_MACHINE_START
|
2014-08-14 23:50:39 -07:00
|
|
|
db -1
|
2013-08-20 12:58:08 -07:00
|
|
|
; 1543
|
|
|
|
|
2015-10-19 07:23:58 -07:00
|
|
|
Text_TX_DOTS:: ; 1543
|
2014-08-14 23:50:39 -07:00
|
|
|
; [$0C][num]
|
2013-08-20 12:58:08 -07:00
|
|
|
ld a, [hli]
|
|
|
|
ld d, a
|
|
|
|
push hl
|
|
|
|
ld h, b
|
|
|
|
ld l, c
|
2015-10-19 07:23:58 -07:00
|
|
|
|
2014-08-14 23:50:39 -07:00
|
|
|
.loop
|
2013-08-20 12:58:08 -07:00
|
|
|
push de
|
|
|
|
ld a, "…"
|
|
|
|
ld [hli], a
|
2013-12-22 14:30:35 -08:00
|
|
|
call GetJoypad
|
2013-08-20 12:58:08 -07:00
|
|
|
ld a, [hJoyDown]
|
2013-09-07 20:49:20 -07:00
|
|
|
and A_BUTTON | B_BUTTON
|
2014-08-14 23:50:39 -07:00
|
|
|
jr nz, .next
|
2013-08-20 12:58:08 -07:00
|
|
|
ld c, 10
|
|
|
|
call DelayFrames
|
2014-08-14 23:50:39 -07:00
|
|
|
.next
|
2013-08-20 12:58:08 -07:00
|
|
|
pop de
|
|
|
|
dec d
|
2014-08-14 23:50:39 -07:00
|
|
|
jr nz, .loop
|
2015-10-19 07:23:58 -07:00
|
|
|
|
2013-08-20 12:58:08 -07:00
|
|
|
ld b, h
|
|
|
|
ld c, l
|
|
|
|
pop hl
|
|
|
|
ret
|
|
|
|
; 1562
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
Text_0D:: ; 1562
|
2013-08-20 12:58:08 -07:00
|
|
|
; wait for key down
|
|
|
|
; display arrow
|
|
|
|
push hl
|
|
|
|
push bc
|
2015-07-15 12:48:44 -07:00
|
|
|
call KeepTextOpen
|
2013-08-20 12:58:08 -07:00
|
|
|
pop bc
|
|
|
|
pop hl
|
|
|
|
ret
|
|
|
|
; 156a
|
|
|
|
|
2015-10-19 07:23:58 -07:00
|
|
|
Text_TX_STRINGBUFFER:: ; 156a
|
2014-02-24 18:51:20 -08:00
|
|
|
; Print a string from one of the following:
|
|
|
|
; 0: StringBuffer3
|
|
|
|
; 1: StringBuffer4
|
|
|
|
; 2: StringBuffer5
|
|
|
|
; 3: StringBuffer2
|
|
|
|
; 4: StringBuffer1
|
|
|
|
; 5: EnemyMonNick
|
|
|
|
; 6: BattleMonNick
|
2013-08-20 12:58:08 -07:00
|
|
|
; [$14][id]
|
|
|
|
|
|
|
|
ld a, [hli]
|
|
|
|
push hl
|
|
|
|
ld e, a
|
|
|
|
ld d, 0
|
2015-10-30 07:34:35 -07:00
|
|
|
ld hl, StringBufferPointers
|
2015-07-20 19:18:18 -07:00
|
|
|
rept 2
|
2013-08-20 12:58:08 -07:00
|
|
|
add hl, de
|
2015-07-20 19:18:18 -07:00
|
|
|
endr
|
2015-10-30 07:34:35 -07:00
|
|
|
ld a, BANK(StringBufferPointers)
|
2013-08-20 12:58:08 -07:00
|
|
|
call GetFarHalfword
|
|
|
|
ld d, h
|
|
|
|
ld e, l
|
|
|
|
ld h, b
|
|
|
|
ld l, c
|
|
|
|
call PlaceString
|
|
|
|
pop hl
|
|
|
|
ret
|
|
|
|
; 1582
|
|
|
|
|
2015-10-19 07:23:58 -07:00
|
|
|
Text_TX_DAY:: ; 1582
|
2013-08-20 12:58:08 -07:00
|
|
|
; TX_DAY
|
|
|
|
|
|
|
|
call GetWeekday
|
|
|
|
push hl
|
|
|
|
push bc
|
|
|
|
ld c, a
|
|
|
|
ld b, 0
|
|
|
|
ld hl, .Days
|
2015-07-20 19:18:18 -07:00
|
|
|
rept 2
|
2013-08-20 12:58:08 -07:00
|
|
|
add hl, bc
|
2015-07-20 19:18:18 -07:00
|
|
|
endr
|
2013-08-20 12:58:08 -07:00
|
|
|
ld a, [hli]
|
|
|
|
ld h, [hl]
|
|
|
|
ld l, a
|
|
|
|
ld d, h
|
|
|
|
ld e, l
|
|
|
|
pop hl
|
|
|
|
call PlaceString
|
|
|
|
ld h, b
|
|
|
|
ld l, c
|
|
|
|
ld de, .Day
|
|
|
|
call PlaceString
|
|
|
|
pop hl
|
|
|
|
ret
|
|
|
|
|
|
|
|
.Days ; 15a2
|
|
|
|
dw .Sun
|
|
|
|
dw .Mon
|
|
|
|
dw .Tues
|
|
|
|
dw .Wednes
|
|
|
|
dw .Thurs
|
|
|
|
dw .Fri
|
|
|
|
dw .Satur
|
|
|
|
|
|
|
|
.Sun db "SUN@"
|
|
|
|
.Mon db "MON@"
|
|
|
|
.Tues db "TUES@"
|
|
|
|
.Wednes db "WEDNES@"
|
|
|
|
.Thurs db "THURS@"
|
|
|
|
.Fri db "FRI@"
|
|
|
|
.Satur db "SATUR@"
|
|
|
|
.Day db "DAY@"
|
|
|
|
; 15d8
|