RemakING of Atari Breakout/Brick Breaker
Go to file
Michael Chen 1fb934f7a6 Merge branch 'devsave' into 'master'
Added control buttons to gameover screen

See merge request czg6669/breakout!4
2018-01-30 09:00:10 +00:00
bin Added control buttons to gameover screen 2018-01-30 09:59:35 +01:00
include/SDL2 Mixer libraries added 2018-01-27 11:37:02 +01:00
lib Mixer libraries added 2018-01-27 11:37:02 +01:00
old merge 2.0 2018-01-25 16:13:17 +01:00
.gitignore Fixed login system 2018-01-29 23:15:40 +01:00
Dokumentation.pdf Changed assets 2018-01-14 11:50:28 +01:00
LICENSE Added files for compilation and basic information (also included dll) 2018-01-07 14:28:49 +01:00
Makefile Fixed login system 2018-01-29 23:15:40 +01:00
README.md Easy compiling instructions added 2018-01-08 00:35:19 +01:00
background.c Minor fix 2018-01-19 07:57:47 +01:00
background.h Backgrounds works now! 2018-01-18 17:03:37 +01:00
breakout.c Removed score penalty, slight fix in collision system 2018-01-29 23:47:18 +01:00
breakout.h Removed score penalty, slight fix in collision system 2018-01-29 23:47:18 +01:00
button.c Filenames as defines 2018-01-16 12:10:37 +01:00
button.h Main Header File added 2018-01-18 15:20:01 +01:00
font.c Added font library (not entirely tested) 2018-01-21 19:41:29 +01:00
font.h Added font library (not entirely tested) 2018-01-21 19:41:29 +01:00
gameover.c Added control buttons to gameover screen 2018-01-30 09:59:35 +01:00
gameover.h Login and Registration system implemented 2018-01-29 21:26:48 +01:00
gamestate.h Added GameOver screen 2018-01-23 21:22:01 +01:00
highscores.c Added control buttons to gameover screen 2018-01-30 09:59:35 +01:00
highscores.h Added control buttons to gameover screen 2018-01-30 09:59:35 +01:00
main.c Added control buttons to gameover screen 2018-01-30 09:59:35 +01:00
main.h Added control buttons to gameover screen 2018-01-30 09:59:35 +01:00
settings.c Stepslider struct,initialization,draw function and graphics added 2018-01-25 22:59:33 +01:00
settings.h Stepslider struct,initialization,draw function and graphics added 2018-01-25 22:59:33 +01:00
startmenu.c Added control buttons to gameover screen 2018-01-30 09:59:35 +01:00
startmenu.h Added control buttons to gameover screen 2018-01-30 09:59:35 +01:00
vector.c Major changes in Scenery updating! 2018-01-21 15:33:09 +01:00
vector.h Major changes in Scenery updating! 2018-01-21 15:33:09 +01:00

README.md

Breakout Game:

The Goal is to destroy all bricks!
You can move the paddle at the bottom of the screen and hit the bricks with the ball.
Don't let the ball fall down!
Notice: This is currently a 32 bit application!

Default controls:

Move left: A or Left Arrow Key
Move left: D or Right Arrow Key

Compilation:

Just run the Makefile! :)
Notice: When compiling with an executable other than gcc.exe you need to adjust this in the Makefile!

Deprecated Installation Guide:

You need SDL2.dll, SDL2_ttf.dll and SDL2_image in the working directory of the compiled executable to run it properly!
Download SDL 2.0: https://www.libsdl.org/download-2.0.php
// Not included yet: Download SDL2_image 2.0: https://www.libsdl.org/projects/SDL_image/
// Not included yet: Download SDL2_ttf 2.0: https://www.libsdl.org/projects/SDL_ttf/
Note: For compilation you need the developement libraries (MinGW 32 or 64 bit) installed!