aboutsummaryrefslogtreecommitdiffstats
path: root/src/inventory.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <tullivan99@gmail.com>2016-10-23 18:05:12 -0500
committerClyne Sullivan <tullivan99@gmail.com>2016-10-23 18:05:12 -0500
commit2dd2f42ff1c683331e7192b4bfb832e41543d2df (patch)
tree50a8c022ed2f38cfae462296b28cd1543e4db42c /src/inventory.cpp
parentb32c68a5a4bfb06f321a1d78357c65458b24e760 (diff)
scriptable tags, inv. system
Diffstat (limited to 'src/inventory.cpp')
-rw-r--r--src/inventory.cpp46
1 files changed, 46 insertions, 0 deletions
diff --git a/src/inventory.cpp b/src/inventory.cpp
new file mode 100644
index 0000000..91e81da
--- /dev/null
+++ b/src/inventory.cpp
@@ -0,0 +1,46 @@
+#include <inventory.hpp>
+
+#include <common.hpp>
+#include <events.hpp>
+#include <texture.hpp>
+#include <render.hpp>
+
+constexpr const char* ICON_TEX_FILE_PATH = "config/invIcons.txt";
+
+static std::vector<GLuint> iconTextures;
+
+void InventorySystem::configure(entityx::EventManager &ev)
+{
+ ev.subscribe<KeyDownEvent>(*this);
+}
+
+void InventorySystem::loadIcons(void) {
+ iconTextures.clear();
+ auto icons = readFileA(ICON_TEX_FILE_PATH);
+ for (const auto& s : icons)
+ iconTextures.push_back(Texture::loadTexture(s));
+}
+
+void InventorySystem::update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt)
+{
+ (void)en;
+ (void)ev;
+ (void)dt;
+
+ static auto color = Texture::genColor(Color(0, 0, 0));
+ vec2 start = vec2(offset.x, 100);// - game::SCREEN_WIDTH / 2 + 20, game::SCREEN_HEIGHT - 40);
+
+ //std::cout << start.x << ' ' << start.y << std::endl;
+
+ Render::textShader.use();
+ glActiveTexture(GL_TEXTURE0);
+ glBindTexture(GL_TEXTURE_2D, color);
+ Render::useShader(&Render::textShader);
+ Render::drawRect(start, start + 20, -9.9f);
+ Render::textShader.unuse();
+}
+
+void InventorySystem::receive(const KeyDownEvent &kde)
+{
+ (void)kde;
+}