本文整理汇总了C++中Obj::get_type方法的典型用法代码示例。如果您正苦于以下问题:C++ Obj::get_type方法的具体用法?C++ Obj::get_type怎么用?C++ Obj::get_type使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Obj
的用法示例。
在下文中一共展示了Obj::get_type方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: return
bool Map::lineIsFree(const int x, const int y, const int nb_free, const int to_add, const bool modif_x)
{
Obj * next;
if (nb_free >= 4)
return (true);
if (modif_x == true)
{
if ((next = this->getObj(x + to_add, y)) && (next->get_type() == EMPTY
|| next->get_type() == PERSO))
{
return (this->lineIsFree(x + to_add, y, nb_free + 1, to_add, modif_x));
}
return (false);
}
else
{
if ((next = this->getObj(x , y + to_add)) && (next->get_type() == EMPTY
|| next->get_type() == PERSO))
{
return (this->lineIsFree(x, y + to_add, nb_free + 1, to_add, modif_x));
}
return (false);
}
return (false);
}
示例2: getObj
bool Map::CanBePlaced(int i, int j)
{
Obj *on = getObj(j, i);
if (on->get_type() == EMPTY || on->get_type() == PERSO)
{
if (this->DiagIsFree(on->get_x(), on->get_y()) == true
|| this->lineIsFree(on->get_x(), on->get_y(), 1, 1, true) == true
|| this->lineIsFree(on->get_x(), on->get_y(), 1, -1, true) == true
|| this->lineIsFree(on->get_x(), on->get_y(), 1, 1, false) == true
|| this->lineIsFree(on->get_x(), on->get_y(), 1, -1, false) == true
)
return (true);
}
return (false);
}