2016-07-26 03:22:47 +03:00
|
|
|
#include "precompiled.h"
|
2016-07-04 09:07:29 +03:00
|
|
|
|
2016-07-30 02:03:01 +03:00
|
|
|
MPlayer::MPlayer() : isQueried(false)
|
2016-07-04 09:07:29 +03:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
// Mark a player as querying a client cvar and stores the cvar name
|
|
|
|
// meta_errno values:
|
|
|
|
// - ME_ARGUMENT cvar is NULL
|
2016-07-26 19:31:47 +03:00
|
|
|
void MPlayer::set_cvar_query(const char *cvar)
|
2016-07-04 09:07:29 +03:00
|
|
|
{
|
|
|
|
// Do not allow NULL as queried cvar since we use this as
|
|
|
|
// return value in is_querying_cvar as indication if a
|
|
|
|
// client cvar is queried.
|
2016-07-26 19:31:47 +03:00
|
|
|
if (!cvar)
|
|
|
|
{
|
2016-07-04 09:07:29 +03:00
|
|
|
meta_errno = ME_ARGUMENT;
|
|
|
|
return;
|
|
|
|
}
|
2016-07-26 15:18:32 +03:00
|
|
|
|
2016-07-30 02:03:01 +03:00
|
|
|
isQueried = true;
|
2016-07-26 19:31:47 +03:00
|
|
|
Q_strncpy(cvarName, cvar, sizeof cvarName - 1);
|
2016-07-26 15:18:32 +03:00
|
|
|
cvarName[sizeof cvarName - 1] = '\0';
|
2016-07-04 09:07:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Unmark player as querying a client cvar
|
2016-07-26 19:31:47 +03:00
|
|
|
void MPlayer::clear_cvar_query(const char *cvar)
|
2016-07-04 09:07:29 +03:00
|
|
|
{
|
2016-07-30 02:03:01 +03:00
|
|
|
isQueried = false;
|
2016-07-26 15:18:32 +03:00
|
|
|
cvarName[0] = '\0';
|
2016-07-04 09:07:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Check if a client cvar is queried for this player
|
|
|
|
// Returns NULL if not
|
|
|
|
// or the name of the cvar.
|
2016-07-26 19:31:47 +03:00
|
|
|
const char *MPlayer::is_querying_cvar(void) const
|
2016-07-04 09:07:29 +03:00
|
|
|
{
|
2016-07-26 19:31:47 +03:00
|
|
|
if (isQueried)
|
|
|
|
{
|
2016-07-26 03:22:47 +03:00
|
|
|
return cvarName;
|
2016-07-04 09:07:29 +03:00
|
|
|
}
|
2016-07-26 03:22:47 +03:00
|
|
|
|
2016-07-26 19:31:47 +03:00
|
|
|
return nullptr;
|
2016-07-04 09:07:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Mark a player as querying a client cvar and stores the cvar name
|
|
|
|
// meta_errno values:
|
|
|
|
// - ME_ARGUMENT cvar is NULL
|
2016-07-26 19:31:47 +03:00
|
|
|
void MPlayerList::set_player_cvar_query(const edict_t *pEntity, const char *cvar)
|
2016-07-04 09:07:29 +03:00
|
|
|
{
|
2016-07-26 15:18:32 +03:00
|
|
|
int indx = ENTINDEX(pEntity);
|
2016-07-26 19:31:47 +03:00
|
|
|
if (indx >= 1 && indx <= gpGlobals->maxClients)
|
2016-07-26 15:18:32 +03:00
|
|
|
players[indx].set_cvar_query(cvar);
|
2016-07-04 09:07:29 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Unmark player as querying a client cvar
|
2016-07-26 19:31:47 +03:00
|
|
|
void MPlayerList::clear_player_cvar_query(const edict_t *pEntity, const char *cvar)
|
2016-07-04 09:07:29 +03:00
|
|
|
{
|
2016-07-26 15:18:32 +03:00
|
|
|
int indx = ENTINDEX(pEntity);
|
2016-07-26 19:31:47 +03:00
|
|
|
if (indx >= 1 && indx <= gpGlobals->maxClients)
|
2016-07-26 15:18:32 +03:00
|
|
|
players[indx].clear_cvar_query(cvar);
|
2016-07-04 09:07:29 +03:00
|
|
|
}
|
|
|
|
|
2016-07-26 15:18:32 +03:00
|
|
|
void MPlayerList::clear_all_cvar_queries(void)
|
2016-07-04 09:07:29 +03:00
|
|
|
{
|
2016-07-26 19:31:47 +03:00
|
|
|
for (int indx = 1; indx <= gpGlobals->maxClients; indx++)
|
|
|
|
{
|
2016-07-04 09:07:29 +03:00
|
|
|
players[indx].clear_cvar_query();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// Check if a client cvar is queried for this player
|
|
|
|
// Returns NULL if not
|
|
|
|
// or the name of the cvar.
|
|
|
|
// meta_errno values:
|
|
|
|
// - ME_NOTFOUND invalid entity
|
2016-07-26 19:31:47 +03:00
|
|
|
const char *MPlayerList::is_querying_cvar(const edict_t *pEntity) const
|
2016-07-04 09:07:29 +03:00
|
|
|
{
|
2016-07-26 15:18:32 +03:00
|
|
|
int indx = ENTINDEX(pEntity);
|
2016-07-26 19:31:47 +03:00
|
|
|
if (indx >= 1 && indx <= gpGlobals->maxClients)
|
2016-07-26 15:18:32 +03:00
|
|
|
return players[indx].is_querying_cvar();
|
2016-07-26 03:22:47 +03:00
|
|
|
|
2016-07-26 15:18:32 +03:00
|
|
|
RETURN_ERRNO(NULL, ME_NOTFOUND);
|
2016-07-04 09:07:29 +03:00
|
|
|
}
|