- Recently added color to LOGE output did not compile on windows.
Removed color support on windows for now.
- Changed map size of map "empty" from 20x15 to 20x20 (square now)
- 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
- Remove old comments and unused code from main.cpp
- Fix the following compiler errors and warnings (compiles now):
WARNING: main.cpp:64:23: warning: comparison between ‘gameState_t’ {aka ‘enum gameState_t’} and ‘enum menus_t’ if(game.gameState == PAUSE)
WARNING: menu.c:111:9: warning: implicit declaration of function ‘renderSettings’
ERROR: multiple definitions / redefinition of 'int recordsInFile'
- game speed(cycleDurationMs) and food placement depend on difficulty level
- start map would be chosen at the beginning
- switching maps and game speed(cycleDurationMs) is not available during playing
Major changes to sound.c:
- add mutex (fixes segfault, free erros)
- allow only one sound at a time, wait for previous to finish
- outsource init function
- add global variables
- return if successfully played
currently plays sound when snake crashes (leaderboard shown)
- shorten example audio file
- Add sound.c: abstract function to play .wav files
- config:
- Add config option RENDER_GAME_TO_CONSOLE
- disable debug output
- Implemented the functions in the above files
- game and map are partially tested
- food is extensively tested using the created test-function
- Also added DELAY(ms) macro to common.c
=> global config and game struct changed
=> some functions were dropped/moved
- Outsourced data types and functions to map.c / map.h
- Update function and module diagram
- Adjust custom data types in source code