diff options
author | Björn Steinbrink <B.Steinbrink@gmx.de> | 2005-08-13 12:49:52 +0000 |
---|---|---|
committer | Björn Steinbrink <B.Steinbrink@gmx.de> | 2005-08-13 12:49:52 +0000 |
commit | 10b881f997384378a299bff358716db5183b65a5 (patch) | |
tree | 2231d834a69c1db68980c1ccefdc6586df351fc0 /src/inventory.cpp | |
parent | da5a71f65682dbb3f830be4d5ffcd0046aa7b7ce (diff) | |
download | mana-10b881f997384378a299bff358716db5183b65a5.tar.gz mana-10b881f997384378a299bff358716db5183b65a5.tar.bz2 mana-10b881f997384378a299bff358716db5183b65a5.tar.xz mana-10b881f997384378a299bff358716db5183b65a5.zip |
Huge header cleanup to reduce dependencies and compile time.
Diffstat (limited to 'src/inventory.cpp')
-rw-r--r-- | src/inventory.cpp | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/inventory.cpp b/src/inventory.cpp index 30763622..9e3ad375 100644 --- a/src/inventory.cpp +++ b/src/inventory.cpp @@ -24,10 +24,12 @@ #include "inventory.h" #include "equipment.h" +#include "item.h" #include "net/network.h" Inventory::Inventory() { + items = new Item[INVENTORY_SIZE]; for (int i = 0; i < INVENTORY_SIZE; i++) { items[i].setInvIndex(i); } @@ -35,8 +37,27 @@ Inventory::Inventory() Inventory::~Inventory() { + delete [] items; } +Item* Inventory::getItem(int index) +{ + return &items[index]; +} + +void Inventory::addItem(int id, int quantity, bool equipment) +{ + addItem(getFreeSlot(), id, quantity, equipment); +} + +void Inventory::addItem(int index, int id, int quantity, bool equipment) +{ + items[index].setId(id); + items[index].increaseQuantity(quantity); + items[index].setEquipment(equipment); +} + + void Inventory::resetItems() { for (int i = 0; i < INVENTORY_SIZE; i++) { |