2019-09-10 10:49:27 +03:00
|
|
|
# SynGame
|
2019-09-13 21:02:16 +03:00
|
|
|
Simple Shoot 'Em Up game for Windows.
|
2019-09-10 11:14:36 +03:00
|
|
|
|
2019-09-13 20:32:26 +03:00
|
|
|
Keys:\
|
|
|
|
Move Up - Up Arrow\
|
|
|
|
Move Right - Right Arrow\
|
|
|
|
Move Down - Down Arrow\
|
|
|
|
Move Left - Left Arrow\
|
|
|
|
Shoot - Space\
|
|
|
|
Restart - R\
|
2019-09-13 20:33:20 +03:00
|
|
|
Exit - Escape(ESC)
|
2019-09-10 22:22:22 +03:00
|
|
|
|
2019-09-13 20:32:26 +03:00
|
|
|
Settings.syn can be opened with a text editor.\
|
|
|
|
Settings Format:\
|
|
|
|
First line: Screen Mode, 1 is Fullscreen, 0 is Windowed (Default Value = 1)\
|
|
|
|
Second line: Screen Width, Windowed Mode Only (Default Value = 1600)\
|
|
|
|
Third line: Screen Height, Windowed Mode Only (Default Value = 900)\
|
2019-09-13 20:33:20 +03:00
|
|
|
Fourth line: Enemy Count Limiter, there will be no more enemies than this number on the screen (Default Value = 12)
|
2019-09-10 11:15:30 +03:00
|
|
|
|
2019-09-13 20:32:26 +03:00
|
|
|
Exe without console window\
|
2019-09-10 12:50:01 +03:00
|
|
|
gcc SynGame.c -o SynGame.exe "allegro\lib\liballegro-5.0.10-md.a" "allegro\lib\liballegro_audio-5.0.10-md.a" "allegro\lib\liballegro_acodec-5.0.10-md.a" "allegro\lib\liballegro_image-5.0.10-md.a" "allegro\lib\liballegro_dialog-5.0.10-md.a" "allegro\lib\liballegro_primitives-5.0.10-md.a" --machine-windows
|
2019-09-10 11:14:36 +03:00
|
|
|
|
2019-09-13 20:32:26 +03:00
|
|
|
Exe with console window\
|
2019-09-10 12:50:01 +03:00
|
|
|
gcc SynGame.c -o SynGame.exe "allegro\lib\liballegro-5.0.10-md.a" "allegro\lib\liballegro_audio-5.0.10-md.a" "allegro\lib\liballegro_acodec-5.0.10-md.a" "allegro\lib\liballegro_image-5.0.10-md.a" "allegro\lib\liballegro_primitives-5.0.10-md.a"
|