mirror of
https://github.com/ddnet/ddnet.git
synced 2024-11-11 02:28:18 +00:00
35 lines
791 B
C
35 lines
791 B
C
|
/* copyright (c) 2008 rajh and gregwar. Score stuff */
|
||
|
|
||
|
#ifndef SCORE_H_RACE
|
||
|
#define SCORE_H_RACE
|
||
|
#include <engine/server.h>
|
||
|
#include <engine/shared/protocol.h>
|
||
|
|
||
|
class CPlayerScore
|
||
|
{
|
||
|
public:
|
||
|
char name[MAX_NAME_LENGTH];
|
||
|
float m_Score;
|
||
|
|
||
|
CPlayerScore(const char *name, float score);
|
||
|
|
||
|
bool operator==(const CPlayerScore& other) { return (this->m_Score == other.m_Score); }
|
||
|
bool operator<(const CPlayerScore& other) { return (this->m_Score < other.m_Score); }
|
||
|
};
|
||
|
|
||
|
class CScore
|
||
|
{
|
||
|
class CGameContext *m_pGameServer;
|
||
|
public:
|
||
|
CScore(class CGameContext *pGameServer);
|
||
|
|
||
|
void Save();
|
||
|
void Load();
|
||
|
CPlayerScore *SearchName(const char *name, int &pos);
|
||
|
CPlayerScore *SearchName(const char *name);
|
||
|
void ParsePlayer(const char *name, float score);
|
||
|
void Top5Draw(int id, int debut);
|
||
|
};
|
||
|
|
||
|
#endif
|