nuclide/src/client/util.qc

86 lines
1.7 KiB
Plaintext

/*
* Copyright (c) 2016-2022 Vera Visions LLC.
*
* Permission to use, copy, modify, and distribute this software for any
* purpose with or without fee is hereby granted, provided that the above
* copyright notice and this permission notice appear in all copies.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER
* IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING
* OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*/
float
Client_IsSpectator(NSClient cl)
{
if (cl.IsRealSpectator() || cl.IsFakeSpectator())
return true;
return false;
}
float
Client_IsRealSpectator(NSClient cl)
{
return cl.IsRealSpectator();
}
float
Client_IsFakeSpectator(NSClient cl)
{
return cl.IsFakeSpectator();
}
float
Client_IsDead(NSClient cl)
{
return cl.IsDead();
}
float
Client_IsPlayer(NSClient cl)
{
return cl.IsPlayer();
}
/*
=================
Util_GetKeyString
=================
*/
string
Util_GetKeyString(string strBind)
{
float flBindKey = tokenize(findkeysforcommandex(strBind, 0));
string strBindTx = "";
float j;
for (j = 0; j < flBindKey; ++j) {
if (strBindTx != "")
strBindTx = strcat(strBindTx, ", ");
strBindTx = strcat(strBindTx, argv(j));
}
if (!strBindTx)
strBindTx = "UNBOUND";
return strtoupper(strBindTx);
}
bool
Util_IsFocused(void)
{
return g_focus;
}
int
Util_GetMaxPlayers(void)
{
return g_numplayerslots;
}