-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathGame.h
78 lines (64 loc) · 1.54 KB
/
Game.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
//
// Created by Brazhenko Andrew on 19.01.2021.
//
#ifndef GOMOKU_GAME_H
#define GOMOKU_GAME_H
#include <optional>
#include "Board.h"
#include "imgui.h"
#include "imfilebrowser.hpp"
#include "Players/IPlayer.h"
#include <utility>
#include <memory>
#include <thread>
#include "ChessClock.h"
#include "Engine.h"
namespace Gomoku
{
/// @brief Facade for manipulating all game abstractions
class Game
{
public:
/// @brief white player object
std::unique_ptr<Gomoku::IPlayer> whitePlayer;
/// @brief black player object
std::unique_ptr<Gomoku::IPlayer> blackPlayer;
/// @brief board of current game
Gomoku::Board board_;
/// @brief engine instance
Gomoku::Engine engine;
/// @brief clock object
Gomoku::ChessClock clock_;
/// @brief state type of the game
enum class State
{
Start = 0,
Main,
GameInProcess,
GameInPause,
GameEndedWhiteWin,
GameEndedBlackWin,
GameEndedDraw
};
/// @brief state of the game
State state_ = State::Main;
/// @brief default ctor
Game();
/// @brief start/continue the game
/// @param player1 string repr of white player
/// @param player2 string repr of black player
/// @param gameVersion string repr of game version
/// @param gameTime string repr of time control
void Go(const std::string &player1,
const std::string &player2,
const std::string &gameVersion,
const std::string &gameTime);
/// @brief pause the game
void Pause();
/// @brief stop the game
void Stop();
/// @brief make a takeback
void TakeBack();
};
}
#endif //GOMOKU_GAME_H