aboutsummaryrefslogtreecommitdiffstats
path: root/include/inventory.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'include/inventory.hpp')
-rw-r--r--include/inventory.hpp71
1 files changed, 71 insertions, 0 deletions
diff --git a/include/inventory.hpp b/include/inventory.hpp
new file mode 100644
index 0000000..cbce9d9
--- /dev/null
+++ b/include/inventory.hpp
@@ -0,0 +1,71 @@
+#ifndef INVENTORY_H
+#define INVENTORY_H
+
+#include <common.hpp>
+#include <string.h>
+
+#include <Texture.hpp>
+
+#define DEBUG
+
+class Item{
+public:
+ std::string name,type;
+
+ float width;
+ float height;
+ int maxStackSize;
+
+ std::string texloc;
+ Texturec *tex;
+
+ GLuint rtex(){
+ return tex->image[0];
+ }
+};
+
+struct item_t{
+ uint count;
+ uint id;
+} __attribute__((packed));
+
+class Inventory {
+private:
+ unsigned int size;
+ int os = 0;
+public:
+ std::vector<item_t> items;
+ unsigned int sel;
+ bool invOpen = false;
+ bool invOpening = false;
+ bool invHover = false;
+ bool selected = false;
+ bool mouseSel = false;
+ bool usingi = false;
+
+ Inventory(unsigned int s); // Creates an inventory of size 's'
+ ~Inventory(void); // Free's allocated memory
+
+ int addItem(std::string name,uint count);
+ int takeItem(std::string name,uint count);
+ int hasItem(std::string name);
+
+ int useItem(void);
+ bool detectCollision(vec2,vec2);
+
+ void setSelection(unsigned int s);
+ void setSelectionUp();
+ void setSelectionDown();
+
+ void draw(void); // Draws a text list of items in this inventory (should only be called for the player for now)
+};
+
+void initInventorySprites(void);
+void destroyInventory(void);
+
+const char *getItemTexturePath(std::string name);
+GLuint getItemTexture(std::string name);
+float getItemWidth(std::string name);
+float getItemHeight(std::string name);
+
+#endif // INVENTORY_H