本文整理汇总了C++中Case::getRectangle方法的典型用法代码示例。如果您正苦于以下问题:C++ Case::getRectangle方法的具体用法?C++ Case::getRectangle怎么用?C++ Case::getRectangle使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Case
的用法示例。
在下文中一共展示了Case::getRectangle方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: collisionMur
bool GestionnaireCollision::collisionMur(const Fantome& fantome, const Case& mur)
{
if(fantome.estSorti())
{
if(mur.getType() != 0 && mur.getType() != 4 && mur.getType() != 5)
{
return fantome.getSprite().getGlobalBounds().intersects(mur.getRectangle().getGlobalBounds());
}
else
{
return false;
}
}
else
{
if(mur.getType() != 0 && mur.getType() != 3 && mur.getType() != 4 && mur.getType() != 5)
{
return fantome.getSprite().getGlobalBounds().intersects(mur.getRectangle().getGlobalBounds());
}
else
{
return false;
}
}
}
示例2: collisionPacgomme
bool GestionnaireCollision::collisionPacgomme(const Pacman& pacman, const Case& uneCase, char direction)
{
switch(direction)
{
case 'z':
{
if(uneCase.getType() == 4 && uneCase.pacGommePresente() &&
uneCase.getRectangle().getGlobalBounds().contains(pacman.getPosition().x,pacman.getPosition().y + 23))
{
return true;
}
else if(uneCase.getType() == 5 && uneCase.pacGommePresente() &&
uneCase.getRectangle().getGlobalBounds().contains(pacman.getPosition().x, pacman.getPosition().y + 23))
{
return true;
}
return false;
break;
}
case 's':
{
if(uneCase.getType() == 4 && uneCase.pacGommePresente() &&
uneCase.getRectangle().getGlobalBounds().contains(pacman.getPosition().x, pacman.getPosition().y + 5))
{
return true;
}
else if(uneCase.getType() == 5 && uneCase.pacGommePresente() &&
uneCase.getRectangle().getGlobalBounds().contains(pacman.getPosition().x, pacman.getPosition().y + 5))
{
return true;
}
return false;
break;
}
case 'q':
{
if(uneCase.getType() == 4 && uneCase.pacGommePresente() &&
uneCase.getRectangle().getGlobalBounds().contains(pacman.getPosition().x + 23, pacman.getPosition().y))
{
return true;
}
else if(uneCase.getType() == 5 && uneCase.pacGommePresente() &&
uneCase.getRectangle().getGlobalBounds().contains(pacman.getPosition().x+23, pacman.getPosition().y))
{
return true;
}
return false;
break;
}
case 'd':
{
if(uneCase.getType() == 4 && uneCase.pacGommePresente() &&
uneCase.getRectangle().getGlobalBounds().contains(pacman.getPosition().x + 5, pacman.getPosition().y))
{
return true;
}
else if(uneCase.getType() == 5 && uneCase.pacGommePresente() &&
uneCase.getRectangle().getGlobalBounds().contains(pacman.getPosition().x +5, pacman.getPosition().y))
{
return true;
}
return false;
break;
}
}
}