A simple game which takes an image, then slices it into tiles and shuffles.
Go to file
NaiJi ✨ bb0c4d9fc4 Add 'LICENSE' 2022-03-30 14:35:42 +00:00
.gitignore Change qmake to cmake and build sfml statically 2020-12-22 01:06:04 +03:00
CMakeLists.txt Add multifolder support 2021-04-24 23:46:31 +03:00
LICENSE Add 'LICENSE' 2022-03-30 14:35:42 +00:00
README.md Fix README 2021-01-09 12:07:36 +03:00
application.cpp Clean code 2021-03-24 17:19:55 +03:00
application.h Optimize winning condition 2021-01-09 00:14:28 +03:00
argsprocessor.cpp Add multifolder support 2021-04-24 23:46:31 +03:00
argsprocessor.h Add multifolder support 2021-04-24 23:46:31 +03:00
board.cpp Add multifolder support 2021-04-24 23:46:31 +03:00
board.h Clean code 2021-03-24 17:19:55 +03:00
filepath_util.h Add multifolder support 2021-04-24 23:46:31 +03:00
main.cpp Add multifolder support 2021-04-24 23:46:31 +03:00
output_util.h Update --help and add README 2021-01-09 00:27:07 +03:00

README.md

sliding-puzzle

A simple game which takes an image, then slices it into tiles and shuffles. You need to restore the initial image by swapping neighbor tiles! It's a command line application and does support --help.

How to build

You only need a compiler supporting c++17 and sfml 2.5.1 (or latter versions).

First of all, clone the project and go to the project folder

git clone https://dev.udongein.xyz/NaiJi/sliding-puzzle
cd sliding-puzzle/

Then simply build it with CMake

cmake CMakeLists.txt -B ../sliding-puzzle-build
cd ../sliding-puzzle-build
make

Usage

Run it from terminal, providing optional flags and filepath. Move cursor by either WASD or arrows. Press Z to select a tile and then select a direction to swap the tile with a neighbor from that direction. Repeat until the inital image gets completely assembled!

usage: sliding-puzzle [-OPTIONS...] FILE-OR-DIRECTORY

    Provide FILE-OR-DIRECTORY variable as a path to either a directory
    which contains images (one will be picked randomly) or a specific
    image file of .bmp, .jpg, of .png format.

    If no path was provided, it will be assumed as '.'!

    Options:
      [-r NUMxNUM] Provide it if you want to explicitly define
                   window resolution.
      [-s NUM]     Provide it if you want to explicitly define
                   qualifier for image slicing, it's counted
                   by the smallest side of given source texture.
                   Hence, if your image is square, the amount of tiles
                   will be num * num.