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

https://github.com/bclehmann/inkball

An incomplete recreation of InkBall, a game that came bundled with Windows Vista.
https://github.com/bclehmann/inkball

cplusplus game sdl2 video-game

Last synced: 8 months ago
JSON representation

An incomplete recreation of InkBall, a game that came bundled with Windows Vista.

Awesome Lists containing this project

README

          

# InkBall

This is an InkBall game that's still in development. It doesn't use any game engine, it's just built on top of SDL (which was a big mistake).

# So Far

I have working collisions and you can draw an ink trail which the balls interact with:

![Sample Image](https://raw.githubusercontent.com/bclehmann/InkBall/master/demo/smiley.png)

Todo:
- [ ] Level creation (maybe)

# Building

These are not full instructions. I will revisit this once the game is finished.

For now, all dependencies are statically linked. You can see the dependencies in [dependencies.md](https://github.com/bclehmann/InkBall/blob/master/dependencies.md).

The project is compiled with GCC using the C++ 17 standard, although at the time of writing any C++ 14 or C++ 11 compatible compiler will work (provided you update [CMakeLists.txt](https://github.com/bclehmann/InkBall/blob/master/CMakeLists.txt) accordingly).