本文整理汇总了C++中CNetworkVehicle::GetModelInfo方法的典型用法代码示例。如果您正苦于以下问题:C++ CNetworkVehicle::GetModelInfo方法的具体用法?C++ CNetworkVehicle::GetModelInfo怎么用?C++ CNetworkVehicle::GetModelInfo使用的例子?那么, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类CNetworkVehicle
的用法示例。
在下文中一共展示了CNetworkVehicle::GetModelInfo方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: GetModel
// getVehicleModel(vehicleid)
SQInteger CVehicleNatives::GetModel(SQVM * pVM)
{
EntityId vehicleId;
sq_getentity(pVM, -1, &vehicleId);
CNetworkVehicle * pVehicle = g_pClient->GetVehicleManager()->Get(vehicleId);
if(pVehicle)
{
sq_pushinteger(pVM, g_pClient->GetModelManager()->ModelHashToVehicleId(pVehicle->GetModelInfo()->GetHash()));
return 1;
}
sq_pushbool(pVM, false);
return 1;
}
示例2: SavePosCommand
void SavePosCommand(char * szParams)
{
FILE * file = fopen(SharedUtility::GetAbsolutePath("SavedData.txt"), "a");
if(!file)
{
g_pClient->GetChatWindow()->AddInfoMessage("Failed to open 'SavedData.txt'");
return;
}
CVector3 vecPosition;
// Get our local player
CLocalPlayer * pLocalPlayer = g_pClient->GetLocalPlayer();
if(pLocalPlayer->IsInVehicle())
{
CNetworkVehicle * pVehicle = pLocalPlayer->GetVehicle();
if(pVehicle)
{
pVehicle->GetPosition(vecPosition);
CVector3 vecRotation;
pVehicle->GetRotation(vecRotation);
BYTE byteColors[4];
pVehicle->GetColors(byteColors[0], byteColors[1], byteColors[2], byteColors[3]);
fprintf(file, "createVehicle(%d, %f, %f, %f, %f, %f, %f, %d, %d, %d, %d);%s%s\n", g_pClient->GetModelManager()->ModelHashToVehicleId(pVehicle->GetModelInfo()->GetHash()), vecPosition.fX, vecPosition.fY, vecPosition.fZ, vecRotation.fX, vecRotation.fY, vecRotation.fZ, byteColors[0], byteColors[1], byteColors[2], byteColors[3], szParams ? " // " : "", szParams ? szParams : "");
}
}
else
{
pLocalPlayer->GetPosition(vecPosition);
int iModelId = ModelHashToSkinId(pLocalPlayer->GetModelInfo()->GetHash());
fprintf(file, "PlayerData(%d, %f, %f, %f, %f(%f));%s%s\n", iModelId, vecPosition.fX, vecPosition.fY, vecPosition.fZ, pLocalPlayer->GetCurrentHeading(), pLocalPlayer->GetDesiredHeading(),szParams ? " // " : "", szParams ? szParams : "");
}
fclose(file);
g_pClient->GetChatWindow()->AddInfoMessage("Position data saved to 'SavedData.txt'");
}