https://github.com/pfcode/eti-pp-arkanoid
Yet another implementation of Arkanoid-like game, created on studies at Gdańsk University of Technology as an educational project.
https://github.com/pfcode/eti-pp-arkanoid
Last synced: 18 days ago
JSON representation
Yet another implementation of Arkanoid-like game, created on studies at Gdańsk University of Technology as an educational project.
- Host: GitHub
- URL: https://github.com/pfcode/eti-pp-arkanoid
- Owner: pfcode
- License: mit
- Created: 2016-08-06T10:59:11.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2021-05-31T21:06:45.000Z (about 5 years ago)
- Last Synced: 2025-10-24T19:44:53.263Z (9 months ago)
- Language: C++
- Size: 20.5 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# eti-pp-arkanoid
Clone of a popular 2D game "Arkanoid", made as a project for Basics of Programming
on ETI (https://eti.pg.edu.pl) during the first semester in 2014.
### Dependencies
To compile on Windows:
* MSVC compiler with CMake support
* SDL2 development library for Visual C++ (https://www.libsdl.org/download-2.0.php)
To compile on Linux (and other *nixes):
* G++ compiler (4.9.2 tested)
* libsdl2-devel package (or similar, depending on distro that you use)
### Project structure
* `src/` - source code of the game
* `res/` - graphics and a level.txt file
* `lib/` - a place for SDL2 library distribution when using MSVC
In `src/defines.h` you can change a lot of parameters defining behaviour of the game, including speed parameters,
position of elements, limits for amount of entities visible simultaneously, paths to resources, etc.
The `res/levels.txt` file, as well as other resources referenced in `src/defines.h`, are required for the game to run.
### License
This project is distributed under the MIT license.