/hectic-hexagons

A clone of Hexic HD, written in C

Primary LanguageCMIT LicenseMIT

build

Hectic Hexagons

A clone of Hexic HD, written in C using the SDL2 library.

The game is currently incomplete, but playable. You can try the demo here.

Install Dependencies

MacOS:

brew install sdl2 sdl2_image sdl2_ttf sdl2_mixer

Ubuntu:

sudo apt-get install libsdl2-dev libsdl2-ttf-dev libsdl2-image-dev libsdl2-mixer-dev

Build

./build.sh

Run

After building, to run the game executable:

./build/hectic-hexagons

Run in the browser

You can also run this game in the browser, but it requires you to install emscripten.

Install dependencies (MacOS):

brew install emscripten

Build:

./build_wasm.sh

This will generate files in the demo folder, which you can view in your browser by starting an http file server, such as:

python -m http.server

Then open localhost:8000 in your browser, and the game should play.