snake-pp/include/config.h
jonny_l480 a0622fff1e Add LOGE(), Optimize logging
- Add LOGE() macro with colored output
- use LOGE for all errors (adjust all files)

- main.cpp: fix log spam in PAUSED state
- log formatting optimizations
- fix food tries count
- add log output when switching from and too PAUSED
2023-12-22 13:31:24 +01:00

32 lines
1020 B
C

#pragma once
// global configuration macros
#define MAX_MAP_SIZE 20
#define MAX_MAP_FIELDS (MAX_MAP_SIZE*MAX_MAP_SIZE)
// logging settings
//#define DEBUG_OUTPUT_ENABLED
#define INFO_OUTPUT_ENABLED
#define ERROR_OUTPUT_ENABLED
//#define RENDER_GAME_TO_CONSOLE
// struct for storing game configuration
typedef struct config_t
{
const int windowSize; // feste Größe des Spielfensters
//Breite und Höhe sind gleich -> Spielfeld ist quadratisch
int blockSizePx; // Pixelgröße von einem Block
//wird über windowSize/mapHeight berechnet
int cycleDurationMs; // ms between each game loop iterartion (game speed)
int difficulty; // 0-3 //Schwierigkeitsgrad
int snakeDefaultLength; // = 2 //Länge der Schlange
const char *leaderboardFilename; // Dateiname des Leaderboards
const char *defaultMapName; // Name der map die initial geladen wird
} config_t;
// global config struct defined in config.c
extern config_t config;