Game.cpp 8.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302
  1. #include <iostream>
  2. #include "Game.h"
  3. #include "Types.h"
  4. Game::Game() : activeX(-1), activeY(-1), directionX(0), directionY(0), state(SELECTION), lastLocation(0) {
  5. reset();
  6. }
  7. void Game::reset() {
  8. activeX = -1;
  9. activeY = -1;
  10. for(uint x = 0; x < 9; x++) {
  11. for(uint y = 0; y < 5; y++) {
  12. fields[x][y] = (y > 2 ? WHITE : BLACK);
  13. }
  14. }
  15. fields[0][2] = WHITE;
  16. fields[2][2] = WHITE;
  17. fields[4][2] = EMPTY;
  18. fields[5][2] = WHITE;
  19. fields[7][2] = WHITE;
  20. }
  21. void Game::reset(String& output) {
  22. reset();
  23. output.append("Fanorona Game\n\r");
  24. print(output);
  25. output.append("Human Color: White(O)\n\rAIColor: Black(#)\n\rHuman turn\n\rselect stone: ");
  26. }
  27. void Game::print(String& s) const {
  28. s.append("\n\r 0 1 2 3 4 5 6 7 8\n\r");
  29. printLine(s, 0);
  30. s.append(" |\\|/|\\|/|\\|/|\\|/|\n\r");
  31. printLine(s, 1);
  32. s.append(" |/|\\|/|\\|/|\\|/|\\|\n\r");
  33. printLine(s, 2);
  34. s.append(" |\\|/|\\|/|\\|/|\\|/|\n\r");
  35. printLine(s, 3);
  36. s.append(" |/|\\|/|\\|/|\\|/|\\|\n\r");
  37. printLine(s, 4);
  38. s.append("\n\r");
  39. }
  40. void Game::printLine(String& s, int index) const {
  41. static const char map[] = {
  42. '#', 'O', '.'
  43. };
  44. s.append(index + '0').append(' ');
  45. for(int x = 0; x < 8; x++) {
  46. if(x == activeX && index == activeY) {
  47. s.append("*-");
  48. continue;
  49. }
  50. s.append(map[fields[x][index]]).append('-');
  51. }
  52. if(8 == activeX && index == activeY) {
  53. s.append('*');
  54. } else {
  55. s.append(map[fields[8][index]]);
  56. }
  57. s.append("\n\r");
  58. }
  59. bool Game::parseLocation(const String& input, int& x, int& y) {
  60. if(input.getLength() <= 2 || !isDigit(input[0]) || input[1] != ' ' || !isDigit(input[2])) {
  61. return true;
  62. }
  63. x = input[0] - '0';
  64. y = input[2] - '0';
  65. return x >= 9 || y >= 6;
  66. }
  67. void Game::parse(const String& input, String& output) {
  68. switch(state) {
  69. case SELECTION:
  70. parseSelection(input, output);
  71. break;
  72. case MOVE:
  73. parseMove(input, output);
  74. break;
  75. case ANOTHER_MOVE:
  76. parseAnotherMove(input, output);
  77. break;
  78. }
  79. }
  80. void Game::parseSelection(const String& input, String& output) {
  81. int x;
  82. int y;
  83. if(parseLocation(input, x, y) || fields[x][y] != WHITE) {
  84. output.append("please choose white stone.\n\r");
  85. print(output);
  86. output.append("Human Color: White(O)\n\rAIColor: Black(#)\n\rHuman turn\n\rselect stone: ");
  87. return;
  88. }
  89. state = MOVE;
  90. activeX = x;
  91. activeY = y;
  92. print(output);
  93. output.append("Human Color: White(O)\n\rAIColor: Black(#)\n\rselect location to move: ");
  94. }
  95. void Game::parseMove(const String& input, String& output) {
  96. int x;
  97. int y;
  98. if(parseLocation(input, x, y)) {
  99. output.append("invalid move location.\n\r");
  100. print(output);
  101. output.append("Human Color: White(O)\n\rAIColor: Black(#)\n\rselect location to move: ");
  102. return;
  103. }
  104. if(fields[x][y] == WHITE) {
  105. activeX = x;
  106. activeY = y;
  107. print(output);
  108. output.append("Human Color: White(O)\n\rAIColor: Black(#)\n\rselect location to move: ");
  109. return;
  110. }
  111. if(fields[x][y] != EMPTY || !areNeighbours(activeX, activeY, x, y)) {
  112. output.append("invalid move location.\n\r");
  113. print(output);
  114. output.append("Human Color: White(O)\n\rAIColor: Black(#)\n\rselect location to move: ");
  115. return;
  116. }
  117. lastLocation = 0;
  118. move(activeX, activeY, x, y);
  119. bool removed = false;
  120. removed = removeLine(x, y, activeX, activeY, BLACK) || removed;
  121. removed = removeLine(activeX, activeY, x, y, BLACK) || removed;
  122. activeX = x;
  123. activeY = y;
  124. print(output);
  125. output.append("Human Color: White(O)\n\rAIColor: Black(#)\n\r");
  126. print(output);
  127. if(removed && isAnotherTurnPossible()) {
  128. state = ANOTHER_MOVE;
  129. output.append("Human Color: White(O)\n\rAIColor: Black(#)\n\rselect location to move: ");
  130. return;
  131. }
  132. state = SELECTION;
  133. output.append("Human Color: White(O)\n\rAIColor: Black(#)\n\rAI turn\n\r");
  134. activeX = -1;
  135. activeY = -1;
  136. botMove(output);
  137. }
  138. void Game::parseAnotherMove(const String& input, String& output) {
  139. int x;
  140. int y;
  141. if(parseLocation(input, x, y) || !canMoveActiveStoneTo(x - activeX, y - activeY)) {
  142. output.append("invalid move location.\n\r");
  143. print(output);
  144. output.append("Human Color: White(O)\n\rAIColor: Black(#)\n\rselect location to move: ");
  145. return;
  146. }
  147. move(activeX, activeY, x, y);
  148. bool removed = false;
  149. removed = removeLine(x, y, activeX, activeY, BLACK) || removed;
  150. removed = removeLine(activeX, activeY, x, y, BLACK) || removed;
  151. activeX = x;
  152. activeY = y;
  153. print(output);
  154. output.append("Human Color: White(O)\n\rAIColor: Black(#)\n\r");
  155. print(output);
  156. if(removed && isAnotherTurnPossible()) {
  157. output.append("Human Color: White(O)\n\rAIColor: Black(#)\n\rselect location to move: ");
  158. return;
  159. }
  160. state = SELECTION;
  161. output.append("Human Color: White(O)\n\rAIColor: Black(#)\n\rAI turn\n\r");
  162. activeX = -1;
  163. activeY = -1;
  164. botMove(output);
  165. }
  166. void Game::move(int fromX, int fromY, int toX, int toY) {
  167. addLocation(fromX, fromY);
  168. directionX = toX - fromX;
  169. directionY = toY - fromY;
  170. fields[fromX][fromY] = EMPTY;
  171. fields[toX][toY] = WHITE;
  172. }
  173. bool Game::isDigit(char c) const {
  174. return c >= '0' && c <= '9';
  175. }
  176. bool Game::isInRange(int x, int y) const {
  177. return x >= 0 && x <= 8 && y >= 0 && y <= 4;
  178. }
  179. bool Game::areNeighbours(int x, int y, int x2, int y2) const {
  180. if(x == x2 && y == y2) {
  181. return false;
  182. }
  183. int diffX = x - x2;
  184. int diffY = y - y2;
  185. if(diffX < -1 || diffX > 1 || diffY < -1 || diffY > 1) {
  186. return false;
  187. }
  188. if(diffX == 0 || diffY == 0) {
  189. return true;
  190. }
  191. return !((x & 1) ^ (y & 1));
  192. }
  193. void Game::revertToSelection(String& output) {
  194. activeX = -1;
  195. activeY = -1;
  196. print(output);
  197. output.append("Human Color: White(O)\n\rAIColor: Black(#)\n\rHuman turn\n\rselect stone: ");
  198. }
  199. bool Game::removeLine(int x, int y, int x2, int y2, FieldState remove) {
  200. int diffX = x2 - x;
  201. int diffY = y2 - y;
  202. bool removed = false;
  203. while(true) {
  204. x2 += diffX;
  205. y2 += diffY;
  206. if(!isInRange(x2, y2) || fields[x2][y2] != remove) {
  207. return removed;
  208. }
  209. removed = true;
  210. fields[x2][y2] = EMPTY;
  211. }
  212. }
  213. void Game::botMove(String& output) {
  214. while(true) {
  215. int x = 0;
  216. int y = 0;
  217. while(true) {
  218. x = rand() % 9;
  219. y = rand() % 5;
  220. if(fields[x][y] == EMPTY) {
  221. break;
  222. }
  223. }
  224. for(uint i = 0; i < 10; i++) {
  225. int mx = x + (rand() % 3) - 1;
  226. int my = y + (rand() % 3) - 1;
  227. if((mx == x && my == y) || !isInRange(mx, my) || fields[mx][my] != BLACK) {
  228. continue;
  229. }
  230. fields[mx][my] = EMPTY;
  231. fields[x][y] = BLACK;
  232. removeLine(mx, my, x, y, WHITE);
  233. removeLine(x, y, mx, my, WHITE);
  234. activeX = x;
  235. activeY = y;
  236. print(output);
  237. activeX = -1;
  238. activeY = -1;
  239. print(output);
  240. revertToSelection(output);
  241. return;
  242. }
  243. }
  244. }
  245. void Game::addLocation(int x, int y) {
  246. if(lastLocation >= lastLocations.size()) {
  247. // safely to ignore, such long turns will never happen
  248. return;
  249. }
  250. lastLocations[lastLocation].x = x;
  251. lastLocations[lastLocation].y = y;
  252. lastLocation++;
  253. }
  254. bool Game::isInQueue(int x, int y) const {
  255. for(uint i = 0; i < lastLocation; i++) {
  256. if(lastLocations[i].x == x && lastLocations[i].y == y) {
  257. return true;
  258. }
  259. }
  260. return false;
  261. }
  262. bool Game::canMoveActiveStoneTo(int dirX, int dirY) const {
  263. if(directionX == dirX && directionY == dirY) {
  264. return false;
  265. }
  266. int newX = activeX + dirX;
  267. int newY = activeY + dirY;
  268. return isInRange(newX, newY) && areNeighbours(activeX, activeY, newX, newY) &&
  269. fields[newX][newY] == EMPTY && !isInQueue(newX, newY);
  270. }
  271. bool Game::isAnotherTurnPossible() const {
  272. return canMoveActiveStoneTo(-1, -1) || canMoveActiveStoneTo(0, -1) || canMoveActiveStoneTo(1, -1) ||
  273. canMoveActiveStoneTo(-1, 0) || canMoveActiveStoneTo(1, 0) ||
  274. canMoveActiveStoneTo(-1, 1) || canMoveActiveStoneTo(0, 1) || canMoveActiveStoneTo(1, 1);
  275. }