-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathChessClock.cpp
180 lines (138 loc) · 4.18 KB
/
ChessClock.cpp
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
//
// Created by Brazhenko Andrew on 1/28/21.
//
#include "ChessClock.h"
std::string Gomoku::ChessClock::DurationToString(const std::chrono::duration<double> &duration)
{
std::stringstream ss;
if (duration <= std::chrono::milliseconds(0))
return "00:00.0";
const auto hours = std::chrono::duration_cast<std::chrono::hours>(duration).count();
if (hours)
ss << std::setw(2) << std::setfill('0') << hours << ":";
const auto minutes = std::chrono::duration_cast<std::chrono::minutes>(duration).count();
ss << std::setw(2) << std::setfill('0') << minutes % 60 << ":";
ss << std::setw(2) << std::setfill('0') << std::chrono::duration_cast<std::chrono::seconds>(duration).count() % 60;
if (minutes == 0)
ss << "." << std::chrono::duration_cast<std::chrono::milliseconds>(duration).count() % 1000 / 100;
return ss.str();
}
Gomoku::ChessClock::ChessClock(int whiteSeconds, int blackSeconds, bool whiteMove)
: whiteTimeLeft_{ whiteSeconds * 1000 }
, blackTimeLeft_{ blackSeconds * 1000 }
, WhiteMove_{ whiteMove }
, PauseOn_ { true }
{}
void Gomoku::ChessClock::Start()
{
auto tmp = std::chrono::system_clock::now();
startWhite_ = tmp;
startBlack_ = tmp;
PauseOn_ = false;
}
void Gomoku::ChessClock::Pause()
{
if (PauseOn_) return;
if (WhiteMove_)
{
whiteTimeLeft_
= std::chrono::duration_cast<std::chrono::milliseconds>(whiteTimeLeft_ - (std::chrono::system_clock::now() - startWhite_));
}
else
{
blackTimeLeft_
= std::chrono::duration_cast<std::chrono::milliseconds>(blackTimeLeft_ - (std::chrono::system_clock::now() - startBlack_));
}
PauseOn_ = true;
}
void Gomoku::ChessClock::Continue()
{
auto tmp = std::chrono::system_clock::now();
startWhite_ = tmp;
startBlack_ = tmp;
PauseOn_ = false;
}
void Gomoku::ChessClock::Stop()
{
whiteTimeLeft_ = std::chrono::milliseconds(0);
blackTimeLeft_ = std::chrono::milliseconds(0);
whiteTimeSpentForLastMove_ = {};
blackTimeSpentForLastMove_ = {};
WhiteMove_ = true;
PauseOn_ = true;
}
void Gomoku::ChessClock::ChangeMove()
{
if (!PauseOn_)
{
auto now = std::chrono::system_clock::now();
// Refreshing clock values
if (WhiteMove_)
{
auto tmp = std::chrono::duration_cast<std::chrono::milliseconds>(whiteTimeLeft_ - (now - startWhite_));
this->whiteTimeSpentForLastMove_ = whiteTimeLeft_ - tmp;
whiteTimeLeft_ = tmp;
startBlack_ = now;
}
else
{
auto tmp = std::chrono::duration_cast<std::chrono::milliseconds>(blackTimeLeft_ - (now - startBlack_));
this->blackTimeSpentForLastMove_ = blackTimeLeft_ - tmp;
blackTimeLeft_ = tmp;
startWhite_ = now;
}
}
WhiteMove_ ^= true;
}
[[nodiscard]] bool Gomoku::ChessClock::WhiteTimeLeft() const
{
auto nw = std::chrono::system_clock::now();
std::chrono::duration<double> timeLeft{};
if (!WhiteMove_ || PauseOn_)
timeLeft = whiteTimeLeft_;
else
timeLeft = whiteTimeLeft_ - (nw - startWhite_);
if (timeLeft <= std::chrono::milliseconds(0))
return false;
return true;
}
[[nodiscard]] bool Gomoku::ChessClock::BlackTimeLeft() const
{
auto nw = std::chrono::system_clock::now();
std::chrono::duration<double> timeLeft{};
if (WhiteMove_ || PauseOn_)
timeLeft = blackTimeLeft_;
else
timeLeft = blackTimeLeft_ - (nw - startBlack_);
if (timeLeft <= std::chrono::milliseconds(0))
return false;
return true;
}
[[nodiscard]] std::string Gomoku::ChessClock::GetTimeLeftWhite() const
{
auto nw = std::chrono::system_clock::now();
std::chrono::duration<double> timeLeft{};
if (!WhiteMove_ || PauseOn_)
timeLeft = whiteTimeLeft_;
else
timeLeft = whiteTimeLeft_ - (nw - startWhite_);
return DurationToString(timeLeft);
}
[[nodiscard]] std::string Gomoku::ChessClock::GetTimeLeftBlack() const
{
auto nw = std::chrono::system_clock::now();
std::chrono::duration<double> timeLeft{};
if (WhiteMove_ || PauseOn_)
timeLeft = blackTimeLeft_;
else
timeLeft = blackTimeLeft_ - (nw - startBlack_);
return DurationToString(timeLeft);
}
[[nodiscard]] std::string Gomoku::ChessClock::GetTimeSpentWhite() const
{
return DurationToString(whiteTimeSpentForLastMove_);
}
[[nodiscard]] std::string Gomoku::ChessClock::GetTimeSpentBlack() const
{
return DurationToString(blackTimeSpentForLastMove_);
}