2026-03-20 17:08:06 +08:00
|
|
|
#include "ConsolePanel.h"
|
|
|
|
|
#include "Managers/LogSystem.h"
|
|
|
|
|
#include "Core/LogEntry.h"
|
|
|
|
|
#include <imgui.h>
|
|
|
|
|
|
2026-03-24 20:02:38 +08:00
|
|
|
namespace XCEngine {
|
|
|
|
|
namespace Editor {
|
2026-03-20 17:08:06 +08:00
|
|
|
|
|
|
|
|
ConsolePanel::ConsolePanel() : Panel("Console") {
|
2026-03-24 20:02:38 +08:00
|
|
|
LogSystem::Get().AddLog(::XCEngine::Debug::LogLevel::Info, "Engine initialized successfully");
|
|
|
|
|
LogSystem::Get().AddLog(::XCEngine::Debug::LogLevel::Info, "Loading default scene...");
|
|
|
|
|
LogSystem::Get().AddLog(::XCEngine::Debug::LogLevel::Warning, "Missing material on object 'Cube'");
|
|
|
|
|
LogSystem::Get().AddLog(::XCEngine::Debug::LogLevel::Error, "Failed to load texture: 'Assets/Textures/missing.png'");
|
|
|
|
|
LogSystem::Get().AddLog(::XCEngine::Debug::LogLevel::Info, "Scene loaded successfully");
|
2026-03-20 17:08:06 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void ConsolePanel::Render() {
|
|
|
|
|
ImGui::Begin(m_name.c_str(), nullptr, ImGuiWindowFlags_None);
|
|
|
|
|
|
|
|
|
|
if (ImGui::Button("Clear")) {
|
|
|
|
|
LogSystem::Get().Clear();
|
|
|
|
|
}
|
|
|
|
|
ImGui::SameLine();
|
2026-03-25 12:30:05 +08:00
|
|
|
|
2026-03-25 12:56:51 +08:00
|
|
|
ImGui::TextColored(ImVec4(0.5f, 0.5f, 0.5f, 1.0f), "Filter:");
|
|
|
|
|
ImGui::SameLine();
|
|
|
|
|
ImGui::Separator();
|
2026-03-25 12:30:05 +08:00
|
|
|
ImGui::SameLine();
|
|
|
|
|
|
|
|
|
|
ImGui::PushStyleVar(ImGuiStyleVar_FrameRounding, 4.0f);
|
|
|
|
|
|
|
|
|
|
ImGui::PushStyleColor(ImGuiCol_Button, m_showInfo ? ImVec4(0.2f, 0.6f, 0.2f, 1.0f) : ImVec4(0.3f, 0.3f, 0.3f, 1.0f));
|
|
|
|
|
if (ImGui::Button("Info")) {
|
|
|
|
|
m_showInfo = !m_showInfo;
|
|
|
|
|
}
|
|
|
|
|
ImGui::PopStyleColor();
|
|
|
|
|
|
|
|
|
|
ImGui::SameLine();
|
|
|
|
|
|
|
|
|
|
ImGui::PushStyleColor(ImGuiCol_Button, m_showWarning ? ImVec4(0.8f, 0.6f, 0.0f, 1.0f) : ImVec4(0.3f, 0.3f, 0.3f, 1.0f));
|
|
|
|
|
if (ImGui::Button("Warn")) {
|
|
|
|
|
m_showWarning = !m_showWarning;
|
|
|
|
|
}
|
|
|
|
|
ImGui::PopStyleColor();
|
|
|
|
|
|
|
|
|
|
ImGui::SameLine();
|
|
|
|
|
|
|
|
|
|
ImGui::PushStyleColor(ImGuiCol_Button, m_showError ? ImVec4(0.8f, 0.2f, 0.2f, 1.0f) : ImVec4(0.3f, 0.3f, 0.3f, 1.0f));
|
|
|
|
|
if (ImGui::Button("Error")) {
|
|
|
|
|
m_showError = !m_showError;
|
|
|
|
|
}
|
|
|
|
|
ImGui::PopStyleColor();
|
|
|
|
|
|
|
|
|
|
ImGui::PopStyleVar();
|
|
|
|
|
|
|
|
|
|
ImGui::Separator();
|
|
|
|
|
|
|
|
|
|
ImGui::BeginChild("LogScroll", ImVec2(0, 0), false, ImGuiWindowFlags_HorizontalScrollbar);
|
|
|
|
|
|
|
|
|
|
size_t logIndex = 0;
|
|
|
|
|
for (const auto& log : LogSystem::Get().GetLogs()) {
|
|
|
|
|
bool shouldShow = false;
|
|
|
|
|
switch (log.level) {
|
|
|
|
|
case ::XCEngine::Debug::LogLevel::Info:
|
|
|
|
|
shouldShow = m_showInfo;
|
|
|
|
|
break;
|
|
|
|
|
case ::XCEngine::Debug::LogLevel::Warning:
|
|
|
|
|
shouldShow = m_showWarning;
|
|
|
|
|
break;
|
|
|
|
|
case ::XCEngine::Debug::LogLevel::Error:
|
|
|
|
|
shouldShow = m_showError;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (!shouldShow) {
|
|
|
|
|
continue;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ImVec4 color;
|
|
|
|
|
const char* prefix;
|
|
|
|
|
|
|
|
|
|
switch (log.level) {
|
|
|
|
|
case ::XCEngine::Debug::LogLevel::Info:
|
|
|
|
|
color = ImVec4(0.5f, 0.5f, 0.5f, 1.0f);
|
|
|
|
|
prefix = "[INFO] ";
|
|
|
|
|
break;
|
|
|
|
|
case ::XCEngine::Debug::LogLevel::Warning:
|
|
|
|
|
color = ImVec4(1.0f, 0.8f, 0.0f, 1.0f);
|
|
|
|
|
prefix = "[WARN] ";
|
|
|
|
|
break;
|
|
|
|
|
case ::XCEngine::Debug::LogLevel::Error:
|
|
|
|
|
color = ImVec4(1.0f, 0.3f, 0.3f, 1.0f);
|
|
|
|
|
prefix = "[ERROR]";
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ImGui::PushID(static_cast<int>(logIndex));
|
|
|
|
|
|
|
|
|
|
std::string timestampStr = "[" + log.timestamp + "] ";
|
|
|
|
|
ImGui::TextColored(ImVec4(0.4f, 0.4f, 0.4f, 1.0f), "%s", timestampStr.c_str());
|
|
|
|
|
ImGui::SameLine();
|
|
|
|
|
|
|
|
|
|
std::string fullMessage = std::string(prefix) + log.message;
|
|
|
|
|
ImGui::TextColored(color, "%s", fullMessage.c_str());
|
|
|
|
|
|
|
|
|
|
if (ImGui::IsItemClicked()) {
|
|
|
|
|
ImGui::SetClipboardText(fullMessage.c_str());
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ImGui::PopID();
|
|
|
|
|
logIndex++;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (m_scrollToBottom && !LogSystem::Get().GetLogs().empty()) {
|
|
|
|
|
ImGui::SetScrollHereY(1.0f);
|
|
|
|
|
m_scrollToBottom = false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ImGui::EndChild();
|
|
|
|
|
ImGui::End();
|
|
|
|
|
}
|
2026-03-20 17:08:06 +08:00
|
|
|
|
2026-03-24 20:02:38 +08:00
|
|
|
}
|
2026-03-20 17:08:06 +08:00
|
|
|
}
|