]> git.scottworley.com Git - slidingtile/blobdiff - sliding_tile_lib.h
Mark const methods const.
[slidingtile] / sliding_tile_lib.h
index 7b16a5164dae48870fdb431f2911fbd7bb91a16c..4d6c0151e45d622c05e3a0ed98a528bbf80405c5 100644 (file)
@@ -1,20 +1,18 @@
+#ifndef _SLIDING_TILE_LIB_H
+#define _SLIDING_TILE_LIB_H
+
+#include <istream>
+
 const int BOARD_DIM = 4;
 const int BOARD_SIZE = BOARD_DIM * BOARD_DIM;
-signed char adjacent[BOARD_SIZE][5] = {
-  1,   4,   -1,  -1,  -1,
-  0,   2,   5,   -1,  -1,
-  1,   3,   6,   -1,  -1,
-  2,   7,   -1,  -1,  -1,
-  0,   5,   8,   -1,  -1,
-  1,   4,   6,   9,   -1,
-  2,   5,   7,   10,  -1,
-  3,   6,   11,  -1,  -1,
-  4,   9,   12,  -1,  -1,
-  5,   8,   10,  13,  -1,
-  6,   9,   11,  14,  -1,
-  7,   10,  15,  -1,  -1,
-  8,   13,  -1,  -1,  -1,
-  9,   12,  14,  -1,  -1,
-  10,  13,  15,  -1,  -1,
-  11,  14,  -1,  -1,  -1,
+
+struct Board {
+  signed char board[BOARD_SIZE];
+  bool is_valid() const;
+  signed char hole() const;
 };
+std::istream& operator>>(std::istream& is, Board& board);
+
+extern signed char adjacent[BOARD_SIZE][5];
+
+#endif /* _SLIDING_TILE_LIB_H */