diff options
author | Clyne Sullivan <tullivan99@gmail.com> | 2017-04-27 21:28:33 -0400 |
---|---|---|
committer | Clyne Sullivan <tullivan99@gmail.com> | 2017-04-27 21:28:33 -0400 |
commit | 00de7a4b0aa48c3cb42c45e0f203902ca034b94c (patch) | |
tree | e364575a000af4a9c65b2e43f5ec565bb2df4bf8 /src/ui.cpp | |
parent | ef1ea79375ce865d78fb7da4244aee65d25c04b3 (diff) |
important textls
Diffstat (limited to 'src/ui.cpp')
-rw-r--r-- | src/ui.cpp | 22 |
1 files changed, 19 insertions, 3 deletions
@@ -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); } } |