Game.h 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. #ifndef GAME_H
  2. #define GAME_H
  3. #include <array>
  4. #include "String.h"
  5. #include "Types.h"
  6. class Game final {
  7. public:
  8. enum FieldState {
  9. BLACK, WHITE, EMPTY
  10. };
  11. enum State {
  12. SELECTION, MOVE, ANOTHER_MOVE
  13. };
  14. Game();
  15. void reset(String& output);
  16. void parse(const String& input, String& output);
  17. private:
  18. bool parseLocation(const String& input, int& x, int& y);
  19. void parseSelection(const String& input, String& output);
  20. void parseMove(const String& input, String& output);
  21. void parseAnotherMove(const String& input, String& output);
  22. void move(int fromX, int fromY, int toX, int toY);
  23. bool isDigit(char c) const;
  24. bool isInRange(int x, int y) const;
  25. void reset();
  26. void print(String& s) const;
  27. void printLine(String& s, int index) const;
  28. bool removeLine(int x, int y, int x2, int y2, FieldState remove);
  29. void revertToSelection(String& output);
  30. bool areNeighbours(int x, int y, int x2, int y2) const;
  31. void botMove(String& output);
  32. void addLocation(int x, int y);
  33. bool isInQueue(int x, int y) const;
  34. bool canMoveActiveStoneTo(int dirX, int dirY) const;
  35. bool isAnotherTurnPossible() const;
  36. FieldState fields[9][5];
  37. int activeX;
  38. int activeY;
  39. int directionX;
  40. int directionY;
  41. State state;
  42. struct Location {
  43. int x;
  44. int y;
  45. };
  46. std::array<Location, 20> lastLocations;
  47. uint lastLocation;
  48. };
  49. #endif