summaryrefslogtreecommitdiff
path: root/core/logging.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* root: restructuringDanny Holman2025-08-041-114/+0
| | | | | | | | Restructure the root of the project such that the engine is siloed from the rest of the toolchain. Add two new subdirectories that contain an editor and an offline profiling data analyzer. Signed-off-by: Danny Holman <dholman@gymli.org>
* core: logging: make terminal settings configurableDanny Holman2025-03-201-32/+51
| | | | | | | Make the settings of the log output configurable. Both the color output and the output of debug messages should be togglable at runtime. Signed-off-by: Danny Holman <dholman@gymli.org>
* core: ANSI colors need additional setup on WindowsDanny Holman2024-10-251-1/+15
| | | | | | | The ANSI color codes require additional setup when running under Win32. The logging API should reflect that. Signed-off-by: Danny Holman <dholman@gymli.org>
* core: logging: make color output optionalDanny Holman2024-10-021-8/+37
| | | | | | Add functions that toggle color output from the logging framework. Signed-off-by: Danny Holman <dholman@gymli.org>
* core: logging: print errors and warnings in colorDanny Holman2024-09-181-6/+18
| | | | | | | | Print warnings and errors in yellow and red respectively. This will make these messages stand out and make it easier for a developer to find them in the terminal window. Signed-off-by: Danny Holman <dholman@gymli.org>
* core: add several new filesDanny Holman2024-09-171-1/+1
| | | | | | | | | Add several new files to the core subsystem. These files will be the basic building blocks upon which the rest of the engine will sit atop of. These files will be present in all builds, including headless and platform builds. Signed-off-by: Danny Holman <dholman@gymli.org>
* Makefile: retool the build systemv0.55Danny Holman2024-08-301-1/+1
| | | | | | | | Retool the build system to be more modular and more flexible. Move all subsystems into separate directories and create make.config files that will conditionally compile based on information from the root Makefile. Signed-off-by: Danny Holman <dholman@gymli.org>
* core: refactor entire project rootDanny Holman2024-08-251-0/+40
Reorganize the project root such that each subsystem is placed into its own subdirectory. This allows the build system to select which subsystems to enable for a particular build. Signed-off-by: Danny Holman <dholman@gymli.org>