2010-08-28 13:47:52 +00:00
|
|
|
#ifndef GAME_SERVER_TEAMS_H
|
|
|
|
#define GAME_SERVER_TEAMS_H
|
|
|
|
|
2010-08-30 12:13:43 +00:00
|
|
|
#include <game/teamscore.h>
|
2010-08-28 13:47:52 +00:00
|
|
|
#include <game/server/gamecontext.h>
|
|
|
|
|
2011-01-06 05:30:19 +00:00
|
|
|
class CGameTeams
|
|
|
|
{
|
2010-08-28 13:47:52 +00:00
|
|
|
int m_TeamState[MAX_CLIENTS];
|
2010-11-06 22:54:35 +00:00
|
|
|
int m_MembersCount[MAX_CLIENTS];
|
2010-08-28 13:47:52 +00:00
|
|
|
bool m_TeeFinished[MAX_CLIENTS];
|
2010-08-28 20:53:42 +00:00
|
|
|
|
|
|
|
class CGameContext * m_pGameContext;
|
2010-08-28 13:47:52 +00:00
|
|
|
|
2010-11-06 22:54:35 +00:00
|
|
|
|
2010-08-28 13:47:52 +00:00
|
|
|
public:
|
2011-03-16 13:14:25 +00:00
|
|
|
enum
|
2011-01-06 05:30:19 +00:00
|
|
|
{
|
2011-02-02 10:49:19 +00:00
|
|
|
TEAMSTATE_EMPTY,
|
|
|
|
TEAMSTATE_OPEN,
|
2011-03-16 13:14:25 +00:00
|
|
|
TEAMSTATE_CLOSED,
|
|
|
|
TEAMSTATE_STARTED,
|
|
|
|
TEAMSTATE_FINISHED
|
2010-08-28 13:47:52 +00:00
|
|
|
};
|
|
|
|
|
2010-08-30 12:13:43 +00:00
|
|
|
CTeamsCore m_Core;
|
|
|
|
|
|
|
|
CGameTeams(CGameContext *pGameContext);
|
2010-08-28 13:47:52 +00:00
|
|
|
|
|
|
|
//helper methods
|
2011-02-02 10:49:19 +00:00
|
|
|
CCharacter* Character(int ClientID) { return GameServer()->GetPlayerChar(ClientID); }
|
2011-06-06 19:24:27 +00:00
|
|
|
CPlayer* GetPlayer(int ClientID) { return GameServer()->m_apPlayers[ClientID]; }
|
2010-08-28 20:53:42 +00:00
|
|
|
|
|
|
|
class CGameContext *GameServer() { return m_pGameContext; }
|
|
|
|
class IServer *Server() { return m_pGameContext->Server(); }
|
2010-08-28 13:47:52 +00:00
|
|
|
|
2011-02-02 10:49:19 +00:00
|
|
|
void OnCharacterStart(int ClientID);
|
|
|
|
void OnCharacterFinish(int ClientID);
|
2010-08-28 13:47:52 +00:00
|
|
|
|
2011-03-16 13:14:25 +00:00
|
|
|
bool SetCharacterTeam(int ClientID, int Team);
|
2010-08-28 13:47:52 +00:00
|
|
|
|
2011-03-16 13:14:25 +00:00
|
|
|
void ChangeTeamState(int Team, int State);
|
2010-08-28 13:47:52 +00:00
|
|
|
|
|
|
|
bool TeamFinished(int Team);
|
2010-09-08 16:22:11 +00:00
|
|
|
|
2011-01-26 20:57:23 +00:00
|
|
|
int TeamMask(int Team, int ExceptID = -1);
|
2010-09-14 11:38:46 +00:00
|
|
|
|
2010-11-06 22:54:35 +00:00
|
|
|
int Count(int Team) const;
|
|
|
|
|
2011-03-16 13:14:25 +00:00
|
|
|
//need to be very carefull using this method
|
|
|
|
void SetForceCharacterTeam(int id, int Team);
|
2010-09-24 13:37:13 +00:00
|
|
|
|
|
|
|
void Reset();
|
2010-10-24 10:47:25 +00:00
|
|
|
|
2011-03-16 13:14:25 +00:00
|
|
|
void SendTeamsState(int Cid);
|
2010-12-19 03:48:16 +00:00
|
|
|
|
|
|
|
int m_LastChat[MAX_CLIENTS];
|
2011-06-06 19:24:27 +00:00
|
|
|
|
|
|
|
int GetDDRaceState(CPlayer* Player);
|
|
|
|
int GetStartTime(CPlayer* Player);
|
|
|
|
float *GetCpCurrent(CPlayer* Player);
|
|
|
|
void SetDDRaceState(CPlayer* Player, int DDRaceState);
|
|
|
|
void SetStartTime(CPlayer* Player, int StartTime);
|
|
|
|
void SetRefreshTime(CPlayer* Player, int RefreshTime);
|
|
|
|
void SetCpActive(CPlayer* Player, int CpActive);
|
|
|
|
void OnFinish(CPlayer* Player);
|
2010-08-28 13:47:52 +00:00
|
|
|
};
|
|
|
|
|
2010-09-08 16:22:11 +00:00
|
|
|
#endif
|