DarkflameServer/dGame/LeaderboardManager.h

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

103 lines
2.7 KiB
C
Raw Normal View History

#pragma once
#include <climits>
#include <map>
#include <vector>
2023-04-13 04:57:58 +00:00
#include "Singleton.h"
#include "dCommonVars.h"
2023-04-14 08:32:52 +00:00
#include "LDFFormat.h"
2023-04-13 04:57:58 +00:00
namespace RakNet{
class BitStream;
};
2023-04-13 04:57:58 +00:00
typedef uint32_t GameID;
class Leaderboard {
public:
2023-04-13 04:57:58 +00:00
struct Entry {
LWOOBJID playerID;
2023-04-13 04:57:58 +00:00
uint32_t time;
uint32_t score;
uint32_t placement;
time_t lastPlayed;
std::string playerName;
};
typedef std::vector<Entry> LeaderboardEntries;
// Enums for leaderboards
enum InfoType : uint32_t {
Top, // Top 11 all time players
MyStanding, // Ranking of the current player
Friends // Ranking between friends
};
enum Type : uint32_t {
ShootingGallery,
Racing,
MonumentRace,
FootRace,
UnusedLeaderboard4,// There is no 4 defined anywhere in the client or cdclient
2023-04-13 04:57:58 +00:00
Survival = 5,
2023-04-14 04:55:09 +00:00
SurvivalNS,
Donations,
2023-04-13 04:57:58 +00:00
None = UINT_MAX
};
Leaderboard(const GameID gameID, const Leaderboard::InfoType infoType, const bool weekly, const Leaderboard::Type = None);
/**
* Serialize the Leaderboard to a BitStream
*
* Expensive! Leaderboards are very string intensive so be wary of performatnce calling this method.
*/
void Serialize(RakNet::BitStream* bitStream) const;
/**
* Based on the associated gameID, return true if the score provided
* is better than the current entries' score
* @param score
* @return true
* @return false
*/
bool IsScoreBetter(const uint32_t score) const { return false; };
2023-04-13 04:57:58 +00:00
/**
* Builds the leaderboard from the database based on the associated gameID
*/
void SetupLeaderboard();
/**
* Sends the leaderboard to the client specified by targetID.
*/
void Send(LWOOBJID targetID) const;
/**
* Adds a new entry to the leaderboard
* Used for debug only!
*/
void AddEntry(Entry entry) { entries.push_back(entry); }
private:
2023-04-14 08:32:52 +00:00
template<class TypeToWrite>
inline void WriteLeaderboardRow(std::ostringstream& leaderboard, const uint32_t& index, const std::string& key, const eLDFType& ldfType, const TypeToWrite& value) const;
2023-04-13 04:57:58 +00:00
LeaderboardEntries entries;
LWOOBJID relatedPlayer;
2023-04-13 04:57:58 +00:00
GameID gameID;
InfoType infoType;
Leaderboard::Type leaderboardType;
bool weekly;
};
2023-04-13 04:57:58 +00:00
class LeaderboardManager: public Singleton<LeaderboardManager> {
typedef std::map<GameID, Leaderboard::Type> LeaderboardCache;
public:
2023-04-13 04:57:58 +00:00
void SendLeaderboard(GameID gameID, Leaderboard::InfoType infoType, bool weekly, LWOOBJID targetID,
LWOOBJID playerID = LWOOBJID_EMPTY);
2023-04-13 04:57:58 +00:00
void SaveScore(LWOOBJID playerID, GameID gameID, uint32_t score, uint32_t time);
private:
2023-04-13 04:57:58 +00:00
Leaderboard::Type GetLeaderboardType(const GameID gameID);
void GetLeaderboard(uint32_t gameID, Leaderboard::InfoType infoType, bool weekly, LWOOBJID playerID = LWOOBJID_EMPTY);
LeaderboardCache leaderboardCache;
};