27 lines
685 B
C++
27 lines
685 B
C++
#include "gui/components/components.hpp"
|
|
#include "script_mgr.hpp"
|
|
#include "view_debug.hpp"
|
|
|
|
namespace big
|
|
{
|
|
void debug::scripts()
|
|
{
|
|
if (ImGui::BeginTabItem("DEBUG_TAB_SCRIPTS"_T.data()))
|
|
{
|
|
components::sub_title("DEBUG_SCRIPTS_SUB_TITLE"_T);
|
|
|
|
g_script_mgr.for_each_script([](const auto& script) {
|
|
|
|
if (script->is_toggleable())
|
|
{
|
|
if (ImGui::Checkbox(script->name(), script->toggle_ptr()))
|
|
{
|
|
g_notification_service->push(std::string(script->name()).append("VIEW_DEBUG_SCRIPTS_SCRIPT"_T.data()), script->is_enabled() ? "VIEW_DEBUG_SCRIPTS_RESUMED"_T.data() : "VIEW_DEBUG_SCRIPTS_HALTED"_T.data());
|
|
}
|
|
}
|
|
});
|
|
|
|
ImGui::EndTabItem();
|
|
}
|
|
}
|
|
} |