iw4x-client/src/Components/Modules/ServerInfo.hpp
2016-06-30 19:38:48 +02:00

41 lines
738 B
C++

namespace Components
{
class ServerInfo : public Component
{
public:
ServerInfo();
~ServerInfo();
const char* GetName() { return "ServerInfo"; };
static Utils::InfoString GetInfo();
private:
class Container
{
public:
class Player
{
public:
int Ping;
int Score;
std::string Name;
};
unsigned int CurrentPlayer;
std::vector<Player> PlayerList;
Network::Address Target;
};
static Container PlayerContainer;
static void ServerStatus();
static unsigned int GetPlayerCount();
static const char* GetPlayerText(unsigned int index, int column);
static void SelectPlayer(unsigned int index);
static void DrawScoreboardInfo(void* a1);
static void DrawScoreboardStub();
};
}