Made an AI debug view to I can make working on the AI easier. I might add the ability to toggle things on/off live to see what the AI does.

This commit is contained in:
Zed A. Shaw 2025-08-23 01:40:51 -04:00
parent fc8e65f4d6
commit 4bf9a9177f
8 changed files with 60 additions and 16 deletions

View file

@ -14,6 +14,7 @@ namespace gui {
public:
int $compass_dir = 0;
bool $needs_render = true;
bool $mind_reading = false;
sf::Clock $clock;
sf::RenderWindow& $window;
OverlayUI $overlay_ui;
@ -31,7 +32,6 @@ namespace gui {
Point plan_move(int dir, bool strafe);
void abort_plan();
void update_level();
DinkyECS::Entity camera_aim();
void init();
void render();
@ -39,5 +39,7 @@ namespace gui {
lel::Cell overlay_cell(const std::string& name);
void dead_entity(DinkyECS::Entity entity);
void toggle_mind_reading();
void render_mind_reading();
};
}