Helguli / rektangles

Logic game also called shikaku, written in C++ and Qt

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Rektangles

Implementation of a Japanese puzzle game known as shikaku. A game for PinePhone (and for desktop).

Build instructions

Dependencies: C++ compiler, CMake, Kirigami

To build and run the program:

mkdir build
cd build
cmake ..
make
bin/rektangles

With fewer commands:

cmake -B build/ . && cmake --build build/
build/bin/rektangles

How to play

Rules

  1. Divide the grid into rectangles (and squares).
  2. Each rectangle should contain exactly one number.
  3. The number must be equal to the territory of the rectangle.

Controls

  • Navigation: arrow keys
  • Enter/exit selection mode: Space/Enter
  • New game: N
  • Resize board: R
  • Quit: Q

Screenshots

unsolved

solved

unsolved-mobile

solved-mobile

About

Logic game also called shikaku, written in C++ and Qt


Languages

Language:C++ 69.2%Language:QML 26.4%Language:CMake 4.5%