aboutsummaryrefslogtreecommitdiffstats
path: root/src/ui.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/ui.cpp')
-rw-r--r--src/ui.cpp22
1 files changed, 19 insertions, 3 deletions
diff --git a/src/ui.cpp b/src/ui.cpp
index fc815f2..d14b0a6 100644
--- a/src/ui.cpp
+++ b/src/ui.cpp
@@ -618,6 +618,20 @@ namespace ui {
fclose(bmp);
}
+
+ bool handleGLEvent(SDL_Event& e) {
+ switch (e.type) {
+ case SDL_MOUSEBUTTONDOWN:
+ if ((UISystem::isDialog() | pageTexReady) && (e.button.button & SDL_BUTTON_RIGHT))
+ UISystem::advanceDialog();
+ return true;
+ break;
+ default:
+ break;
+ }
+
+ return false;
+ }
}
using namespace ui;
@@ -658,8 +672,6 @@ void InputSystem::receive(const MainSDLEvent& event)
case SDL_MOUSEBUTTONDOWN:
ev.emit<MouseClickEvent>(mouse, e.button.button);
- UISystem::advanceDialog();
-
if (UISystem::isDialog() || pageTexReady) {
if ((e.button.button & SDL_BUTTON_RIGHT))
UISystem::advanceDialog();
@@ -974,6 +986,10 @@ void UISystem::render(void)
}
if (!importantText.empty()) {
- putStringCentered(offset, importantText);
+ FontSystem::setFontSize(24);
+ FontSystem::setFontZ(-9.0f);
+ putStringCentered(vec2(offset.x, 400), importantText);
+ FontSystem::setFontZ(-6.0f);
+ FontSystem::setFontSize(16);
}
}