56 lines
1.5 KiB
C
56 lines
1.5 KiB
C
|
|
#pragma once
|
||
|
|
|
||
|
|
#include <string>
|
||
|
|
#include <vector>
|
||
|
|
#include <deque>
|
||
|
|
|
||
|
|
/**
|
||
|
|
* @brief ImGui-based debug console for Python REPL
|
||
|
|
*
|
||
|
|
* Provides an overlay console that can execute Python code
|
||
|
|
* without blocking the main game loop. Activated by grave/tilde key.
|
||
|
|
*/
|
||
|
|
class ImGuiConsole {
|
||
|
|
public:
|
||
|
|
ImGuiConsole();
|
||
|
|
|
||
|
|
// Core functionality
|
||
|
|
void render(); // Render the console UI
|
||
|
|
void toggle(); // Toggle visibility
|
||
|
|
bool isVisible() const { return visible; }
|
||
|
|
void setVisible(bool v) { visible = v; }
|
||
|
|
|
||
|
|
// Configuration (for Python API)
|
||
|
|
static bool isEnabled() { return enabled; }
|
||
|
|
static void setEnabled(bool e) { enabled = e; }
|
||
|
|
|
||
|
|
// Input handling
|
||
|
|
bool wantsKeyboardInput() const; // Returns true if ImGui wants keyboard
|
||
|
|
|
||
|
|
private:
|
||
|
|
void executeCommand(const std::string& command);
|
||
|
|
void addOutput(const std::string& text, bool isError = false);
|
||
|
|
|
||
|
|
// State
|
||
|
|
bool visible = false;
|
||
|
|
static bool enabled; // Global enable/disable (for shipping games)
|
||
|
|
|
||
|
|
// Input buffer
|
||
|
|
char inputBuffer[1024] = {0};
|
||
|
|
|
||
|
|
// Output history
|
||
|
|
struct OutputLine {
|
||
|
|
std::string text;
|
||
|
|
bool isError;
|
||
|
|
bool isInput; // True if this was user input (for styling)
|
||
|
|
};
|
||
|
|
std::deque<OutputLine> outputHistory;
|
||
|
|
static constexpr size_t MAX_HISTORY = 500;
|
||
|
|
|
||
|
|
// Command history for up/down navigation
|
||
|
|
std::vector<std::string> commandHistory;
|
||
|
|
int historyIndex = -1;
|
||
|
|
|
||
|
|
// Scroll state
|
||
|
|
bool scrollToBottom = true;
|
||
|
|
};
|