本文整理汇总了C++中CVehicle::GetPtHead方法的典型用法代码示例。如果您正苦于以下问题:C++ CVehicle::GetPtHead方法的具体用法?C++ CVehicle::GetPtHead怎么用?C++ CVehicle::GetPtHead使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CVehicle
的用法示例。
在下文中一共展示了CVehicle::GetPtHead方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: SetDestination
//
// send a vehicle to a specific sub-hex, possibly to load
// but maybe not
//
void CAIUnit::SetDestination( CSubHex& subHexDest )
{
ASSERT_VALID( this );
BOOL bNobug = FALSE;
if( subHexDest.x > 512 || subHexDest.y > 512 )
bNobug = TRUE;
// BUGBUG get current location of the unit for which
// the destination is being set to make sure the unit
// is not being requested to go to its current location
EnterCriticalSection (&cs);
CSubHex subHexVeh;
CVehicle *pVehicle =
pGameData->GetVehicleData( m_iOwner, m_dwID );
if( pVehicle != NULL )
subHexVeh = pVehicle->GetPtHead();
LeaveCriticalSection (&cs);
// don't bother if current location is the same as destination
if( subHexDest == subHexVeh )
return;
//CMsgVehSetDest (DWORD dwID, CSubHex const & hex, int iMode);
/*
CMsgVehSetDest::CMsgVehSetDest (DWORD dwID, CHexCoord const & hex, int iMode) : CNetCmd (veh_set_dest)
{
m_dwID = dwID;
m_hex = hex;
m_sub = CSubHex (hex.X()*2, hex.Y()*2);
m_iSub = CVehicle::full;
m_iMode = iMode;
ASSERT_CMD (this);
}
*/
// kludge because the subhex form of the ctor is not implemented
CHexCoord hex( (subHexDest.x/2), (subHexDest.y/2) );
CMsgVehSetDest msg( m_dwID, hex, CVehicle::moving );
msg.m_sub = subHexDest;
//CMsgVehSetDest msg( m_dwID, subHexDest, CVehicle::moving );
theGame.PostToServer( (CNetCmd *)&msg, sizeof(CMsgVehSetDest) );
}