mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-16 19:47:35 +01:00
45 lines
1.2 KiB
C
45 lines
1.2 KiB
C
#include "global.h"
|
|
#include "field_effect.h"
|
|
#include "field_player_avatar.h"
|
|
#include "fldeff.h"
|
|
#include "party_menu.h"
|
|
#include "overworld.h"
|
|
#include "task.h"
|
|
#include "constants/field_effects.h"
|
|
|
|
static void FieldCallback_Teleport(void);
|
|
static void StartTeleportFieldEffect(void);
|
|
|
|
bool8 SetUpFieldMove_Teleport(void)
|
|
{
|
|
if (Overworld_MapTypeAllowsTeleportAndFly(gMapHeader.mapType) == TRUE)
|
|
{
|
|
gFieldCallback2 = FieldCallback_PrepareFadeInFromMenu;
|
|
gPostMenuFieldCallback = FieldCallback_Teleport;
|
|
return TRUE;
|
|
}
|
|
return FALSE;
|
|
}
|
|
|
|
static void FieldCallback_Teleport(void)
|
|
{
|
|
Overworld_ResetStateAfterTeleport();
|
|
FieldEffectStart(FLDEFF_USE_TELEPORT);
|
|
gFieldEffectArguments[0] = (u32)GetCursorSelectionMonId();
|
|
}
|
|
|
|
bool8 FldEff_UseTeleport(void)
|
|
{
|
|
u8 taskId = oei_task_add();
|
|
gTasks[taskId].data[8] = (u32)StartTeleportFieldEffect >> 16;
|
|
gTasks[taskId].data[9] = (u32)StartTeleportFieldEffect;
|
|
SetPlayerAvatarTransitionFlags(PLAYER_AVATAR_FLAG_ON_FOOT);
|
|
return FALSE;
|
|
}
|
|
|
|
static void StartTeleportFieldEffect(void)
|
|
{
|
|
FieldEffectActiveListRemove(FLDEFF_USE_TELEPORT);
|
|
CreateTeleportFieldEffectTask();
|
|
}
|