94 Commits

Author SHA1 Message Date
jonny_jr9
7ec022dd2b Update Readme: Add install section 2024-01-07 22:17:32 +01:00
jonny_jr9
33247f8a5b Adjust volume of crash and portal sounds
Crash sound was way too loud, Portal also felt slightly annoying
- crash: -7dB
- portal: -3dB
2024-01-07 21:47:26 +01:00
jonny-vb
32a0b44f0d Fix LOGE macro (disable color on win), Fix map size "empty"
- 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)
2024-01-07 12:28:59 -08:00
jonny_l480
797805b5e4 gitignore: ignore *.bin files (player_scores.bin) 2023-12-22 13:43:24 +01:00
jonny_l480
fcea6f57ab Fix deadlock on sound error (mutex not released)
when sound failed to play,
the function returned but did not release mutex.
2023-12-22 13:34:51 +01:00
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
jonny_l480
119f9a106d Fix compiler errors and warnings, Cleanup main.cpp
- 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'
2023-12-22 11:40:40 +01:00
Hanse-14
04d45c7988 Merge branch 'dev' of https://github.com/Jonny999999/snake-pp into dev 2023-12-21 10:24:30 +01:00
Hanse-14
f01630fe67 Change scores in leaderboard to 10 2023-12-21 10:19:48 +01:00
Hanse-14
f6ba560da3 Fix: entering long numbers in preferences is no longer allowed 2023-12-20 17:21:13 +01:00
Hanse-14
6ae1bdbfd7 minor change: remove print line debugging 2023-12-20 17:03:14 +01:00
Hanse-14
1f4abeaa00 fix change direction into itself #7 2023-12-20 16:57:29 +01:00
Hanse-14
1a9a348793 fix scoreboard 2023-12-20 16:35:25 +01:00
jonny-vb
0999c5888e Add CPack for creating releases for windows (zip)
On windows a release can be created by running 'cpack' in build folder.
It creates a .zip file with the .exe file as well as all
required libraries and assets.
2023-12-19 09:44:54 -08:00
jonny-vb
778c69f67a Change file strcture: Add assets folder
Change file strcture to make creating a release easier:
- files: move all resources needed by the executable to the folder assets
- cmake: copy the assets folder to build folder after compilation
- adjust all filepaths in source files
2023-12-19 09:43:49 -08:00
jonny_l480
4ea40d99d2 Fix delay after crash (play crash sound async) 2023-12-18 14:50:47 +01:00
Hanse-14
747b949218 Add pause function
- press 'p' or 'space' for pause+
- it goes on with pressing any key
2023-12-18 07:44:03 +01:00
Hanse-14
18feb2ec62 Add Leaderboard
- it is only possible to close with clicking on 'X' with mouse
2023-12-18 07:22:01 +01:00
Hanse-14
b5e85de24c Add module 'files'
- write score after death
- read a number of scores
2023-12-18 04:47:44 +01:00
Hanse-14
7acb37824e Minor fixes 2023-12-18 03:16:36 +01:00
Hanse-14
f6619d1289 Add difficulty level and start map
- 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
2023-12-18 01:42:13 +01:00
Hanse-14
b0bf7e3d62 Merge branch 'dev' of https://github.com/Jonny999999/snake-pp into dev 2023-12-18 00:06:31 +01:00
Hanse-14
0590a782b8 Add input functions
- user must enter nickname
- user must enter difficulty level
- user must enter map
2023-12-18 00:06:28 +01:00
jonny_jr9
8465c16b47 Update Readme: Add image, Optimize links 2023-12-17 22:54:32 +01:00
jonny_jr9
14a66b8e27 Fix bugged tail element at 0,0 when first eaten
Fixed array index
  -> prevents render functions from
  accessing uninitialized value in `snake.tail[]`
2023-12-17 19:40:42 +01:00
jonny_jr9
5c72303409 Fix segfault on linux (use SDL2_ttf)
Loading font caused a segmentation fault
beceause of using SDL_ttf with SDL2 on linux (not compatible)

Note: This section might have helped too but was not necessary at the end:
--- Locate SDL2_ttf ---
find_package(SDL2_ttf REQUIRED)
if(SDL2_ttf_FOUND)
 		add_definitions(-DUSE_SDL2_TTF)
 		set(nativeExtraLibs ${nativeExtraLibs} SDL2_ttf::SDL2_ttf)
         #message(STATUS "DEBUG: ttf-library found!")
 endif()
2023-12-17 14:21:39 +01:00
jonny_jr9
c94f205e47 Add support for difficulty-level 1-3 (food placement)
New file for all difficulty related parameters
Food placement parameters depend on difficulty
2023-12-17 12:44:06 +01:00
jonny_jr9
814cee7ba1 Fix Windows no output, Fix Linux ttf undefined errors (cmake)
- in windows .dll files for SDL_TTF were not copied to output due to typo
    resulted in no output at all (e.g. not even printf in main)
- in linux library is called SDL_ttf instead of SDL2_ttf
    resulted in undefined reference to `TTF_Init' etc
2023-12-17 10:56:10 +01:00
Hanse-14
a7714ec15f Add setting and info screen
- setting screen is only implemented, without features
- info screen is completed currently
2023-12-17 02:42:10 +01:00
Hanse-14
c10481021f Add start start screen
- many updates in some files
2023-12-17 00:44:43 +01:00
jonny-vb
965372c7bf Fix warnings in input.c, map.c (const char, sqrt) 2023-12-15 03:32:47 -08:00
Hanse-14
8f9e555a73 update CMakeLists.txt 2023-12-15 12:00:36 +01:00
Hanse-14
d7c929985f update README.md 2023-12-15 11:56:58 +01:00
Hanse-14
5b581dc031 Add SDL_ttf
- change .gitignore
- change README.md
2023-12-15 11:53:14 +01:00
jonny_jr9
6b4bcb09a8 Fix segfault sound-thread (mutex), Add Portal sound
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
2023-12-15 00:01:22 +01:00
jonny_jr9
52c0838dec Add playSoundAsync() -> Fixes game delay
Add function that plays sound using a separate thread.
For not blocking the main thread
2023-12-14 21:24:49 +01:00
jonny_jr9
9c1ca72321 Add sounds when food eaten, FIXME: adds unwanted delay
playSound() causes approx 200ms delay before playing a sound
which now significantly lags the game when picking up food
2023-12-14 20:29:03 +01:00
jonny_jr9
bc363a9f8b Add playSound(), Reduce debug output - sound on collide works
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
2023-12-14 18:39:20 +01:00
Hanse-14
0371e7f7e8 Add: snake cannot move into opposite direction 2023-12-14 17:16:29 +01:00
Julia09055x
05289068a7 neue Kommentare und Ton mit Windows.h erzeugt (wird abgespielt!), geht nur bei Windows 2023-12-14 11:00:48 +01:00
Julia09055x
e342478695 Ton abspielen 2023-12-14 10:47:44 +01:00
jonny_l480
5cd0f41123 Quit game when collided 2023-12-13 17:40:54 +01:00
Julia09055x
eac493e412 Spielzyklus in main mit GET_TIME_MS() realisiert 2023-12-13 09:16:05 +01:00
jonny_jr9
aaf4eb398a Fix bug 'negative values' in GET_TIME_MS() 2023-12-12 17:14:11 +01:00
jonny_jr9
d8952223f4 Add macro GET_TIME_MS() (windows + linux support) 2023-12-12 16:51:30 +01:00
Julia09055x
aa242676e9 Test: clocks_per_sec 2023-12-12 16:35:12 +01:00
Julia09055x
5c99e2ac79 main: delay und processInput in jedem Schleifendurchlauf 2023-12-12 13:10:09 +01:00
Julia09055x
c461b2af84 game.renderer und wondow.renderer 2023-12-12 11:56:33 +01:00
Julia09055x
4f51654b72 main mit now-Funktion (lt.Flowchart) und globale Variablen aus game für window und renderer 2023-12-12 11:56:08 +01:00
jonny_jr9
9cd6704057 Prevent deadlock in menu (while not implemented) 2023-12-12 10:00:14 +01:00