pokeemerald/include/field_player_avatar.h

70 lines
2.4 KiB
C
Raw Normal View History

2017-09-16 21:13:06 +02:00
#ifndef GUARD_FIELD_PLAYER_AVATAR_H
#define GUARD_FIELD_PLAYER_AVATAR_H
2017-09-06 15:29:59 +02:00
2018-02-14 00:58:22 +01:00
void player_step(u8 a, u16 b, u16 c);
2017-09-06 15:29:59 +02:00
void ClearPlayerAvatarInfo(void);
void SetPlayerAvatarExtraStateTransition(u8, u8);
u8 GetPlayerAvatarGenderByGraphicsId(u8);
2017-09-14 01:13:44 +02:00
bool8 TestPlayerAvatarFlags(u8);
2018-02-14 12:54:31 +01:00
u8 GetPlayerAvatarObjectId(void);
2017-09-14 01:13:44 +02:00
void PlayerGetDestCoords(s16 *, s16 *);
u8 GetPlayerFacingDirection(void);
u8 GetPlayerMovementDirection(void);
u8 PlayerGetCopyableMovement(void);
2017-12-21 17:46:03 +01:00
void PlayerGoSpeed1(u8);
void PlayerGoSpeed2(u8);
void PlayerGoSpeed3(u8);
void PlayerGoSpeed4(u8);
void PlayerOnBikeCollide(u8);
void PlayerFaceDirection(u8 a);
void PlayerTurnInPlace(u8 a);
void PlayerJumpLedge(u8 a);
void PlayerIdleWheelie(u8 a);
void PlayerStartWheelie(u8 a);
void PlayerEndWheelie(u8 a);
void PlayerStandingHoppingWheelie(u8 a);
void PlayerMovingHoppingWheelie(u8 a);
void PlayerLedgeHoppingWheelie(u8 a);
void PlayerAcroTurnJump(u8 a);
void PlayerSetAnimId(u8 a, u8 b);
bool8 IsPlayerCollidingWithFarawayIslandMew(u8 direction);
void PlayerOnBikeCollideWithFarawayIslandMew(u8 direction);
u8 CheckForEventObjectCollision(struct EventObject *a, s16 b, s16 c, u8 d, u8 e);
2017-12-21 17:46:03 +01:00
u8 PlayerGetZCoord(void);
void SetPlayerAvatarTransitionFlags(u16 a);
2017-12-18 23:26:44 +01:00
void sub_808BCE8(void);
2018-02-14 00:58:22 +01:00
void InitPlayerAvatar(s16 a, s16 b, u8 c, u8 d);
2018-02-09 03:00:28 +01:00
void sub_808B864(void);
void sub_808BCF4(void);
2017-10-12 09:06:19 +02:00
void sub_808D074(u8);
2017-10-24 01:29:16 +02:00
void GetXYCoordsOneStepInFrontOfPlayer(s16 *xPtr, s16 *yPtr);
2018-01-24 04:30:13 +01:00
u8 GetRivalAvatarGraphicsIdByStateIdAndGender(u8, u8);
2018-04-10 08:47:29 +02:00
void sub_808C114(void);
u8 GetPlayerAvatarGraphicsIdByCurrentState(void);
void SetPlayerAvatarStateMask(u8 a);
u8 GetPlayerAvatarGraphicsIdByStateId(u8 a);
u8 GetJumpSpecialMovementAction(u32);
2018-10-17 04:47:08 +02:00
bool8 PartyHasMonWithSurf(void);
bool8 IsPlayerFacingSurfableFishableWater(void);
bool8 IsPlayerSurfingNorth(void);
2017-10-12 09:06:19 +02:00
2018-08-12 20:01:19 +02:00
bool8 ForcedMovement_None(void);
bool8 ForcedMovement_Slip(void);
bool8 ForcedMovement_WalkSouth(void);
bool8 ForcedMovement_WalkNorth(void);
bool8 ForcedMovement_WalkWest(void);
bool8 ForcedMovement_WalkEast(void);
bool8 ForcedMovement_PushedSouthByCurrent(void);
bool8 ForcedMovement_PushedNorthByCurrent(void);
bool8 ForcedMovement_PushedWestByCurrent(void);
bool8 ForcedMovement_PushedEastByCurrent(void);
bool8 ForcedMovement_SlideSouth(void);
bool8 ForcedMovement_SlideNorth(void);
bool8 ForcedMovement_SlideWest(void);
bool8 ForcedMovement_SlideEast(void);
bool8 ForcedMovement_0xBB(void);
bool8 ForcedMovement_0xBC(void);
bool8 ForcedMovement_MuddySlope(void);
2018-02-14 01:12:17 +01:00
#endif // GUARD_FIELD_PLAYER_AVATAR_H