Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/vadniks/jealno
- Owner: vadniks
- License: gpl-3.0
- Created: 2024-05-08T20:03:59.000Z (7 months ago)
- Default Branch: master
- Last Pushed: 2024-06-21T10:19:49.000Z (5 months ago)
- Last Synced: 2024-06-22T03:26:23.265Z (5 months ago)
- Topics: 3d-graphics, cmake, cpp, game, graphics-programming, modern-opengl, opengl, sdl2
- Language: C++
- Homepage:
- Size: 7.75 MB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
- License: LICENSE
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
```