15 Commits

Author SHA1 Message Date
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
Hanse-14
b5e85de24c Add module 'files'
- write score after death
- read a number of scores
2023-12-18 04:47:44 +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
8f9e555a73 update CMakeLists.txt 2023-12-15 12:00:36 +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
jonny_jr9
d8952223f4 Add macro GET_TIME_MS() (windows + linux support) 2023-12-12 16:51:30 +01:00
jonny_jr9
3e40be47cf Update module structure: Add map.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
2023-11-10 12:46:00 +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
jonny_jr9
5bba3e1531 Add source files, Fix header files - Compiles now
- Add empty source files for all planned modules
- Add source files to CMAKE source list
- Fix and extend header files so there are no errors
- Create global structs in game.c and config.c
2023-11-08 09:52:25 +01:00
Julia09055x
e5a66c40b4 Add header file 2023-11-07 19:17:59 +01:00
Hanse-14
38e0db28c0 Update git.ignore add SDL2 folder 2023-11-07 16:57:42 +01:00
jonny_jr9
ab7d4add6c Add CMake file for LINUX/WINDOWS compatibility
Due to developers working on windows and linux the compilation process
should be compatible thus using CMAKE.

Tested this configuration on both systems, currently works well and
finds the SDL2 library when installed.
2023-11-07 15:20:47 +01:00