2013-11-22 23:33:53 -08:00
|
|
|
; More overworld event handling.
|
|
|
|
|
2013-11-22 23:51:48 -08:00
|
|
|
|
2015-07-18 20:45:39 -07:00
|
|
|
WarpToSpawnPoint:: ; 97c28
|
2013-11-22 23:33:53 -08:00
|
|
|
ld hl, StatusFlags2
|
|
|
|
res 1, [hl]
|
|
|
|
res 2, [hl]
|
|
|
|
ret
|
|
|
|
; 97c30
|
|
|
|
|
2015-10-24 07:34:19 -07:00
|
|
|
RunMemScript:: ; 97c30
|
|
|
|
; If there is no script here, we don't need to be here.
|
|
|
|
ld a, [wMapReentryScriptQueueFlag]
|
2013-11-22 23:33:53 -08:00
|
|
|
and a
|
|
|
|
ret z
|
2015-10-24 07:34:19 -07:00
|
|
|
; Execute the script at (wMapReentryScriptBank):(wMapReentryScriptAddress).
|
|
|
|
ld hl, wMapReentryScriptAddress
|
2013-11-22 23:33:53 -08:00
|
|
|
ld a, [hli]
|
|
|
|
ld h, [hl]
|
|
|
|
ld l, a
|
2015-10-24 07:34:19 -07:00
|
|
|
ld a, [wMapReentryScriptBank]
|
2013-11-22 23:33:53 -08:00
|
|
|
call CallScript
|
|
|
|
scf
|
2015-10-24 07:34:19 -07:00
|
|
|
; Clear the buffer for the next script.
|
2013-11-22 23:33:53 -08:00
|
|
|
push af
|
|
|
|
xor a
|
2015-10-24 07:34:19 -07:00
|
|
|
ld hl, wMapReentryScriptQueueFlag
|
2013-11-22 23:33:53 -08:00
|
|
|
ld bc, 8
|
|
|
|
call ByteFill
|
|
|
|
pop af
|
|
|
|
ret
|
|
|
|
; 97c4f
|
|
|
|
|
2015-10-24 07:34:19 -07:00
|
|
|
LoadScriptBDE:: ; 97c4f
|
|
|
|
; If there's already a script here, don't overwrite.
|
|
|
|
ld hl, wMapReentryScriptQueueFlag
|
2013-11-22 23:33:53 -08:00
|
|
|
ld a, [hl]
|
|
|
|
and a
|
|
|
|
ret nz
|
2015-10-24 07:34:19 -07:00
|
|
|
; Set the flag
|
2013-11-22 23:33:53 -08:00
|
|
|
ld [hl], 1
|
|
|
|
inc hl
|
2015-10-24 07:34:19 -07:00
|
|
|
; Load the script pointer b:de into (wMapReentryScriptBank):(wMapReentryScriptAddress)
|
2013-11-22 23:33:53 -08:00
|
|
|
ld [hl], b
|
|
|
|
inc hl
|
|
|
|
ld [hl], e
|
|
|
|
inc hl
|
|
|
|
ld [hl], d
|
|
|
|
scf
|
|
|
|
ret
|
|
|
|
; 97c5f
|
|
|
|
|
2015-10-01 13:55:24 -07:00
|
|
|
CheckFacingTileEvent:: ; 97c5f
|
2013-11-22 23:33:53 -08:00
|
|
|
call GetFacingTileCoord
|
|
|
|
ld [EngineBuffer1], a
|
|
|
|
ld c, a
|
2015-07-16 15:10:10 -07:00
|
|
|
callba CheckFacingTileForStd
|
|
|
|
jr c, .done
|
2013-11-22 23:33:53 -08:00
|
|
|
|
|
|
|
call CheckCutTreeTile
|
|
|
|
jr nz, .whirlpool
|
|
|
|
callba TryCutOW
|
2015-07-16 15:10:10 -07:00
|
|
|
jr .done
|
2013-11-22 23:33:53 -08:00
|
|
|
|
|
|
|
.whirlpool
|
|
|
|
ld a, [EngineBuffer1]
|
|
|
|
call CheckWhirlpoolTile
|
|
|
|
jr nz, .waterfall
|
|
|
|
callba TryWhirlpoolOW
|
2015-07-16 15:10:10 -07:00
|
|
|
jr .done
|
2013-11-22 23:33:53 -08:00
|
|
|
|
|
|
|
.waterfall
|
|
|
|
ld a, [EngineBuffer1]
|
|
|
|
call CheckWaterfallTile
|
|
|
|
jr nz, .headbutt
|
|
|
|
callba TryWaterfallOW
|
2015-07-16 15:10:10 -07:00
|
|
|
jr .done
|
2013-11-22 23:33:53 -08:00
|
|
|
|
|
|
|
.headbutt
|
|
|
|
ld a, [EngineBuffer1]
|
|
|
|
call CheckHeadbuttTreeTile
|
|
|
|
jr nz, .surf
|
|
|
|
callba TryHeadbuttOW
|
2015-07-16 15:10:10 -07:00
|
|
|
jr c, .done
|
|
|
|
jr .noevent
|
2013-11-22 23:33:53 -08:00
|
|
|
|
|
|
|
.surf
|
|
|
|
callba TrySurfOW
|
2015-07-16 15:10:10 -07:00
|
|
|
jr nc, .noevent
|
|
|
|
jr .done
|
2013-11-22 23:33:53 -08:00
|
|
|
|
2015-07-16 15:10:10 -07:00
|
|
|
.noevent
|
2013-11-22 23:33:53 -08:00
|
|
|
xor a
|
|
|
|
ret
|
|
|
|
|
2015-07-16 15:10:10 -07:00
|
|
|
.done
|
2013-11-22 23:33:53 -08:00
|
|
|
call PlayClickSFX
|
|
|
|
ld a, $ff
|
|
|
|
scf
|
|
|
|
ret
|
|
|
|
; 97cc0
|
|
|
|
|
|
|
|
|
2015-10-07 18:27:32 -07:00
|
|
|
RandomEncounter:: ; 97cc0
|
|
|
|
; Random encounter
|
2013-11-22 23:33:53 -08:00
|
|
|
|
2015-10-07 18:27:32 -07:00
|
|
|
call CheckWildEncounterCooldown
|
2015-10-01 13:55:24 -07:00
|
|
|
jr c, .nope
|
|
|
|
call CanUseSweetScent
|
|
|
|
jr nc, .nope
|
2013-11-22 23:33:53 -08:00
|
|
|
ld hl, StatusFlags2
|
2015-11-01 06:38:48 -08:00
|
|
|
bit 2, [hl] ; bug contest
|
2015-10-01 13:55:24 -07:00
|
|
|
jr nz, .bug_contest
|
2015-07-23 00:41:52 -07:00
|
|
|
callba TryWildEncounter
|
2015-10-01 13:55:24 -07:00
|
|
|
jr nz, .nope
|
|
|
|
jr .ok
|
2013-11-22 23:33:53 -08:00
|
|
|
|
2015-10-01 13:55:24 -07:00
|
|
|
.bug_contest
|
|
|
|
call _TryWildEncounter_BugContest
|
|
|
|
jr nc, .nope
|
|
|
|
jr .ok_bug_contest
|
2013-11-22 23:33:53 -08:00
|
|
|
|
2015-10-01 13:55:24 -07:00
|
|
|
.nope
|
2013-11-22 23:33:53 -08:00
|
|
|
ld a, 1
|
|
|
|
and a
|
|
|
|
ret
|
|
|
|
|
2015-10-01 13:55:24 -07:00
|
|
|
.ok
|
2015-10-07 18:27:32 -07:00
|
|
|
ld a, BANK(WildBattleScript)
|
|
|
|
ld hl, WildBattleScript
|
2015-10-01 13:55:24 -07:00
|
|
|
jr .done
|
2013-11-22 23:33:53 -08:00
|
|
|
|
2015-10-01 13:55:24 -07:00
|
|
|
.ok_bug_contest
|
2015-07-15 12:48:44 -07:00
|
|
|
ld a, BANK(BugCatchingContestBattleScript)
|
|
|
|
ld hl, BugCatchingContestBattleScript
|
2015-10-01 13:55:24 -07:00
|
|
|
jr .done
|
2013-11-22 23:33:53 -08:00
|
|
|
|
2015-10-01 13:55:24 -07:00
|
|
|
.done
|
2013-11-22 23:33:53 -08:00
|
|
|
call CallScript
|
|
|
|
scf
|
|
|
|
ret
|
|
|
|
; 97cf9
|
|
|
|
|
2015-10-07 18:27:32 -07:00
|
|
|
WildBattleScript: ; 97cf9
|
2013-11-22 23:33:53 -08:00
|
|
|
battlecheck
|
|
|
|
startbattle
|
|
|
|
returnafterbattle
|
|
|
|
end
|
|
|
|
; 97cfd
|
|
|
|
|
2015-10-01 13:55:24 -07:00
|
|
|
CanUseSweetScent:: ; 97cfd
|
2013-11-22 23:33:53 -08:00
|
|
|
ld hl, StatusFlags
|
|
|
|
bit 5, [hl]
|
2015-10-01 13:55:24 -07:00
|
|
|
jr nz, .no
|
2015-07-20 21:02:21 -07:00
|
|
|
ld a, [wPermission]
|
2015-11-01 06:38:48 -08:00
|
|
|
cp CAVE
|
2015-10-01 13:55:24 -07:00
|
|
|
jr z, .ice_check
|
2015-11-01 06:38:48 -08:00
|
|
|
cp DUNGEON
|
2015-10-01 13:55:24 -07:00
|
|
|
jr z, .ice_check
|
2015-11-01 06:38:48 -08:00
|
|
|
callba CheckGrassCollision
|
2015-10-01 13:55:24 -07:00
|
|
|
jr nc, .no
|
2013-11-22 23:33:53 -08:00
|
|
|
|
2015-10-01 13:55:24 -07:00
|
|
|
.ice_check
|
2015-11-02 08:15:32 -08:00
|
|
|
ld a, [PlayerStandingTile]
|
2013-11-22 23:33:53 -08:00
|
|
|
call CheckIceTile
|
2015-10-01 13:55:24 -07:00
|
|
|
jr z, .no
|
2013-11-22 23:33:53 -08:00
|
|
|
scf
|
|
|
|
ret
|
|
|
|
|
2015-10-01 13:55:24 -07:00
|
|
|
.no
|
2013-11-22 23:33:53 -08:00
|
|
|
and a
|
|
|
|
ret
|
|
|
|
; 97d23
|
|
|
|
|
2015-10-01 13:55:24 -07:00
|
|
|
_TryWildEncounter_BugContest: ; 97d23
|
2015-07-23 00:41:52 -07:00
|
|
|
call TryWildEncounter_BugContest
|
2013-11-22 23:33:53 -08:00
|
|
|
ret nc
|
2015-10-01 13:55:24 -07:00
|
|
|
call ChooseWildEncounter_BugContest
|
2015-07-23 00:41:52 -07:00
|
|
|
callba CheckRepelEffect
|
2013-11-22 23:33:53 -08:00
|
|
|
ret
|
|
|
|
; 97d31
|
|
|
|
|
2015-10-01 13:55:24 -07:00
|
|
|
ChooseWildEncounter_BugContest:: ; 97d31
|
2013-11-22 23:33:53 -08:00
|
|
|
; Pick a random mon out of ContestMons.
|
|
|
|
|
2015-10-01 13:55:24 -07:00
|
|
|
.loop
|
2013-11-22 23:33:53 -08:00
|
|
|
call Random
|
|
|
|
cp 100 << 1
|
2015-10-01 13:55:24 -07:00
|
|
|
jr nc, .loop
|
2013-11-22 23:33:53 -08:00
|
|
|
srl a
|
|
|
|
|
|
|
|
ld hl, ContestMons
|
|
|
|
ld de, 4
|
|
|
|
.CheckMon
|
|
|
|
sub [hl]
|
|
|
|
jr c, .GotMon
|
|
|
|
add hl, de
|
|
|
|
jr .CheckMon
|
|
|
|
|
|
|
|
.GotMon
|
|
|
|
inc hl
|
|
|
|
|
|
|
|
; Species
|
|
|
|
ld a, [hli]
|
2015-07-23 00:41:52 -07:00
|
|
|
ld [TempWildMonSpecies], a
|
2013-11-22 23:33:53 -08:00
|
|
|
|
|
|
|
; Min level
|
|
|
|
ld a, [hli]
|
|
|
|
ld d, a
|
|
|
|
|
|
|
|
; Max level
|
|
|
|
ld a, [hl]
|
|
|
|
|
|
|
|
sub d
|
|
|
|
jr nz, .RandomLevel
|
|
|
|
|
|
|
|
; If min and max are the same.
|
|
|
|
ld a, d
|
|
|
|
jr .GotLevel
|
|
|
|
|
|
|
|
.RandomLevel
|
|
|
|
; Get a random level between the min and max.
|
|
|
|
ld c, a
|
|
|
|
inc c
|
|
|
|
call Random
|
|
|
|
ld a, [hRandomAdd]
|
|
|
|
call SimpleDivide
|
|
|
|
add d
|
|
|
|
|
|
|
|
.GotLevel
|
|
|
|
ld [CurPartyLevel], a
|
|
|
|
|
|
|
|
xor a
|
|
|
|
ret
|
|
|
|
; 97d64
|
|
|
|
|
2015-07-23 00:41:52 -07:00
|
|
|
TryWildEncounter_BugContest: ; 97d64
|
2015-11-02 08:15:32 -08:00
|
|
|
ld a, [PlayerStandingTile]
|
2015-07-23 00:41:52 -07:00
|
|
|
call CheckSuperTallGrassTile
|
2015-11-01 06:38:48 -08:00
|
|
|
ld b, 40 percent
|
2015-10-01 13:55:24 -07:00
|
|
|
jr z, .ok
|
2015-11-01 06:38:48 -08:00
|
|
|
ld b, 20 percent
|
2013-11-22 23:33:53 -08:00
|
|
|
|
2015-10-01 13:55:24 -07:00
|
|
|
.ok
|
2015-07-23 00:41:52 -07:00
|
|
|
callba ApplyMusicEffectOnEncounterRate
|
|
|
|
callba ApplyCleanseTagEffectOnEncounterRate
|
2013-11-22 23:33:53 -08:00
|
|
|
call Random
|
|
|
|
ld a, [hRandomAdd]
|
|
|
|
cp b
|
|
|
|
ret c
|
|
|
|
ld a, 1
|
|
|
|
and a
|
|
|
|
ret
|
|
|
|
; 97d87
|
|
|
|
|
|
|
|
ContestMons: ; 97d87
|
|
|
|
; %, species, min, max
|
|
|
|
db 20, CATERPIE, 7, 18
|
|
|
|
db 20, WEEDLE, 7, 18
|
|
|
|
db 10, METAPOD, 9, 18
|
|
|
|
db 10, KAKUNA, 9, 18
|
|
|
|
db 5, BUTTERFREE, 12, 15
|
|
|
|
db 5, BEEDRILL, 12, 15
|
|
|
|
db 10, VENONAT, 10, 16
|
|
|
|
db 10, PARAS, 10, 17
|
|
|
|
db 5, SCYTHER, 13, 14
|
|
|
|
db 5, PINSIR, 13, 14
|
|
|
|
db -1, VENOMOTH, 30, 40
|
|
|
|
; 97db3
|
|
|
|
|
2015-10-24 07:34:19 -07:00
|
|
|
DoBikeStep:: ; 97db3
|
2013-11-22 23:33:53 -08:00
|
|
|
nop
|
|
|
|
nop
|
2015-10-24 07:34:19 -07:00
|
|
|
; If the bike shop owner doesn't have our number, or
|
|
|
|
; if we've already gotten the call, we don't have to
|
|
|
|
; be here.
|
2013-11-22 23:33:53 -08:00
|
|
|
ld hl, StatusFlags2
|
|
|
|
bit 4, [hl]
|
2015-07-17 14:17:10 -07:00
|
|
|
jr z, .NoCall
|
2015-10-24 07:34:19 -07:00
|
|
|
|
|
|
|
; If we're not on the bike, we don't have to be here.
|
2013-11-22 23:33:53 -08:00
|
|
|
ld a, [PlayerState]
|
2015-10-24 07:34:19 -07:00
|
|
|
cp PLAYER_BIKE
|
2015-07-17 14:17:10 -07:00
|
|
|
jr nz, .NoCall
|
2015-10-24 07:34:19 -07:00
|
|
|
|
|
|
|
; If we're not in an area of phone service, we don't
|
|
|
|
; have to be here.
|
2015-07-20 00:51:52 -07:00
|
|
|
call GetMapHeaderPhoneServiceNybble
|
2013-11-22 23:33:53 -08:00
|
|
|
and a
|
2015-07-17 14:17:10 -07:00
|
|
|
jr nz, .NoCall
|
2015-10-24 07:34:19 -07:00
|
|
|
|
|
|
|
; Check the bike step count and check whether we've
|
|
|
|
; taken 65536 of them yet.
|
|
|
|
ld hl, wBikeStep
|
2013-11-22 23:33:53 -08:00
|
|
|
ld a, [hli]
|
|
|
|
ld d, a
|
|
|
|
ld e, [hl]
|
2015-10-24 07:34:19 -07:00
|
|
|
cp 255
|
|
|
|
jr nz, .increment
|
2013-11-22 23:33:53 -08:00
|
|
|
ld a, e
|
2015-10-24 07:34:19 -07:00
|
|
|
cp 255
|
|
|
|
jr z, .dont_increment
|
2013-11-22 23:33:53 -08:00
|
|
|
|
2015-10-24 07:34:19 -07:00
|
|
|
.increment
|
2013-11-22 23:33:53 -08:00
|
|
|
inc de
|
|
|
|
ld [hl], e
|
|
|
|
dec hl
|
|
|
|
ld [hl], d
|
|
|
|
|
2015-10-24 07:34:19 -07:00
|
|
|
.dont_increment
|
|
|
|
; If we've taken at least 1024 steps, have the bike
|
|
|
|
; shop owner try to call us.
|
2013-11-22 23:33:53 -08:00
|
|
|
ld a, d
|
2015-10-24 07:34:19 -07:00
|
|
|
cp 1024 >> 8
|
2015-07-17 14:17:10 -07:00
|
|
|
jr c, .NoCall
|
2015-10-24 07:34:19 -07:00
|
|
|
|
|
|
|
; If a call has already been queued, don't overwrite
|
|
|
|
; that call.
|
2015-07-17 14:17:10 -07:00
|
|
|
ld a, [wSpecialPhoneCallID]
|
2013-11-22 23:33:53 -08:00
|
|
|
and a
|
2015-07-17 14:17:10 -07:00
|
|
|
jr nz, .NoCall
|
2015-10-24 07:34:19 -07:00
|
|
|
|
|
|
|
; Queue the call.
|
|
|
|
ld a, SPECIALCALL_BIKESHOP
|
2015-07-17 14:17:10 -07:00
|
|
|
ld [wSpecialPhoneCallID], a
|
2013-11-22 23:33:53 -08:00
|
|
|
xor a
|
2015-07-17 14:17:10 -07:00
|
|
|
ld [wSpecialPhoneCallID + 1], a
|
2013-11-22 23:33:53 -08:00
|
|
|
ld hl, StatusFlags2
|
|
|
|
res 4, [hl]
|
|
|
|
scf
|
|
|
|
ret
|
|
|
|
|
2015-07-17 14:17:10 -07:00
|
|
|
.NoCall
|
2013-11-22 23:33:53 -08:00
|
|
|
xor a
|
|
|
|
ret
|
|
|
|
; 97df9
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
Function97df9:: ; 97df9
|
2015-02-10 14:16:31 -08:00
|
|
|
ld hl, wd6de
|
2015-07-17 14:17:10 -07:00
|
|
|
ld de, 6
|
|
|
|
ld c, 4
|
2013-11-22 23:33:53 -08:00
|
|
|
xor a
|
2015-07-17 14:17:10 -07:00
|
|
|
.loop
|
2013-11-22 23:33:53 -08:00
|
|
|
ld [hl], a
|
|
|
|
add hl, de
|
|
|
|
dec c
|
2015-07-17 14:17:10 -07:00
|
|
|
jr nz, .loop
|
2013-11-22 23:33:53 -08:00
|
|
|
ret
|
|
|
|
; 97e08
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
Function97e08:: ; 97e08
|
2015-02-10 14:16:31 -08:00
|
|
|
ld hl, wd6de
|
2013-11-22 23:33:53 -08:00
|
|
|
xor a
|
|
|
|
.asm_97e0c
|
2015-11-02 08:15:32 -08:00
|
|
|
ld [hMapObjectIndexBuffer], a
|
2013-11-22 23:33:53 -08:00
|
|
|
ld a, [hl]
|
|
|
|
and a
|
|
|
|
jr z, .asm_97e19
|
|
|
|
push hl
|
|
|
|
ld b, h
|
|
|
|
ld c, l
|
|
|
|
call Function97e79
|
|
|
|
pop hl
|
|
|
|
|
|
|
|
.asm_97e19
|
|
|
|
ld de, $0006
|
|
|
|
add hl, de
|
2015-11-02 08:15:32 -08:00
|
|
|
ld a, [hMapObjectIndexBuffer]
|
2013-11-22 23:33:53 -08:00
|
|
|
inc a
|
|
|
|
cp $4
|
|
|
|
jr nz, .asm_97e0c
|
|
|
|
ret
|
|
|
|
; 97e25
|
|
|
|
|
|
|
|
Function97e25: ; 97e25
|
2015-02-10 14:16:31 -08:00
|
|
|
ld hl, wd6de
|
2013-11-22 23:33:53 -08:00
|
|
|
ld bc, 6
|
|
|
|
call AddNTimes
|
|
|
|
ld b, h
|
|
|
|
ld c, l
|
|
|
|
ret
|
|
|
|
; 97e31
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
Function97e31:: ; 97e31
|
2013-11-22 23:33:53 -08:00
|
|
|
push bc
|
|
|
|
push de
|
|
|
|
call Function97e45
|
|
|
|
ld d, h
|
|
|
|
ld e, l
|
|
|
|
pop hl
|
|
|
|
pop bc
|
|
|
|
ret c
|
|
|
|
ld a, b
|
|
|
|
ld bc, $0005
|
|
|
|
call FarCopyBytes
|
|
|
|
xor a
|
|
|
|
ld [hl], a
|
|
|
|
ret
|
|
|
|
; 97e45
|
|
|
|
|
|
|
|
Function97e45: ; 97e45
|
2015-02-10 14:16:31 -08:00
|
|
|
ld hl, wd6de
|
2013-11-22 23:33:53 -08:00
|
|
|
ld de, $0006
|
|
|
|
ld c, $4
|
|
|
|
.asm_97e4d
|
|
|
|
ld a, [hl]
|
|
|
|
and a
|
|
|
|
jr z, .asm_97e57
|
|
|
|
add hl, de
|
|
|
|
dec c
|
|
|
|
jr nz, .asm_97e4d
|
|
|
|
scf
|
|
|
|
ret
|
|
|
|
|
|
|
|
.asm_97e57
|
|
|
|
ld a, $4
|
|
|
|
sub c
|
|
|
|
and a
|
|
|
|
ret
|
|
|
|
; 97e5c
|
|
|
|
|
2014-02-01 17:26:39 -08:00
|
|
|
Function97e5c:: ; 97e5c
|
2015-02-10 14:16:31 -08:00
|
|
|
ld hl, wd6de
|
2013-11-22 23:33:53 -08:00
|
|
|
ld de, $0006
|
|
|
|
ld c, $4
|
|
|
|
.asm_97e64
|
|
|
|
ld a, [hl]
|
|
|
|
cp b
|
|
|
|
jr z, .asm_97e6e
|
|
|
|
add hl, de
|
|
|
|
dec c
|
|
|
|
jr nz, .asm_97e64
|
|
|
|
and a
|
|
|
|
ret
|
|
|
|
|
|
|
|
.asm_97e6e
|
|
|
|
xor a
|
|
|
|
ld [hl], a
|
|
|
|
scf
|
|
|
|
ret
|
|
|
|
; 97e72
|
|
|
|
|
|
|
|
Function97e72: ; 97e72
|
2015-10-29 20:32:11 -07:00
|
|
|
ld hl, NONE
|
2013-11-22 23:33:53 -08:00
|
|
|
add hl, bc
|
|
|
|
ld [hl], 0
|
|
|
|
ret
|
|
|
|
; 97e79
|
|
|
|
|
|
|
|
Function97e79: ; 97e79
|
2015-10-29 20:32:11 -07:00
|
|
|
ld hl, NONE
|
2013-11-22 23:33:53 -08:00
|
|
|
add hl, bc
|
|
|
|
ld a, [hl]
|
|
|
|
cp 5
|
|
|
|
jr c, .asm_97e83
|
|
|
|
xor a
|
|
|
|
|
|
|
|
.asm_97e83
|
|
|
|
ld e, a
|
|
|
|
ld d, 0
|
|
|
|
ld hl, Table97e94
|
2015-07-20 19:18:18 -07:00
|
|
|
rept 3
|
2013-11-22 23:33:53 -08:00
|
|
|
add hl, de
|
2015-07-20 19:18:18 -07:00
|
|
|
endr
|
2013-11-22 23:33:53 -08:00
|
|
|
ld a, [hli]
|
|
|
|
push af
|
|
|
|
ld a, [hli]
|
|
|
|
ld h, [hl]
|
|
|
|
ld l, a
|
|
|
|
pop af
|
|
|
|
rst FarCall
|
|
|
|
ret
|
|
|
|
; 97e94
|
|
|
|
|
|
|
|
Table97e94: ; 97e94
|
2015-11-01 06:38:48 -08:00
|
|
|
dba Function97eb7
|
|
|
|
dba Function97eb8
|
|
|
|
dba Function97f42
|
|
|
|
dba Function97ef9
|
|
|
|
dba Function97ebc
|
2013-11-22 23:33:53 -08:00
|
|
|
; 97ea3
|
|
|
|
|
|
|
|
Function97ea3: ; 97ea3
|
|
|
|
ld hl, $0005
|
|
|
|
add hl, bc
|
|
|
|
ld a, [hl]
|
|
|
|
pop hl
|
|
|
|
rst JumpTable
|
|
|
|
ret
|
|
|
|
; 97eab
|
|
|
|
|
|
|
|
Function97eab: ; 97eab
|
|
|
|
ld hl, $0005
|
|
|
|
add hl, bc
|
|
|
|
inc [hl]
|
|
|
|
ret
|
|
|
|
; 97eb1
|
|
|
|
|
|
|
|
Function97eb1: ; 97eb1
|
|
|
|
ld hl, $0005
|
|
|
|
add hl, bc
|
|
|
|
dec [hl]
|
|
|
|
ret
|
|
|
|
; 97eb7
|
|
|
|
|
|
|
|
Function97eb7: ; 97eb7
|
|
|
|
ret
|
|
|
|
; 97eb8
|
|
|
|
|
|
|
|
Function97eb8: ; 97eb8
|
2015-10-24 07:34:19 -07:00
|
|
|
call ret_2f3e
|
2013-11-22 23:33:53 -08:00
|
|
|
ret
|
|
|
|
; 97ebc
|
|
|
|
|
|
|
|
Function97ebc: ; 97ebc
|
|
|
|
call Function97ea3
|
|
|
|
dw Function97ec3
|
|
|
|
dw Function97ecd
|
|
|
|
; 97ec3
|
|
|
|
|
|
|
|
Function97ec3: ; 97ec3
|
|
|
|
ld a, [hSCY]
|
|
|
|
ld hl, $0004
|
|
|
|
add hl, bc
|
|
|
|
ld [hl], a
|
|
|
|
call Function97eab
|
|
|
|
; 97ecd
|
|
|
|
|
|
|
|
Function97ecd: ; 97ecd
|
|
|
|
ld hl, $0001
|
|
|
|
add hl, bc
|
|
|
|
ld a, [hl]
|
|
|
|
dec a
|
|
|
|
ld [hl], a
|
|
|
|
jr z, .asm_97eee
|
|
|
|
and $1
|
|
|
|
jr z, .asm_97ee4
|
|
|
|
ld hl, $0002
|
|
|
|
add hl, bc
|
|
|
|
ld a, [hSCY]
|
|
|
|
sub [hl]
|
|
|
|
ld [hSCY], a
|
|
|
|
ret
|
|
|
|
|
|
|
|
.asm_97ee4
|
|
|
|
ld hl, $0002
|
|
|
|
add hl, bc
|
|
|
|
ld a, [hSCY]
|
|
|
|
add [hl]
|
|
|
|
ld [hSCY], a
|
|
|
|
ret
|
|
|
|
|
|
|
|
.asm_97eee
|
|
|
|
ld hl, $0004
|
|
|
|
add hl, bc
|
|
|
|
ld a, [hl]
|
|
|
|
ld [hSCY], a
|
|
|
|
call Function97e72
|
|
|
|
ret
|
|
|
|
; 97ef9
|
|
|
|
|
|
|
|
Function97ef9: ; 97ef9
|
|
|
|
call Function97ea3
|
|
|
|
dw Function97f02
|
|
|
|
dw Function97f0a
|
|
|
|
dw Function97f1b
|
|
|
|
; 97f02
|
|
|
|
|
|
|
|
Function97f02: ; 97f02
|
|
|
|
call Function97f38
|
|
|
|
jr z, Function97f2c
|
|
|
|
call Function97eab
|
|
|
|
; 97f0a
|
|
|
|
|
|
|
|
Function97f0a: ; 97f0a
|
|
|
|
call Function97f38
|
|
|
|
jr z, Function97f2c
|
|
|
|
call Function97eab
|
|
|
|
|
|
|
|
ld hl, $0002
|
|
|
|
add hl, bc
|
|
|
|
ld a, [hl]
|
2015-02-10 14:16:31 -08:00
|
|
|
ld [wd173], a
|
2013-11-22 23:33:53 -08:00
|
|
|
ret
|
|
|
|
; 97f1b
|
|
|
|
|
|
|
|
Function97f1b: ; 97f1b
|
|
|
|
call Function97f38
|
|
|
|
jr z, Function97f2c
|
|
|
|
call Function97eb1
|
|
|
|
|
|
|
|
ld hl, $0003
|
|
|
|
add hl, bc
|
|
|
|
ld a, [hl]
|
2015-02-10 14:16:31 -08:00
|
|
|
ld [wd173], a
|
2013-11-22 23:33:53 -08:00
|
|
|
ret
|
|
|
|
; 97f2c
|
|
|
|
|
|
|
|
Function97f2c: ; 97f2c
|
|
|
|
ld a, $7f
|
2015-02-10 14:16:31 -08:00
|
|
|
ld [wd173], a
|
2013-11-22 23:33:53 -08:00
|
|
|
ld hl, $0005
|
|
|
|
add hl, bc
|
|
|
|
ld [hl], 0
|
|
|
|
ret
|
|
|
|
; 97f38
|
|
|
|
|
|
|
|
Function97f38: ; 97f38
|
|
|
|
push bc
|
2015-02-10 14:16:31 -08:00
|
|
|
ld bc, PlayerStruct
|
2013-11-22 23:33:53 -08:00
|
|
|
call GetSpriteDirection
|
|
|
|
and a
|
|
|
|
pop bc
|
|
|
|
ret
|
|
|
|
; 97f42
|
|
|
|
|
|
|
|
Function97f42: ; 97f42
|
2015-02-10 14:16:31 -08:00
|
|
|
ld de, PlayerStruct
|
2013-11-22 23:33:53 -08:00
|
|
|
ld a, $d
|
|
|
|
.asm_97f47
|
|
|
|
push af
|
|
|
|
|
2015-10-29 20:32:11 -07:00
|
|
|
ld hl, NONE
|
2013-11-22 23:33:53 -08:00
|
|
|
add hl, de
|
|
|
|
ld a, [hl]
|
|
|
|
and a
|
|
|
|
jr z, .asm_97f71
|
|
|
|
|
|
|
|
ld hl, $0003
|
|
|
|
add hl, de
|
|
|
|
ld a, [hl]
|
|
|
|
cp $19
|
|
|
|
jr nz, .asm_97f71
|
|
|
|
|
|
|
|
ld hl, $000e
|
|
|
|
add hl, de
|
|
|
|
ld a, [hl]
|
|
|
|
call CheckPitTile
|
|
|
|
jr nz, .asm_97f71
|
|
|
|
|
|
|
|
ld hl, $0007
|
|
|
|
add hl, de
|
|
|
|
ld a, [hl]
|
|
|
|
cp $ff
|
|
|
|
jr nz, .asm_97f71
|
|
|
|
call Function3567
|
|
|
|
jr c, .asm_97f7c
|
|
|
|
|
|
|
|
.asm_97f71
|
|
|
|
ld hl, $0028
|
|
|
|
add hl, de
|
|
|
|
ld d, h
|
|
|
|
ld e, l
|
|
|
|
|
|
|
|
pop af
|
|
|
|
dec a
|
|
|
|
jr nz, .asm_97f47
|
|
|
|
ret
|
|
|
|
|
|
|
|
.asm_97f7c
|
|
|
|
pop af
|
|
|
|
ret
|
|
|
|
; 97f7e
|