mirror of
https://github.com/Ninjdai1/pokeemerald.git
synced 2024-11-18 20:47:40 +01:00
190 lines
4.0 KiB
C
190 lines
4.0 KiB
C
|
|
// Includes
|
|
#include "global.h"
|
|
#include "constants/decorations.h"
|
|
#include "decoration.h"
|
|
#include "decoration_inventory.h"
|
|
|
|
// Static type declarations
|
|
|
|
// Static RAM declarations
|
|
|
|
EWRAM_DATA struct DecorationInventory gDecorationInventories[8] = {};
|
|
|
|
// Static ROM declarations
|
|
|
|
// .rodata
|
|
|
|
// .text
|
|
|
|
#define SET_DECOR_INV(i, ptr) {\
|
|
gDecorationInventories[i].items = ptr;\
|
|
gDecorationInventories[i].size = sizeof(ptr);\
|
|
}
|
|
|
|
void SetDecorationInventoriesPointers(void)
|
|
{
|
|
SET_DECOR_INV(0, gSaveBlock1Ptr->decorDesk);
|
|
SET_DECOR_INV(1, gSaveBlock1Ptr->decorChair);
|
|
SET_DECOR_INV(2, gSaveBlock1Ptr->decorPlant);
|
|
SET_DECOR_INV(3, gSaveBlock1Ptr->decorOrnament);
|
|
SET_DECOR_INV(4, gSaveBlock1Ptr->decorMat);
|
|
SET_DECOR_INV(5, gSaveBlock1Ptr->decorPoster);
|
|
SET_DECOR_INV(6, gSaveBlock1Ptr->decorDoll);
|
|
SET_DECOR_INV(7, gSaveBlock1Ptr->decorCushion);
|
|
InitDecorationContextItems();
|
|
}
|
|
|
|
static void ClearDecorationInventory(u8 idx)
|
|
{
|
|
u8 i;
|
|
|
|
for (i = 0; i < gDecorationInventories[idx].size; i ++)
|
|
{
|
|
gDecorationInventories[idx].items[i] = DECOR_NONE;
|
|
}
|
|
}
|
|
|
|
void ClearDecorationInventories(void)
|
|
{
|
|
u8 idx;
|
|
|
|
for (idx = 0; idx < 8; idx ++)
|
|
{
|
|
ClearDecorationInventory(idx);
|
|
}
|
|
}
|
|
|
|
s8 GetFirstEmptyDecorSlot(u8 idx)
|
|
{
|
|
s8 i;
|
|
|
|
for (i = 0; i < (s8)gDecorationInventories[idx].size; i ++)
|
|
{
|
|
if (gDecorationInventories[idx].items[i] == DECOR_NONE)
|
|
{
|
|
return i;
|
|
}
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
bool8 CheckHasDecoration(u8 decor)
|
|
{
|
|
u8 i;
|
|
u8 category;
|
|
|
|
category = gDecorations[decor].category;
|
|
for (i = 0; i < gDecorationInventories[category].size; i ++)
|
|
{
|
|
if (gDecorationInventories[category].items[i] == decor)
|
|
{
|
|
return TRUE;
|
|
}
|
|
}
|
|
return FALSE;
|
|
}
|
|
|
|
bool8 DecorationAdd(u8 decor)
|
|
{
|
|
u8 category;
|
|
s8 idx;
|
|
|
|
if (decor == DECOR_NONE)
|
|
{
|
|
return FALSE;
|
|
}
|
|
category = gDecorations[decor].category;
|
|
idx = GetFirstEmptyDecorSlot(category);
|
|
if (idx == -1)
|
|
{
|
|
return FALSE;
|
|
}
|
|
gDecorationInventories[category].items[idx] = decor;
|
|
return TRUE;
|
|
}
|
|
|
|
bool8 DecorationCheckSpace(u8 decor)
|
|
{
|
|
if (decor == DECOR_NONE)
|
|
{
|
|
return FALSE;
|
|
}
|
|
if (GetFirstEmptyDecorSlot(gDecorations[decor].category) == -1)
|
|
{
|
|
return FALSE;
|
|
}
|
|
return TRUE;
|
|
}
|
|
|
|
s8 DecorationRemove(u8 decor)
|
|
{
|
|
u8 i;
|
|
u8 category;
|
|
|
|
i = 0;
|
|
if (decor == DECOR_NONE)
|
|
{
|
|
return 0;
|
|
}
|
|
for (i = 0; i < gDecorationInventories[gDecorations[decor].category].size; i ++)
|
|
{
|
|
category = gDecorations[decor].category;
|
|
if (gDecorationInventories[category].items[i] == decor)
|
|
{
|
|
gDecorationInventories[category].items[i] = DECOR_NONE;
|
|
CondenseDecorationsInCategory(category);
|
|
return 1;
|
|
}
|
|
}
|
|
return 0;
|
|
}
|
|
|
|
void CondenseDecorationsInCategory(u8 category)
|
|
{
|
|
u8 i;
|
|
u8 j;
|
|
u8 tmp;
|
|
|
|
for (i = 0; i < gDecorationInventories[category].size; i ++)
|
|
{
|
|
for (j = i + 1; j < gDecorationInventories[category].size; j ++)
|
|
{
|
|
if (gDecorationInventories[category].items[j] != DECOR_NONE && (gDecorationInventories[category].items[i] == DECOR_NONE || gDecorationInventories[category].items[i] > gDecorationInventories[category].items[j]))
|
|
{
|
|
tmp = gDecorationInventories[category].items[i];
|
|
gDecorationInventories[category].items[i] = gDecorationInventories[category].items[j];
|
|
gDecorationInventories[category].items[j] = tmp;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
u8 GetNumOwnedDecorationsInCategory(u8 idx)
|
|
{
|
|
u8 i;
|
|
u8 ct;
|
|
|
|
ct = 0;
|
|
for (i = 0; i < gDecorationInventories[idx].size; i ++)
|
|
{
|
|
if (gDecorationInventories[idx].items[i] != DECOR_NONE)
|
|
{
|
|
ct ++;
|
|
}
|
|
}
|
|
return ct;
|
|
}
|
|
|
|
u8 GetNumOwnedDecorations(void)
|
|
{
|
|
u8 category;
|
|
u8 count;
|
|
|
|
count = 0;
|
|
for (category = 0; category < DECORCAT_COUNT; category++)
|
|
count += GetNumOwnedDecorationsInCategory(category);
|
|
|
|
return count;
|
|
}
|