/* (c) Magnus Auvinen. See licence.txt in the root of the distribution for more information. */ /* If you are missing that file, acquire a complete release at teeworlds.com. */ #include #include #include "tdm.h" CGameControllerTDM::CGameControllerTDM(class CGameContext *pGameServer) : IGameController(pGameServer) { m_pGameType = "TDM"; m_GameFlags = GAMEFLAG_TEAMS; } int CGameControllerTDM::OnCharacterDeath(class CCharacter *pVictim, class CPlayer *pKiller, int Weapon) { IGameController::OnCharacterDeath(pVictim, pKiller, Weapon); if(Weapon != WEAPON_GAME) { // do team scoring if(pKiller == pVictim->GetPlayer() || pKiller->GetTeam() == pVictim->GetPlayer()->GetTeam()) m_aTeamscore[pKiller->GetTeam()&1]--; // klant arschel else m_aTeamscore[pKiller->GetTeam()&1]++; // good shit } return 0; } void CGameControllerTDM::Tick() { DoTeamScoreWincheck(); IGameController::Tick(); }