当前位置: 首页>>代码示例>>C++>>正文


C++ AI::gobang方法代码示例

本文整理汇总了C++中AI::gobang方法的典型用法代码示例。如果您正苦于以下问题:C++ AI::gobang方法的具体用法?C++ AI::gobang怎么用?C++ AI::gobang使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在AI的用法示例。


在下文中一共展示了AI::gobang方法的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;
			}
		}
开发者ID:ChisBread,项目名称:wine,代码行数:66,代码来源:pbrain-wine.cpp


注:本文中的AI::gobang方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。