X-Git-Url: http://git.scottworley.com/slidingtile/blobdiff_plain/19bd29f9b2a3e4721943496debfc55e2a7d71da5..e0768fd268b2b06ddd08f24bfc828b397d52a1bb:/sliding_tile_lib.cc diff --git a/sliding_tile_lib.cc b/sliding_tile_lib.cc index 24642f1..5b2e798 100644 --- a/sliding_tile_lib.cc +++ b/sliding_tile_lib.cc @@ -1,6 +1,7 @@ #include "sliding_tile_lib.h" #include +#include signed char adjacent[BOARD_SIZE][5] = { 1, 4, -1, -1, -1, @@ -21,6 +22,29 @@ signed char adjacent[BOARD_SIZE][5] = { 11, 14, -1, -1, -1, }; +bool Board::is_valid() const { + bool seen[BOARD_SIZE]; + for (int i = 0; i < BOARD_SIZE; i++) { + seen[i] = false; + } + + for (int i = 0; i < BOARD_SIZE; i++) { + if (board[i] < 0 || board[i] >= BOARD_SIZE || seen[board[i]]) { + return false; + } + seen[board[i]] = true; + } + + // Redundant because pigeon-hole-principle, but check anyway + for (int i = 0; i < BOARD_SIZE; i++) { + if (!seen[i]) { + return false; + } + } + + return true; +} + std::istream& operator>>(std::istream& is, Board& board) { for (int i = 0; i < BOARD_SIZE; i++) { if (!is.good()) { @@ -35,5 +59,17 @@ std::istream& operator>>(std::istream& is, Board& board) { is >> numeric; board.board[i] = numeric; } + if (!board.is_valid()) { + is.setstate(std::istream::failbit); + } return is; } + +signed char Board::hole() const { + for (int i = 0; i < BOARD_SIZE; i++) { + if (board[i] == 0) { + return i; + } + } + throw std::runtime_error("Board with no hole"); +}