Files
Bubberstation/code/__DEFINES/event_logger.dm
CabinetOnFire af8f69da13 Adds "Event Logging", or EVLogging, A new debug system that allows us to track individual datums and log events on a timeline (#96035)
## About The Pull Request

This Pull Request adds a new logging system that uses a timeline to
track and visualize important events for specific datums.

This is done via a new window in which you can select a datum for
tracking, which adds it to the timeline. If this datum implements the
EVLOGGING macros, it can track important events onto this timeline. As
an example, we can log whenever an AI is deciding to make a new path, if
it decides to generate a new decisionmaking plan, it finishes an action,
or it decides to target someone/something.

We can select these events to see more information, and optionally get a
snapshot of important variables at the time this event was logged (like
the blackboard and current plan for AI controllers).

You can also filter out specific events / track info, which is done via
categories. Each event / piece of track info is given a category and if
you disable a category all events / track info in that category is
hidden. This lets you filter out things you might not care about.

<img width="2346" height="1209" alt="image"
src="https://github.com/user-attachments/assets/0763077c-e349-4c7c-b017-23d29e1d089b"
/>

_whoever thinks we didnt need advanced cleanbot logging is a noob_


In the video below I showcase how this works;
https://file.house/7nsOiqdvmSTxlsk3fs-e8g==.mp4
A cleanbot is roaming the halls, I turn on the event logger, click the
"pick target" button and click on the datum I'd like to track (the
cleanbot). This results in the cleanbot now tracking its events. I spawn
some dirt and the cleanbot decides to clean it, and I go through the
events; You can see theres different events being listed, such as when
the cleanbot starts targetting the dirt, when it cleans plan, when it
makes it JPS path and every time it moves over it.


The macros I've currently implemented are as follows:

**EVLOG_TEXT(DATUM, CATEGORY, INFO)**
Only adds text to the event logger window, no world-visuals

EVLOG_LOCATION(DATUM, CATEGORY, INFO, TURF) 
Adds text to the event logger and adds an image to where that turf is.

EVLOG_TURFS(DATUM, CATEGORY, INFO, TURFS)
Adds text to the event logger and adds an image to each turf in the
TURFS list

EVLOG_LINES(DATUM, CATEGORY, INFO, TURF_A, TURF_B)
Adds text to the event logger and adds a line from turf_a to turf_B

EVLOG_PATH(DATUM, CATEGORY, INFO, TURFS)
Adds text to the event logger and visualizes a path from A to B (same
way as the pathfinding debugger, of which I moved the visualization
before to SSPathfinder)

In terms of performance, the logger is a singleton, and events are ONLY
logged if
1. The logger is running
2. The datum has the DF_EVLOGGING flag.

This means most of the time, logging an event is a single var lookup
(Since the runner is off by default). The DF_EVLOGGING flag is off by
default as well and has to be enabled by the event logger, or set
temporarily by a dev in code.

This system can easily be extended with more event types / visualization
types as well. (I'm thinking of datumizing the ones I have now)

The TGUI is still a bit of a mess, I would love some pointers because
I'm not really good at react so I just kind of hit it with a hammer
until it did what I wanted 😎

Also, all of this is based on VisLogging from Unreal Engine, so it will
have some likeness https://unreal-garden.com/tutorials/visual-logger/

## Why It's Good For The Game

This system allows us to debug more complex systems (like basic AI) in
an understandable and clear way. While the implementation cases are not
super common right now, extending this system could make debugging these
systems much more comprehensible, and hopefully lets more developers
help us with improving these systems. (plus, we LOVE timelines)

## Changelog

🆑 CabinetOnFire
refactor: Implements "Event Logging" an improved way for programmers to
debug specific datums.
/🆑

---------

Co-authored-by: Lucy <lucy@absolucy.moe>
2026-05-13 12:37:56 +00:00

62 lines
2.9 KiB
Plaintext

// Event Logger macros. The logging functions only run if the logger is active and the datum being logged has the DF_EVLOGGING flag set. This makes logging itself relatively cheap when not in use.
/// Log a plain text event.
#define EVLOG_TEXT(DATUM, CATEGORY, INFO) \
if(GLOB.event_logger.running && (DATUM.datum_flags & DF_EVLOGGING)) \
{ GLOB.event_logger.log_event_text(DATUM, CATEGORY, INFO) }
/// Log a location event that highlights a single tile when selected.
/// TURF is a /turf. DATUM must have DF_EVLOGGING set.
#define EVLOG_LOCATION(DATUM, CATEGORY, INFO, TURF) \
if(GLOB.event_logger.running && (DATUM.datum_flags & DF_EVLOGGING)) \
{ GLOB.event_logger.log_event_location(DATUM, CATEGORY, INFO, TURF) }
/// Log a turfs event that highlights a set of tiles when selected.
/// TURFS is a list of /turf. DATUM must have DF_EVLOGGING set.
#define EVLOG_TURFS(DATUM, CATEGORY, INFO, TURFS) \
if(GLOB.event_logger.running && (DATUM.datum_flags & DF_EVLOGGING)) \
{ GLOB.event_logger.log_event_turfs(DATUM, CATEGORY, INFO, TURFS) }
/// Log a line event that highlights a path from one tile to another when selected.
/// TURF_A and TURF_B are /turf. DATUM must have DF_EVLOGGING set.
#define EVLOG_LINES(DATUM, CATEGORY, INFO, TURF_A, TURF_B) \
if(GLOB.event_logger.running && (DATUM.datum_flags & DF_EVLOGGING)) \
{ GLOB.event_logger.log_event_lines(DATUM, CATEGORY, INFO, TURF_A, TURF_B) }
/// Log a path event that renders directional arrows + start/end markers when selected.
/// TURFS is an ordered list of /turf. DATUM must have DF_EVLOGGING set.
#define EVLOG_PATH(DATUM, CATEGORY, INFO, TURFS) \
if(GLOB.event_logger.running && (DATUM.datum_flags & DF_EVLOGGING)) \
{ GLOB.event_logger.log_event_path(DATUM, CATEGORY, INFO, TURFS) }
/// Log a maptext event that renders a floating text string at a turf when selected.
/// TURF is a /turf. TEXT is the string to display. DATUM must have DF_EVLOGGING set.
#define EVLOG_MAPTEXT(DATUM, CATEGORY, INFO, TURF, TEXT) \
if(GLOB.event_logger.running && (DATUM.datum_flags & DF_EVLOGGING)) \
{ GLOB.event_logger.log_event_maptext(DATUM, CATEGORY, INFO, TURF, TEXT) }
/// Append a categorized title and entry to a track_info snapshot list.
#define EVLOG_TRACK_INFO_ENTRY(LIST, CATEGORY, KEY, VALUE) \
LIST += list(list("category" = CATEGORY, "title" = KEY, "entry" = VALUE))
#define IS_EVLOGGING GLOB.event_logger.running
///All the types of log entries we have.
#define EVLOG_TYPE_TEXT "text"
#define EVLOG_TYPE_LOCATION "location"
#define EVLOG_TYPE_TURFS "turfs"
#define EVLOG_TYPE_LINES "lines"
#define EVLOG_TYPE_PATH "path"
#define EVLOG_TYPE_MAPTEXT "maptext"
///Categories go here. Put sane names in the string since they get displayed.
#define EVLOG_CATEGORY_MOVELOOPS "Moveloops"
#define EVLOG_CATEGORY_JPS "JPS"
#define EVLOG_CATEGORY_AI_DECISIONMAKING "AI Decisionmaking"
#define EVLOG_CATEGORY_AI_BEHAVIORS "AI Behaviors"
#define EVLOG_CATEGORY_AI_TARGETING "AI Targeting"