mirror of
https://github.com/dashr9230/SA-MP.git
synced 2024-12-22 14:37:29 +08:00
[bot] Implement/match n_GetMyPos(...)
* Implement/match `CNetGame::GetMyPos(...)`
This commit is contained in:
parent
8a4b1ed7a0
commit
72a7c19498
@ -238,6 +238,30 @@ BOOL CNetGame::IsVehicleAdded(VEHICLEID VehicleID)
|
||||
}
|
||||
|
||||
//----------------------------------------------------
|
||||
|
||||
//----------------------------------------------------
|
||||
PVECTOR CNetGame::GetMyPos(PVECTOR Vector)
|
||||
{
|
||||
if(byteState == PLAYER_STATE_ONFOOT)
|
||||
{
|
||||
Vector->X = ofSync.vecPos.X;
|
||||
Vector->Y = ofSync.vecPos.Y;
|
||||
Vector->Z = ofSync.vecPos.Z;
|
||||
return Vector;
|
||||
}
|
||||
else if(byteState == PLAYER_STATE_DRIVER)
|
||||
{
|
||||
Vector->X = icSync.vecPos.X;
|
||||
Vector->Y = icSync.vecPos.Y;
|
||||
Vector->Z = icSync.vecPos.Z;
|
||||
return Vector;
|
||||
}
|
||||
else
|
||||
{
|
||||
return NULL;
|
||||
}
|
||||
}
|
||||
|
||||
//----------------------------------------------------
|
||||
void CNetGame::SetMyPos(PVECTOR Vector)
|
||||
{
|
||||
|
@ -115,6 +115,7 @@ public:
|
||||
BYTE GetPlayerArmour(PLAYERID playerId);
|
||||
BOOL GetPlayerKeys(PLAYERID playerId, WORD *udAnalog, WORD *lrAnalog, WORD *wKeys);
|
||||
BOOL IsVehicleAdded(VEHICLEID VehicleID);
|
||||
PVECTOR GetMyPos(PVECTOR Vector);
|
||||
void SetMyPos(PVECTOR Vector);
|
||||
float GetMyZAngle();
|
||||
|
||||
|
@ -249,11 +249,24 @@ static cell AMX_NATIVE_CALL n_GetPlayerKeys(AMX *amx, cell *params)
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
// native GetMyPos(&Float:x, &Float:y, &Float:z)
|
||||
static cell AMX_NATIVE_CALL n_GetMyPos(AMX *amx, cell *params)
|
||||
{
|
||||
// TODO: n_GetMyPos
|
||||
return 0;
|
||||
if(!pNetGame->GetPlayerPool()) return 0;
|
||||
|
||||
VECTOR vecPos;
|
||||
pNetGame->GetMyPos(&vecPos);
|
||||
|
||||
cell* cptr;
|
||||
amx_GetAddr(amx, params[1], &cptr);
|
||||
*cptr = amx_ftoc(vecPos.X);
|
||||
amx_GetAddr(amx, params[2], &cptr);
|
||||
*cptr = amx_ftoc(vecPos.Y);
|
||||
amx_GetAddr(amx, params[3], &cptr);
|
||||
*cptr = amx_ftoc(vecPos.Z);
|
||||
|
||||
return 1;
|
||||
}
|
||||
|
||||
// native SetMyPos(Float:x, Float:y, Float:z)
|
||||
|
Loading…
Reference in New Issue
Block a user