mirror of
https://github.com/pret/pmd-red.git
synced 2026-08-06 02:32:51 -05:00
68 lines
1.7 KiB
C
68 lines
1.7 KiB
C
#include "global.h"
|
|
#include "debug.h"
|
|
#include "event_flag.h"
|
|
#include "ground_map.h"
|
|
#include "ground_map_2.h"
|
|
#include "ground_script.h"
|
|
#include "memory.h"
|
|
|
|
IWRAM_DATA GroundMapAction *gGroundMapAction = {0};
|
|
IWRAM_DATA unkStruct_3001B70 *gGroundMapDungeon_3001B70 = {0};
|
|
|
|
extern const CallbackData gGroundScriptNullCallbacks;
|
|
extern const DebugLocation gUnknown_8117538[];
|
|
|
|
extern void InitActionWithParams(Action *action, const CallbackData *callbacks, void *parent, s16 group, s8 sector);
|
|
extern void sub_80A2D00(unkStruct_3001B70 *);
|
|
extern void sub_80A2D68(unkStruct_3001B70 *);
|
|
extern void sub_80A2D88(unkStruct_3001B70 *);
|
|
|
|
void AllocGroundMapAction(void)
|
|
{
|
|
gGroundMapAction = MemoryAlloc(sizeof(GroundMapAction), 6);
|
|
gGroundMapAction->groundMapId = -1;
|
|
InitActionWithParams(&gGroundMapAction->action, &gGroundScriptNullCallbacks, 0, -1, -1);
|
|
sub_80A5E8C(0);
|
|
GroundMap_Reset();
|
|
}
|
|
|
|
void FreeGroundMapAction(void)
|
|
{
|
|
GroundMap_Reset();
|
|
sub_80A5EBC();
|
|
InitAction2((Action *)gGroundMapAction);
|
|
MemoryFree(gGroundMapAction);
|
|
gGroundMapAction = NULL;
|
|
}
|
|
|
|
void GroundMap_Reset(void)
|
|
{
|
|
ClearScriptVarArray(NULL, MAP_LOCAL);
|
|
ClearScriptVarArray(NULL, MAP_LOCAL_DOOR);
|
|
ActionResetScriptData((Action *)gGroundMapAction, gUnknown_8117538);
|
|
|
|
if (gGroundMapDungeon_3001B70 != NULL) {
|
|
sub_80A2D00(gGroundMapDungeon_3001B70);
|
|
MemoryFree(gGroundMapDungeon_3001B70);
|
|
gGroundMapDungeon_3001B70 = NULL;
|
|
}
|
|
|
|
sub_80A5EDC(0);
|
|
}
|
|
|
|
void sub_80A4B38(void)
|
|
{
|
|
nullsub_121();
|
|
|
|
if (gGroundMapDungeon_3001B70 != NULL)
|
|
sub_80A2D68(gGroundMapDungeon_3001B70);
|
|
}
|
|
|
|
void sub_80A4B54(void)
|
|
{
|
|
if (gGroundMapDungeon_3001B70 != NULL)
|
|
sub_80A2D88(gGroundMapDungeon_3001B70);
|
|
|
|
nullsub_122();
|
|
}
|