2010-11-20 10:37:14 +00:00
|
|
|
/* (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. */
|
2010-05-29 07:25:38 +00:00
|
|
|
#ifndef GAME_CLIENT_COMPONENTS_SCOREBOARD_H
|
|
|
|
#define GAME_CLIENT_COMPONENTS_SCOREBOARD_H
|
2022-05-29 16:33:38 +00:00
|
|
|
|
|
|
|
#include <engine/console.h>
|
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
#include <game/client/component.h>
|
|
|
|
|
|
|
|
class CScoreboard : public CComponent
|
|
|
|
{
|
|
|
|
void RenderGoals(float x, float y, float w);
|
2022-06-16 13:30:58 +00:00
|
|
|
void RenderSpectators(float x, float y, float w, float h);
|
2020-11-05 11:15:27 +00:00
|
|
|
void RenderScoreboard(float x, float y, float w, int Team, const char *pTitle, int NumPlayers = -1);
|
2010-09-07 17:03:59 +00:00
|
|
|
void RenderRecordingNotification(float x);
|
2010-05-29 07:25:38 +00:00
|
|
|
|
2011-08-13 00:11:06 +00:00
|
|
|
static void ConKeyScoreboard(IConsole::IResult *pResult, void *pUserData);
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2011-04-02 14:24:08 +00:00
|
|
|
const char *GetClanName(int Team);
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
bool m_Active;
|
2011-04-13 18:37:12 +00:00
|
|
|
|
2010-05-29 07:25:38 +00:00
|
|
|
public:
|
|
|
|
CScoreboard();
|
2022-01-31 02:11:47 +00:00
|
|
|
virtual int Sizeof() const override { return sizeof(*this); }
|
2022-01-30 23:43:56 +00:00
|
|
|
virtual void OnReset() override;
|
|
|
|
virtual void OnConsoleInit() override;
|
|
|
|
virtual void OnRender() override;
|
|
|
|
virtual void OnRelease() override;
|
2010-08-18 01:57:35 +00:00
|
|
|
|
|
|
|
bool Active();
|
2011-04-09 06:41:31 +00:00
|
|
|
|
|
|
|
// DDRace
|
|
|
|
|
2022-01-30 23:43:56 +00:00
|
|
|
virtual void OnMessage(int MsgType, void *pRawMsg) override;
|
2014-01-10 15:19:46 +00:00
|
|
|
|
2011-04-09 06:41:31 +00:00
|
|
|
private:
|
2014-01-10 15:19:46 +00:00
|
|
|
float m_ServerRecord;
|
2010-05-29 07:25:38 +00:00
|
|
|
};
|
|
|
|
|
2011-02-14 20:58:16 +00:00
|
|
|
#endif
|