本文整理汇总了C++中AI::MakeMove方法的典型用法代码示例。如果您正苦于以下问题:C++ AI::MakeMove方法的具体用法?C++ AI::MakeMove怎么用?C++ AI::MakeMove使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类AI
的用法示例。
在下文中一共展示了AI::MakeMove方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: gomocup
int gomocup() {
string command;
AI ai;
xy input,best;
char dot;
vector<int> cl;
vector<xy> ps;
bool last_is_board = false;
while(1) {
if(last_is_board && cl.back() == 2) {
command = "BEGIN";
}
else {
cin >> command;
for(int i=0;i<command.size();i++) {
char c=command[i];
if(c >= 'a' && c <= 'z') {
command[i] += 'A' - 'a';
}
}
}
if(last_is_board) {
for(int i = 0; i < ps.size(); i++) {
ai.MakeMove(ps[i]);
}
ps.clear();
cl.clear();
last_is_board = false;
}
if(command == "START") {
cin >> size;
if(size > 30 || size <= 5) {
cout << "ERROR" << endl;
}
else {
//SIZE = size;
cout << "OK" << endl;
}
}
if(command == "RESTART") {
reset();
cout << "OK" << endl;
//command = "BEGIN";
}
else if(command == "TAKEBACK") {
ai.DelMove();
//TODO
}
else if(command == "BEGIN") {
best = ai.gobang();
ai.MakeMove(best);
std::cout << (int)best.x << "," << (int)best.y << endl;
}
else if(command == "TURN") {
cin >> input.x >> dot >> input.y;
if(input.x < 0 || input.x >= size || input.y < 0 || input.y >= size) {
cout << "ERROR" << endl;
}
else {
ai.MakeMove(input);
best = ai.gobang();
ai.MakeMove(best);
cout << (int)best.x << "," << (int)best.y << endl;
}
}