From bf01660ab468f49d63a133c28131ab21bba3a1a1 Mon Sep 17 00:00:00 2001 From: Clyne Sullivan Date: Tue, 14 Mar 2017 21:50:17 -0400 Subject: good item using --- include/inventory.hpp | 32 +++++++++++++++++++++++++++----- 1 file changed, 27 insertions(+), 5 deletions(-) (limited to 'include/inventory.hpp') 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, public entityx::Receiver { 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 itemList; + /** * A vector for the player's inventory slots. */ std::vector 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; -- cgit v1.2.3