Compare commits

..

No commits in common. "master" and "1.0" have entirely different histories.
master ... 1.0

5 changed files with 725 additions and 827 deletions

4
.gitignore vendored
View File

@ -4,13 +4,13 @@
*.a *.a
*.dll *.dll
*.syn *.syn
!allegro_audio-5.0.10-md.dll
!allegro_acodec-5.0.10-md.dll !allegro_acodec-5.0.10-md.dll
!allegro_audio-5.0.10-md.dll
!allegro_image-5.0.10-md.dll !allegro_image-5.0.10-md.dll
!allegro_primitives-5.0.10-md.dll !allegro_primitives-5.0.10-md.dll
!allegro-5.0.10-md.dll !allegro-5.0.10-md.dll
!liballegro_audio-5.0.10-md.a !liballegro_audio-5.0.10-md.a
!liballegro_acodec-5.0.10-md.a !liballegro_acodec-5.0.10-md.a
!liballegro_image-5.0.10-md.a !liballegro_image-5.0.10-md.a
!liballegro_dialog-5.0.10-md.a
!liballegro_primitives-5.0.10-md.a !liballegro_primitives-5.0.10-md.a
!liballegro-5.0.10-md.a

View File

@ -1,24 +1,26 @@
# SynGame # SynGame
Simple Shoot 'Em Up game for Windows. Simple Shoot 'Em Up game.
Keys:\ Keys:
Move Up - Up Arrow\ Move Up - Up Arrow
Move Right - Right Arrow\ Move Right - Right Arrow
Move Down - Down Arrow\ Move Down - Down Arrow
Move Left - Left Arrow\ Move Left - Left Arrow
Shoot - Space\ Shoot - Space
Restart - R\ Restart - R
Exit - Escape(ESC) Exit - Escape(ESC)
Settings.syn can be opened with a text editor.\ Settings.syn can be opened with a text editor.
Settings Format:\ Format:
First line: Screen Mode, 1 is Fullscreen, 0 is Windowed (Default Value = 1)\ First line: Screen Mode, 1 is Fullscreen, 0 is Windowed (Default Value = 1)
Second line: Screen Width, Windowed Mode Only (Default Value = 1600)\ Second line: Screen Width, Windowed Mode Only (Default Value = 1600)
Third line: Screen Height, Windowed Mode Only (Default Value = 900)\ Third line: Screen Height, Windowed Mode Only (Default Value = 900)
Fourth line: Enemy Count Limiter, there will be no more enemies than this number on the screen (Default Value = 12) Fourth line: Enemy Count Limiter, there will be no more enemies than this number on the screen (Default Value = 12)
Exe without console window\ Exe without console window
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 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
Exe with console window\ Exe with console window
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" 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"

Binary file not shown.

1516
SynGame.c

File diff suppressed because it is too large Load Diff

Binary file not shown.