Game.cpp 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446
  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. bool 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. case REMOVE_SELECTION:
  79. parseRemoveSelection(input, output);
  80. break;
  81. }
  82. return shouldEnd();
  83. }
  84. void Game::parseSelection(const String& input, String& output) {
  85. int x;
  86. int y;
  87. if(parseLocation(input, x, y) || fields[x][y] != WHITE) {
  88. output.append("please choose white stone.\n\r");
  89. print(output);
  90. output.append("Human Color: White(O)\n\rAIColor: Black(#)\n\rHuman turn\n\rselect stone: ");
  91. return;
  92. }
  93. state = MOVE;
  94. activeX = x;
  95. activeY = y;
  96. print(output);
  97. output.append("Human Color: White(O)\n\rAIColor: Black(#)\n\rselect location to move: ");
  98. }
  99. void Game::parseMove(const String& input, String& output) {
  100. int x;
  101. int y;
  102. if(parseLocation(input, x, y)) {
  103. output.append("invalid move location.\n\r");
  104. print(output);
  105. output.append("Human Color: White(O)\n\rAIColor: Black(#)\n\rselect location to move: ");
  106. return;
  107. }
  108. if(fields[x][y] == WHITE) {
  109. activeX = x;
  110. activeY = y;
  111. print(output);
  112. output.append("Human Color: White(O)\n\rAIColor: Black(#)\n\rselect location to move: ");
  113. return;
  114. }
  115. if(fields[x][y] != EMPTY || !areNeighbours(activeX, activeY, x, y)) {
  116. output.append("invalid move location.\n\r");
  117. print(output);
  118. output.append("Human Color: White(O)\n\rAIColor: Black(#)\n\rselect location to move: ");
  119. return;
  120. }
  121. directionX = x - activeX;
  122. directionY = y - activeY;
  123. if(markHitSides(activeX, activeY, x, y, BLACK)) {
  124. state = REMOVE_SELECTION;
  125. print(output);
  126. output.append("Human Color: White(O)\n\rAIColor: Black(#)\n\rselect stone to take: ");
  127. return;
  128. }
  129. lastLocation = 0;
  130. move(activeX, activeY, x, y);
  131. bool removed = false;
  132. removed = removeLine(x, y, activeX, activeY, BLACK) || removed;
  133. removed = removeLine(activeX, activeY, x, y, BLACK) || removed;
  134. activeX = x;
  135. activeY = y;
  136. print(output);
  137. output.append("Human Color: White(O)\n\rAIColor: Black(#)\n\r");
  138. print(output);
  139. if(removed && isAnotherTurnPossible()) {
  140. state = ANOTHER_MOVE;
  141. output.append("Human Color: White(O)\n\rAIColor: Black(#)\n\rselect location to move: ");
  142. return;
  143. }
  144. state = SELECTION;
  145. output.append("Human Color: White(O)\n\rAIColor: Black(#)\n\rAI turn\n\r");
  146. activeX = -1;
  147. activeY = -1;
  148. botMove(output);
  149. }
  150. void Game::parseAnotherMove(const String& input, String& output) {
  151. int x;
  152. int y;
  153. if(parseLocation(input, x, y) || !canMoveActiveStoneTo(x - activeX, y - activeY)) {
  154. output.append("invalid move location.\n\r");
  155. print(output);
  156. output.append("Human Color: White(O)\n\rAIColor: Black(#)\n\rselect location to move: ");
  157. return;
  158. }
  159. directionX = x - activeX;
  160. directionY = y - activeY;
  161. if(markHitSides(activeX, activeY, x, y, BLACK)) {
  162. state = REMOVE_SELECTION;
  163. print(output);
  164. output.append("Human Color: White(O)\n\rAIColor: Black(#)\n\rselect stone to take: ");
  165. return;
  166. }
  167. move(activeX, activeY, x, y);
  168. bool removed = false;
  169. removed = removeLine(x, y, activeX, activeY, BLACK) || removed;
  170. removed = removeLine(activeX, activeY, x, y, BLACK) || removed;
  171. activeX = x;
  172. activeY = y;
  173. print(output);
  174. output.append("Human Color: White(O)\n\rAIColor: Black(#)\n\r");
  175. print(output);
  176. if(removed && isAnotherTurnPossible()) {
  177. output.append("Human Color: White(O)\n\rAIColor: Black(#)\n\rselect location to move: ");
  178. return;
  179. }
  180. state = SELECTION;
  181. output.append("Human Color: White(O)\n\rAIColor: Black(#)\n\rAI turn\n\r");
  182. activeX = -1;
  183. activeY = -1;
  184. botMove(output);
  185. }
  186. void Game::parseRemoveSelection(const String& input, String& output) {
  187. int x;
  188. int y;
  189. if(parseLocation(input, x, y) || !((hitA.x == x && hitA.y == y) || (hitB.x == x && hitB.y == y))) {
  190. output.append("invalid take location.\n\r");
  191. print(output);
  192. output.append("Human Color: White(O)\n\rAIColor: Black(#)\n\rselect stone to take: ");
  193. return;
  194. }
  195. int mx = activeX + directionX;
  196. int my = activeY + directionY;
  197. move(activeX, activeY, mx, my);
  198. if(mx + directionX == x && my + directionY == y) {
  199. removeLine(activeX, activeY, mx, my, BLACK);
  200. } else {
  201. removeLine(mx, my, activeX, activeY, BLACK);
  202. }
  203. activeX = mx;
  204. activeY = my;
  205. print(output);
  206. if(isAnotherTurnPossible()) {
  207. state = ANOTHER_MOVE;
  208. output.append("Human Color: White(O)\n\rAIColor: Black(#)\n\rselect location to move: ");
  209. return;
  210. }
  211. state = SELECTION;
  212. output.append("Human Color: White(O)\n\rAIColor: Black(#)\n\rAI turn\n\r");
  213. activeX = -1;
  214. activeY = -1;
  215. botMove(output);
  216. }
  217. void Game::move(int fromX, int fromY, int toX, int toY) {
  218. addLocation(fromX, fromY);
  219. fields[fromX][fromY] = EMPTY;
  220. fields[toX][toY] = WHITE;
  221. }
  222. bool Game::isDigit(char c) const {
  223. return c >= '0' && c <= '9';
  224. }
  225. bool Game::isInRange(int x, int y) const {
  226. return x >= 0 && x <= 8 && y >= 0 && y <= 4;
  227. }
  228. bool Game::areNeighbours(int x, int y, int x2, int y2) const {
  229. if(x == x2 && y == y2) {
  230. return false;
  231. }
  232. int diffX = x - x2;
  233. int diffY = y - y2;
  234. if(diffX < -1 || diffX > 1 || diffY < -1 || diffY > 1) {
  235. return false;
  236. }
  237. if(diffX == 0 || diffY == 0) {
  238. return true;
  239. }
  240. return !((x & 1) ^ (y & 1));
  241. }
  242. bool Game::removeLine(int x, int y, int x2, int y2, FieldState remove) {
  243. int diffX = x2 - x;
  244. int diffY = y2 - y;
  245. bool removed = false;
  246. while(true) {
  247. x2 += diffX;
  248. y2 += diffY;
  249. if(!isInRange(x2, y2) || fields[x2][y2] != remove) {
  250. return removed;
  251. }
  252. removed = true;
  253. fields[x2][y2] = EMPTY;
  254. }
  255. }
  256. int Game::getRank(int x, int y, int x2, int y2) const {
  257. int diffX = x2 - x;
  258. int diffY = y2 - y;
  259. int rank = 0;
  260. while(true) {
  261. x2 += diffX;
  262. y2 += diffY;
  263. if(!isInRange(x2, y2) || fields[x2][y2] != WHITE) {
  264. return rank;
  265. }
  266. rank++;
  267. }
  268. }
  269. void Game::botMove(String& output) {
  270. if(shouldEnd()) {
  271. return;
  272. }
  273. Location from;
  274. Location to;
  275. Location takeFrom;
  276. Location takeTo;
  277. int rank = -1;
  278. for(int bx = 0; bx < 9; bx++) {
  279. for(int by = 0; by < 5; by++) {
  280. if(fields[bx][by] != EMPTY) {
  281. continue;
  282. }
  283. for(int mx = -1; mx <= 1; mx++) {
  284. for(int my = -1; my <= 1; my++) {
  285. int x = bx + mx;
  286. int y = by + my;
  287. if((mx == 0 && my == 0) || !isInRange(x, y) || !areNeighbours(bx, by, x, y) || fields[x][y] != BLACK) {
  288. continue;
  289. }
  290. int rankA = getRank(bx, by, x, y);
  291. int rankB = getRank(x, y, bx, by);
  292. if(rankA > rank) {
  293. from = {x, y};
  294. to = {bx, by};
  295. takeFrom = {bx, by};
  296. takeTo = {x, y};
  297. rank = rankA;
  298. }
  299. if(rankB > rank) {
  300. from = {x, y};
  301. to = {bx, by};
  302. takeFrom = {x, y};
  303. takeTo = {bx, by};
  304. rank = rankB;
  305. }
  306. }
  307. }
  308. }
  309. }
  310. lastLocation = 0;
  311. bool removed = true;
  312. while(removed) {
  313. fields[from.x][from.y] = EMPTY;
  314. fields[to.x][to.y] = BLACK;
  315. removed = removeLine(takeFrom.x, takeFrom.y, takeTo.x, takeTo.y, WHITE);
  316. activeX = to.x;
  317. activeY = to.y;
  318. print(output);
  319. addLocation(from.x, from.y);
  320. directionX = to.x - from.x;
  321. directionY = to.y - from.y;
  322. int x = to.x;
  323. int y = to.y;
  324. rank = -1;
  325. for(int mx = -1; mx <= 1; mx++) {
  326. for(int my = -1; my <= 1; my++) {
  327. if((mx == 0 && my == 0) || !canMoveActiveStoneTo(mx, my)) {
  328. continue;
  329. }
  330. int bx = x + mx;
  331. int by = y + my;
  332. int rankA = getRank(bx, by, x, y);
  333. int rankB = getRank(x, y, bx, by);
  334. if(rankA > rank) {
  335. from = {x, y};
  336. to = {bx, by};
  337. takeFrom = {bx, by};
  338. takeTo = {x, y};
  339. rank = rankA;
  340. }
  341. if(rankB > rank) {
  342. from = {x, y};
  343. to = {bx, by};
  344. takeFrom = {x, y};
  345. takeTo = {bx, by};
  346. rank = rankB;
  347. }
  348. }
  349. }
  350. }
  351. activeX = -1;
  352. activeY = -1;
  353. print(output);
  354. print(output);
  355. output.append("Human Color: White(O)\n\rAIColor: Black(#)\n\rHuman turn\n\rselect stone: ");
  356. }
  357. void Game::addLocation(int x, int y) {
  358. if(lastLocation >= lastLocations.size()) {
  359. // safely to ignore, such long turns will never happen
  360. return;
  361. }
  362. lastLocations[lastLocation].x = x;
  363. lastLocations[lastLocation].y = y;
  364. lastLocation++;
  365. }
  366. bool Game::isInQueue(int x, int y) const {
  367. for(uint i = 0; i < lastLocation; i++) {
  368. if(lastLocations[i].x == x && lastLocations[i].y == y) {
  369. return true;
  370. }
  371. }
  372. return false;
  373. }
  374. bool Game::canMoveActiveStoneTo(int dirX, int dirY) const {
  375. if(directionX == dirX && directionY == dirY) {
  376. return false;
  377. }
  378. int newX = activeX + dirX;
  379. int newY = activeY + dirY;
  380. return isInRange(newX, newY) && areNeighbours(activeX, activeY, newX, newY) &&
  381. fields[newX][newY] == EMPTY && !isInQueue(newX, newY);
  382. }
  383. bool Game::isAnotherTurnPossible() const {
  384. return canMoveActiveStoneTo(-1, -1) || canMoveActiveStoneTo(0, -1) || canMoveActiveStoneTo(1, -1) ||
  385. canMoveActiveStoneTo(-1, 0) || canMoveActiveStoneTo(1, 0) ||
  386. canMoveActiveStoneTo(-1, 1) || canMoveActiveStoneTo(0, 1) || canMoveActiveStoneTo(1, 1);
  387. }
  388. bool Game::markHitSides(int x1, int y1, int x2, int y2, FieldState state) {
  389. hitA.x = x1 + (x1 - x2);
  390. hitA.y = y1 + (y1 - y2);
  391. hitB.x = x2 + (x2 - x1);
  392. hitB.y = y2 + (y2 - y1);
  393. return isInRange(hitA.x, hitA.y) && isInRange(hitB.x, hitB.y) &&
  394. areNeighbours(x1, y1, hitA.x, hitA.y) && areNeighbours(x2, y2, hitB.x, hitB.y) &&
  395. fields[hitA.x][ hitA.y] == state && fields[hitB.x][ hitB.y] == state;
  396. }
  397. bool Game::shouldEnd() const {
  398. int player = 0;
  399. int ai = 0;
  400. for(uint x = 0; x < 9; x++) {
  401. for(uint y = 0; y < 5; y++) {
  402. player += fields[x][y] == WHITE;
  403. ai += fields[x][y] == BLACK;
  404. }
  405. }
  406. return player == 0 || ai == 0;
  407. }