summaryrefslogtreecommitdiff
path: root/src/dungeon_util.c
blob: f70148a3b738bc1683e62e2f5ed7996ddf411a77 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
#include "global.h"
#include "dungeon_util.h"

extern struct MapTile* GetMapTileAtPosition(s16, s16);

struct unk8049590
{
    u16 unk0;
    u16 fill2;
    u16 unk4;
    u16 unk6;
    u8 unk8;
};

extern struct unk8049590 *GetMapEntity(s16, s16);

bool8 EntityExists(struct DungeonEntity *entity)
{
    if (!entity)
    {
        return FALSE;
    }
    return entity->entityType != ENTITY_NONE;
}

u32 GetEntityType(struct DungeonEntity *entity)
{
    return entity->entityType;
}

u8 GetEntityRoomIndex(struct DungeonEntity *entity)
{
    return entity->roomIndex;
}

struct DungeonEntityData *sub_8045104(struct DungeonEntity *entity)
{
    return entity->entityData;
}

struct ItemSlot *GetItemData(struct DungeonEntity *entity)
{
    return (struct ItemSlot *)entity->entityData;
}

struct DungeonEntityData *sub_804510C(struct DungeonEntity *entity)
{
    return entity->entityData;
}

struct DungeonEntityData *sub_8045110(struct DungeonEntity *entity)
{
    return entity->entityData;
}

struct MapTile *sub_8045114(struct DungeonEntity *entity)
{
    return GetMapTileAtPosition(entity->posWorldX, entity->posWorldY);
}

struct unk8049590 *sub_8045128(struct DungeonEntity *entity)
{
    return GetMapEntity(entity->posWorldX, entity->posWorldY);
}