A simple game which takes an image, then slices it into tiles and shuffles.
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
NaiJi ✨ 0d2143925f Fix CMake 3 years ago
.gitignore Change qmake to cmake and build sfml statically 3 years ago
CMakeLists.txt Fix CMake 3 years ago
README.md Update 'README.md' 3 years ago
application.cpp Optimize winning condition 3 years ago
application.h Optimize winning condition 3 years ago
board.cpp Fix runtime crash 3 years ago
board.h Optimize winning condition 3 years ago
filepath_util.h Add -r support 3 years ago
main.cpp Add -r support 3 years ago
output_util.h Update --help and add README 3 years ago

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).

Usage

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.