10 Commits

Author SHA1 Message Date
Hanse-14
1f4abeaa00 fix change direction into itself #7 2023-12-20 16:57:29 +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
Hanse-14
0371e7f7e8 Add: snake cannot move into opposite direction 2023-12-14 17:16:29 +01:00
Hanse-14
9afeb85635 Add startposition in mid of map 2023-12-11 12:45:47 +01:00
Hanse-14
655657ab43 Fix snakeSetHeadPos()
- Head position will be updated in tail[][] array
2023-12-07 16:16:29 +01:00
Hanse-14
ae7469f291 add function snakeUpdateHeadPos()
write content of snakeSetHeadPos() in snakeUpdateHeadPos()
snakeSetHeadPos() set head-position via transfer parameters
2023-12-07 15:52:41 +01:00
jonny_jr9
6b29f1360f Fix typos in snake.c - compiles now
- use global variable 'game' from game.h instead of declaring new one
- fix typo wrong variables
- correct move out of map boundary
2023-12-03 21:58:21 +01:00
Hanse-14
dd918c9dec Add functions in snake.c
snakeInit(), snakeGrow(), snakeMove(), snakeSetDir(), snakeIsAlive(),
snakeSetHeadPos()
2023-12-02 13:51:06 +01:00
jonny_jr9
ffbe61a6e5 Add empty function definitions
Add definitions for every function that does nothing for now.
-> now able to implement and call those functions already
2023-11-10 12:54:33 +01:00
jonny_jr9
7309707a97 Change folder structure (Add folders: src, include)
Add src folder for all .c and include folder .h files
=> clearer structure, no documents mixed into code files
2023-11-08 20:41:21 +01:00