engine tools: make services list a table and editable

This commit is contained in:
Green Sky 2021-02-09 17:31:35 +01:00
parent ee3386e1ad
commit 77b43c572e
3 changed files with 42 additions and 3 deletions

View File

@ -28,6 +28,7 @@ namespace MM::Services {
// returns wether the channel type is supported
virtual bool getSupportedChannelType(channel_type type) = 0;
// in the best case, this performs a propper MTU estimation (lol)
virtual size_t getMaxPacketSize(void) = 0;
// TODO: add set channel type utils

View File

@ -75,10 +75,46 @@ namespace MM::Services {
void ImGuiEngineTools::renderServices(Engine& engine) {
if (ImGui::Begin("Services##EngineTools", &_show_services)) {
ImGui::Text("TODO: use new table api");
ImGui::Text("TODO: make sortable");
ImGui::Checkbox("edit mode", &_services_edit_mode);
if (ImGui::BeginTable(
"services_table",
3,
ImGuiTableFlags_RowBg //|
)) {
ImGui::TableSetupColumn("id", ImGuiTableColumnFlags_WidthFixed);
ImGui::TableSetupColumn("name");
ImGui::TableSetupColumn("status");
ImGui::TableHeadersRow();
for (auto& it : engine._services) {
ImGui::Text("[%d|%s]: %s", it.first, it.second->second->name(), it.second->first ? "enabled" : "disabled");
ImGui::TableNextRow();
ImGui::TableNextColumn();
ImGui::Text("%d", it.first);
ImGui::TableNextColumn();
ImGui::Text("%s", it.second->second->name());
ImGui::TableNextColumn();
if (_services_edit_mode) {
ImGui::PushID(it.first);
if (ImGui::SmallButton(it.second->first ? "enabled" : "disabled")) {
if (it.second->first) {
engine.disableService(it.first);
} else {
engine.enableService(it.first);
}
}
//ImGui::SetTooltip("click to toggle!"); the heck?
ImGui::PopID();
} else {
ImGui::Text("%s", it.second->first ? "enabled" : "disabled");
}
}
ImGui::EndTable();
}
}
ImGui::End();

View File

@ -17,6 +17,8 @@ namespace MM::Services {
bool _show_about = false;
bool _show_services = false;
bool _services_edit_mode = false;
private:
void renderImGui(Engine& engine);