本文整理汇总了C++中TicTacToe::checkBoundry方法的典型用法代码示例。如果您正苦于以下问题:C++ TicTacToe::checkBoundry方法的具体用法?C++ TicTacToe::checkBoundry怎么用?C++ TicTacToe::checkBoundry使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TicTacToe
的用法示例。
在下文中一共展示了TicTacToe::checkBoundry方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: error_check
int error_check( int x, int y, TicTacToe board1 ) {
int err = 0 ;
err = board1.checkBoundry( x, y ) ;
if( err == 2 ) {
cout << "ERROR : The X coordinate you specified is out of the board." << endl ;
return 1 ;
}
if( err == 3 ) {
cout << "ERROR : The Y coordinate you specified is out of the board." << endl ;
return 2 ;
}
else {
err = board1.checkSpace( x, y ) ; //Check to see if a move is already there
if( err == 1 ) {
cout << "ERROR : There is already a move there." ;
return 3 ;
}
}
return 0 ;
}
示例2: comp_move_easy
void comp_move_easy( int &x, int &y, TicTacToe board1 ) {
int err ;
srand( time( NULL ) ) ;
while( 1 ) {
x = 1 + ( rand() % 3 ) ;
y = 1 + ( rand() % 3 ) ;
err = board1.checkBoundry( x, y ) ;
if( err == 0 ) break ;
}
return ;
}