Hanse-14
1eb795f959
Change key event 'q'
...
pressing 'q' while playing current game will be closed and leaderboard would be shown
2024-05-05 19:35:47 +02:00
Hanse-14
274c9354b0
Add blinking 'ENTER' at the end of the leaderboard
...
by pressing 'ENTER' game can be restarted
2024-05-05 13:29:44 +02: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
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
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
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
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
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
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
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
jonny_l480
cc4f8f169f
Add map rotate and speed change via keys (1, 2 , m)
2023-12-11 12:47:46 +01:00
Hanse-14
9afeb85635
Add startposition in mid of map
2023-12-11 12:45:47 +01:00
Julia09055x
8a574acc05
Augen: Position korrigiert
2023-12-11 11:19:44 +01:00
Julia09055x
49a86bc2f6
Food und Collisions haben Rahmen
2023-12-11 11:16:15 +01:00
Julia09055x
286011928e
Snake hat Augen
2023-12-11 11:02:13 +01:00
Julia09055x
4c9b7cdb6b
Portal-Farben angepasst, damit man zsmgehörige Portale erkennt
2023-12-11 10:29:23 +01:00
Julia09055x
5a14a05d60
Merge branch 'dev' of https://github.com/Jonny999999/snake-pp into dev
2023-12-10 21:05:13 +01:00
Julia09055x
2d953e1e1b
Snake hat Tail und Farben angepasst
2023-12-10 21:05:11 +01:00
jonny_jr9
f5a7a90168
Add defaultMap config option
2023-12-10 20:58:18 +01:00