diff options
author | Dennis <dhilhorst2000@gmail.com> | 2021-07-10 18:23:20 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-10 11:23:20 -0500 |
commit | 92a8e55fdd348a88a365eb389181d8e29da6dad9 (patch) | |
tree | 2467ef22cb8cf75bdf056143fab3fac4a68ef404 /src/kecleon_items_1.c | |
parent | 386299d1f401cb939e6fe3ea16d0ca57731b2648 (diff) |
Decompiled some item related functions (#42)
* decompile sub_8091290
* decompile sub_80912c8
* rename functions / struct field
* more names
* decompile 80913A0
* decompile GetItemMove
* decompile sub_80913E0
* rename function
* decompile CanSellItem function
* rename inventory struct
* add some item check functions
* fix renaming stuff
* this file shouldnt have been here
* forgot merge conflict
* decompile more item functions
* rename some stuff
* fix HM/TM naming
* Update src/code_801AFA4.c
Use enum value for USED_TM
* Fix incorrect value
Co-authored-by: Seth Barberee <seth.barberee@gmail.com>
Diffstat (limited to 'src/kecleon_items_1.c')
-rw-r--r-- | src/kecleon_items_1.c | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/src/kecleon_items_1.c b/src/kecleon_items_1.c index faa8c6b..b9a1a3c 100644 --- a/src/kecleon_items_1.c +++ b/src/kecleon_items_1.c @@ -4,13 +4,13 @@ #include "input.h" #include "item.h" #include "kecleon_items.h" -#include "gUnknown_203B460.h" +#include "team_inventory.h" extern struct unkStruct_203B210 *gUnknown_203B210; -extern struct unkStruct_203B460 *gUnknown_203B460; +extern struct TeamInventory *gTeamInventory_203B460; -extern u32 sub_8090CCC(struct ItemStruct_203B460 *); -extern bool8 sub_80914E4(u8); +extern u32 GetStackSellPrice(struct ItemSlot *); +extern bool8 CanSellItem(u8); extern u32 sub_8091814(void); extern u32 sub_8091A48(void); extern s32 sub_80144A4(s32 *); @@ -36,14 +36,14 @@ void sub_8019B08(void) break; case 3: gUnknown_203B210->unk24 = sub_801A8AC(); - gUnknown_203B210->unk1C = gUnknown_203B460->fill0[gUnknown_203B210->unk24]; - gUnknown_203B210->itemSellPrice = sub_8090CCC(&gUnknown_203B210->unk1C); + gUnknown_203B210->unk1C = gTeamInventory_203B460->teamItems[gUnknown_203B210->unk24]; + gUnknown_203B210->itemSellPrice = GetStackSellPrice(&gUnknown_203B210->unk1C); UpdateKecleonStoreState(0x1c); break; case 4: gUnknown_203B210->unk24 = sub_801A8AC(); - gUnknown_203B210->unk1C = gUnknown_203B460->fill0[gUnknown_203B210->unk24]; - gUnknown_203B210->itemSellPrice = sub_8090CCC(&gUnknown_203B210->unk1C); + gUnknown_203B210->unk1C = gTeamInventory_203B460->teamItems[gUnknown_203B210->unk24]; + gUnknown_203B210->itemSellPrice = GetStackSellPrice(&gUnknown_203B210->unk1C); sub_8099690(0); UpdateKecleonStoreState(0x1d); break; @@ -74,10 +74,10 @@ void sub_8019BBC(void) } switch(menuAction){ case 2: - if (gUnknown_203B460->teamMoney == 0) { + if (gTeamInventory_203B460->teamMoney == 0) { UpdateKecleonStoreState(0x6); } - else if (gUnknown_203B210->itemSellPrice > gUnknown_203B460->teamMoney) { + else if (gUnknown_203B210->itemSellPrice > gTeamInventory_203B460->teamMoney) { UpdateKecleonStoreState(0xC); } else { @@ -105,10 +105,10 @@ void sub_8019C78(void) switch(menuAction){ case 3: sub_8099690(0); - if (!sub_80914E4(gUnknown_203B210->unk1C.itemIndex)) { + if (!CanSellItem(gUnknown_203B210->unk1C.itemIndex)) { UpdateKecleonStoreState(0xd); } - else if (gUnknown_203B210->itemSellPrice + gUnknown_203B460->teamMoney > 99999) { + else if (gUnknown_203B210->itemSellPrice + gTeamInventory_203B460->teamMoney > 99999) { UpdateKecleonStoreState(0xe); } else { @@ -176,15 +176,15 @@ u32 sub_8019D8C(void) void sub_8019DAC(void) { s32 iVar3; - struct ItemStruct_203B460 *pbVar4; + struct ItemSlot *pbVar4; s32 iVar5; gUnknown_203B210->unk14 = 0; gUnknown_203B210->unk18 = 0; for(iVar5 = 0; iVar5 < 0x14; iVar5++){ - pbVar4 = &gUnknown_203B460->fill0[iVar5]; - if (((pbVar4->unk0 & 1) != 0) && (sub_80914E4(pbVar4->itemIndex))) { - iVar3 = sub_8090CCC(pbVar4); + pbVar4 = &gTeamInventory_203B460->teamItems[iVar5]; + if (((pbVar4->unk0 & 1) != 0) && (CanSellItem(pbVar4->itemIndex))) { + iVar3 = GetStackSellPrice(pbVar4); gUnknown_203B210->unk18 += iVar3; gUnknown_203B210->unk14++; } |