Add toggle for debug HUD
This commit is contained in:
parent
081dd693ca
commit
c343a7dfaf
@ -21,7 +21,7 @@ ClientCommandProcessor::ClientCommandProcessor(UniverseClientPtr universeClient,
|
|||||||
{"reload", bind(&ClientCommandProcessor::reload, this)},
|
{"reload", bind(&ClientCommandProcessor::reload, this)},
|
||||||
{"whoami", bind(&ClientCommandProcessor::whoami, this)},
|
{"whoami", bind(&ClientCommandProcessor::whoami, this)},
|
||||||
{"gravity", bind(&ClientCommandProcessor::gravity, this)},
|
{"gravity", bind(&ClientCommandProcessor::gravity, this)},
|
||||||
{"debug", bind(&ClientCommandProcessor::debug, this)},
|
{"debug", bind(&ClientCommandProcessor::debug, this, _1)},
|
||||||
{"boxes", bind(&ClientCommandProcessor::boxes, this)},
|
{"boxes", bind(&ClientCommandProcessor::boxes, this)},
|
||||||
{"fullbright", bind(&ClientCommandProcessor::fullbright, this)},
|
{"fullbright", bind(&ClientCommandProcessor::fullbright, this)},
|
||||||
{"asyncLighting", bind(&ClientCommandProcessor::asyncLighting, this)},
|
{"asyncLighting", bind(&ClientCommandProcessor::asyncLighting, this)},
|
||||||
@ -105,6 +105,10 @@ bool ClientCommandProcessor::debugDisplayEnabled() const {
|
|||||||
return m_debugDisplayEnabled;
|
return m_debugDisplayEnabled;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool ClientCommandProcessor::debugHudEnabled() const {
|
||||||
|
return m_debugHudEnabled;
|
||||||
|
}
|
||||||
|
|
||||||
bool ClientCommandProcessor::fixedCameraEnabled() const {
|
bool ClientCommandProcessor::fixedCameraEnabled() const {
|
||||||
return m_fixedCameraEnabled;
|
return m_fixedCameraEnabled;
|
||||||
}
|
}
|
||||||
@ -126,12 +130,18 @@ String ClientCommandProcessor::gravity() {
|
|||||||
return strf("{}", m_universeClient->worldClient()->gravity(m_universeClient->mainPlayer()->position()));
|
return strf("{}", m_universeClient->worldClient()->gravity(m_universeClient->mainPlayer()->position()));
|
||||||
}
|
}
|
||||||
|
|
||||||
String ClientCommandProcessor::debug() {
|
String ClientCommandProcessor::debug(StringList const& arguments) {
|
||||||
if (!adminCommandAllowed())
|
if (!adminCommandAllowed())
|
||||||
return "You must be an admin to use this command.";
|
return "You must be an admin to use this command.";
|
||||||
|
|
||||||
|
if (!arguments.empty() && arguments.at(0).equalsIgnoreCase("hud")) {
|
||||||
|
m_debugHudEnabled = !m_debugHudEnabled;
|
||||||
|
return strf("Debug HUD {}", m_debugHudEnabled ? "enabled" : "disabled");
|
||||||
|
}
|
||||||
|
else {
|
||||||
m_debugDisplayEnabled = !m_debugDisplayEnabled;
|
m_debugDisplayEnabled = !m_debugDisplayEnabled;
|
||||||
return strf("Debug display {}", m_debugDisplayEnabled ? "enabled" : "disabled");
|
return strf("Debug display {}", m_debugDisplayEnabled ? "enabled" : "disabled");
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
String ClientCommandProcessor::boxes() {
|
String ClientCommandProcessor::boxes() {
|
||||||
|
@ -19,6 +19,7 @@ public:
|
|||||||
StringList handleCommand(String const& commandLine);
|
StringList handleCommand(String const& commandLine);
|
||||||
|
|
||||||
bool debugDisplayEnabled() const;
|
bool debugDisplayEnabled() const;
|
||||||
|
bool debugHudEnabled() const;
|
||||||
bool fixedCameraEnabled() const;
|
bool fixedCameraEnabled() const;
|
||||||
|
|
||||||
private:
|
private:
|
||||||
@ -28,7 +29,7 @@ private:
|
|||||||
String reload();
|
String reload();
|
||||||
String whoami();
|
String whoami();
|
||||||
String gravity();
|
String gravity();
|
||||||
String debug();
|
String debug(StringList const& arguments);
|
||||||
String boxes();
|
String boxes();
|
||||||
String fullbright();
|
String fullbright();
|
||||||
String asyncLighting();
|
String asyncLighting();
|
||||||
@ -66,6 +67,7 @@ private:
|
|||||||
ShellParser m_parser;
|
ShellParser m_parser;
|
||||||
LuaBaseComponent m_scriptComponent;
|
LuaBaseComponent m_scriptComponent;
|
||||||
bool m_debugDisplayEnabled = false;
|
bool m_debugDisplayEnabled = false;
|
||||||
|
bool m_debugHudEnabled = true;
|
||||||
bool m_fixedCameraEnabled = false;
|
bool m_fixedCameraEnabled = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -1258,6 +1258,7 @@ void MainInterface::renderDebug() {
|
|||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (m_clientCommandProcessor->debugHudEnabled()) {
|
||||||
auto assets = Root::singleton().assets();
|
auto assets = Root::singleton().assets();
|
||||||
m_guiContext->setFontSize(m_config->debugFontSize);
|
m_guiContext->setFontSize(m_config->debugFontSize);
|
||||||
m_guiContext->setFont(m_config->debugFont);
|
m_guiContext->setFont(m_config->debugFont);
|
||||||
@ -1276,7 +1277,7 @@ void MainInterface::renderDebug() {
|
|||||||
|
|
||||||
int counter = 0;
|
int counter = 0;
|
||||||
for (auto const& pair : logMapValues) {
|
for (auto const& pair : logMapValues) {
|
||||||
TextPositioning positioning = {Vec2F(m_config->debugOffset[0], windowHeight() - m_config->debugOffset[1] - m_config->fontSize * interfaceScale() * counter++)};
|
TextPositioning positioning = { Vec2F(m_config->debugOffset[0], windowHeight() - m_config->debugOffset[1] - m_config->fontSize * interfaceScale() * counter++) };
|
||||||
String& text = formatted.emplace_back(strf("{}^lightgray;:^green,set; {}", pair.first, pair.second));
|
String& text = formatted.emplace_back(strf("{}^lightgray;:^green,set; {}", pair.first, pair.second));
|
||||||
m_debugTextRect.combine(m_guiContext->determineTextSize(text, positioning).padded(m_config->debugBackgroundPad));
|
m_debugTextRect.combine(m_guiContext->determineTextSize(text, positioning).padded(m_config->debugBackgroundPad));
|
||||||
}
|
}
|
||||||
@ -1292,7 +1293,7 @@ void MainInterface::renderDebug() {
|
|||||||
|
|
||||||
counter = 0;
|
counter = 0;
|
||||||
for (auto const& pair : logMapValues) {
|
for (auto const& pair : logMapValues) {
|
||||||
TextPositioning positioning = {Vec2F(m_config->debugOffset[0], windowHeight() - m_config->debugOffset[1] - m_config->fontSize * interfaceScale() * counter)};
|
TextPositioning positioning = { Vec2F(m_config->debugOffset[0], windowHeight() - m_config->debugOffset[1] - m_config->fontSize * interfaceScale() * counter) };
|
||||||
m_guiContext->renderText(formatted[counter], positioning);
|
m_guiContext->renderText(formatted[counter], positioning);
|
||||||
++counter;
|
++counter;
|
||||||
}
|
}
|
||||||
@ -1301,6 +1302,7 @@ void MainInterface::renderDebug() {
|
|||||||
m_guiContext->setDefaultLineSpacing();
|
m_guiContext->setDefaultLineSpacing();
|
||||||
m_guiContext->setFontColor(Vec4B::filled(255));
|
m_guiContext->setFontColor(Vec4B::filled(255));
|
||||||
m_guiContext->setFontProcessingDirectives("");
|
m_guiContext->setFontProcessingDirectives("");
|
||||||
|
}
|
||||||
|
|
||||||
auto const& camera = m_worldPainter->camera();
|
auto const& camera = m_worldPainter->camera();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user