mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-03-22 02:05:55 -05:00
64 lines
2.1 KiB
C
64 lines
2.1 KiB
C
#ifndef POKEPLATINUM_UNK_0203A024_H
|
|
#define POKEPLATINUM_UNK_0203A024_H
|
|
|
|
typedef struct {
|
|
u8 unk_00;
|
|
u8 unk_01;
|
|
u16 mapMatrixID;
|
|
u16 scriptsArchiveID;
|
|
u16 initScriptsArchiveID;
|
|
u16 msgArchiveID;
|
|
u16 dayMusicID;
|
|
u16 nightMusicID;
|
|
u16 wildEncountersArchiveID;
|
|
u16 eventsArchiveID;
|
|
u16 mapLabelTextID : 8;
|
|
u16 mapLabelWindowID : 8;
|
|
u8 weather;
|
|
u8 cameraType;
|
|
u16 mapType : 7;
|
|
u16 battleBG : 5;
|
|
u16 isBikeAllowed : 1;
|
|
u16 isRunningAllowed : 1;
|
|
u16 isEscapeRopeAllowed : 1;
|
|
u16 isFlyAllowed : 1;
|
|
} MapHeader;
|
|
|
|
u32 MapHeader_IDBoundsCheck(u32 param0);
|
|
const u16 sub_0203A038(u32 param0);
|
|
const u16 sub_0203A04C(u32 param0);
|
|
const u16 MapHeader_GetMapMatrixID(u32 param0);
|
|
u32 MapHeader_GetMsgArchiveID(u32 param0);
|
|
u32 MapHeader_GetScriptsArchiveID(u32 param0);
|
|
u32 MapHeader_GetInitScriptsArchiveID(u32 param0);
|
|
u16 MapHeader_GetDayMusicID(u32 param0);
|
|
u16 MapHeader_GetNightMusicID(u32 param0);
|
|
BOOL MapHeader_HasWildEncounters(u32 param0);
|
|
u32 MapHeader_GetWildEncountersArchiveID(u32 param0);
|
|
u32 MapHeader_GetEventsArchiveID(u32 param0);
|
|
u32 MapHeader_GetMapLabelTextID(u32 param0);
|
|
u8 MapHeader_GetMapLabelWindowID(u32 param0);
|
|
u32 MapHeader_GetWeatherType(u32 param0);
|
|
u32 MapHeader_GetCameraType(u32 param0);
|
|
u32 MapHeader_GetBattleBG(u32 param0);
|
|
BOOL MapHeader_IsEscapeRopeAllowed(u32 param0);
|
|
BOOL MapHeader_IsFlyAllowed(u32 param0);
|
|
BOOL MapHeader_IsBikeAllowed(u32 param0);
|
|
u32 MapHeader_GetMapType(u32 headerID);
|
|
BOOL MapHeader_IsTeleportAllowed(u32 param0);
|
|
BOOL MapHeader_IsOnMainMatrix(u32 param0);
|
|
BOOL MapHeader_IsPokemonCenter(u32 param0);
|
|
BOOL MapHeader_IsCave(u32 param0);
|
|
BOOL sub_0203A288(u32 param0);
|
|
BOOL MapHeader_IsOutdoors(u32 param0);
|
|
BOOL sub_0203A2C8(u32 param0);
|
|
BOOL MapHeader_IsUnionRoom(const u32 param0);
|
|
BOOL MapHeader_HasFeebasTiles(const u32 param0);
|
|
BOOL MapHeader_IsTrophyGarden(const u32 param0);
|
|
BOOL MapHeader_IsAmitySquare(const u32 param0);
|
|
BOOL MapHeader_IsAzureFluteAllowed(const u32 param0);
|
|
BOOL MapHeader_IsPokemonCenter2F(const u32 param0);
|
|
u32 MapHeader_GetMapEvolutionMethod(u32 param0);
|
|
|
|
#endif // POKEPLATINUM_UNK_0203A024_H
|