nuclide/src/server/gamerules.cpp

151 lines
2.8 KiB
C++
Raw Normal View History

/*
* Copyright (c) 2016-2020 Marco Hladik <marco@icculus.org>
*
* 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.
*/
/* init */
void
CGameRules::InitPostEnts(void)
{
//print("Init!\n");
}
/* logic */
void
CGameRules::FrameStart(void)
{
//print("StartFrame!\n");
}
float
CGameRules::ConsoleCommand(base_player pl, string cmd)
{
return FALSE;
}
/* client */
void
CGameRules::PlayerConnect(entity pl)
{
//print("ClientConnect!\n");
}
void
CGameRules::PlayerDisconnect(entity pl)
{
//print("ClientDisconnect!\n");
}
void
CGameRules::PlayerKill(base_player pl)
{
//print("PlayerKill!\n");
}
void
CGameRules::PlayerDeath(base_player pl)
{
//print("PlayerDeath!\n");
}
void
CGameRules::PlayerPain(base_player pl)
{
//print("ClientKill!\n");
}
void
CGameRules::PlayerSpawn(base_player pl)
{
//print("PutClientInServer!\n");
}
void
CGameRules::PlayerPreFrame(base_player pl)
{
//print("PlayerPreThink!\n");
}
void
CGameRules::PlayerPostFrame(base_player pl)
{
//print("PlayerPostThink!\n");
}
/* level transitions */
void
CGameRules::LevelNewParms(void)
{
//print("LevelNewParms!\n");
}
void
CGameRules::LevelChangeParms(base_player pl)
{
//print("LevelChangeParms!\n");
}
/* spectator */
/*void
CGameRules::SpectatorConnect(player pl)
{
//print("SpectatorConnect!\n");
}
void
CGameRules::SpectatorDisconnect(player pl)
{
//print("SpectatorDisconnect!\n");
}
void
CGameRules::SpectatorThink(player pl)
{
//print("SpectatorThink!\n");
}*/
int
CGameRules::MaxItemPerSlot(int slot)
{
return -1;
}
void
CGameRules::IntermissionStart(void)
{
if (m_iIntermission)
return;
m_iIntermission = TRUE;
m_flIntermissionTime = time + 5.0f;
/* make the clients aware */
WriteByte(MSG_MULTICAST, SVC_CGAMEPACKET);
WriteByte(MSG_MULTICAST, EV_INTERMISSION);
msg_entity = world;
multicast([0,0,0], MULTICAST_ALL);
}
void
CGameRules::IntermissionEnd(void)
{
if (!m_iIntermission)
return;
if (time < m_flIntermissionTime)
return;
if (!(input_buttons & INPUT_BUTTON0) && !(input_buttons & INPUT_BUTTON2))
return;
localcmd("restart\n");
}
void
CGameRules::CGameRules(void)
{
forceinfokey(world, "teamplay", "0");
}
/* our currently running mode */
CGameRules g_grMode;