aboutsummaryrefslogtreecommitdiffstats
path: root/include/inventory.hpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2017-03-14 21:50:17 -0400
committerClyne Sullivan <tullivan99@gmail.com>2017-03-14 21:50:17 -0400
commitbf01660ab468f49d63a133c28131ab21bba3a1a1 (patch)
treed1b6ef1920ae755ccd0c2b2562e2b988458182ec /include/inventory.hpp
parentba651a82d585c181e9632fadba5bb4d683842d44 (diff)
good item using
Diffstat (limited to 'include/inventory.hpp')
-rw-r--r--include/inventory.hpp32
1 files changed, 27 insertions, 5 deletions
diff --git a/include/inventory.hpp b/include/inventory.hpp
index 084a2d6..1052b20 100644
--- a/include/inventory.hpp
+++ b/include/inventory.hpp
@@ -63,24 +63,46 @@ struct InventoryEntry {
: item(nullptr), count(0) {}
};
+struct UseItemEvent {
+ Item* item;
+ vec2 curs;
+
+ UseItemEvent(Item* i, vec2 c)
+ : item(i), curs(c) {}
+};
+
/**
* @class InventorySystem
* Handles the player's inventory system.
*/
class InventorySystem : public entityx::System<InventorySystem>, public entityx::Receiver<InventorySystem> {
private:
+ constexpr static const char* itemsPath = "config/items.xml";
+ constexpr static int entrySize = 70;
+ constexpr static int hotbarSize = 4;
+ constexpr static float inventoryZ = -5.0f;
+ constexpr static unsigned int rowSize = 8;
+
+ /**
+ * A 'database' of all existing items.
+ */
+ std::unordered_map<std::string, Item> itemList;
+
/**
* A vector for the player's inventory slots.
*/
std::vector<InventoryEntry> items;
- void loadItems(void);
+ vec2 hotStart, hotEnd;
+ vec2 fullStart, fullEnd;
+
+ int movingItem = -1;
+ bool fullInventory = false;
+
+ void loadItems(void);
public:
- InventorySystem(int size = 20) {
- items.resize(size);
- loadItems();
- }
+ InventorySystem(int size = 20);
void configure(entityx::EventManager &ev);
void update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) override;