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


C++ bytes::readBool方法代码示例

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


在下文中一共展示了bytes::readBool方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。

示例1: onGamecomponentWellPlacedEvent

void LmRightSpotScene::onGamecomponentWellPlacedEvent(bytes l_oMsg)
{
	int l_iIdGameComponent = l_oMsg.readInt();
	bool l_bWellPlaced = l_oMsg.readBool();

	if (l_bWellPlaced)
	{

		//erase it of the elements that can be touched
		m_aDynamicGameComponents.erase(
				std::remove(m_aDynamicGameComponents.begin(),
						m_aDynamicGameComponents.end(),
						m_aIdTable.find(l_iIdGameComponent)->second),
				m_aDynamicGameComponents.end());

		m_iNumberOfHole--;

		//make disapear this element
		m_aIdTable.find(l_iIdGameComponent)->second->setVisible(false);

		//check win
		if (m_iNumberOfHole == 0)
		{
			win(true);
		}
	}
	else
	{
		//replace this element in the list
		replaceSendingAreaElementToHisOriginalPlace();

		m_pSpriteFail->setVisible(true);
	}

	m_bTouchBeganDisabled = false;

}
开发者ID:ludomuse,项目名称:totalproject,代码行数:37,代码来源:LmRightSpotScene.cpp


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