Compare commits

...

15 Commits
1.0 ... master

Author SHA1 Message Date
df79395421 Author information updated 2023-01-28 21:19:30 +00:00
Asrın Doğan
5a82e45de7 Replaced some int values with char 2019-09-29 23:18:44 +03:00
Asrın Doğan
5a37718718 Replaced bytes with ints 2019-09-29 23:16:51 +03:00
Asrın Doğan
acfcade62e Script Organization 2019-09-26 23:44:57 +03:00
Asrın Doğan
a87b248a1c Update SynGame.c 2019-09-26 23:20:37 +03:00
Asrın Doğan
8e1dedc421 Update .gitignore for a missing .a file 2019-09-26 22:00:33 +03:00
Asrın Doğan
f9e795e5e4 Added The Missing NULL Checks 2019-09-26 21:58:03 +03:00
Asrın Doğan
5596b53c02 Script Optimization and Organization 2019-09-26 21:49:53 +03:00
Asrın Doğan
f1620e54a0 Added a new Struct for Images 2019-09-26 21:10:50 +03:00
Asrın Doğan
049612b1c8 Changed External Paths to Variables 2019-09-26 20:20:13 +03:00
Asrın Doğan
0738d7f9a7 Spawn Bug Fix, Script Organization and BGM Speed Up 2019-09-26 20:12:04 +03:00
Asrın Doğan
477b4ddb40 Changed TimerDraw Function Slightly for Readability 2019-09-13 21:02:16 +03:00
Asrın Doğan
23a49fa855 Update README.md 2019-09-13 20:33:20 +03:00
Asrın Doğan
0938c7b364 Update README.md 2019-09-13 20:32:26 +03:00
Asrın Doğan
7886dbd994 Readme Update and BGM update 2019-09-13 20:31:08 +03:00
5 changed files with 897 additions and 795 deletions

4
.gitignore vendored
View File

@ -4,13 +4,13 @@
*.a
*.dll
*.syn
!allegro_acodec-5.0.10-md.dll
!allegro_audio-5.0.10-md.dll
!allegro_acodec-5.0.10-md.dll
!allegro_image-5.0.10-md.dll
!allegro_primitives-5.0.10-md.dll
!allegro-5.0.10-md.dll
!liballegro_audio-5.0.10-md.a
!liballegro_acodec-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-5.0.10-md.a

View File

@ -1,26 +1,24 @@
# SynGame
Simple Shoot 'Em Up game.
Simple Shoot 'Em Up game for Windows.
Keys:
Move Up - Up Arrow
Move Right - Right Arrow
Move Down - Down Arrow
Move Left - Left Arrow
Shoot - Space
Restart - R
Keys:\
Move Up - Up Arrow\
Move Right - Right Arrow\
Move Down - Down Arrow\
Move Left - Left Arrow\
Shoot - Space\
Restart - R\
Exit - Escape(ESC)
Settings.syn can be opened with a text editor.
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)
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)\
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
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"

Binary file not shown.

1656
SynGame.c

File diff suppressed because it is too large Load Diff

Binary file not shown.