diff options
author | Andy <drumsetmonkey@gmail.com> | 2017-01-19 09:21:12 -0500 |
---|---|---|
committer | Andy <drumsetmonkey@gmail.com> | 2017-01-19 09:21:12 -0500 |
commit | 213d9ccfbb4752d4c62d6b7e6b3f9172cdf1bccc (patch) | |
tree | 7872c6f30c8adf048a7863a33d837299c7fb0771 /src/inventory.cpp | |
parent | 19a32074595a4a2797eaeb978f8bd302f736f6a6 (diff) | |
parent | 8452b199d28bea53bf2c5e3b3d604064000fc73d (diff) |
Limb animation actually works
Diffstat (limited to 'src/inventory.cpp')
-rw-r--r-- | src/inventory.cpp | 91 |
1 files changed, 74 insertions, 17 deletions
diff --git a/src/inventory.cpp b/src/inventory.cpp index 480c803..354db9c 100644 --- a/src/inventory.cpp +++ b/src/inventory.cpp @@ -4,21 +4,34 @@ #include <events.hpp> #include <texture.hpp> #include <render.hpp> +#include <ui.hpp> -constexpr const char* ICON_TEX_FILE_PATH = "config/invIcons.txt"; +#include <unordered_map> -static std::vector<Texture> iconTextures; +#include <tinyxml2.h> +using namespace tinyxml2; + +constexpr const char* itemsPath = "config/items.xml"; + +static std::unordered_map<std::string, Item> itemList; 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(s); +void InventorySystem::loadItems(void) { + XMLDocument doc; + doc.LoadFile(itemsPath); + + auto item = doc.FirstChildElement("item"); + if (item == nullptr) + UserError("No items found"); + + do { + itemList.emplace(item->StrAttribute("name"), item); + item = item->NextSiblingElement("item"); + } while (item != nullptr); } void InventorySystem::update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt) @@ -26,23 +39,67 @@ void InventorySystem::update(entityx::EntityManager &en, entityx::EventManager & (void)en; (void)ev; (void)dt; +} - // TODO TODO TODO TODO until we do something - return; +void InventorySystem::render(void) +{ + // calculate positions + items.front().loc = vec2(offset.x - 35 * items.size(), offset.y - game::SCREEN_HEIGHT / 2); + for (unsigned int i = 1; i < items.size(); i++) + items[i].loc = vec2(items[i - 1].loc.x + 70, items[i - 1].loc.y); + + // draw items + for (const auto& i : items) { + // draw the slot + Render::textShader.use(); + Render::textShader.enable(); - //vec2 start = vec2(offset.x, 100);// - game::SCREEN_WIDTH / 2 + 20, game::SCREEN_HEIGHT - 40); + Colors::black.use(); + glUniform4f(Render::textShader.uniform[WU_tex_color], 1, 1, 1, .8); + glVertexAttribPointer(Render::textShader.tex, 2, GL_FLOAT, GL_FALSE, 0, Colors::texCoord); + vec2 end = i.loc + 64; + GLfloat coords[18] = { + i.loc.x, i.loc.y, -7, end.x, i.loc.y, -7, end.x, end.y, -7, + end.x, end.y, -7, i.loc.x, end.y, -7, i.loc.x, i.loc.y, -7 + }; + glVertexAttribPointer(Render::textShader.coord, 3, GL_FLOAT, GL_FALSE, 0, coords); + glDrawArrays(GL_TRIANGLES, 0, 6); + glUniform4f(Render::textShader.uniform[WU_tex_color], 1, 1, 1, 1); - //std::cout << start.x << ' ' << start.y << std::endl; + // draw the item + if (i.item != nullptr) { + i.item->sprite.use(); + static const GLfloat tex[12] = {0,1,1,1,1,0,1,0,0,0,0,1}; + glVertexAttribPointer(Render::textShader.tex, 2, GL_FLOAT, GL_FALSE, 0, tex); + vec2 end = i.loc + i.item->sprite.getDim(); + GLfloat coords[18] = { + i.loc.x, i.loc.y, -7.1, end.x, i.loc.y, -7.1, end.x, end.y, -7.1, + end.x, end.y, -7.1, i.loc.x, end.y, -7.1, i.loc.x, i.loc.y, -7.1 + }; + glVertexAttribPointer(Render::textShader.coord, 3, GL_FLOAT, GL_FALSE, 0, coords); + glDrawArrays(GL_TRIANGLES, 0, 6); + ui::setFontZ(-7.2); + ui::putText(i.loc.x, i.loc.y, std::to_string(i.count).c_str()); + ui::setFontZ(-6); + } + } - /*Render::textShader.use(); - glActiveTexture(GL_TEXTURE0); - Colors::black.use(); - Render::useShader(&Render::textShader); - Render::drawRect(start, start + 20, -9.9f); - Render::textShader.unuse();*/ + Render::textShader.disable(); + Render::textShader.unuse(); } void InventorySystem::receive(const KeyDownEvent &kde) { (void)kde; } + +void InventorySystem::add(const std::string& name, int count) +{ + for (auto& i : items) { + if (i.count == 0) { + i.item = &itemList[name]; + i.count = count; + break; + } + } +} |