2017-09-16 19:13:06 +00:00
|
|
|
#ifndef GUARD_FIELD_EFFECT_HELPERS_H
|
|
|
|
#define GUARD_FIELD_EFFECT_HELPERS_H
|
2017-09-07 23:28:46 +00:00
|
|
|
|
2021-04-05 14:32:33 +00:00
|
|
|
// States for bobbing up and down while surfing
|
|
|
|
enum {
|
|
|
|
// No bobbing
|
|
|
|
BOB_NONE,
|
|
|
|
// Both the surf blob/mon should bob up and down
|
|
|
|
BOB_PLAYER_AND_MON,
|
|
|
|
// Only the surf blob/mon should bob up and down
|
|
|
|
// For when the player has jumped/flown off
|
|
|
|
BOB_JUST_MON,
|
|
|
|
};
|
2017-09-07 23:28:46 +00:00
|
|
|
|
2018-10-14 22:43:40 +00:00
|
|
|
u8 CreateWarpArrowSprite(void);
|
2021-04-05 14:32:33 +00:00
|
|
|
u8 StartUnderwaterSurfBlobBobbing(u8 oldSpriteId);
|
|
|
|
void SetSurfBlob_BobState(u8 spriteId, u8 state);
|
|
|
|
void SetSurfBlob_DontSyncAnim(u8 spriteId, bool8 dontSync);
|
|
|
|
void SetSurfBlob_PlayerOffset(u8 spriteId, bool8 hasOffset, s16 offset);
|
2019-11-21 03:55:44 +00:00
|
|
|
bool8 sub_8155DA0(struct ObjectEvent *);
|
|
|
|
void sub_8155D78(struct ObjectEvent *);
|
2018-10-14 22:43:40 +00:00
|
|
|
void StartAshFieldEffect(s16, s16, u16, s16);
|
2019-11-21 03:55:44 +00:00
|
|
|
void SetUpReflection(struct ObjectEvent*, struct Sprite*, u8);
|
|
|
|
u32 StartFieldEffectForObjectEvent(u8, struct ObjectEvent*);
|
2018-10-14 22:43:40 +00:00
|
|
|
u8 FindTallGrassFieldEffectSpriteId(u8 localId, u8 mapNum, u8 mapGroup, s16 x, s16 y);
|
2020-06-24 20:27:00 +00:00
|
|
|
void UpdateRayquazaSpotlightEffect(struct Sprite*);
|
2018-10-14 22:43:40 +00:00
|
|
|
void UpdateShadowFieldEffect(struct Sprite*);
|
|
|
|
void UpdateTallGrassFieldEffect(struct Sprite*);
|
2018-10-16 13:55:16 +00:00
|
|
|
void WaitFieldEffectSpriteAnim(struct Sprite*);
|
2018-10-14 22:43:40 +00:00
|
|
|
void UpdateAshFieldEffect(struct Sprite*);
|
|
|
|
void UpdateSurfBlobFieldEffect(struct Sprite*);
|
2020-06-24 20:27:00 +00:00
|
|
|
void UpdateJumpImpactEffect(struct Sprite*);
|
2018-10-14 22:43:40 +00:00
|
|
|
void UpdateFootprintsTireTracksFieldEffect(struct Sprite*);
|
|
|
|
void UpdateSplashFieldEffect(struct Sprite*);
|
|
|
|
void UpdateLongGrassFieldEffect(struct Sprite*);
|
|
|
|
void UpdateSandPileFieldEffect(struct Sprite*);
|
|
|
|
void UpdateDisguiseFieldEffect(struct Sprite*);
|
|
|
|
void UpdateShortGrassFieldEffect(struct Sprite*);
|
|
|
|
void UpdateHotSpringsWaterFieldEffect(struct Sprite*);
|
|
|
|
void UpdateBubblesFieldEffect(struct Sprite*);
|
|
|
|
void UpdateSparkleFieldEffect(struct Sprite*);
|
2018-10-19 05:05:54 +00:00
|
|
|
void SetSpriteInvisible(u8 spriteId);
|
|
|
|
void ShowWarpArrowSprite(u8 spriteId, u8 direction, s16 x, s16 y);
|
2017-09-07 23:28:46 +00:00
|
|
|
|
2017-09-16 19:13:06 +00:00
|
|
|
#endif //GUARD_FIELD_EFFECT_HELPERS_H
|