Skip to content

vramaiah/akari

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

40 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Akari

This is an implementation of the puzzle Akari in C++.

In an Akari Puzzle, the goal is to place light bulbs on a grid so all purple squares are lit.

  • A light bulb lights up asll the purple squares in its row and column until blocked by a wall.
  • No light bulb may light up another light bulb.

Screenshots

Features

  • Automatic win detection
  • X-out cells
  • Support for custom levels with JSON

How To Build

cmake -DCMAKE_OSX_SYSROOT=$(xcrun --show-sdk-path) \
      -DCMAKE_C_COMPILER=$(xcrun --find clang) \
      -DCMAKE_CXX_COMPILER=$(xcrun --find clang++) \
      -DCMAKE_CXX_FLAGS="-I$(xcrun --show-sdk-path)/usr/include/c++/v1" \
      -B build
cmake --build build --parallel

About

A C++ implementation of the puzzle game Akari

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Contributors