aboutsummaryrefslogtreecommitdiffstats
path: root/src/text.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2022-07-09 11:27:17 -0400
committerClyne Sullivan <clyne@bitgloo.com>2022-07-09 11:27:17 -0400
commit9562fde36d6d28188210eb6053b9e2f9a9242702 (patch)
tree2f7bbbf62f2418e999af06cfd67f67b54f3649c8 /src/text.cpp
parent57a1eb6fdccb9023557d0a470796f423f063948a (diff)
mouse events; wip ui dialog box
Diffstat (limited to 'src/text.cpp')
-rw-r--r--src/text.cpp18
1 files changed, 13 insertions, 5 deletions
diff --git a/src/text.cpp b/src/text.cpp
index fb82875..c25eeae 100644
--- a/src/text.cpp
+++ b/src/text.cpp
@@ -13,13 +13,15 @@ TextSystem::~TextSystem(void)
}
void TextSystem::configure([[maybe_unused]] entityx::EntityManager& entities,
- [[maybe_unused]] entityx::EventManager& events)
+ entityx::EventManager& events)
{
+ shouldUpdateVBOs = false;
+
+ events.subscribe<ShowTextEvent>(*this);
+
if (FT_Init_FreeType(&freetype) != 0) {
// TODO handle error
}
-
- shouldUpdateVBOs = false;
}
/**
@@ -42,6 +44,11 @@ void TextSystem::update([[maybe_unused]] entityx::EntityManager& entites,
}
}
+void TextSystem::receive(const ShowTextEvent& ste)
+{
+ put(ste.font, ste.x, ste.y, ste.text);
+}
+
void TextSystem::loadFont(const std::string& name,
const std::string& file,
int size)
@@ -138,7 +145,7 @@ void TextSystem::put(const std::string& font,
if (fontData.find(font) == fontData.end())
return;
- y -= fontData[font].fontSize;
+ y += fontData[font].fontSize;
auto& vector = fontData[font].text;
if (auto i = std::find_if(vector.begin(), vector.end(), [&x, &y](const Text& t) {
@@ -146,7 +153,8 @@ void TextSystem::put(const std::string& font,
vector.erase(i);
}
- fontData[font].text.emplace_back(text, x, y, -9.0f);
+ // Invert y axis so positive grows south.
+ fontData[font].text.emplace_back(text, x, -y, -9.0f);
shouldUpdateVBOs = true;
}