本文整理汇总了C++中Coords::left方法的典型用法代码示例。如果您正苦于以下问题:C++ Coords::left方法的具体用法?C++ Coords::left怎么用?C++ Coords::left使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Coords
的用法示例。
在下文中一共展示了Coords::left方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: checkPath
// RECURSION
bool MazeBoard::checkPath(Coords start_pos, Coords end_pos, std::vector<Coords> &open_queue)
{
if (start_pos == end_pos)
return true;
open_queue.push_back(start_pos);
// expand to right
if (board[INDEX_C(start_pos)].canGo(RIGHT) && onBoard(start_pos.right())
&& board[INDEX_C(start_pos.right())].canGo(LEFT)
&& notInQueue(start_pos.right(), open_queue)
&& checkPath(start_pos.right(), end_pos, open_queue))
return true;
else if (board[INDEX_C(start_pos)].canGo(DOWN) && onBoard(start_pos.down())
&& board[INDEX_C(start_pos.down())].canGo(UP)
&& notInQueue(start_pos.down(), open_queue)
&& checkPath(start_pos.down(), end_pos, open_queue))
return true;
else if (board[INDEX_C(start_pos)].canGo(LEFT) && onBoard(start_pos.left())
&& board[INDEX_C(start_pos.left())].canGo(RIGHT)
&& notInQueue(start_pos.left(), open_queue)
&& checkPath(start_pos.left(), end_pos, open_queue))
return true;
else if (board[INDEX_C(start_pos)].canGo(UP) && onBoard(start_pos.up())
&& board[INDEX_C(start_pos.up())].canGo(DOWN)
&& notInQueue(start_pos.up(), open_queue)
&& checkPath(start_pos.up(), end_pos, open_queue))
return true;
return false;
}