Game.h 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  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, REMOVE_SELECTION
  13. };
  14. Game();
  15. void parse();
  16. private:
  17. void consumeLine() const;
  18. void consumeLine(uint index);
  19. void parseFields();
  20. void selectStone();
  21. void selectLocationToMove();
  22. void selectStoneToTake();
  23. void move(int fromX, int fromY, int toX, int toY);
  24. bool isInRange(int x, int y) const;
  25. void print(String& s) const;
  26. void printLine(String& s, int index) const;
  27. int getRank(int x, int y, int x2, int y2) const;
  28. bool areNeighbours(int x, int y, int x2, int y2) const;
  29. void addLocation(int x, int y);
  30. bool isInQueue(int x, int y) const;
  31. FieldState fields[9][5];
  32. int activeX;
  33. int activeY;
  34. int directionX;
  35. int directionY;
  36. struct Location {
  37. int x;
  38. int y;
  39. };
  40. std::array<Location, 20> lastLocations;
  41. uint lastLocation;
  42. };
  43. #endif