int i;
for ( i = current_player_id; i < SAMP_MAX_PLAYERS; i++ )
{
D3DCOLOR color = MENU_COLOR_DEFAULT;
if ( g_Players->iIsListed[i] != 1 )
continue;
rendered_players++;
if ( rendered_players >= max_amount_players )
return;
if ( g_Players->pRemotePlayer[i]->pPlayerData == NULL
|| g_Players->pRemotePlayer[i]->pPlayerData->pSAMP_Actor == NULL )
{
_snprintf_s( buf, sizeof(buf)-1, "Name: %s (ID: %d), not streamed in", getPlayerName(i), i );
pD3DFont_sampStuff->PrintShadow( width, height, color, buf );
height += 1.0f + pD3DFont_sampStuff->DrawHeight();
continue;
}
if ( !getPlayerPos(i, pos) )
continue;
color = samp_color_get( i );
const char *szPlayerName = getPlayerName( i );
int iPlayerHealth = (int)g_Players->pRemotePlayer[i]->pPlayerData->fActorHealth;
int iPlayerArmor = (int)g_Players->pRemotePlayer[i]->pPlayerData->fActorArmor;
int iVehicleID = (int)g_Players->pRemotePlayer[i]->pPlayerData->sVehicleID;
int iVehicleHealth;
if ( g_Players->pRemotePlayer[i]->pPlayerData != NULL
&& g_Players->pRemotePlayer[i]->pPlayerData->pSAMP_Vehicle != NULL )
{
uint16_t playerVehicleID = g_Players->pRemotePlayer[i]->pPlayerData->sVehicleID;
vehicle = gta_vehicle_get_by_id( g_Vehicles->pSAMP_Vehicle[playerVehicleID]->pGTA_Vehicle->base.model_alt_id );
iVehicleHealth = (int)g_Players->pRemotePlayer[i]->pPlayerData->pSAMP_Vehicle->pGTA_Vehicle->hitpoints;
}
switch ( getPlayerState(i) )
{
case PLAYER_STATE_NONE:
_snprintf_s( buf, sizeof(buf)-1, "Name: %s (ID: %d), State: None", szPlayerName, i );
pD3DFont_sampStuff->PrintShadow( width, height, color, buf );
break;
case PLAYER_STATE_ONFOOT:
_snprintf_s( buf, sizeof(buf)-1, "Name: %s (ID: %d), State: On foot, Health: %d, Armor: %d, Distance: %0.2f",
szPlayerName, i, iPlayerHealth, iPlayerArmor, vect3_dist((float *)pos, &self->base.matrix[4 * 3]) );
pD3DFont_sampStuff->PrintShadow( width, height, color, buf );
break;
case PLAYER_STATE_DRIVER:
_snprintf_s( buf, sizeof(buf)-1, "Name: %s (ID: %d), State: Driver (%s (%d)), VHealth: %d, Distance: %0.2f",
szPlayerName, i, vehicle->name, iVehicleID, iVehicleHealth,
vect3_dist((float *)pos, &self->base.matrix[4 * 3]) );
pD3DFont_sampStuff->PrintShadow( width, height, color, buf );
break;
case PLAYER_STATE_PASSENGER:
_snprintf_s( buf, sizeof(buf)-1, "Name: %s (ID: %d), State: Passenger (%s (%d)), Distance: %0.2f",
szPlayerName, i, vehicle->name, iVehicleID, vect3_dist((float *)pos, &self->base.matrix[4 * 3]) );
pD3DFont_sampStuff->PrintShadow( width, height, color, buf );
break;
case PLAYER_STATE_WASTED:
_snprintf_s( buf, sizeof(buf)-1, "Name: %s (ID: %d), State: Wasted", szPlayerName, i );
pD3DFont_sampStuff->PrintShadow( width, height, color, buf );
break;
case PLAYER_STATE_SPAWNED:
_snprintf_s( buf, sizeof(buf)-1, "Name: %s (ID: %d), State: Spawned", szPlayerName, i );
pD3DFont_sampStuff->PrintShadow( width, height, color, buf );
break;
}
height += 1.0f + pD3DFont_sampStuff->DrawHeight();
}