5c6bc80f20
Added error strings to these natives. --HG-- extra : convert_revision : svn%3A39bc706e-5318-0410-9160-8a85361fbb7c/trunk%40265
145 lines
4.1 KiB
C++
145 lines
4.1 KiB
C++
#include "CPlayerManager.h"
|
|
|
|
static cell_t sm_GetClientCount(IPluginContext *pCtx, const cell_t *params)
|
|
{
|
|
if (params[1])
|
|
{
|
|
return g_PlayerManager.GetPlayerCount();
|
|
}
|
|
|
|
int maxplayers = g_PlayerManager.GetMaxClients();
|
|
int count = 0;
|
|
for (int i=1; i<=maxplayers; ++i)
|
|
{
|
|
CPlayer *pPlayer = g_PlayerManager.GetPlayerByIndex(i);
|
|
if ((pPlayer->IsPlayerConnected()) && !(pPlayer->IsPlayerInGame()))
|
|
{
|
|
count++;
|
|
}
|
|
}
|
|
|
|
return (g_PlayerManager.GetPlayerCount() + count);
|
|
}
|
|
|
|
static cell_t sm_GetMaxClients(IPluginContext *pCtx, const cell_t *params)
|
|
{
|
|
return g_PlayerManager.GetMaxClients();
|
|
}
|
|
|
|
static cell_t sm_GetClientName(IPluginContext *pCtx, const cell_t *params)
|
|
{
|
|
int index = params[1];
|
|
if ((index < 1) || (index > g_PlayerManager.GetMaxClients()))
|
|
{
|
|
return pCtx->ThrowNativeError("Invalid client index %d.", index);
|
|
}
|
|
|
|
CPlayer *pPlayer = g_PlayerManager.GetPlayerByIndex(index);
|
|
if (!pPlayer->IsPlayerConnected())
|
|
{
|
|
return pCtx->ThrowNativeError("Client %d is not connected.", index);
|
|
}
|
|
|
|
pCtx->StringToLocalUTF8(params[2], static_cast<size_t>(params[3]), pPlayer->PlayerName(), NULL);
|
|
return 1;
|
|
}
|
|
|
|
static cell_t sm_GetClientIP(IPluginContext *pCtx, const cell_t *params)
|
|
{
|
|
int index = params[1];
|
|
if ((index < 1) || (index > g_PlayerManager.GetMaxClients()))
|
|
{
|
|
return pCtx->ThrowNativeError("Invalid client index %d.", index);
|
|
}
|
|
|
|
CPlayer *pPlayer = g_PlayerManager.GetPlayerByIndex(index);
|
|
if (!pPlayer->IsPlayerConnected())
|
|
{
|
|
return pCtx->ThrowNativeError("Client %d is not connected.", index);
|
|
}
|
|
|
|
pCtx->StringToLocal(params[2], static_cast<size_t>(params[3]), pPlayer->PlayerIP());
|
|
return 1;
|
|
}
|
|
|
|
static cell_t sm_GetClientAuthStr(IPluginContext *pCtx, const cell_t *params)
|
|
{
|
|
int index = params[1];
|
|
if ((index < 1) || (index > g_PlayerManager.GetMaxClients()))
|
|
{
|
|
return pCtx->ThrowNativeError("Invalid client index %d.", index);
|
|
}
|
|
|
|
CPlayer *pPlayer = g_PlayerManager.GetPlayerByIndex(index);
|
|
if (!pPlayer->IsPlayerConnected())
|
|
{
|
|
return pCtx->ThrowNativeError("Client %d is not connected.", index);
|
|
}
|
|
|
|
pCtx->StringToLocal(params[2], static_cast<size_t>(params[3]), pPlayer->PlayerAuthString());
|
|
return 1;
|
|
}
|
|
|
|
static cell_t sm_IsPlayerConnected(IPluginContext *pCtx, const cell_t *params)
|
|
{
|
|
int index = params[1];
|
|
if ((index < 1) || (index > g_PlayerManager.GetMaxClients()))
|
|
{
|
|
return pCtx->ThrowNativeError("Invalid client index %d.", index);
|
|
}
|
|
|
|
return (g_PlayerManager.GetPlayerByIndex(index)->IsPlayerConnected()) ? 1 : 0;
|
|
}
|
|
|
|
static cell_t sm_IsPlayerIngame(IPluginContext *pCtx, const cell_t *params)
|
|
{
|
|
int index = params[1];
|
|
if ((index < 1) || (index > g_PlayerManager.GetMaxClients()))
|
|
{
|
|
return pCtx->ThrowNativeError("Invalid client index %d.", index);
|
|
}
|
|
|
|
return (g_PlayerManager.GetPlayerByIndex(index)->IsPlayerInGame()) ? 1 : 0;
|
|
}
|
|
|
|
static cell_t sm_IsPlayerAuthorized(IPluginContext *pCtx, const cell_t *params)
|
|
{
|
|
int index = params[1];
|
|
if ((index < 1) || (index > g_PlayerManager.GetMaxClients()))
|
|
{
|
|
return pCtx->ThrowNativeError("Invalid client index %d.", index);
|
|
}
|
|
|
|
return (g_PlayerManager.GetPlayerByIndex(index)->IsPlayerAuthorized()) ? 1 : 0;
|
|
}
|
|
|
|
static cell_t sm_IsPlayerFakeClient(IPluginContext *pCtx, const cell_t *params)
|
|
{
|
|
int index = params[1];
|
|
if ((index < 1) || (index > g_PlayerManager.GetMaxClients()))
|
|
{
|
|
return pCtx->ThrowNativeError("Invalid client index %d.", index);
|
|
}
|
|
|
|
CPlayer *pPlayer = g_PlayerManager.GetPlayerByIndex(index);
|
|
if (!pPlayer->IsPlayerConnected())
|
|
{
|
|
return pCtx->ThrowNativeError("Client %d is not connected.", index);
|
|
}
|
|
|
|
return (pPlayer->IsPlayerFakeClient()) ? 1 : 0;
|
|
}
|
|
|
|
REGISTER_NATIVES(playernatives)
|
|
{
|
|
{"GetMaxClients", sm_GetMaxClients},
|
|
{"GetClientCount", sm_GetClientCount},
|
|
{"GetClientName", sm_GetClientName},
|
|
{"GetClientIP", sm_GetClientIP},
|
|
{"GetClientAuthString", sm_GetClientAuthStr},
|
|
{"IsPlayerConnected", sm_IsPlayerConnected},
|
|
{"IsPlayerInGame", sm_IsPlayerIngame},
|
|
{"IsPlayerAuthorized", sm_IsPlayerAuthorized},
|
|
{"IsPlayerFakeClient", sm_IsPlayerFakeClient},
|
|
{NULL, NULL}
|
|
}; |