diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2016-10-23 18:05:12 -0500 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2016-10-23 18:05:12 -0500 |
commit | 2dd2f42ff1c683331e7192b4bfb832e41543d2df (patch) | |
tree | 50a8c022ed2f38cfae462296b28cd1543e4db42c /src/inventory.cpp | |
parent | b32c68a5a4bfb06f321a1d78357c65458b24e760 (diff) |
scriptable tags, inv. system
Diffstat (limited to 'src/inventory.cpp')
-rw-r--r-- | src/inventory.cpp | 46 |
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; +} |