Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/vadniks/jealno

An OpenGL 3D game
https://github.com/vadniks/jealno

3d-graphics cmake cpp game graphics-programming modern-opengl opengl sdl2

Last synced: 4 days ago
JSON representation

An OpenGL 3D game

Awesome Lists containing this project

README

        

# Jealno - A checkers-like 3D OpenGL-based game

Learned the graphics programming by the
`Learn OpenGL - Graphics programming` book by `Joey de Vries`.
That book is truly amazing!

## Screenshots

![](screenshots/a.png)
![](screenshots/b.png)
![](screenshots/c.png)
![](screenshots/d.png)

## Controls

Press buttons q, e, z, c to either select or move a particular chip
up-left, up-right, down-left, down-right respectively.

## Build

This project requires the libraries `SDL2`, `GL`, `GLEW`, `Assimp` to be installed on your
system before building. Only Linux x86_64 targets are supported.

```shell
mkdir build
cd build
cmake ..
make
chmod +x Jealno
./Jealno
```