Skip to content

Commit 75aa41c

Browse files
committedMay 29, 2018
Fix GameUI flag value regression introduced by a78659e
Added more strong unittests on that part to prevent future regression
1 parent 67ed56b commit 75aa41c

File tree

3 files changed

+11
-4
lines changed

3 files changed

+11
-4
lines changed
 

‎src/client/gameui.cpp

-2
Original file line numberDiff line numberDiff line change
@@ -189,8 +189,6 @@ void GameUI::update(const RunStats &stats, Client *client, MapDrawControl *draw_
189189
void GameUI::initFlags()
190190
{
191191
m_flags = GameUI::Flags();
192-
m_flags.show_chat = true;
193-
m_flags.show_hud = true;
194192
m_flags.show_debug = g_settings->getBool("show_debug");
195193
}
196194

‎src/client/gameui.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -54,9 +54,9 @@ class GameUI
5454
{
5555
bool show_chat = true;
5656
bool show_hud = true;
57-
bool show_minimap = true;
57+
bool show_minimap = false;
5858
bool show_debug = true;
59-
bool show_profiler_graph = true;
59+
bool show_profiler_graph = false;
6060
};
6161

6262
void init();

‎src/unittest/test_gameui.cpp

+9
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,18 @@ void TestGameUI::runTests(IGameDef *gamedef)
4848
void TestGameUI::testInit()
4949
{
5050
GameUI gui{};
51+
// Ensure flags on GameUI init
52+
UASSERT(gui.getFlags().show_chat)
53+
UASSERT(gui.getFlags().show_hud)
54+
UASSERT(!gui.getFlags().show_minimap)
55+
UASSERT(!gui.getFlags().show_profiler_graph)
56+
57+
// And after the initFlags init stage
5158
gui.initFlags();
5259
UASSERT(gui.getFlags().show_chat)
5360
UASSERT(gui.getFlags().show_hud)
61+
UASSERT(!gui.getFlags().show_minimap)
62+
UASSERT(!gui.getFlags().show_profiler_graph)
5463

5564
// @TODO verify if we can create non UI nulldevice to test this function
5665
// gui.init();

0 commit comments

Comments
 (0)
Please sign in to comment.