sovereignx/include/field_control_avatar.h

43 lines
1.4 KiB
C
Raw Permalink Normal View History

2018-02-13 23:58:22 +00:00
#ifndef GUARD_FIELDCONTROLAVATAR_H
#define GUARD_FIELDCONTROLAVATAR_H
struct FieldInput
{
2018-10-17 03:47:08 +01:00
bool8 pressedAButton:1;
bool8 checkStandardWildEncounter:1;
bool8 pressedStartButton:1;
bool8 pressedSelectButton:1;
2018-12-28 21:11:15 +00:00
bool8 heldDirection:1;
bool8 heldDirection2:1;
2018-10-17 03:47:08 +01:00
bool8 tookStep:1;
bool8 pressedBButton:1;
bool8 input_field_1_0:1;
bool8 input_field_1_1:1;
bool8 input_field_1_2:1;
bool8 input_field_1_3:1;
bool8 input_field_1_4:1;
bool8 input_field_1_5:1;
bool8 input_field_1_6:1;
bool8 input_field_1_7:1;
2018-02-13 23:58:22 +00:00
u8 dpadDirection;
};
void FieldClearPlayerInput(struct FieldInput *pStruct);
void FieldGetPlayerInput(struct FieldInput *pStruct, u16 keys, u16 heldKeys);
2018-10-17 01:11:44 +01:00
int ProcessPlayerFieldInput(struct FieldInput *pStruct);
2018-02-13 23:58:22 +00:00
void overworld_poison_timer_set(void);
2018-10-17 03:47:08 +01:00
void RestartWildEncounterImmunitySteps(void);
const u8 *GetObjectEventScriptPointerPlayerFacing(void);
bool8 TryDoDiveWarp(struct MapPosition *position, u16 b);
2018-10-17 03:47:08 +01:00
int SetCableClubWarp(void);
u8 TrySetDiveWarp(void);
2019-02-08 17:48:51 +00:00
const u8 *GetInteractedLinkPlayerScript(struct MapPosition *position, u8 metatileBehavior, u8 direction);
2023-03-08 16:07:44 +00:00
const u8 *GetCoordEventScriptAtMapPosition(struct MapPosition *position);
2019-03-02 03:32:50 +00:00
void ClearPoisonStepCounter(void);
void CancelSignPostMessageBox(struct FieldInput *input);
2018-02-13 23:58:22 +00:00
#define NOT_SIGNPOST 0
#define WALK_AWAY_SIGNPOST_FRAMES 6
2018-02-13 23:58:22 +00:00
#endif // GUARD_FIELDCONTROLAVATAR_H