blob: 480c8032df25240138d9bdf22439fbab46cca3a1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
|
#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<Texture> 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(s);
}
void InventorySystem::update(entityx::EntityManager &en, entityx::EventManager &ev, entityx::TimeDelta dt)
{
(void)en;
(void)ev;
(void)dt;
// TODO TODO TODO TODO until we do something
return;
//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);
Colors::black.use();
Render::useShader(&Render::textShader);
Render::drawRect(start, start + 20, -9.9f);
Render::textShader.unuse();*/
}
void InventorySystem::receive(const KeyDownEvent &kde)
{
(void)kde;
}
|