This a cross-platform 2 dimensional arcade game. The goal is to juggle the ball between steps (for as long as you can) that keep coming from down and move upwards. If the ball touches the top of the screen or fall down in the bottom, you are lost. Currently supports only Windows and Linux.
- GLFW for windowing
- GLEW for accessing OpenGL
Feature | Start Date | End Date |
---|---|---|
Side Boundaries | ||
Thorns at the top | ||
Scoreboard | ||
Lives | ||
Sound FX | ||
Increasing velocities over time |
- Install the pre-requisites:
- Git
- C++ compiler
- CMake (3.3 or above)
- Ninja
- VCPKG (Make sure to set VCPKG_ROOT environment variable)
- Clone the repository
git clone [email protected]:sachingodishela/Rapid-Roll.git && cd Rapid-Roll
- Configure cmake cache (linux) & build the source:
cmake --preset=linux-config && cmake --build --preset=linux-build
- Configure cmake cache (windows) & build the source:
cmake --preset=windows-config && cmake --build --preset=windows-build
- Run the executable generated in the
build
directory.