]> git.scottworley.com Git - slidingtile/blame - sliding_tile_lib.h
Generate successor boards
[slidingtile] / sliding_tile_lib.h
CommitLineData
82d6eed5
SW
1#ifndef _SLIDING_TILE_LIB_H
2#define _SLIDING_TILE_LIB_H
3
32688d85 4#include <istream>
5d2f7c7c 5#include <memory>
cada47bf 6#include <ostream>
5d2f7c7c 7#include <vector>
32688d85 8
e86755d7
SW
9const int BOARD_DIM = 4;
10const int BOARD_SIZE = BOARD_DIM * BOARD_DIM;
32688d85 11
9c32325f
SW
12struct InvertedBoard {
13 signed char pos[BOARD_SIZE];
14};
15
19bd29f9
SW
16struct Board {
17 signed char board[BOARD_SIZE];
cea272cf
SW
18 bool is_valid() const;
19 signed char hole() const;
9c32325f
SW
20 InvertedBoard invert() const;
21 int distance(const Board& o) const;
22 int distance(const InvertedBoard& invo) const;
19bd29f9 23};
32688d85 24std::istream& operator>>(std::istream& is, Board& board);
cada47bf 25std::ostream& operator<<(std::ostream& os, const Board& board);
32688d85 26
5d2f7c7c
SW
27struct Step {
28 Board board;
29 std::shared_ptr<Step> prev;
30 std::vector<Step*> successors(std::shared_ptr<Step> shared_this);
31 static signed char adjacent[BOARD_SIZE][5];
32};
33
82d6eed5
SW
34
35#endif /* _SLIDING_TILE_LIB_H */