mirror of
https://github.com/pret/pmd-sky.git
synced 2026-04-26 00:26:19 -05:00
51 lines
1.1 KiB
C
51 lines
1.1 KiB
C
#include "overlay_29_0233836C.h"
|
|
#include "dungeon.h"
|
|
#include "main_0200330C.h"
|
|
#include "overlay_29_02337CA8.h"
|
|
|
|
extern void LogMessageByIdWithPopupCheckUser(struct entity *user, u32 message_id);
|
|
extern void ov29_02306D54(struct entity *);
|
|
|
|
void ResetGravity(void)
|
|
{
|
|
MemZero(&DUNGEON_PTR[0]->gravity, 2);
|
|
}
|
|
|
|
bool8 GravityIsActive()
|
|
{
|
|
return DUNGEON_PTR[0]->gravity;
|
|
}
|
|
|
|
void ov29_023383A8(struct entity *monster)
|
|
{
|
|
#ifndef JAPAN
|
|
LogMessageByIdWithPopupCheckUser(monster, 0xD8D);
|
|
#else
|
|
LogMessageByIdWithPopupCheckUser(monster, 0xACD);
|
|
#endif
|
|
}
|
|
|
|
bool8 TryActivateGravity(struct entity *monster)
|
|
{
|
|
if (!EntityIsValid__02337CA8(monster)) {
|
|
return FALSE;
|
|
}
|
|
if (DUNGEON_PTR[0]->gravity) {
|
|
#ifndef JAPAN
|
|
LogMessageByIdWithPopupCheckUser(monster, 0xC06);
|
|
#else
|
|
LogMessageByIdWithPopupCheckUser(monster, 0x945);
|
|
#endif
|
|
return FALSE;
|
|
}
|
|
DUNGEON_PTR[0]->gravity = TRUE;
|
|
#ifndef JAPAN
|
|
LogMessageByIdWithPopupCheckUser(monster, 0xC05);
|
|
#else
|
|
LogMessageByIdWithPopupCheckUser(monster, 0x944);
|
|
#endif
|
|
ov29_02306D54(monster);
|
|
return TRUE;
|
|
}
|
|
|