-
Notifications
You must be signed in to change notification settings - Fork 0
/
ConsoleInput.h
executable file
·58 lines (54 loc) · 1.27 KB
/
ConsoleInput.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
#ifndef CONSOLEINPUT_H
#define CONSOLEINPUT_H
#include "gamestate.h"
#include <iostream>
namespace ChineseChess
{
std::istream& operator >> (std::istream& p, Command& com) // оператор ввода команды
{
p >> com.from.first;
p >> com.from.second;
p >> com.to.first;
p >> com.to.second;
return p;
}
/*!
Класс ConsoleInput обеспечивает консольный ввод команд. Содержит объект класса GameState
*/
class ConsoleInput
{
public:
ConsoleInput(GameState *g_state)
{
if(g_state == 0)
{
throw GamestateBadArgument();
}
gamestate_ = g_state;
}
void Input();
struct GamestateBadArgument {};
private:
GameState *gamestate_;
};
void ConsoleInput:: Input()
{
Command com;
Command StopCommand = Command(-1,-1,-1,-1); // стоповая команда для консольного ввода
while(true)
{
std::cin >> com;
gamestate_->make_move(com); // делаем ход
if(com == StopCommand)
{
break;
}
if(gamestate_->get_n_el() == 1)
{
std::cout << "YOU WIN!" << std::endl;
break;
}
}
}
}
#endif // CONSOLEINPUT_H