Home - MATF-RG19/RG33-bally-o GitHub Wiki
Welcome to the RG33-bally-o wiki!
A simple platformer game made in OpenGL/freeGLUT API.
Currently added:
- Basic functionalities of a game (movement, simple physics, collision detection with floor, pausing, restart, game over mechanics)
- Helper functions for drawing our simple objects with triangle strips, by using parametrization and normal vectors (sphere)
- Collision detection events for hitting the floor.
- Camera movements with our player
- Refactored code, added structures for more simplicity and readability, added a settings header that can be used to change animation preferences
- multiple jumping
- efficient cubes for drawing
- Map generation with random numbers, platforms will be drawn instead of using glutSolidCube function.
How to run this
- clone repo
- make
- ./Bally-o
Movement
- w - jump
- d - move right
- a - move left
- q - pause game
- p - game start
- r - restart game
- esc - close window