pokecrystal-board/engine/overworld/scripting.asm

2832 lines
46 KiB
NASM
Raw Normal View History

; Event scripting commands.
2017-02-22 20:49:44 -08:00
EnableScriptMode::
push af
ld a, SCRIPT_READ
2018-01-23 14:39:09 -08:00
ld [wScriptMode], a
pop af
ret
2017-02-22 20:49:44 -08:00
ScriptEvents::
call StartScript
.loop
2018-01-23 14:39:09 -08:00
ld a, [wScriptMode]
ld hl, .modes
rst JumpTable
call CheckScript
jr nz, .loop
ret
2017-02-22 20:49:44 -08:00
.modes
dw EndScript
dw RunScriptCommand
dw WaitScriptMovement
dw WaitScript
2017-02-22 20:49:44 -08:00
EndScript:
call StopScript
ret
2017-02-22 20:49:44 -08:00
WaitScript:
call StopScript
2018-01-23 14:39:09 -08:00
ld hl, wScriptDelay
dec [hl]
ret nz
2017-12-24 09:47:30 -08:00
farcall Function58b9
ld a, SCRIPT_READ
2018-01-23 14:39:09 -08:00
ld [wScriptMode], a
call StartScript
ret
2017-02-22 20:49:44 -08:00
WaitScriptMovement:
call StopScript
2018-01-23 14:39:09 -08:00
ld hl, wVramState
bit 7, [hl]
ret nz
2017-12-24 09:47:30 -08:00
farcall Function58b9
ld a, SCRIPT_READ
2018-01-23 14:39:09 -08:00
ld [wScriptMode], a
call StartScript
ret
2017-02-22 20:49:44 -08:00
RunScriptCommand:
call GetScriptByte
ld hl, ScriptCommandTable
rst JumpTable
ret
2017-02-22 20:49:44 -08:00
ScriptCommandTable:
; entries correspond to macros/scripts/events.asm enumeration
2015-12-09 08:38:40 -08:00
dw Script_scall ; 00
dw Script_farscall ; 01
dw Script_ptcall ; 02
dw Script_jump ; 03
dw Script_farjump ; 04
dw Script_ptjump ; 05
2018-02-02 18:09:17 -08:00
dw Script_ifequal ; 06
dw Script_ifnotequal ; 07
2015-12-09 08:38:40 -08:00
dw Script_iffalse ; 08
dw Script_iftrue ; 09
2018-02-02 18:09:17 -08:00
dw Script_ifgreater ; 0a
dw Script_ifless ; 0b
2015-12-09 08:38:40 -08:00
dw Script_jumpstd ; 0c
dw Script_callstd ; 0d
dw Script_callasm ; 0e
dw Script_special ; 0f
dw Script_ptcallasm ; 10
dw Script_checkmapscene ; 11
dw Script_setmapscene ; 12
dw Script_checkscene ; 13
dw Script_setscene ; 14
2015-12-09 08:38:40 -08:00
dw Script_writebyte ; 15
dw Script_addvar ; 16
dw Script_random ; 17
dw Script_checkver ; 18
dw Script_copybytetovar ; 19
dw Script_copyvartobyte ; 1a
dw Script_loadvar ; 1b
dw Script_checkcode ; 1c
dw Script_writevarcode ; 1d
dw Script_writecode ; 1e
dw Script_giveitem ; 1f
dw Script_takeitem ; 20
dw Script_checkitem ; 21
dw Script_givemoney ; 22
dw Script_takemoney ; 23
dw Script_checkmoney ; 24
dw Script_givecoins ; 25
dw Script_takecoins ; 26
dw Script_checkcoins ; 27
dw Script_addcellnum ; 28
dw Script_delcellnum ; 29
dw Script_checkcellnum ; 2a
dw Script_checktime ; 2b
dw Script_checkpoke ; 2c
dw Script_givepoke ; 2d
dw Script_giveegg ; 2e
dw Script_givepokemail ; 2f
dw Script_checkpokemail ; 30
2015-12-09 08:38:40 -08:00
dw Script_checkevent ; 31
dw Script_clearevent ; 32
dw Script_setevent ; 33
dw Script_checkflag ; 34
dw Script_clearflag ; 35
dw Script_setflag ; 36
dw Script_wildon ; 37
dw Script_wildoff ; 38
dw Script_xycompare ; 39
dw Script_warpmod ; 3a
dw Script_blackoutmod ; 3b
dw Script_warp ; 3c
dw Script_readmoney ; 3d
dw Script_readcoins ; 3e
2018-01-11 22:40:20 -08:00
dw Script_vartomem ; 3f
2015-12-09 08:38:40 -08:00
dw Script_pokenamemem ; 40
dw Script_itemtotext ; 41
dw Script_mapnametotext ; 42
dw Script_trainertotext ; 43
dw Script_stringtotext ; 44
dw Script_itemnotify ; 45
dw Script_pocketisfull ; 46
2018-02-02 18:09:17 -08:00
dw Script_opentext ; 47
2015-12-09 08:38:40 -08:00
dw Script_refreshscreen ; 48
dw Script_closetext ; 49
dw Script_loadbytec2cf ; 4a
dw Script_farwritetext ; 4b
dw Script_writetext ; 4c
dw Script_repeattext ; 4d
dw Script_yesorno ; 4e
dw Script_loadmenu ; 4f
dw Script_closewindow ; 50
2015-12-09 08:38:40 -08:00
dw Script_jumptextfaceplayer ; 51
if _CRYSTAL
2015-12-09 08:38:40 -08:00
dw Script_farjumptext ; 52
endc
2015-12-09 08:38:40 -08:00
dw Script_jumptext ; 53
dw Script_waitbutton ; 54
dw Script_buttonsound ; 55
dw Script_pokepic ; 56
dw Script_closepokepic ; 57
2016-01-06 13:59:56 -08:00
dw Script__2dmenu ; 58
dw Script_verticalmenu ; 59
2015-12-09 08:38:40 -08:00
dw Script_loadpikachudata ; 5a
dw Script_randomwildmon ; 5b
dw Script_loadmemtrainer ; 5c
dw Script_loadwildmon ; 5d
dw Script_loadtrainer ; 5e
dw Script_startbattle ; 5f
2016-01-06 13:59:56 -08:00
dw Script_reloadmapafterbattle ; 60
2015-12-09 08:38:40 -08:00
dw Script_catchtutorial ; 61
dw Script_trainertext ; 62
dw Script_trainerflagaction ; 63
dw Script_winlosstext ; 64
dw Script_scripttalkafter ; 65
2018-02-02 18:09:17 -08:00
dw Script_endifjustbattled ; 66
dw Script_checkjustbattled ; 67
2015-12-09 08:38:40 -08:00
dw Script_setlasttalked ; 68
dw Script_applymovement ; 69
dw Script_applymovement2 ; 6a
dw Script_faceplayer ; 6b
dw Script_faceobject ; 6c
2015-12-09 08:38:40 -08:00
dw Script_variablesprite ; 6d
dw Script_disappear ; 6e
dw Script_appear ; 6f
dw Script_follow ; 70
dw Script_stopfollow ; 71
dw Script_moveobject ; 72
dw Script_writeobjectxy ; 73
2015-12-09 08:38:40 -08:00
dw Script_loademote ; 74
dw Script_showemote ; 75
dw Script_turnobject ; 76
2015-12-09 08:38:40 -08:00
dw Script_follownotexact ; 77
dw Script_earthquake ; 78
dw Script_changemap ; 79
dw Script_changeblock ; 7a
dw Script_reloadmap ; 7b
dw Script_reloadmappart ; 7c
dw Script_writecmdqueue ; 7d
dw Script_delcmdqueue ; 7e
dw Script_playmusic ; 7f
dw Script_encountermusic ; 80
dw Script_musicfadeout ; 81
dw Script_playmapmusic ; 82
2016-01-06 13:59:56 -08:00
dw Script_dontrestartmapmusic ; 83
2015-12-09 08:38:40 -08:00
dw Script_cry ; 84
dw Script_playsound ; 85
dw Script_waitsfx ; 86
dw Script_warpsound ; 87
dw Script_specialsound ; 88
dw Script_passtoengine ; 89
dw Script_newloadmap ; 8a
dw Script_pause ; 8b
dw Script_deactivatefacing ; 8c
dw Script_priorityjump ; 8d
dw Script_warpcheck ; 8e
dw Script_ptpriorityjump ; 8f
dw Script_return ; 90
dw Script_end ; 91
dw Script_reloadandreturn ; 92
2018-02-02 18:09:17 -08:00
dw Script_endall ; 93
2015-12-09 08:38:40 -08:00
dw Script_pokemart ; 94
dw Script_elevator ; 95
dw Script_trade ; 96
dw Script_askforphonenumber ; 97
dw Script_phonecall ; 98
dw Script_hangup ; 99
dw Script_describedecoration ; 9a
dw Script_fruittree ; 9b
dw Script_specialphonecall ; 9c
dw Script_checkphonecall ; 9d
dw Script_verbosegiveitem ; 9e
dw Script_verbosegiveitem2 ; 9f
dw Script_swarm ; a0
dw Script_halloffame ; a1
dw Script_credits ; a2
dw Script_warpfacing ; a3
dw Script_battletowertext ; a4
dw Script_landmarktotext ; a5
dw Script_trainerclassname ; a6
dw Script_name ; a7
dw Script_wait ; a8
2018-02-02 18:09:17 -08:00
dw Script_checksave ; a9
2017-02-22 20:49:44 -08:00
StartScript:
2018-01-23 14:39:09 -08:00
ld hl, wScriptFlags
2013-07-04 02:37:20 -07:00
set SCRIPT_RUNNING, [hl]
ret
2017-02-22 20:49:44 -08:00
CheckScript:
2018-01-23 14:39:09 -08:00
ld hl, wScriptFlags
2013-07-04 02:37:20 -07:00
bit SCRIPT_RUNNING, [hl]
ret
2017-02-22 20:49:44 -08:00
StopScript:
2018-01-23 14:39:09 -08:00
ld hl, wScriptFlags
2013-07-04 02:37:20 -07:00
res SCRIPT_RUNNING, [hl]
ret
2017-02-22 20:49:44 -08:00
Script_callasm:
; script command 0xe
; parameters: asm
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld b, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld l, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld h, a
ld a, b
2013-10-01 18:55:40 -07:00
rst FarCall
ret
2017-02-22 20:49:44 -08:00
Script_special:
; script command 0xf
; parameters: predefined_script
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld e, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld d, a
2017-12-24 09:47:30 -08:00
farcall Special
ret
2017-02-22 20:49:44 -08:00
Script_ptcallasm:
; script command 0x10
; parameters: asm
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld l, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld h, a
ld b, [hl]
inc hl
ld a, [hli]
ld h, [hl]
ld l, a
ld a, b
2013-10-01 18:55:40 -07:00
rst FarCall
ret
2017-02-22 20:49:44 -08:00
Script_jumptextfaceplayer:
; script command 0x51
; parameters: text_pointer
2018-01-23 14:39:09 -08:00
ld a, [wScriptBank]
ld [wScriptTextBank], a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld [wScriptTextAddr], a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld [wScriptTextAddr + 1], a
ld b, BANK(JumpTextFacePlayerScript)
ld hl, JumpTextFacePlayerScript
2013-05-03 11:27:24 -07:00
jp ScriptJump
2017-02-22 20:49:44 -08:00
Script_jumptext:
; script command 0x53
; parameters: text_pointer
2018-01-23 14:39:09 -08:00
ld a, [wScriptBank]
ld [wScriptTextBank], a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld [wScriptTextAddr], a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld [wScriptTextAddr + 1], a
ld b, BANK(JumpTextScript)
ld hl, JumpTextScript
2013-05-03 11:27:24 -07:00
jp ScriptJump
2017-02-22 20:49:44 -08:00
JumpTextFacePlayerScript:
faceplayer
2017-02-22 20:49:44 -08:00
JumpTextScript:
2015-12-09 15:25:44 -08:00
opentext
repeattext -1, -1
2015-11-25 07:16:29 -08:00
waitbutton
closetext
end
if _CRYSTAL
2017-02-22 20:49:44 -08:00
Script_farjumptext:
; script command 0x52
; parameters: text_pointer
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld [wScriptTextBank], a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld [wScriptTextAddr], a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld [wScriptTextAddr + 1], a
ld b, BANK(JumpTextScript)
ld hl, JumpTextScript
2013-05-03 11:27:24 -07:00
jp ScriptJump
endc
2017-02-22 20:49:44 -08:00
Script_writetext:
; script command 0x4c
; parameters: text_pointer
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld l, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld h, a
2018-01-23 14:39:09 -08:00
ld a, [wScriptBank]
ld b, a
call MapTextbox
ret
2017-02-22 20:49:44 -08:00
Script_farwritetext:
; script command 0x4b
; parameters: text_pointer
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld b, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld l, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld h, a
call MapTextbox
ret
2017-02-22 20:49:44 -08:00
Script_repeattext:
; script command 0x4d
; parameters: byte, byte
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld l, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld h, a
cp -1
2015-11-16 08:53:26 -08:00
jr nz, .done
ld a, l
cp -1
2015-11-16 08:53:26 -08:00
jr nz, .done
ld hl, wScriptTextBank
ld a, [hli]
ld b, a
ld a, [hli]
ld h, [hl]
ld l, a
call MapTextbox
ret
.done
ret
2017-02-22 20:49:44 -08:00
Script_waitbutton:
; script command 0x54
2015-11-25 07:16:29 -08:00
jp WaitButton
2017-02-22 20:49:44 -08:00
Script_buttonsound:
; script command 0x55
ldh a, [hOAMUpdate]
push af
ld a, $1
ldh [hOAMUpdate], a
call WaitBGMap
2015-11-29 19:29:45 -08:00
call ButtonSound
pop af
ldh [hOAMUpdate], a
ret
2017-02-22 20:49:44 -08:00
Script_yesorno:
; script command 0x4e
2013-12-03 23:49:12 -08:00
call YesNoBox
2015-11-25 07:16:29 -08:00
ld a, FALSE
2015-11-16 08:53:26 -08:00
jr c, .no
2015-11-25 07:16:29 -08:00
ld a, TRUE
.no
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
ret
Script_loadmenu:
; script command 0x4f
; parameters: menu_header
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld l, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld h, a
ld de, LoadMenuHeader
2018-01-23 14:39:09 -08:00
ld a, [wScriptBank]
call Call_a_de
call UpdateSprites
ret
2017-02-22 20:49:44 -08:00
Script_closewindow:
; script command 0x50
call CloseWindow
call UpdateSprites
ret
2017-02-22 20:49:44 -08:00
Script_pokepic:
; script command 0x56
; parameters: pokemon
2013-02-28 13:36:21 -08:00
call GetScriptByte
and a
2014-05-21 13:21:46 -07:00
jr nz, .ok
2018-01-23 14:39:09 -08:00
ld a, [wScriptVar]
2014-05-21 13:21:46 -07:00
.ok
2018-01-23 14:39:09 -08:00
ld [wCurPartySpecies], a
2017-12-24 09:47:30 -08:00
farcall Pokepic
ret
2017-02-22 20:49:44 -08:00
Script_closepokepic:
; script command 0x57
2017-12-24 09:47:30 -08:00
farcall ClosePokepic
ret
2017-02-22 20:49:44 -08:00
Script_verticalmenu:
; script command 0x59
2018-01-23 14:39:09 -08:00
ld a, [wScriptBank]
2015-12-15 15:59:49 -08:00
ld hl, VerticalMenu
2013-10-01 18:55:40 -07:00
rst FarCall
2015-12-15 15:59:49 -08:00
ld a, [wMenuCursorY]
2014-05-21 13:21:46 -07:00
jr nc, .ok
xor a
2014-05-21 13:21:46 -07:00
.ok
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
ret
2017-02-22 20:49:44 -08:00
Script__2dmenu:
; script command 0x58
2018-01-23 14:39:09 -08:00
ld a, [wScriptBank]
2015-12-15 15:59:49 -08:00
ld hl, _2DMenu
2013-10-01 18:55:40 -07:00
rst FarCall
2015-11-01 09:44:30 -08:00
ld a, [wMenuCursorBuffer]
2014-05-21 13:21:46 -07:00
jr nc, .ok
xor a
2014-05-21 13:21:46 -07:00
.ok
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
ret
2017-02-22 20:49:44 -08:00
Script_battletowertext:
; script command 0xa4
; parameters: pointer, memory
call SetUpTextBox
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld c, a
2017-12-24 09:47:30 -08:00
farcall BattleTowerText
ret
2017-02-22 20:49:44 -08:00
Script_verbosegiveitem:
; script command 0x9e
; parameters: item, quantity
call Script_giveitem
call CurItemName
2018-01-23 14:39:09 -08:00
ld de, wStringBuffer1
ld a, 1
call CopyConvertedText
ld b, BANK(GiveItemScript)
ld de, GiveItemScript
jp ScriptCall
2017-02-22 20:49:44 -08:00
ret_96f76:
ret
2017-02-22 20:49:44 -08:00
GiveItemScript:
2015-11-16 08:53:26 -08:00
callasm ret_96f76
2015-01-20 00:01:23 -08:00
writetext ReceivedItemText
iffalse .Full
2015-11-25 07:16:29 -08:00
waitsfx
specialsound
2015-11-25 07:16:29 -08:00
waitbutton
itemnotify
end
.Full:
2015-11-29 19:29:45 -08:00
buttonsound
pocketisfull
end
2017-02-22 20:49:44 -08:00
ReceivedItemText:
2013-12-01 14:54:09 -08:00
text_jump UnknownText_0x1c4719
db "@"
2017-02-22 20:49:44 -08:00
Script_verbosegiveitem2:
; script command 0x9f
; parameters: item, var
2013-02-28 13:36:21 -08:00
call GetScriptByte
cp -1
2014-05-21 13:21:46 -07:00
jr nz, .ok
2018-01-23 14:39:09 -08:00
ld a, [wScriptVar]
2014-05-21 13:21:46 -07:00
.ok
2018-01-23 14:39:09 -08:00
ld [wCurItem], a
2013-02-28 13:36:21 -08:00
call GetScriptByte
call GetVarAction
ld a, [de]
2015-11-01 15:13:31 -08:00
ld [wItemQuantityChangeBuffer], a
2018-01-23 14:39:09 -08:00
ld hl, wNumItems
call ReceiveItem
2015-11-25 07:16:29 -08:00
ld a, TRUE
2014-05-21 13:21:46 -07:00
jr c, .ok2
xor a
2014-05-21 13:21:46 -07:00
.ok2
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
call CurItemName
2018-01-23 14:39:09 -08:00
ld de, wStringBuffer1
ld a, 1
call CopyConvertedText
ld b, BANK(GiveItemScript)
ld de, GiveItemScript
jp ScriptCall
2017-02-22 20:49:44 -08:00
Script_itemnotify:
; script command 0x45
call GetPocketName
call CurItemName
ld b, BANK(PutItemInPocketText)
ld hl, PutItemInPocketText
call MapTextbox
ret
2017-02-22 20:49:44 -08:00
Script_pocketisfull:
; script command 0x46
call GetPocketName
call CurItemName
ld b, BANK(PocketIsFullText)
ld hl, PocketIsFullText
call MapTextbox
ret
2017-02-22 20:49:44 -08:00
Script_specialsound:
; script command 0x88
2017-12-24 09:47:30 -08:00
farcall CheckItemPocket
2015-10-24 07:34:19 -07:00
ld a, [wItemAttributeParamBuffer]
2013-05-02 17:27:39 -07:00
cp TM_HM
ld de, SFX_GET_TM
jr z, .play
ld de, SFX_ITEM
.play
2013-10-08 10:10:36 -07:00
call PlaySFX
2013-05-02 17:27:39 -07:00
call WaitSFX
ret
2017-02-22 20:49:44 -08:00
GetPocketName:
2017-12-24 09:47:30 -08:00
farcall CheckItemPocket
2015-10-24 07:34:19 -07:00
ld a, [wItemAttributeParamBuffer]
dec a
2018-02-27 05:24:29 -08:00
ld hl, ItemPocketNames
2018-01-16 14:27:50 -08:00
maskbits NUM_POCKETS
add a
ld e, a
ld d, 0
add hl, de
ld a, [hli]
ld d, [hl]
ld e, a
2018-01-23 14:39:09 -08:00
ld hl, wStringBuffer3
call CopyName2
ret
2018-02-27 05:24:29 -08:00
INCLUDE "data/items/pocket_names.asm"
2017-02-22 20:49:44 -08:00
CurItemName:
2018-01-23 14:39:09 -08:00
ld a, [wCurItem]
ld [wNamedObjectIndexBuffer], a
call GetItemName
ret
2017-02-22 20:49:44 -08:00
PutItemInPocketText:
2013-12-01 14:54:09 -08:00
text_jump UnknownText_0x1c472c
db "@"
2017-02-22 20:49:44 -08:00
PocketIsFullText:
2013-12-01 14:54:09 -08:00
text_jump UnknownText_0x1c474b
db "@"
2017-02-22 20:49:44 -08:00
Script_pokemart:
; script command 0x94
; parameters: dialog_id, mart_id
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld c, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld e, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld d, a
2018-01-23 14:39:09 -08:00
ld a, [wScriptBank]
ld b, a
2017-12-24 09:47:30 -08:00
farcall OpenMartDialog
ret
2017-02-22 20:49:44 -08:00
Script_elevator:
; script command 0x95
; parameters: floor_list_pointer
xor a
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld e, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld d, a
2018-01-23 14:39:09 -08:00
ld a, [wScriptBank]
ld b, a
2017-12-24 09:47:30 -08:00
farcall Elevator
ret c
2015-11-25 07:16:29 -08:00
ld a, TRUE
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
ret
2017-02-22 20:49:44 -08:00
Script_trade:
; script command 0x96
; parameters: trade_id
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld e, a
2017-12-24 09:47:30 -08:00
farcall NPCTrade
ret
2017-02-22 20:49:44 -08:00
Script_phonecall:
; script command 0x98
; parameters: caller_name
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld e, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld d, a
2018-01-23 14:39:09 -08:00
ld a, [wScriptBank]
ld b, a
2017-12-24 09:47:30 -08:00
farcall PhoneCall
ret
2017-02-22 20:49:44 -08:00
Script_hangup:
; script command 0x99
2017-12-24 09:47:30 -08:00
farcall HangUp
ret
2017-02-22 20:49:44 -08:00
Script_askforphonenumber:
; script command 0x97
; parameters: number
2013-12-03 23:49:12 -08:00
call YesNoBox
2015-11-16 08:53:26 -08:00
jr c, .refused
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld c, a
2017-12-24 09:47:30 -08:00
farcall AddPhoneNumber
2015-11-16 08:53:26 -08:00
jr c, .phonefull
2018-01-11 22:40:20 -08:00
xor a ; PHONE_CONTACT_GOT
2015-11-16 08:53:26 -08:00
jr .done
.phonefull
2018-01-11 22:40:20 -08:00
ld a, PHONE_CONTACTS_FULL
2015-11-16 08:53:26 -08:00
jr .done
.refused
2013-02-28 13:36:21 -08:00
call GetScriptByte
2018-01-11 22:40:20 -08:00
ld a, PHONE_CONTACT_REFUSED
.done
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
ret
2017-02-22 20:49:44 -08:00
Script_describedecoration:
; script command 0x9a
; parameters: byte
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld b, a
2017-12-24 09:47:30 -08:00
farcall DescribeDecoration
ld h, d
ld l, e
2013-05-03 11:27:24 -07:00
jp ScriptJump
2017-02-22 20:49:44 -08:00
Script_fruittree:
; script command 0x9b
; parameters: tree_id
2013-02-28 13:36:21 -08:00
call GetScriptByte
2018-01-23 14:39:09 -08:00
ld [wCurFruitTree], a
2013-05-03 12:40:45 -07:00
ld b, BANK(FruitTreeScript)
ld hl, FruitTreeScript
2013-05-03 11:27:24 -07:00
jp ScriptJump
2017-02-22 20:49:44 -08:00
Script_swarm:
; script command 0xa0
; parameters: flag, map_group, map_id
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld c, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld d, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld e, a
2017-12-24 09:47:30 -08:00
farcall StoreSwarmMapIndices
ret
2017-02-22 20:49:44 -08:00
Script_trainertext:
; script command 0x62
; parameters: which_text
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld c, a
ld b, 0
2018-01-23 14:39:09 -08:00
ld hl, wWalkingX
add hl, bc
2015-12-26 18:59:03 -08:00
add hl, bc
ld a, [hli]
ld h, [hl]
ld l, a
2018-01-23 14:39:09 -08:00
ld a, [wEngineBuffer1]
ld b, a
call MapTextbox
ret
2017-02-22 20:49:44 -08:00
Script_scripttalkafter:
; script command 0x65
2015-12-18 17:07:09 -08:00
ld hl, wScriptAfterPointer
ld a, [hli]
ld h, [hl]
ld l, a
2018-01-23 14:39:09 -08:00
ld a, [wEngineBuffer1]
ld b, a
2013-05-03 11:27:24 -07:00
jp ScriptJump
2017-02-22 20:49:44 -08:00
Script_trainerflagaction:
; script command 0x63
; parameters: action
xor a
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
2015-02-10 15:14:21 -08:00
ld hl, wd041
ld e, [hl]
inc hl
ld d, [hl]
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld b, a
2013-08-23 12:48:26 -07:00
call EventFlagAction
ld a, c
and a
ret z
2015-11-25 07:16:29 -08:00
ld a, TRUE
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
ret
2017-02-22 20:49:44 -08:00
Script_winlosstext:
; script command 0x64
; parameters: win_text_pointer, loss_text_pointer
2017-02-22 20:49:44 -08:00
ld hl, wWinTextPointer
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld [hli], a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld [hli], a
2017-02-22 20:49:44 -08:00
ld hl, wLossTextPointer
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld [hli], a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld [hli], a
ret
2018-02-02 18:09:17 -08:00
Script_endifjustbattled:
; script command 0x66
2015-11-25 07:16:29 -08:00
ld a, [wRunningTrainerBattleScript]
and a
ret z
2013-07-04 02:37:20 -07:00
jp Script_end
2018-02-02 18:09:17 -08:00
Script_checkjustbattled:
; script command 0x67
2015-11-25 07:16:29 -08:00
ld a, TRUE
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
2015-11-25 07:16:29 -08:00
ld a, [wRunningTrainerBattleScript]
and a
ret nz
xor a
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
ret
2017-02-22 20:49:44 -08:00
Script_encountermusic:
; script command 0x80
2018-01-23 14:39:09 -08:00
ld a, [wOtherTrainerClass]
ld e, a
2017-12-24 09:47:30 -08:00
farcall PlayTrainerEncounterMusic
ret
2017-02-22 20:49:44 -08:00
Script_playmapmusic:
; script command 0x82
2014-05-21 13:21:46 -07:00
call PlayMapMusic
ret
2017-02-22 20:49:44 -08:00
Script_playmusic:
; script command 0x7f
; parameters: music_pointer
2014-05-21 13:21:46 -07:00
ld de, MUSIC_NONE
2013-10-08 10:21:15 -07:00
call PlayMusic
xor a
2018-01-23 14:39:09 -08:00
ld [wMusicFade], a
call MaxVolume
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld e, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld d, a
2013-10-08 10:21:15 -07:00
call PlayMusic
ret
2017-02-22 20:49:44 -08:00
Script_musicfadeout:
; script command 0x81
; parameters: music, fadetime
2013-02-28 13:36:21 -08:00
call GetScriptByte
2018-01-23 14:39:09 -08:00
ld [wMusicFadeID], a
2013-02-28 13:36:21 -08:00
call GetScriptByte
2018-01-23 14:39:09 -08:00
ld [wMusicFadeID + 1], a
2013-02-28 13:36:21 -08:00
call GetScriptByte
2018-01-09 14:20:47 -08:00
and $ff ^ (1 << MUSIC_FADE_IN_F)
2018-01-23 14:39:09 -08:00
ld [wMusicFade], a
ret
2017-02-22 20:49:44 -08:00
Script_playsound:
; script command 0x85
; parameters: sound_pointer
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld e, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld d, a
2013-10-08 10:10:36 -07:00
call PlaySFX
ret
2017-02-22 20:49:44 -08:00
Script_waitsfx:
; script command 0x86
2013-05-02 17:27:39 -07:00
call WaitSFX
ret
2017-02-22 20:49:44 -08:00
Script_warpsound:
; script command 0x87
2017-12-24 09:47:30 -08:00
farcall GetWarpSFX
2013-10-08 10:10:36 -07:00
call PlaySFX
ret
2017-02-22 20:49:44 -08:00
Script_cry:
; script command 0x84
; parameters: cry_id
2013-02-28 13:36:21 -08:00
call GetScriptByte
push af
2013-02-28 13:36:21 -08:00
call GetScriptByte
pop af
and a
2014-07-18 10:25:03 -07:00
jr nz, .ok
2018-01-23 14:39:09 -08:00
ld a, [wScriptVar]
2014-07-18 10:25:03 -07:00
.ok
call PlayMonCry
ret
GetScriptObject:
and a ; PLAYER?
ret z
cp LAST_TALKED
ret z
dec a
ret
2017-02-22 20:49:44 -08:00
Script_setlasttalked:
; script command 0x68
; parameters: object_id
2013-02-28 13:36:21 -08:00
call GetScriptByte
call GetScriptObject
ldh [hLastTalked], a
ret
2017-02-22 20:49:44 -08:00
Script_applymovement:
; script command 0x69
; parameters: object_id, data
2013-02-28 13:36:21 -08:00
call GetScriptByte
call GetScriptObject
ld c, a
2017-02-22 20:49:44 -08:00
ApplyMovement:
push bc
ld a, c
2017-12-24 09:47:30 -08:00
farcall SetFlagsForMovement_1
pop bc
2015-11-11 20:38:57 -08:00
push bc
call SetFlagsForMovement_2
pop bc
2015-11-11 20:38:57 -08:00
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld l, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld h, a
2018-01-23 14:39:09 -08:00
ld a, [wScriptBank]
ld b, a
call GetMovementData
ret c
2015-11-11 20:38:57 -08:00
2013-07-04 02:37:20 -07:00
ld a, SCRIPT_WAIT_MOVEMENT
2018-01-23 14:39:09 -08:00
ld [wScriptMode], a
2013-07-04 02:37:20 -07:00
call StopScript
ret
2017-02-22 20:49:44 -08:00
SetFlagsForMovement_2:
2017-12-24 09:47:30 -08:00
farcall _SetFlagsForMovement_2
ret
2017-02-22 20:49:44 -08:00
Script_applymovement2:
; script command 0x6a
; parameters: data
; apply movement to last talked
ldh a, [hLastTalked]
ld c, a
jp ApplyMovement
2017-02-22 20:49:44 -08:00
Script_faceplayer:
; script command 0x6b
ldh a, [hLastTalked]
and a
ret z
ld d, $0
ldh a, [hLastTalked]
ld e, a
2017-12-24 09:47:30 -08:00
farcall GetRelativeFacing
ld a, d
add a
2015-12-26 18:59:03 -08:00
add a
ld e, a
ldh a, [hLastTalked]
ld d, a
call ApplyObjectFacing
ret
Script_faceobject:
; script command 0x6c
; parameters: object1, object2
2013-02-28 13:36:21 -08:00
call GetScriptByte
call GetScriptObject
cp LAST_TALKED
jr c, .ok
ldh a, [hLastTalked]
.ok
ld e, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
call GetScriptObject
cp LAST_TALKED
jr nz, .ok2
ldh a, [hLastTalked]
.ok2
ld d, a
push de
2017-12-24 09:47:30 -08:00
farcall GetRelativeFacing
pop bc
ret c
ld a, d
add a
2015-12-26 18:59:03 -08:00
add a
ld e, a
ld d, c
call ApplyObjectFacing
ret
Script_turnobject:
; script command 0x76
; parameters: object_id, facing
2013-02-28 13:36:21 -08:00
call GetScriptByte
call GetScriptObject
cp LAST_TALKED
jr nz, .ok
ldh a, [hLastTalked]
.ok
ld d, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
add a
2015-12-26 18:59:03 -08:00
add a
ld e, a
call ApplyObjectFacing
ret
ApplyObjectFacing:
ld a, d
push de
2015-11-02 08:15:32 -08:00
call CheckObjectVisibility
2015-11-16 08:53:26 -08:00
jr c, .not_visible
ld hl, OBJECT_SPRITE
add hl, bc
ld a, [hl]
push bc
2015-11-04 17:20:14 -08:00
call DoesSpriteHaveFacings
pop bc
2015-11-04 17:20:14 -08:00
jr c, .not_visible ; STILL_SPRITE
ld hl, OBJECT_FLAGS1
add hl, bc
bit FIXED_FACING_F, [hl]
2015-11-16 08:53:26 -08:00
jr nz, .not_visible
pop de
ld a, e
call SetSpriteDirection
2018-01-23 14:39:09 -08:00
ld hl, wVramState
bit 6, [hl]
2015-11-16 08:53:26 -08:00
jr nz, .text_state
2015-11-02 09:54:27 -08:00
call .DisableTextTiles
.text_state
call UpdateSprites
ret
2015-11-02 09:54:27 -08:00
.not_visible
pop de
scf
ret
2017-02-22 20:49:44 -08:00
.DisableTextTiles:
2015-11-05 11:06:03 -08:00
call LoadMapPart
hlcoord 0, 0
ld bc, SCREEN_WIDTH * SCREEN_HEIGHT
2015-11-02 09:54:27 -08:00
.loop
res 7, [hl]
inc hl
dec bc
ld a, b
or c
2015-11-16 08:53:26 -08:00
jr nz, .loop
ret
2017-02-22 20:49:44 -08:00
Script_variablesprite:
; script command 0x6d
; parameters: byte, sprite
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld e, a
ld d, $0
2018-01-23 14:39:09 -08:00
ld hl, wVariableSprites
add hl, de
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld [hl], a
ret
2017-02-22 20:49:44 -08:00
Script_appear:
; script command 0x6f
; parameters: object_id
2013-02-28 13:36:21 -08:00
call GetScriptByte
call GetScriptObject
call _CopyObjectStruct
ldh a, [hMapObjectIndexBuffer]
ld b, 0 ; clear
call ApplyEventActionAppearDisappear
ret
2017-02-22 20:49:44 -08:00
Script_disappear:
; script command 0x6e
; parameters: object_id
2013-02-28 13:36:21 -08:00
call GetScriptByte
call GetScriptObject
cp LAST_TALKED
jr nz, .ok
ldh a, [hLastTalked]
.ok
call DeleteObjectStruct
ldh a, [hMapObjectIndexBuffer]
ld b, 1 ; set
call ApplyEventActionAppearDisappear
2017-12-24 09:47:30 -08:00
farcall _UpdateSprites
ret
2017-02-22 20:49:44 -08:00
ApplyEventActionAppearDisappear:
push bc
call GetMapObject
ld hl, MAPOBJECT_EVENT_FLAG
add hl, bc
pop bc
ld e, [hl]
inc hl
ld d, [hl]
ld a, -1
cp e
2015-11-16 08:53:26 -08:00
jr nz, .okay
cp d
2015-11-16 08:53:26 -08:00
jr nz, .okay
xor a
ret
.okay
2013-08-23 12:48:26 -07:00
call EventFlagAction
ret
2017-02-22 20:49:44 -08:00
Script_follow:
; script command 0x70
; parameters: object2, object1
2013-02-28 13:36:21 -08:00
call GetScriptByte
call GetScriptObject
ld b, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
call GetScriptObject
ld c, a
2017-12-24 09:47:30 -08:00
farcall StartFollow
ret
2017-02-22 20:49:44 -08:00
Script_stopfollow:
; script command 0x71
2017-12-24 09:47:30 -08:00
farcall StopFollow
ret
Script_moveobject:
; script command 0x72
; parameters: object id, x, y
2013-02-28 13:36:21 -08:00
call GetScriptByte
call GetScriptObject
ld b, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
2015-10-24 07:34:19 -07:00
add 4
ld d, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
2015-10-24 07:34:19 -07:00
add 4
ld e, a
2017-12-24 09:47:30 -08:00
farcall CopyDECoordsToMapObject
ret
Script_writeobjectxy:
; script command 0x73
; parameters: object_id
2013-02-28 13:36:21 -08:00
call GetScriptByte
call GetScriptObject
cp LAST_TALKED
jr nz, .ok
ldh a, [hLastTalked]
.ok
ld b, a
farcall WriteObjectXY
ret
2017-02-22 20:49:44 -08:00
Script_follownotexact:
; script command 0x77
; parameters: object2, object1
2013-02-28 13:36:21 -08:00
call GetScriptByte
call GetScriptObject
ld b, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
call GetScriptObject
ld c, a
2017-12-24 09:47:30 -08:00
farcall FollowNotExact
ret
2017-02-22 20:49:44 -08:00
Script_loademote:
; script command 0x74
; parameters: bubble
2013-02-28 13:36:21 -08:00
call GetScriptByte
2015-10-24 07:34:19 -07:00
cp -1
2015-11-16 08:53:26 -08:00
jr nz, .not_var_emote
2018-01-23 14:39:09 -08:00
ld a, [wScriptVar]
2015-10-24 07:34:19 -07:00
.not_var_emote
ld c, a
2017-12-24 09:47:30 -08:00
farcall LoadEmote
ret
2017-02-22 20:49:44 -08:00
Script_showemote:
; script command 0x75
; parameters: bubble, object_id, time
2013-02-28 13:36:21 -08:00
call GetScriptByte
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
2013-02-28 13:36:21 -08:00
call GetScriptByte
call GetScriptObject
cp LAST_TALKED
jr z, .ok
ldh [hLastTalked], a
.ok
2013-02-28 13:36:21 -08:00
call GetScriptByte
2018-01-23 14:39:09 -08:00
ld [wScriptDelay], a
ld b, BANK(ShowEmoteScript)
ld de, ShowEmoteScript
jp ScriptCall
2017-02-22 20:49:44 -08:00
ShowEmoteScript:
2015-10-31 18:05:02 -07:00
loademote EMOTE_MEM
applymovement2 .Show
pause 0
applymovement2 .Hide
end
.Show:
show_emote
2016-05-14 09:28:00 -07:00
step_sleep 1
step_end
.Hide:
hide_emote
2016-05-14 09:28:00 -07:00
step_sleep 1
step_end
2017-02-22 20:49:44 -08:00
Script_earthquake:
; script command 0x78
; parameters: param
ld hl, EarthquakeMovement
2017-12-09 16:41:03 -08:00
ld de, wEarthquakeMovementDataBuffer
ld bc, EarthquakeMovement.End - EarthquakeMovement
call CopyBytes
2013-02-28 13:36:21 -08:00
call GetScriptByte
2017-12-09 16:41:03 -08:00
ld [wEarthquakeMovementDataBuffer + 1], a
and %00111111
ld [wEarthquakeMovementDataBuffer + 3], a
2015-10-24 07:34:19 -07:00
ld b, BANK(.script)
ld de, .script
jp ScriptCall
2017-02-22 20:49:44 -08:00
.script
2017-12-09 16:41:03 -08:00
applymovement PLAYER, wEarthquakeMovementDataBuffer
end
2017-02-22 20:49:44 -08:00
EarthquakeMovement:
2015-11-11 20:38:57 -08:00
step_shake 16 ; the 16 gets overwritten with the script byte
step_sleep 16 ; the 16 gets overwritten with the lower 6 bits of the script byte
step_end
.End
2017-02-22 20:49:44 -08:00
Script_loadpikachudata:
; script command 0x5a
ld a, PIKACHU
2018-01-23 14:39:09 -08:00
ld [wTempWildMonSpecies], a
ld a, 5
2018-01-23 14:39:09 -08:00
ld [wCurPartyLevel], a
ret
2017-02-22 20:49:44 -08:00
Script_randomwildmon:
; script command 0x5b
xor a
2015-11-25 07:16:29 -08:00
ld [wBattleScriptFlags], a
ret
2017-02-22 20:49:44 -08:00
Script_loadmemtrainer:
; script command 0x5c
2015-10-24 07:34:19 -07:00
ld a, (1 << 7) | 1
2015-11-25 07:16:29 -08:00
ld [wBattleScriptFlags], a
ld a, [wTempTrainerClass]
2018-01-23 14:39:09 -08:00
ld [wOtherTrainerClass], a
ld a, [wTempTrainerID]
2018-01-23 14:39:09 -08:00
ld [wOtherTrainerID], a
ret
2017-02-22 20:49:44 -08:00
Script_loadwildmon:
; script command 0x5d
; parameters: pokemon, level
2015-10-24 07:34:19 -07:00
ld a, (1 << 7)
2015-11-25 07:16:29 -08:00
ld [wBattleScriptFlags], a
2013-02-28 13:36:21 -08:00
call GetScriptByte
2018-01-23 14:39:09 -08:00
ld [wTempWildMonSpecies], a
2013-02-28 13:36:21 -08:00
call GetScriptByte
2018-01-23 14:39:09 -08:00
ld [wCurPartyLevel], a
ret
2017-02-22 20:49:44 -08:00
Script_loadtrainer:
; script command 0x5e
; parameters: trainer_group, trainer_id
2015-10-24 07:34:19 -07:00
ld a, (1 << 7) | 1
2015-11-25 07:16:29 -08:00
ld [wBattleScriptFlags], a
2013-02-28 13:36:21 -08:00
call GetScriptByte
2018-01-23 14:39:09 -08:00
ld [wOtherTrainerClass], a
2013-02-28 13:36:21 -08:00
call GetScriptByte
2018-01-23 14:39:09 -08:00
ld [wOtherTrainerID], a
ret
2017-02-22 20:49:44 -08:00
Script_startbattle:
; script command 0x5f
call BufferScreen
predef StartBattle
2015-10-24 07:34:19 -07:00
ld a, [wBattleResult]
2018-04-05 08:44:02 -07:00
and $ff ^ BATTLERESULT_BITMASK
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
ret
2017-02-22 20:49:44 -08:00
Script_catchtutorial:
; script command 0x61
; parameters: byte
2013-02-28 13:36:21 -08:00
call GetScriptByte
2018-01-23 14:39:09 -08:00
ld [wBattleType], a
call BufferScreen
2017-12-24 09:47:30 -08:00
farcall CatchTutorial
jp Script_reloadmap
2017-02-22 20:49:44 -08:00
Script_reloadmapafterbattle:
; script command 0x60
2015-11-25 07:16:29 -08:00
ld hl, wBattleScriptFlags
ld d, [hl]
2018-04-05 08:44:02 -07:00
ld [hl], 0
2015-10-24 07:34:19 -07:00
ld a, [wBattleResult]
2018-04-05 08:44:02 -07:00
and $ff ^ BATTLERESULT_BITMASK
cp LOSE
2015-11-16 08:53:26 -08:00
jr nz, .notblackedout
2015-11-11 13:11:08 -08:00
ld b, BANK(Script_BattleWhiteout)
ld hl, Script_BattleWhiteout
2013-05-03 11:27:24 -07:00
jp ScriptJump
2015-10-19 13:49:29 -07:00
.notblackedout
bit 0, d
2015-11-16 08:53:26 -08:00
jr z, .was_wild
2017-12-24 09:47:30 -08:00
farcall MomTriesToBuySomething
2015-11-16 08:53:26 -08:00
jr .done
2015-10-19 13:49:29 -07:00
2015-10-24 07:34:19 -07:00
.was_wild
ld a, [wBattleResult]
2018-04-05 08:44:02 -07:00
bit BATTLERESULT_BOX_FULL, a
2015-11-16 08:53:26 -08:00
jr z, .done
2015-10-19 13:49:29 -07:00
ld b, BANK(Script_SpecialBillCall)
ld de, Script_SpecialBillCall
2017-12-24 09:47:30 -08:00
farcall LoadScriptBDE
2015-10-19 13:49:29 -07:00
.done
jp Script_reloadmap
2017-02-22 20:49:44 -08:00
Script_reloadmap:
; script command 0x7b
xor a
2015-11-25 07:16:29 -08:00
ld [wBattleScriptFlags], a
2015-10-24 16:49:19 -07:00
ld a, MAPSETUP_RELOADMAP
ldh [hMapEntryMethod], a
ld a, $1
call LoadMapStatus
2013-07-04 02:37:20 -07:00
call StopScript
ret
2017-02-22 20:49:44 -08:00
Script_scall:
; script command 0x0
; parameters: pointer
2018-01-23 14:39:09 -08:00
ld a, [wScriptBank]
ld b, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld e, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld d, a
jr ScriptCall
2017-02-22 20:49:44 -08:00
Script_farscall:
; script command 0x1
; parameters: pointer
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld b, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld e, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld d, a
jr ScriptCall
2017-02-22 20:49:44 -08:00
Script_ptcall:
; script command 0x2
; parameters: pointer
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld l, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld h, a
ld b, [hl]
inc hl
ld e, [hl]
inc hl
ld d, [hl]
; fallthrough
2017-02-22 20:49:44 -08:00
ScriptCall:
2015-11-16 08:53:26 -08:00
; Bug: The script stack has a capacity of 5 scripts, yet there is
; nothing to stop you from pushing a sixth script. The high part
; of the script address can then be overwritten by modifications
2018-01-23 14:39:09 -08:00
; to wScriptDelay, causing the script to return to the rst/interrupt
2015-11-16 08:53:26 -08:00
; space.
push de
2015-11-16 08:53:26 -08:00
ld hl, wScriptStackSize
ld e, [hl]
inc [hl]
ld d, $0
ld hl, wScriptStack
add hl, de
add hl, de
add hl, de
pop de
2018-01-23 14:39:09 -08:00
ld a, [wScriptBank]
ld [hli], a
2018-01-23 14:39:09 -08:00
ld a, [wScriptPos]
ld [hli], a
2018-01-23 14:39:09 -08:00
ld a, [wScriptPos + 1]
ld [hl], a
ld a, b
2018-01-23 14:39:09 -08:00
ld [wScriptBank], a
ld a, e
2018-01-23 14:39:09 -08:00
ld [wScriptPos], a
ld a, d
2018-01-23 14:39:09 -08:00
ld [wScriptPos + 1], a
ret
2017-02-22 20:49:44 -08:00
CallCallback::
2018-01-23 14:39:09 -08:00
ld a, [wScriptBank]
or $80
2018-01-23 14:39:09 -08:00
ld [wScriptBank], a
jp ScriptCall
2017-02-22 20:49:44 -08:00
Script_jump:
; script command 0x3
; parameters: pointer
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld l, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld h, a
2018-01-23 14:39:09 -08:00
ld a, [wScriptBank]
ld b, a
2013-05-03 11:27:24 -07:00
jp ScriptJump
2017-02-22 20:49:44 -08:00
Script_farjump:
; script command 0x4
; parameters: pointer
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld b, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld l, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld h, a
2013-05-03 11:27:24 -07:00
jp ScriptJump
2017-02-22 20:49:44 -08:00
Script_ptjump:
; script command 0x5
; parameters: pointer
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld l, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld h, a
ld b, [hl]
inc hl
ld a, [hli]
ld h, [hl]
ld l, a
2013-05-03 11:27:24 -07:00
jp ScriptJump
2017-02-22 20:49:44 -08:00
Script_iffalse:
; script command 0x8
; parameters: pointer
2018-01-23 14:39:09 -08:00
ld a, [wScriptVar]
and a
jp nz, SkipTwoScriptBytes
2015-11-16 09:49:42 -08:00
jp Script_jump
2017-02-22 20:49:44 -08:00
Script_iftrue:
; script command 0x9
; parameters: pointer
2018-01-23 14:39:09 -08:00
ld a, [wScriptVar]
and a
2015-11-16 09:49:42 -08:00
jp nz, Script_jump
jp SkipTwoScriptBytes
2018-02-02 18:09:17 -08:00
Script_ifequal:
; script command 0x6
; parameters: byte, pointer
2013-02-28 13:36:21 -08:00
call GetScriptByte
2018-01-23 14:39:09 -08:00
ld hl, wScriptVar
cp [hl]
2015-11-16 09:49:42 -08:00
jr z, Script_jump
2015-11-16 08:53:26 -08:00
jr SkipTwoScriptBytes
2018-02-02 18:09:17 -08:00
Script_ifnotequal:
; script command 0x7
; parameters: byte, pointer
2013-02-28 13:36:21 -08:00
call GetScriptByte
2018-01-23 14:39:09 -08:00
ld hl, wScriptVar
cp [hl]
2015-11-16 09:49:42 -08:00
jr nz, Script_jump
2015-11-16 08:53:26 -08:00
jr SkipTwoScriptBytes
2018-02-02 18:09:17 -08:00
Script_ifgreater:
; script command 0xa
; parameters: byte, pointer
2018-01-23 14:39:09 -08:00
ld a, [wScriptVar]
ld b, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
cp b
2015-11-16 09:49:42 -08:00
jr c, Script_jump
2015-11-16 08:53:26 -08:00
jr SkipTwoScriptBytes
2018-02-02 18:09:17 -08:00
Script_ifless:
; script command 0xb
; parameters: byte, pointer
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld b, a
2018-01-23 14:39:09 -08:00
ld a, [wScriptVar]
cp b
2015-11-16 09:49:42 -08:00
jr c, Script_jump
2015-11-16 08:53:26 -08:00
jr SkipTwoScriptBytes
2017-02-22 20:49:44 -08:00
Script_jumpstd:
; script command 0xc
; parameters: predefined_script
call StdScript
2015-11-16 08:53:26 -08:00
jr ScriptJump
2017-02-22 20:49:44 -08:00
Script_callstd:
; script command 0xd
; parameters: predefined_script
call StdScript
ld d, h
ld e, l
jp ScriptCall
2017-02-22 20:49:44 -08:00
StdScript:
call GetScriptByte
ld e, a
call GetScriptByte
ld d, a
ld hl, StdScripts
add hl, de
add hl, de
add hl, de
ld a, BANK(StdScripts)
call GetFarByte
ld b, a
inc hl
ld a, BANK(StdScripts)
call GetFarHalfword
ret
2017-02-22 20:49:44 -08:00
SkipTwoScriptBytes:
2013-02-28 13:36:21 -08:00
call GetScriptByte
call GetScriptByte
2013-02-28 13:04:26 -08:00
ret
2017-02-22 20:49:44 -08:00
ScriptJump:
2013-02-28 13:04:26 -08:00
ld a, b
2018-01-23 14:39:09 -08:00
ld [wScriptBank], a
2013-02-28 13:04:26 -08:00
ld a, l
2018-01-23 14:39:09 -08:00
ld [wScriptPos], a
2013-02-28 13:04:26 -08:00
ld a, h
2018-01-23 14:39:09 -08:00
ld [wScriptPos + 1], a
2013-02-28 13:04:26 -08:00
ret
2017-02-22 20:49:44 -08:00
Script_priorityjump:
; script command 0x8d
; parameters: pointer
2018-01-23 14:39:09 -08:00
ld a, [wScriptBank]
ld [wPriorityScriptBank], a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld [wPriorityScriptAddr], a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld [wPriorityScriptAddr + 1], a
2018-01-23 14:39:09 -08:00
ld hl, wScriptFlags
set 3, [hl]
ret
Script_checkscene:
; script command 0x13
call CheckScenes
jr z, .no_scene
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
ret
2015-11-16 09:49:42 -08:00
.no_scene
ld a, $ff
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
ret
Script_checkmapscene:
; script command 0x11
; parameters: map_group, map_id
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld b, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld c, a
call GetMapSceneID
ld a, d
or e
jr z, .no_scene
ld a, [de]
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
ret
2015-11-16 09:49:42 -08:00
.no_scene
ld a, $ff
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
ret
Script_setscene:
; script command 0x14
; parameters: scene_id
2018-01-23 14:39:09 -08:00
ld a, [wMapGroup]
ld b, a
2018-01-23 14:39:09 -08:00
ld a, [wMapNumber]
ld c, a
jr DoScene
Script_setmapscene:
; script command 0x12
; parameters: map_group, map_id, scene_id
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld b, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld c, a
DoScene:
call GetMapSceneID
ld a, d
or e
jr z, .no_scene
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld [de], a
.no_scene
ret
2017-02-22 20:49:44 -08:00
Script_copybytetovar:
; script command 0x19
; parameters: address
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld l, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld h, a
ld a, [hl]
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
ret
2017-02-22 20:49:44 -08:00
Script_copyvartobyte:
; script command 0x1a
; parameters: address
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld l, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld h, a
2018-01-23 14:39:09 -08:00
ld a, [wScriptVar]
ld [hl], a
ret
2017-02-22 20:49:44 -08:00
Script_loadvar:
; script command 0x1b
; parameters: address, value
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld l, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld h, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld [hl], a
ret
2017-02-22 20:49:44 -08:00
Script_writebyte:
; script command 0x15
; parameters: value
2013-02-28 13:36:21 -08:00
call GetScriptByte
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
ret
2017-02-22 20:49:44 -08:00
Script_addvar:
; script command 0x16
; parameters: value
2013-02-28 13:36:21 -08:00
call GetScriptByte
2018-01-23 14:39:09 -08:00
ld hl, wScriptVar
add [hl]
ld [hl], a
ret
2017-02-22 20:49:44 -08:00
Script_random:
; script command 0x17
; parameters: input
2013-02-28 13:36:21 -08:00
call GetScriptByte
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
and a
ret z
2015-11-16 08:53:26 -08:00
ld c, a
2015-11-16 08:53:26 -08:00
call .Divide256byC
and a
2015-11-16 08:53:26 -08:00
jr z, .no_restriction ; 256 % b == 0
ld b, a
xor a
sub b
ld b, a
2015-11-16 08:53:26 -08:00
.loop
push bc
call Random
pop bc
ldh a, [hRandomAdd]
cp b
2015-11-16 08:53:26 -08:00
jr nc, .loop
jr .finish
.no_restriction
push bc
call Random
pop bc
ldh a, [hRandomAdd]
2015-11-16 08:53:26 -08:00
.finish
push af
2018-01-23 14:39:09 -08:00
ld a, [wScriptVar]
ld c, a
pop af
call SimpleDivide
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
ret
2017-02-22 20:49:44 -08:00
.Divide256byC:
xor a
ld b, a
sub c
2015-11-16 08:53:26 -08:00
.mod_loop
inc b
sub c
2015-11-16 08:53:26 -08:00
jr nc, .mod_loop
dec b
add c
ret
2017-02-22 20:49:44 -08:00
Script_checkcode:
; script command 0x1c
; parameters: variable_id
2013-02-28 13:36:21 -08:00
call GetScriptByte
call GetVarAction
ld a, [de]
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
ret
2017-02-22 20:49:44 -08:00
Script_writevarcode:
; script command 0x1d
; parameters: variable_id
2013-02-28 13:36:21 -08:00
call GetScriptByte
call GetVarAction
2018-01-23 14:39:09 -08:00
ld a, [wScriptVar]
ld [de], a
ret
2017-02-22 20:49:44 -08:00
Script_writecode:
; script command 0x1e
; parameters: variable_id, value
2013-02-28 13:36:21 -08:00
call GetScriptByte
call GetVarAction
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld [de], a
ret
2017-02-22 20:49:44 -08:00
GetVarAction:
ld c, a
2017-12-24 09:47:30 -08:00
farcall _GetVarAction
ret
2017-02-22 20:49:44 -08:00
Script_checkver:
; script command 0x18
2018-01-08 21:51:53 -08:00
ld a, [.gs_version]
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
ret
2018-01-08 21:51:53 -08:00
.gs_version:
db GS_VERSION
2017-02-22 20:49:44 -08:00
Script_pokenamemem:
; script command 0x40
2018-01-23 14:39:09 -08:00
; parameters: pokemon (0 aka USE_SCRIPT_VAR to use wScriptVar), memory
2013-02-28 13:36:21 -08:00
call GetScriptByte
and a
2015-11-16 08:53:26 -08:00
jr nz, .gotit
2018-01-23 14:39:09 -08:00
ld a, [wScriptVar]
.gotit
ld [wNamedObjectIndexBuffer], a
call GetPokemonName
2018-01-23 14:39:09 -08:00
ld de, wStringBuffer1
2017-02-22 20:49:44 -08:00
ConvertMemToText:
2013-02-28 13:36:21 -08:00
call GetScriptByte
2018-01-11 22:40:20 -08:00
cp NUM_MEM_BUFFERS
2014-09-30 11:19:33 -07:00
jr c, .ok
xor a
2014-09-30 11:19:33 -07:00
.ok
2017-02-22 20:49:44 -08:00
CopyConvertedText:
2018-01-23 14:39:09 -08:00
ld hl, wStringBuffer3
ld bc, wStringBuffer4 - wStringBuffer3
call AddNTimes
call CopyName2
ret
2017-02-22 20:49:44 -08:00
Script_itemtotext:
; script command 0x41
2018-01-23 14:39:09 -08:00
; parameters: item (0 aka USE_SCRIPT_VAR to use wScriptVar), memory
2013-02-28 13:36:21 -08:00
call GetScriptByte
2018-01-11 22:40:20 -08:00
and a ; USE_SCRIPT_VAR
2015-11-16 08:53:26 -08:00
jr nz, .ok
2018-01-23 14:39:09 -08:00
ld a, [wScriptVar]
.ok
ld [wNamedObjectIndexBuffer], a
call GetItemName
2018-01-23 14:39:09 -08:00
ld de, wStringBuffer1
2015-11-16 08:53:26 -08:00
jr ConvertMemToText
2017-02-22 20:49:44 -08:00
Script_mapnametotext:
; script command 0x42
; parameters: memory
2018-01-23 14:39:09 -08:00
ld a, [wMapGroup]
ld b, a
2018-01-23 14:39:09 -08:00
ld a, [wMapNumber]
ld c, a
call GetWorldMapLocation
2017-02-22 20:49:44 -08:00
ConvertLandmarkToText:
ld e, a
2017-12-24 09:47:30 -08:00
farcall GetLandmarkName
2018-01-23 14:39:09 -08:00
ld de, wStringBuffer1
jp ConvertMemToText
2017-02-22 20:49:44 -08:00
Script_landmarktotext:
; script command 0xa5
; parameters: id, memory
2013-02-28 13:36:21 -08:00
call GetScriptByte
2015-11-16 08:53:26 -08:00
jr ConvertLandmarkToText
2017-02-22 20:49:44 -08:00
Script_trainertotext:
; script command 0x43
; parameters: trainer_id, trainer_group, memory
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld c, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld b, a
2017-12-24 09:47:30 -08:00
farcall GetTrainerName
2015-11-16 08:53:26 -08:00
jr ConvertMemToText
2017-02-22 20:49:44 -08:00
Script_name:
; script command 0xa7
; parameters: type, id, memory
2013-02-28 13:36:21 -08:00
call GetScriptByte
2015-10-17 14:18:52 -07:00
ld [wNamedObjectTypeBuffer], a
2017-02-22 20:49:44 -08:00
ContinueToGetName:
2013-02-28 13:36:21 -08:00
call GetScriptByte
2018-01-23 14:39:09 -08:00
ld [wCurSpecies], a
call GetName
2018-01-23 14:39:09 -08:00
ld de, wStringBuffer1
jp ConvertMemToText
2017-02-22 20:49:44 -08:00
Script_trainerclassname:
; script command 0xa6
; parameters: id, memory
ld a, TRAINER_NAME
2015-10-17 14:18:52 -07:00
ld [wNamedObjectTypeBuffer], a
2015-11-16 08:53:26 -08:00
jr ContinueToGetName
2017-02-22 20:49:44 -08:00
Script_readmoney:
; script command 0x3d
; parameters: account, memory
call ResetStringBuffer1
call GetMoneyAccount
2018-01-23 14:39:09 -08:00
ld hl, wStringBuffer1
lb bc, PRINTNUM_RIGHTALIGN | 3, 6
call PrintNum
2018-01-23 14:39:09 -08:00
ld de, wStringBuffer1
jp ConvertMemToText
2017-02-22 20:49:44 -08:00
Script_readcoins:
; script command 0x3e
; parameters: memory
call ResetStringBuffer1
2018-01-23 14:39:09 -08:00
ld hl, wStringBuffer1
ld de, wCoins
lb bc, PRINTNUM_RIGHTALIGN | 2, 6
call PrintNum
2018-01-23 14:39:09 -08:00
ld de, wStringBuffer1
jp ConvertMemToText
2018-01-11 22:40:20 -08:00
Script_vartomem:
; script command 0x3f
; parameters: memory
call ResetStringBuffer1
2018-01-23 14:39:09 -08:00
ld de, wScriptVar
ld hl, wStringBuffer1
lb bc, PRINTNUM_RIGHTALIGN | 1, 3
call PrintNum
2018-01-23 14:39:09 -08:00
ld de, wStringBuffer1
jp ConvertMemToText
2017-02-22 20:49:44 -08:00
ResetStringBuffer1:
2018-01-23 14:39:09 -08:00
ld hl, wStringBuffer1
ld bc, NAME_LENGTH
ld a, "@"
call ByteFill
ret
2017-02-22 20:49:44 -08:00
Script_stringtotext:
; script command 0x44
; parameters: text_pointer, memory
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld e, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld d, a
2018-01-23 14:39:09 -08:00
ld a, [wScriptBank]
ld hl, CopyName1
2013-10-01 18:55:40 -07:00
rst FarCall
2018-01-23 14:39:09 -08:00
ld de, wStringBuffer2
jp ConvertMemToText
Script_givepokemail:
; script command 0x2f
; parameters: pointer
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld l, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld h, a
2018-01-23 14:39:09 -08:00
ld a, [wScriptBank]
call GetFarByte
ld b, a
push bc
inc hl
ld bc, MAIL_MSG_LENGTH
2015-02-10 15:14:21 -08:00
ld de, wd002
2018-01-23 14:39:09 -08:00
ld a, [wScriptBank]
call FarCopyBytes
pop bc
farcall GivePokeMail
ret
Script_checkpokemail:
; script command 0x30
; parameters: pointer
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld e, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld d, a
2018-01-23 14:39:09 -08:00
ld a, [wScriptBank]
ld b, a
farcall CheckPokeMail
ret
2017-02-22 20:49:44 -08:00
Script_giveitem:
; script command 0x1f
; parameters: item, quantity
2013-02-28 13:36:21 -08:00
call GetScriptByte
2015-11-03 12:05:19 -08:00
cp ITEM_FROM_MEM
2015-11-16 08:53:26 -08:00
jr nz, .ok
2018-01-23 14:39:09 -08:00
ld a, [wScriptVar]
.ok
2018-01-23 14:39:09 -08:00
ld [wCurItem], a
2013-02-28 13:36:21 -08:00
call GetScriptByte
2015-11-01 15:13:31 -08:00
ld [wItemQuantityChangeBuffer], a
2018-01-23 14:39:09 -08:00
ld hl, wNumItems
call ReceiveItem
2015-11-16 08:53:26 -08:00
jr nc, .full
2015-11-25 07:16:29 -08:00
ld a, TRUE
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
ret
.full
xor a
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
ret
2017-02-22 20:49:44 -08:00
Script_takeitem:
; script command 0x20
; parameters: item, quantity
xor a
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
2013-02-28 13:36:21 -08:00
call GetScriptByte
2018-01-23 14:39:09 -08:00
ld [wCurItem], a
2013-02-28 13:36:21 -08:00
call GetScriptByte
2015-11-01 15:13:31 -08:00
ld [wItemQuantityChangeBuffer], a
2015-11-03 19:35:36 -08:00
ld a, -1
2018-01-23 14:39:09 -08:00
ld [wCurItemQuantity], a
ld hl, wNumItems
call TossItem
ret nc
2015-11-25 07:16:29 -08:00
ld a, TRUE
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
ret
2017-02-22 20:49:44 -08:00
Script_checkitem:
; script command 0x21
; parameters: item
xor a
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
2013-02-28 13:36:21 -08:00
call GetScriptByte
2018-01-23 14:39:09 -08:00
ld [wCurItem], a
ld hl, wNumItems
call CheckItem
ret nc
2015-11-25 07:16:29 -08:00
ld a, TRUE
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
ret
2017-02-22 20:49:44 -08:00
Script_givemoney:
; script command 0x22
; parameters: account, money
call GetMoneyAccount
call LoadMoneyAmountToMem
2017-12-24 09:47:30 -08:00
farcall GiveMoney
ret
2017-02-22 20:49:44 -08:00
Script_takemoney:
; script command 0x23
; parameters: account, money
call GetMoneyAccount
call LoadMoneyAmountToMem
2017-12-24 09:47:30 -08:00
farcall TakeMoney
ret
2017-02-22 20:49:44 -08:00
Script_checkmoney:
; script command 0x24
; parameters: account, money
call GetMoneyAccount
call LoadMoneyAmountToMem
2017-12-24 09:47:30 -08:00
farcall CompareMoney
2017-02-22 20:49:44 -08:00
CompareMoneyAction:
2018-01-11 22:40:20 -08:00
jr c, .less
jr z, .exact
ld a, HAVE_MORE
2014-05-21 13:21:46 -07:00
jr .done
2018-01-11 22:40:20 -08:00
.exact
ld a, HAVE_AMOUNT
2014-05-21 13:21:46 -07:00
jr .done
2018-01-11 22:40:20 -08:00
.less
ld a, HAVE_LESS
2014-05-21 13:21:46 -07:00
.done
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
ret
2017-02-22 20:49:44 -08:00
GetMoneyAccount:
call GetScriptByte
and a
2018-01-23 14:39:09 -08:00
ld de, wMoney ; YOUR_MONEY
ret z
2018-01-11 22:40:20 -08:00
ld de, wMomsMoney ; MOMS_MONEY
ret
2017-02-22 20:49:44 -08:00
LoadMoneyAmountToMem:
ld bc, hMoneyTemp
push bc
call GetScriptByte
ld [bc], a
inc bc
call GetScriptByte
ld [bc], a
inc bc
call GetScriptByte
ld [bc], a
pop bc
ret
2017-02-22 20:49:44 -08:00
Script_givecoins:
; script command 0x25
; parameters: coins
call LoadCoinAmountToMem
2017-12-24 09:47:30 -08:00
farcall GiveCoins
ret
2017-02-22 20:49:44 -08:00
Script_takecoins:
; script command 0x26
; parameters: coins
call LoadCoinAmountToMem
2017-12-24 09:47:30 -08:00
farcall TakeCoins
ret
2017-02-22 20:49:44 -08:00
Script_checkcoins:
; script command 0x27
; parameters: coins
call LoadCoinAmountToMem
2017-12-24 09:47:30 -08:00
farcall CheckCoins
jr CompareMoneyAction
2017-02-22 20:49:44 -08:00
LoadCoinAmountToMem:
2013-02-28 13:36:21 -08:00
call GetScriptByte
ldh [hMoneyTemp + 1], a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ldh [hMoneyTemp], a
ld bc, hMoneyTemp
ret
2017-02-22 20:49:44 -08:00
Script_checktime:
; script command 0x2b
; parameters: time
xor a
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
2017-12-24 09:47:30 -08:00
farcall CheckTime
2013-02-28 13:36:21 -08:00
call GetScriptByte
and c
ret z
2015-11-25 07:16:29 -08:00
ld a, TRUE
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
ret
2017-02-22 20:49:44 -08:00
Script_checkpoke:
; script command 0x2c
; parameters: pokemon
xor a
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
2013-02-28 13:36:21 -08:00
call GetScriptByte
2018-01-23 14:39:09 -08:00
ld hl, wPartySpecies
2014-05-21 13:21:46 -07:00
ld de, 1
call IsInArray
ret nc
2015-11-25 07:16:29 -08:00
ld a, TRUE
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
ret
2017-02-22 20:49:44 -08:00
Script_addcellnum:
; script command 0x28
; parameters: person
xor a
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld c, a
2017-12-24 09:47:30 -08:00
farcall AddPhoneNumber
ret nc
2015-11-25 07:16:29 -08:00
ld a, TRUE
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
ret
2017-02-22 20:49:44 -08:00
Script_delcellnum:
; script command 0x29
; parameters: person
xor a
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld c, a
2017-12-24 09:47:30 -08:00
farcall DelCellNum
ret nc
2015-11-25 07:16:29 -08:00
ld a, TRUE
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
ret
2017-02-22 20:49:44 -08:00
Script_checkcellnum:
; script command 0x2a
; parameters: person
; returns false if the cell number is not in your phone
xor a
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld c, a
2017-12-24 09:47:30 -08:00
farcall CheckCellNum
ret nc
2015-11-25 07:16:29 -08:00
ld a, TRUE
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
ret
2017-02-22 20:49:44 -08:00
Script_specialphonecall:
; script command 0x9c
; parameters: call_id
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld [wSpecialPhoneCallID], a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld [wSpecialPhoneCallID + 1], a
ret
2017-02-22 20:49:44 -08:00
Script_checkphonecall:
; script command 0x9d
; returns false if no special phone call is stored
ld a, [wSpecialPhoneCallID]
and a
2014-05-21 13:21:46 -07:00
jr z, .ok
2015-11-25 07:16:29 -08:00
ld a, TRUE
2014-05-21 13:21:46 -07:00
.ok
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
ret
2017-02-22 20:49:44 -08:00
Script_givepoke:
; script command 0x2d
; parameters: pokemon, level, item, trainer, trainer_name_pointer, pkmn_nickname
2013-02-28 13:36:21 -08:00
call GetScriptByte
2018-01-23 14:39:09 -08:00
ld [wCurPartySpecies], a
2013-02-28 13:36:21 -08:00
call GetScriptByte
2018-01-23 14:39:09 -08:00
ld [wCurPartyLevel], a
2013-02-28 13:36:21 -08:00
call GetScriptByte
2018-01-23 14:39:09 -08:00
ld [wCurItem], a
2013-02-28 13:36:21 -08:00
call GetScriptByte
and a
ld b, a
2014-05-21 13:21:46 -07:00
jr z, .ok
2018-01-23 14:39:09 -08:00
ld hl, wScriptPos
ld e, [hl]
inc hl
ld d, [hl]
2013-02-28 13:36:21 -08:00
call GetScriptByte
call GetScriptByte
call GetScriptByte
call GetScriptByte
2014-05-21 13:21:46 -07:00
.ok
2017-12-24 09:47:30 -08:00
farcall GivePoke
ld a, b
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
ret
2017-02-22 20:49:44 -08:00
Script_giveegg:
; script command 0x2e
; parameters: pokemon, level
2018-01-23 14:39:09 -08:00
; if no room in the party, return 0 in wScriptVar; else, return 2
xor a ; PARTYMON
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
ld [wMonType], a
2013-02-28 13:36:21 -08:00
call GetScriptByte
2018-01-23 14:39:09 -08:00
ld [wCurPartySpecies], a
2013-02-28 13:36:21 -08:00
call GetScriptByte
2018-01-23 14:39:09 -08:00
ld [wCurPartyLevel], a
farcall GiveEgg
ret nc
ld a, 2
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
ret
2017-02-22 20:49:44 -08:00
Script_setevent:
; script command 0x33
; parameters: bit_number
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld e, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld d, a
ld b, SET_FLAG
2013-08-23 12:48:26 -07:00
call EventFlagAction
ret
2017-02-22 20:49:44 -08:00
Script_clearevent:
; script command 0x32
; parameters: bit_number
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld e, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld d, a
ld b, RESET_FLAG
2013-08-23 12:48:26 -07:00
call EventFlagAction
ret
2017-02-22 20:49:44 -08:00
Script_checkevent:
; script command 0x31
; parameters: bit_number
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld e, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld d, a
ld b, CHECK_FLAG
2013-08-23 12:48:26 -07:00
call EventFlagAction
ld a, c
and a
2015-11-16 08:53:26 -08:00
jr z, .false
2015-11-25 07:16:29 -08:00
ld a, TRUE
.false
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
ret
2017-02-22 20:49:44 -08:00
Script_setflag:
; script command 0x36
; parameters: bit_number
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld e, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld d, a
2015-11-25 07:16:29 -08:00
ld b, SET_FLAG
call _EngineFlagAction
ret
2017-02-22 20:49:44 -08:00
Script_clearflag:
; script command 0x35
; parameters: bit_number
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld e, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld d, a
2015-11-25 07:16:29 -08:00
ld b, RESET_FLAG
call _EngineFlagAction
ret
2017-02-22 20:49:44 -08:00
Script_checkflag:
; script command 0x34
; parameters: bit_number
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld e, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld d, a
2018-01-11 22:40:20 -08:00
ld b, CHECK_FLAG
call _EngineFlagAction
ld a, c
and a
2015-11-16 08:53:26 -08:00
jr z, .false
2015-11-25 07:16:29 -08:00
ld a, TRUE
.false
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
ret
2017-02-22 20:49:44 -08:00
_EngineFlagAction:
2017-12-24 09:47:30 -08:00
farcall EngineFlagAction
ret
2017-02-22 20:49:44 -08:00
Script_wildoff:
; script command 0x38
ld hl, wStatusFlags
2018-01-22 12:40:43 -08:00
set STATUSFLAGS_NO_WILD_ENCOUNTERS_F, [hl]
ret
2017-02-22 20:49:44 -08:00
Script_wildon:
; script command 0x37
ld hl, wStatusFlags
2018-01-22 12:40:43 -08:00
res STATUSFLAGS_NO_WILD_ENCOUNTERS_F, [hl]
ret
2017-02-22 20:49:44 -08:00
Script_xycompare:
; script command 0x39
; parameters: pointer
2013-02-28 13:36:21 -08:00
call GetScriptByte
2016-01-12 09:46:18 -08:00
ld [wXYComparePointer], a
2013-02-28 13:36:21 -08:00
call GetScriptByte
2016-01-12 09:46:18 -08:00
ld [wXYComparePointer + 1], a
ret
2017-02-22 20:49:44 -08:00
Script_warpfacing:
; script command 0xa3
; parameters: facing, map_group, map_id, x, y
2013-02-28 13:36:21 -08:00
call GetScriptByte
2018-01-16 14:27:50 -08:00
maskbits NUM_DIRECTIONS
ld c, a
2015-10-24 07:34:19 -07:00
ld a, [wPlayerSpriteSetupFlags]
2018-01-22 11:34:55 -08:00
set PLAYERSPRITESETUP_CUSTOM_FACING_F, a
or c
2015-10-24 07:34:19 -07:00
ld [wPlayerSpriteSetupFlags], a
; fall through
2017-02-22 20:49:44 -08:00
Script_warp:
; script command 0x3c
; parameters: map_group, map_id, x, y
; This seems to be some sort of error handling case.
2013-02-28 13:36:21 -08:00
call GetScriptByte
and a
2015-11-16 08:53:26 -08:00
jr z, .not_ok
2018-01-23 14:39:09 -08:00
ld [wMapGroup], a
2013-02-28 13:36:21 -08:00
call GetScriptByte
2018-01-23 14:39:09 -08:00
ld [wMapNumber], a
2013-02-28 13:36:21 -08:00
call GetScriptByte
2018-01-23 14:39:09 -08:00
ld [wXCoord], a
2013-02-28 13:36:21 -08:00
call GetScriptByte
2018-01-23 14:39:09 -08:00
ld [wYCoord], a
ld a, -1
2018-01-23 14:39:09 -08:00
ld [wDefaultSpawnpoint], a
2015-10-24 16:49:19 -07:00
ld a, MAPSETUP_WARP
ldh [hMapEntryMethod], a
ld a, 1
call LoadMapStatus
2013-07-04 02:37:20 -07:00
call StopScript
ret
2015-11-11 20:38:57 -08:00
.not_ok
2013-02-28 13:36:21 -08:00
call GetScriptByte
call GetScriptByte
call GetScriptByte
ld a, -1
2018-01-23 14:39:09 -08:00
ld [wDefaultSpawnpoint], a
2015-10-24 16:49:19 -07:00
ld a, MAPSETUP_BADWARP
ldh [hMapEntryMethod], a
ld a, 1
call LoadMapStatus
2013-07-04 02:37:20 -07:00
call StopScript
ret
2017-02-22 20:49:44 -08:00
Script_warpmod:
; script command 0x3a
; parameters: warp_id, map_group, map_id
2013-02-28 13:36:21 -08:00
call GetScriptByte
2018-01-23 14:39:09 -08:00
ld [wBackupWarpNumber], a
2013-02-28 13:36:21 -08:00
call GetScriptByte
2018-01-23 14:39:09 -08:00
ld [wBackupMapGroup], a
2013-02-28 13:36:21 -08:00
call GetScriptByte
2018-01-23 14:39:09 -08:00
ld [wBackupMapNumber], a
ret
2017-02-22 20:49:44 -08:00
Script_blackoutmod:
; script command 0x3b
; parameters: map_group, map_id
2013-02-28 13:36:21 -08:00
call GetScriptByte
2015-11-11 13:11:08 -08:00
ld [wLastSpawnMapGroup], a
2013-02-28 13:36:21 -08:00
call GetScriptByte
2015-11-11 13:11:08 -08:00
ld [wLastSpawnMapNumber], a
ret
2017-02-22 20:49:44 -08:00
Script_dontrestartmapmusic:
; script command 0x83
ld a, 1
ld [wDontPlayMapMusicOnReload], a
ret
2017-02-22 20:49:44 -08:00
Script_writecmdqueue:
; script command 0x7d
; parameters: queue_pointer
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld e, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld d, a
2018-01-23 14:39:09 -08:00
ld a, [wScriptBank]
ld b, a
2017-12-24 09:47:30 -08:00
farcall WriteCmdQueue ; no need to farcall
ret
2017-02-22 20:49:44 -08:00
Script_delcmdqueue:
; script command 0x7e
; parameters: byte
xor a
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld b, a
2017-12-24 09:47:30 -08:00
farcall DelCmdQueue ; no need to farcall
ret c
ld a, 1
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
ret
2017-02-22 20:49:44 -08:00
Script_changemap:
; script command 0x79
; parameters: map_data_pointer
2013-02-28 13:36:21 -08:00
call GetScriptByte
2018-01-23 14:39:09 -08:00
ld [wMapBlocksBank], a
2013-02-28 13:36:21 -08:00
call GetScriptByte
2018-01-23 14:39:09 -08:00
ld [wMapBlocksPointer], a
2013-02-28 13:36:21 -08:00
call GetScriptByte
2018-01-23 14:39:09 -08:00
ld [wMapBlocksPointer + 1], a
call ChangeMap
call BufferScreen
ret
2017-02-22 20:49:44 -08:00
Script_changeblock:
; script command 0x7a
; parameters: x, y, block
2013-02-28 13:36:21 -08:00
call GetScriptByte
add 4
ld d, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
add 4
ld e, a
call GetBlockLocation
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld [hl], a
call BufferScreen
ret
2017-02-22 20:49:44 -08:00
Script_reloadmappart::
; script command 0x7c
xor a
ldh [hBGMapMode], a
2015-11-11 11:12:46 -08:00
call OverworldTextModeSwitch
2015-11-19 15:07:20 -08:00
call GetMovementPermissions
2017-12-24 09:47:30 -08:00
farcall ReloadMapPart
call UpdateSprites
ret
2017-02-22 20:49:44 -08:00
Script_warpcheck:
; script command 0x8e
2015-11-12 08:10:19 -08:00
call WarpCheck
ret nc
2017-12-24 09:47:30 -08:00
farcall EnableEvents
ret
2018-01-02 07:04:21 -08:00
Script_enableevents:
; unused
2017-12-24 09:47:30 -08:00
farcall EnableEvents
ret
2017-02-22 20:49:44 -08:00
Script_newloadmap:
; script command 0x8a
; parameters: which_method
2013-02-28 13:36:21 -08:00
call GetScriptByte
ldh [hMapEntryMethod], a
ld a, 1
call LoadMapStatus
2013-07-04 02:37:20 -07:00
call StopScript
ret
2017-02-22 20:49:44 -08:00
Script_reloadandreturn:
; script command 0x92
call Script_newloadmap
2013-07-04 02:37:20 -07:00
jp Script_end
2018-02-02 18:09:17 -08:00
Script_opentext:
; script command 0x47
2015-12-09 15:25:44 -08:00
call OpenText
ret
2017-02-22 20:49:44 -08:00
Script_refreshscreen:
; script command 0x48
; parameters: dummy
call RefreshScreen
2013-02-28 13:36:21 -08:00
call GetScriptByte
ret
2017-02-22 20:49:44 -08:00
Script_loadbytec2cf:
; script command 0x4a
; parameters: byte
2013-02-28 13:36:21 -08:00
call GetScriptByte
2015-02-10 15:14:21 -08:00
ld [wc2cf], a
ret
db closetext_command ; unused
2017-02-22 20:49:44 -08:00
Script_closetext:
; script command 0x49
2016-05-04 19:34:09 -07:00
call _OpenAndCloseMenu_HDMATransferTileMapAndAttrMap
2015-11-25 07:16:29 -08:00
call CloseText
ret
2017-02-22 20:49:44 -08:00
Script_passtoengine:
; script command 0x89
; parameters: data_pointer
2013-02-28 13:36:21 -08:00
call GetScriptByte
push af
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld l, a
2013-02-28 13:36:21 -08:00
call GetScriptByte
ld h, a
pop af
call StartAutoInput
ret
2017-02-22 20:49:44 -08:00
Script_pause:
; script command 0x8b
; parameters: length
2013-02-28 13:36:21 -08:00
call GetScriptByte
and a
2015-11-16 08:53:26 -08:00
jr z, .loop
2018-01-23 14:39:09 -08:00
ld [wScriptDelay], a
.loop
2013-07-04 02:37:20 -07:00
ld c, 2
call DelayFrames
2018-01-23 14:39:09 -08:00
ld hl, wScriptDelay
dec [hl]
2015-11-16 08:53:26 -08:00
jr nz, .loop
ret
2017-02-22 20:49:44 -08:00
Script_deactivatefacing:
; script command 0x8c
; parameters: time
2013-02-28 13:36:21 -08:00
call GetScriptByte
and a
2015-11-16 08:53:26 -08:00
jr z, .no_time
2018-01-23 14:39:09 -08:00
ld [wScriptDelay], a
.no_time
2013-07-04 02:37:20 -07:00
ld a, SCRIPT_WAIT
2018-01-23 14:39:09 -08:00
ld [wScriptMode], a
2013-07-04 02:37:20 -07:00
call StopScript
ret
2017-02-22 20:49:44 -08:00
Script_ptpriorityjump:
; script command 0x8f
; parameters: pointer
2013-07-04 02:37:20 -07:00
call StopScript
2015-11-16 09:49:42 -08:00
jp Script_jump
2017-02-22 20:49:44 -08:00
Script_end:
; script command 0x91
2013-07-04 02:37:20 -07:00
call ExitScriptSubroutine
jr c, .resume
ret
2015-11-11 20:38:57 -08:00
.resume
xor a
2018-01-23 14:39:09 -08:00
ld [wScriptRunning], a
2013-07-04 02:37:20 -07:00
ld a, SCRIPT_OFF
2018-01-23 14:39:09 -08:00
ld [wScriptMode], a
ld hl, wScriptFlags
res 0, [hl]
2013-07-04 02:37:20 -07:00
call StopScript
ret
2017-02-22 20:49:44 -08:00
Script_return:
; script command 0x90
2013-07-04 02:37:20 -07:00
call ExitScriptSubroutine
jr c, .dummy
.dummy
2018-01-23 14:39:09 -08:00
ld hl, wScriptFlags
res 0, [hl]
2013-07-04 02:37:20 -07:00
call StopScript
ret
2017-02-22 20:49:44 -08:00
ExitScriptSubroutine:
2013-07-04 02:37:20 -07:00
; Return carry if there's no parent to return to.
2015-11-16 08:53:26 -08:00
ld hl, wScriptStackSize
ld a, [hl]
and a
2015-11-16 08:53:26 -08:00
jr z, .done
dec [hl]
ld e, [hl]
ld d, $0
ld hl, wScriptStack
add hl, de
add hl, de
add hl, de
ld a, [hli]
ld b, a
and " "
2018-01-23 14:39:09 -08:00
ld [wScriptBank], a
ld a, [hli]
ld e, a
2018-01-23 14:39:09 -08:00
ld [wScriptPos], a
ld a, [hl]
ld d, a
2018-01-23 14:39:09 -08:00
ld [wScriptPos + 1], a
and a
ret
.done
scf
ret
2018-02-02 18:09:17 -08:00
Script_endall:
; script command 0x93
xor a
2015-11-16 08:53:26 -08:00
ld [wScriptStackSize], a
2018-01-23 14:39:09 -08:00
ld [wScriptRunning], a
2013-07-04 02:37:20 -07:00
ld a, SCRIPT_OFF
2018-01-23 14:39:09 -08:00
ld [wScriptMode], a
ld hl, wScriptFlags
res 0, [hl]
2013-07-04 02:37:20 -07:00
call StopScript
ret
2017-02-22 20:49:44 -08:00
Script_halloffame:
; script command 0xa1
ld hl, wGameTimerPause
2018-01-23 09:40:29 -08:00
res GAMETIMERPAUSE_TIMER_PAUSED_F, [hl]
farcall StubbedTrainerRankings_HallOfFame
farcall StubbedTrainerRankings_HallOfFame2
2017-12-24 09:47:30 -08:00
farcall HallOfFame
ld hl, wGameTimerPause
2018-01-23 09:40:29 -08:00
set GAMETIMERPAUSE_TIMER_PAUSED_F, [hl]
2015-12-14 17:06:41 -08:00
jr ReturnFromCredits
2017-02-22 20:49:44 -08:00
Script_credits:
; script command 0xa2
2017-12-24 09:47:30 -08:00
farcall RedCredits
2015-12-14 17:06:41 -08:00
ReturnFromCredits:
2018-02-02 18:09:17 -08:00
call Script_endall
ld a, $3
call LoadMapStatus
2013-07-04 02:37:20 -07:00
call StopScript
ret
2017-02-22 20:49:44 -08:00
Script_wait:
; script command 0xa8
; parameters: unknown
push bc
2013-02-28 13:36:21 -08:00
call GetScriptByte
.loop
push af
2013-07-04 02:37:20 -07:00
ld c, 6
call DelayFrames
pop af
dec a
2015-11-16 08:53:26 -08:00
jr nz, .loop
pop bc
ret
2018-02-02 18:09:17 -08:00
Script_checksave:
; script command 0xa9
2017-12-24 09:47:30 -08:00
farcall CheckSave
ld a, c
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
ret
2018-01-02 07:04:21 -08:00
; unused
ld a, [.byte]
2018-01-23 14:39:09 -08:00
ld [wScriptVar], a
ret
.byte
db 0