A mini-game about bumper karts (cars). Originally created by me and my friends for a final project on the Computer Graphics course in the college. Now I've added some new stuff!
This is a mini-game made in C++ with OpenGL (freeglut) about bumper karts (cars)!
You're a kart, and you want to clash into another kart (is it necessary to explain this?). The view is just above of the kart and the controls (for player 1) are the following:
- Go forward:
W
- Go backward:
S
- Turn right:
D
- Turn left:
A
For player 2, the controls are the next ones:
- Go forward:
I
- Go backward:
K
- Turn right:
L
- Turn left:
J
By the way, to navigate on the menu you must use W
and S
, and to select an option you must press the SPACE
bar. To exit the current game, just press ESCAPE
. There are some other special keys as well. You can check them out in the game menu!
There are two ways to play this.
- The first one, is downloading (or cloning) this repository and follow the instructions inside the
Release/
orDebug/
folders. The instructions are the following:- Copy the "res/" folder in the same folder as the runnable.
- Download "freeglut 3.0.0 MSVC Package" from here https://www.transmissionzero.co.uk/software/freeglut-devel/, uncompress it and copy "freeglut.dll" file inside freeglut/bin/ (not x64) into the same folder as the runnable.
- Double-click the runnable (or .exe).
- The second one requires nothing but literally download the release of the game in the Releases section, uncompress it, and run the
.exe
file! Note that your system will probably be triggered because of the runnable, but just skip it and play.
Right now, this game only runs on Windows.
BUGS?! BUT WHY! Nah, it's ok. There will always be bugs somewhere. You can report them here! Also, you can request features (but depends on the complexity and time to add these though).
- This game was designed by @ComplexRalex (me), @DannyMannn, and @Mokkuman.
- This was coded in C++ with OpenGL (with freeglut).
- In order to load images, there were used functions from RgbImage library by Sam Buss.