/* copyright (c) 2008 rajh and gregwar. Score stuff */ #ifndef SCORE_H_RACE #define SCORE_H_RACE #include #include 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