summaryrefslogtreecommitdiff
path: root/src/client/gameui.cpp
diff options
context:
space:
mode:
authorLoic Blot <loic.blot@unix-experience.fr>2018-01-04 23:32:32 +0100
committerLoïc Blot <nerzhul@users.noreply.github.com>2018-01-05 20:59:30 +0100
commit02f82eca0b20a4e998e1541413e64766db5d12b0 (patch)
treed08793f430fefa69faa5ec6b665d11386d5d7980 /src/client/gameui.cpp
parent326b0faa5e0bee62ee3100f345c021cee020f2dd (diff)
downloadminetest-02f82eca0b20a4e998e1541413e64766db5d12b0.tar.gz
minetest-02f82eca0b20a4e998e1541413e64766db5d12b0.tar.bz2
minetest-02f82eca0b20a4e998e1541413e64766db5d12b0.zip
GameUI refactor (part 6/X): Move Game::guitext_profiler & showStatusTextSimple to GameUI class
Other enhancements: * Move showStatusTextSimple to GameUI class & rename to showTranslatedStatusText
Diffstat (limited to 'src/client/gameui.cpp')
-rw-r--r--src/client/gameui.cpp62
1 files changed, 62 insertions, 0 deletions
diff --git a/src/client/gameui.cpp b/src/client/gameui.cpp
index 8a8a091c6..924336165 100644
--- a/src/client/gameui.cpp
+++ b/src/client/gameui.cpp
@@ -20,12 +20,14 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include "gameui.h"
#include <irrlicht_changes/static_text.h>
+#include <gettext.h>
#include "gui/mainmenumanager.h"
#include "util/pointedthing.h"
#include "client.h"
#include "clientmap.h"
#include "fontengine.h"
#include "nodedef.h"
+#include "profiler.h"
#include "renderingengine.h"
#include "version.h"
@@ -64,6 +66,13 @@ void GameUI::init()
m_guitext_chat = gui::StaticText::add(guienv, L"", core::rect<s32>(0, 0, 0, 0),
//false, false); // Disable word wrap as of now
false, true, guiroot);
+
+ // Profiler text (size is updated when text is updated)
+ m_guitext_profiler = gui::StaticText::add(guienv, L"<Profiler>",
+ core::rect<s32>(0, 0, 0, 0), false, false, guiroot);
+ m_guitext_profiler->setBackgroundColor(video::SColor(120, 0, 0, 0));
+ m_guitext_profiler->setVisible(false);
+ m_guitext_profiler->setWordWrap(true);
}
void GameUI::update(const RunStats &stats, Client *client, MapDrawControl *draw_control,
@@ -188,6 +197,13 @@ void GameUI::showMinimap(bool show)
m_flags.show_minimap = show;
}
+void GameUI::showTranslatedStatusText(const char *str)
+{
+ const wchar_t *wmsg = wgettext(str);
+ showStatusText(wmsg);
+ delete[] wmsg;
+}
+
void GameUI::setChatText(const EnrichedString &chat_text, u32 recent_chat_count,
u32 profiler_current_page)
{
@@ -214,3 +230,49 @@ void GameUI::setChatText(const EnrichedString &chat_text, u32 recent_chat_count,
m_guitext_chat->setVisible(m_flags.show_chat &&
recent_chat_count != 0 && profiler_current_page == 0);
}
+
+void GameUI::updateProfiler(u32 profiler_current_page, u32 profiler_max_page)
+{
+ if (profiler_current_page != 0) {
+ std::ostringstream os(std::ios_base::binary);
+ g_profiler->printPage(os, profiler_current_page,
+ profiler_max_page);
+
+ std::wstring text = translate_string(utf8_to_wide(os.str()));
+ setStaticText(m_guitext_profiler, text.c_str());
+
+ s32 w = g_fontengine->getTextWidth(text);
+
+ if (w < 400)
+ w = 400;
+
+ unsigned text_height = g_fontengine->getTextHeight();
+
+ core::position2di upper_left, lower_right;
+
+ upper_left.X = 6;
+ upper_left.Y = (text_height + 5) * 2;
+ lower_right.X = 12 + w;
+ lower_right.Y = upper_left.Y + (text_height + 1) * MAX_PROFILER_TEXT_ROWS;
+
+ s32 screen_height = RenderingEngine::get_video_driver()->getScreenSize().Height;
+
+ if (lower_right.Y > screen_height * 2 / 3)
+ lower_right.Y = screen_height * 2 / 3;
+
+ m_guitext_profiler->setRelativePosition(core::rect<s32>(upper_left, lower_right));
+ }
+
+ m_guitext_profiler->setVisible(profiler_current_page != 0);
+
+ if (profiler_current_page != 0) {
+ wchar_t buf[255];
+ const wchar_t* str = wgettext("Profiler shown (page %d of %d)");
+ swprintf(buf, sizeof(buf) / sizeof(wchar_t), str,
+ profiler_current_page, profiler_max_page);
+ delete[] str;
+ showStatusText(buf);
+ } else {
+ showTranslatedStatusText("Profiler hidden");
+ }
+}