DarkflameServer/dGame/LeaderboardManager.cpp

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

460 lines
16 KiB
C++
Raw Normal View History

2023-05-30 11:18:32 +00:00
#define _DEBUG
#include "LeaderboardManager.h"
#include <utility>
#include "Database.h"
#include "EntityManager.h"
#include "Character.h"
2021-12-22 03:15:29 +00:00
#include "Game.h"
#include "GameMessages.h"
#include "dLogger.h"
2021-12-22 03:15:29 +00:00
#include "dConfig.h"
#include "CDClientManager.h"
#include "GeneralUtils.h"
#include "Entity.h"
2023-04-14 08:32:52 +00:00
#include "LDFFormat.h"
2023-05-30 11:11:37 +00:00
#include "DluAssert.h"
#include <sstream>
#include "CDActivitiesTable.h"
#include "Metrics.hpp"
2023-04-26 09:10:57 +00:00
2023-05-30 11:11:37 +00:00
namespace LeaderboardManager {
LeaderboardCache leaderboardCache;
}
Leaderboard::Leaderboard(const GameID gameID, const Leaderboard::InfoType infoType, const bool weekly, LWOOBJID relatedPlayer, const Leaderboard::Type leaderboardType) {
this->gameID = gameID;
this->weekly = weekly;
this->infoType = infoType;
this->leaderboardType = leaderboardType;
this->relatedPlayer = relatedPlayer;
}
Leaderboard::~Leaderboard() {
for (auto& entry : entries) for (auto data : entry) delete data;
2023-04-14 08:32:52 +00:00
}
2023-05-30 11:38:19 +00:00
inline void WriteLeaderboardRow(std::ostringstream& leaderboard, const uint32_t& index, LDFBaseData* data) {
2023-05-10 05:00:13 +00:00
leaderboard << "\nResult[0].Row[" << index << "]." << data->GetString();
}
2023-05-30 11:38:19 +00:00
void Leaderboard::Serialize(RakNet::BitStream* bitStream) const {
2023-05-09 02:35:19 +00:00
bitStream->Write(gameID);
bitStream->Write(infoType);
2023-05-09 02:35:19 +00:00
std::ostringstream leaderboard;
Game::logger->Log("LeaderboardManager", "game is %i info type %i ", gameID, infoType);
2023-05-10 05:00:13 +00:00
leaderboard << "ADO.Result=7:1"; // Unused in 1.10.64, but is in captures
2023-05-28 11:30:20 +00:00
leaderboard << "\nResult.Count=1:1"; // number of results, always 1
if (!this->entries.empty()) leaderboard << "\nResult[0].Index=0:RowNumber"; // "Primary key". Live doesn't include this if there are no entries.
leaderboard << "\nResult[0].RowCount=1:" << entries.size();
2022-07-28 13:39:57 +00:00
2023-05-09 01:36:28 +00:00
int32_t rowNumber = 0;
for (auto& entry : entries) {
2023-05-09 01:36:28 +00:00
for (auto* data : entry) {
WriteLeaderboardRow(leaderboard, rowNumber, data);
}
2023-05-09 01:36:28 +00:00
rowNumber++;
}
2023-05-28 11:30:20 +00:00
2023-04-13 04:57:58 +00:00
// Serialize the thing to a BitStream
uint32_t leaderboardSize = leaderboard.tellp();
bitStream->Write<uint32_t>(leaderboardSize);
// Doing this all in 1 call so there is no possbility of a dangling pointer.
2023-05-28 11:30:20 +00:00
bitStream->WriteAlignedBytes(reinterpret_cast<const unsigned char*>(GeneralUtils::ASCIIToUTF16(leaderboard.str()).c_str()), leaderboardSize * sizeof(char16_t));
if (leaderboardSize > 0) bitStream->Write<uint16_t>(0);
2023-05-09 02:35:19 +00:00
bitStream->Write0();
bitStream->Write0();
}
2023-05-09 01:36:28 +00:00
void Leaderboard::QueryToLdf(std::unique_ptr<sql::ResultSet>& rows) {
if (rows->rowsCount() == 0) return;
2023-05-09 01:36:28 +00:00
this->entries.reserve(rows->rowsCount());
while (rows->next()) {
constexpr int32_t MAX_NUM_DATA_PER_ROW = 9;
this->entries.push_back(std::vector<LDFBaseData*>());
auto& entry = this->entries.back();
entry.reserve(MAX_NUM_DATA_PER_ROW);
entry.push_back(new LDFData<uint64_t>(u"CharacterID", rows->getInt("character_id")));
entry.push_back(new LDFData<uint64_t>(u"LastPlayed", rows->getUInt64("lastPlayed")));
entry.push_back(new LDFData<int32_t>(u"NumPlayed", 1));
entry.push_back(new LDFData<std::u16string>(u"name", GeneralUtils::ASCIIToUTF16(rows->getString("name").c_str())));
entry.push_back(new LDFData<uint64_t>(u"RowNumber", rows->getInt("ranking")));
2023-05-09 01:36:28 +00:00
switch (leaderboardType) {
case Type::ShootingGallery:
2023-05-28 11:30:20 +00:00
entry.push_back(new LDFData<float>(u"HitPercentage", (rows->getInt("hitPercentage") / 100.0f)));
2023-05-09 01:36:28 +00:00
// HitPercentage:3 between 0 and 1
entry.push_back(new LDFData<int32_t>(u"Score", rows->getInt("score")));
// Score:1
entry.push_back(new LDFData<int32_t>(u"Streak", rows->getInt("streak")));
// Streak:1
break;
case Type::Racing:
entry.push_back(new LDFData<float>(u"BestLapTime", rows->getDouble("bestLapTime")));
// BestLapTime:3
entry.push_back(new LDFData<float>(u"BestTime", rows->getDouble("bestTime")));
// BestTime:3
entry.push_back(new LDFData<int32_t>(u"License", 1));
// License:1 - 1 if player has completed mission 637 and 0 otherwise
entry.push_back(new LDFData<int32_t>(u"NumWins", rows->getInt("numWins")));
// NumWins:1
break;
case Type::UnusedLeaderboard4:
entry.push_back(new LDFData<int32_t>(u"Points", rows->getInt("score")));
2023-05-09 01:36:28 +00:00
// Points:1
break;
case Type::MonumentRace:
entry.push_back(new LDFData<int32_t>(u"Time", rows->getInt("bestTime")));
// Time:1(?)
break;
case Type::FootRace:
entry.push_back(new LDFData<int32_t>(u"Time", rows->getInt("bestTime")));
// Time:1
break;
case Type::Survival:
entry.push_back(new LDFData<int32_t>(u"Points", rows->getInt("score")));
2023-05-09 01:36:28 +00:00
// Points:1
entry.push_back(new LDFData<int32_t>(u"Time", rows->getInt("bestTime")));
// Time:1
break;
case Type::SurvivalNS:
entry.push_back(new LDFData<int32_t>(u"Wave", rows->getInt("score")));
2023-05-09 01:36:28 +00:00
// Wave:1
entry.push_back(new LDFData<int32_t>(u"Time", rows->getInt("bestTime")));
// Time:1
break;
case Type::Donations:
entry.push_back(new LDFData<int32_t>(u"Points", rows->getInt("score")));
2023-05-09 01:36:28 +00:00
// Score:1
break;
case Type::None:
// This type is included here simply to resolve a compiler warning on mac about unused enum types
break;
default:
break;
}
}
}
2023-05-30 11:11:37 +00:00
const std::string_view Leaderboard::GetColumns(Leaderboard::Type leaderboardType) {
2023-05-30 11:23:48 +00:00
const char* columns;
2023-05-09 01:36:28 +00:00
switch (leaderboardType) {
case Type::ShootingGallery:
columns = "hitPercentage, score, streak";
break;
case Type::Racing:
columns = "bestLapTime, bestTime, numWins";
break;
2023-05-30 11:23:48 +00:00
case Type::Donations:
2023-05-09 01:36:28 +00:00
case Type::UnusedLeaderboard4:
columns = "score";
break;
case Type::MonumentRace:
case Type::FootRace:
columns = "bestTime";
break;
case Type::Survival:
columns = "bestTime, score";
break;
case Type::SurvivalNS:
columns = "bestTime, score";
break;
case Type::None:
2023-05-30 11:38:19 +00:00
columns = "";
2023-05-09 01:36:28 +00:00
// This type is included here simply to resolve a compiler warning on mac about unused enum types
break;
}
return columns;
}
2023-05-30 11:11:37 +00:00
const std::string_view Leaderboard::GetInsertFormat(Leaderboard::Type leaderboardType) {
2023-05-30 11:23:48 +00:00
const char* columns;
2023-05-09 01:36:28 +00:00
switch (leaderboardType) {
case Type::ShootingGallery:
2023-05-10 08:32:55 +00:00
columns = "score=%i, hitPercentage=%i, streak=%i";
2023-05-09 01:36:28 +00:00
break;
case Type::Racing:
columns = "bestLapTime=%i, bestTime=%i, numWins=numWins + %i";
break;
2023-05-30 11:23:48 +00:00
case Type::Donations:
2023-05-09 01:36:28 +00:00
case Type::UnusedLeaderboard4:
columns = "score=%i";
break;
case Type::MonumentRace:
case Type::FootRace:
columns = "bestTime=%i";
break;
case Type::Survival:
columns = "bestTime=%i, score=%i";
break;
case Type::SurvivalNS:
columns = "bestTime=%i, score=%i";
break;
case Type::None:
2023-05-30 11:38:19 +00:00
columns = "";
2023-05-09 01:36:28 +00:00
// This type is included here simply to resolve a compiler warning on mac about unused enum types
break;
}
return columns;
}
2023-05-30 11:11:37 +00:00
const std::string_view Leaderboard::GetOrdering(Leaderboard::Type leaderboardType) {
2023-05-30 11:23:48 +00:00
const char* orderBase;
2023-05-01 04:30:41 +00:00
switch (leaderboardType) {
2023-05-09 01:36:28 +00:00
case Type::ShootingGallery:
orderBase = "score DESC, streak DESC, hitPercentage DESC";
2023-05-01 04:30:41 +00:00
break;
case Type::Racing:
orderBase = "bestTime ASC, bestLapTime ASC, numWins DESC";
2023-05-01 04:30:41 +00:00
break;
2023-05-30 11:23:48 +00:00
case Type::Donations:
2023-05-01 04:30:41 +00:00
case Type::UnusedLeaderboard4:
orderBase = "score DESC";
2023-05-01 04:30:41 +00:00
break;
case Type::MonumentRace:
orderBase = "bestTime ASC";
2023-05-01 04:30:41 +00:00
break;
case Type::FootRace:
orderBase = "bestTime DESC";
2023-05-01 04:30:41 +00:00
break;
case Type::Survival:
orderBase = "score DESC, bestTime DESC";
2023-05-01 04:30:41 +00:00
break;
case Type::SurvivalNS:
orderBase = "bestTime DESC, score DESC";
2023-05-01 04:30:41 +00:00
break;
case Type::None:
2023-05-30 11:38:19 +00:00
orderBase = "";
2023-05-01 04:30:41 +00:00
// This type is included here simply to resolve a compiler warning on mac about unused enum types
break;
}
2023-05-09 01:36:28 +00:00
return orderBase;
}
2023-05-09 02:35:19 +00:00
void Leaderboard::SetupLeaderboard(uint32_t resultStart, uint32_t resultEnd) {
2023-05-09 02:59:10 +00:00
resultStart++;
resultEnd++;
2023-05-31 10:10:28 +00:00
const std::string queryBase =
2023-05-09 01:36:28 +00:00
R"QUERY(
WITH leaderboardsRanked AS (
SELECT leaderboard.*, charinfo.name,
RANK() OVER
(
ORDER BY %s, UNIX_TIMESTAMP(last_played) ASC, id DESC
) AS ranking
FROM leaderboard JOIN charinfo on charinfo.id = leaderboard.character_id
WHERE game_id = ? %s
),
myStanding AS (
SELECT
ranking as myRank
FROM leaderboardsRanked
WHERE id = ?
),
lowestRanking AS (
SELECT MAX(ranking) AS lowestRank
FROM leaderboardsRanked
)
SELECT %s, character_id, UNIX_TIMESTAMP(last_played) as lastPlayed, leaderboardsRanked.name, leaderboardsRanked.ranking FROM leaderboardsRanked, myStanding, lowestRanking
WHERE leaderboardsRanked.ranking
BETWEEN
2023-05-09 02:35:19 +00:00
LEAST(GREATEST(CAST(myRank AS SIGNED) - 5, %i), lowestRanking.lowestRank - 10)
2023-05-09 01:36:28 +00:00
AND
2023-05-09 02:35:19 +00:00
LEAST(GREATEST(myRank + 5, %i), lowestRanking.lowestRank)
2023-05-09 01:36:28 +00:00
ORDER BY ranking ASC;
)QUERY";
2023-05-31 01:21:10 +00:00
// If we are getting the friends leaderboard, add the friends query, otherwise fill it in with nothing.
std::string friendsQuery =
2023-05-09 01:36:28 +00:00
R"QUERY( AND (
character_id IN (
SELECT fr.requested_player FROM (
SELECT CASE
WHEN player_id = ? THEN friend_id
WHEN friend_id = ? THEN player_id
END AS requested_player
FROM friends
) AS fr
JOIN charinfo AS ci
ON ci.id = fr.requested_player
WHERE fr.requested_player IS NOT NULL
)
OR character_id = ?
)
)QUERY";
2023-05-31 01:21:10 +00:00
[[likely]] if (this->infoType != InfoType::Friends) friendsQuery.clear();
2023-05-30 11:11:37 +00:00
const auto orderBase = GetOrdering(this->leaderboardType);
const auto selectBase = GetColumns(this->leaderboardType);
2023-05-04 21:48:26 +00:00
2023-05-31 01:21:10 +00:00
constexpr uint16_t STRING_LENGTH = 2048;
2023-05-04 23:53:36 +00:00
char lookupBuffer[STRING_LENGTH];
2023-05-31 01:21:10 +00:00
int32_t res = snprintf(lookupBuffer, STRING_LENGTH, queryBase.data(), orderBase.data(), friendsQuery.data(), selectBase.data(), resultStart, resultEnd);
DluAssert(res != -1);
2023-05-04 23:53:36 +00:00
std::string baseLookupStr;
char baseRankingBuffer[STRING_LENGTH];
2023-05-31 01:21:10 +00:00
bool neededFormatting;
[[unlikely]] if (this->infoType == InfoType::Top) {
baseLookupStr = "SELECT id FROM leaderboard WHERE game_id = ? ORDER BY %s LIMIT 1";
neededFormatting = true;
} else {
baseLookupStr = "SELECT id FROM leaderboard WHERE game_id = ? AND character_id = ? LIMIT 1";
neededFormatting = false;
}
2023-05-09 01:36:28 +00:00
// If we need to format the base ranking query, do so, otherwise just copy the query since it's already formatted.
2023-05-30 11:18:32 +00:00
if (neededFormatting) snprintf(baseRankingBuffer, STRING_LENGTH, baseLookupStr.c_str(), orderBase.data());
2023-05-04 23:53:36 +00:00
else std::copy(baseLookupStr.begin(), baseLookupStr.end() + 1, baseRankingBuffer);
std::unique_ptr<sql::PreparedStatement> baseQuery(Database::CreatePreppedStmt(baseRankingBuffer));
baseQuery->setInt(1, this->gameID);
2023-05-31 01:21:10 +00:00
if (!neededFormatting) baseQuery->setInt(2, this->relatedPlayer);
std::unique_ptr<sql::ResultSet> baseResult(baseQuery->executeQuery());
2023-05-28 11:30:20 +00:00
2023-05-09 01:36:28 +00:00
if (!baseResult->next()) return; // In this case, there are no entries in the leaderboard for this game.
uint32_t relatedPlayerLeaderboardId = baseResult->getInt("id");
2023-05-09 01:36:28 +00:00
// Create and execute the actual save here
std::unique_ptr<sql::PreparedStatement> query(Database::CreatePreppedStmt(lookupBuffer));
2023-05-09 01:36:28 +00:00
2023-05-01 04:30:41 +00:00
query->setInt(1, this->gameID);
2023-05-04 23:53:36 +00:00
if (this->infoType == InfoType::Friends) {
query->setInt(2, this->relatedPlayer);
query->setInt(3, this->relatedPlayer);
query->setInt(4, this->relatedPlayer);
query->setInt(5, relatedPlayerLeaderboardId);
} else {
query->setInt(2, relatedPlayerLeaderboardId);
}
2023-05-01 04:30:41 +00:00
2023-05-09 01:36:28 +00:00
std::unique_ptr<sql::ResultSet> result(query->executeQuery());
QueryToLdf(result);
}
2023-05-30 11:23:48 +00:00
void Leaderboard::Send(const LWOOBJID targetID) const {
auto* player = EntityManager::Instance()->GetEntity(relatedPlayer);
if (player != nullptr) {
GameMessages::SendActivitySummaryLeaderboardData(targetID, this, player->GetSystemAddress());
}
}
2023-05-30 11:38:19 +00:00
std::string FormatInsert(const Leaderboard::Type& type, const Score& score, const bool useUpdate) {
2023-05-30 11:11:37 +00:00
auto insertFormat = Leaderboard::GetInsertFormat(type);
2022-07-28 13:39:57 +00:00
2023-05-30 11:11:37 +00:00
auto* queryType = useUpdate ? "UPDATE" : "INSERT";
2023-05-30 11:11:37 +00:00
auto* usedFilter = useUpdate ?
", timesPlayed = timesPlayed + 1 WHERE character_id = ? AND game_id = ?" :
", character_id = ?, game_id = ?";
2023-05-30 11:11:37 +00:00
// First fill in the format
2023-04-18 08:26:35 +00:00
constexpr uint16_t STRING_LENGTH = 400;
char formattedInsert[STRING_LENGTH];
2023-05-30 11:18:32 +00:00
int32_t res = snprintf(formattedInsert, STRING_LENGTH, "%s leaderboard SET %s %s;", queryType, insertFormat.data(), usedFilter);
DluAssert(res != -1);
2023-05-30 11:11:37 +00:00
// Then fill in our score
2023-04-18 08:26:35 +00:00
char finishedQuery[STRING_LENGTH];
2023-05-30 11:18:32 +00:00
res = snprintf(finishedQuery, STRING_LENGTH, formattedInsert, score.GetPrimaryScore(), score.GetSecondaryScore(), score.GetTertiaryScore());
DluAssert(res != -1);
2023-04-18 08:26:35 +00:00
return finishedQuery;
}
2022-07-28 13:39:57 +00:00
2023-05-30 11:38:19 +00:00
void LeaderboardManager::SaveScore(const LWOOBJID& playerID, const GameID gameID, const Leaderboard::Type leaderboardType, const uint32_t primaryScore, const uint32_t secondaryScore, const uint32_t tertiaryScore) {
2023-05-30 11:11:37 +00:00
auto* lookup = "SELECT * FROM leaderboard WHERE character_id = ? AND game_id = ?;";
2023-05-30 11:11:37 +00:00
std::unique_ptr<sql::PreparedStatement> query(Database::CreatePreppedStmt(lookup));
2023-05-07 07:31:38 +00:00
query->setInt(1, playerID);
query->setInt(2, gameID);
std::unique_ptr<sql::ResultSet> myScoreResult(query->executeQuery());
2023-05-30 11:18:32 +00:00
std::string saveQuery("UPDATE leaderboard SET timesPlayed = timesPlayed + 1 WHERE character_id = ? AND game_id = ?;");
2023-05-30 11:11:37 +00:00
Score newScore(primaryScore, secondaryScore, tertiaryScore);
if (myScoreResult->next()) {
2023-05-30 11:11:37 +00:00
Score oldScore;
bool lowerScoreBetter = false;
switch (leaderboardType) {
2023-05-30 11:11:37 +00:00
// Higher score better
case Leaderboard::Type::ShootingGallery: {
2023-05-30 11:11:37 +00:00
oldScore.SetPrimaryScore(myScoreResult->getInt("score"));
oldScore.SetSecondaryScore(myScoreResult->getInt("hitPercentage"));
oldScore.SetTertiaryScore(myScoreResult->getInt("streak"));
break;
}
case Leaderboard::Type::FootRace: {
2023-05-30 11:11:37 +00:00
oldScore.SetPrimaryScore(myScoreResult->getInt("bestTime"));
break;
}
case Leaderboard::Type::Survival: {
2023-05-30 11:11:37 +00:00
// Config option may reverse these
oldScore.SetPrimaryScore(myScoreResult->getInt("bestTime"));
oldScore.SetSecondaryScore(myScoreResult->getInt("score"));
break;
}
case Leaderboard::Type::SurvivalNS: {
2023-05-30 11:11:37 +00:00
oldScore.SetPrimaryScore(myScoreResult->getInt("bestTime"));
oldScore.SetSecondaryScore(myScoreResult->getInt("score"));
break;
}
2023-05-30 11:11:37 +00:00
case Leaderboard::Type::UnusedLeaderboard4:
case Leaderboard::Type::Donations: {
2023-05-30 11:11:37 +00:00
oldScore.SetPrimaryScore(myScoreResult->getInt("score"));
break;
}
2023-05-31 01:21:10 +00:00
case Leaderboard::Type::Racing: {
2023-05-30 11:11:37 +00:00
oldScore.SetPrimaryScore(myScoreResult->getInt("bestTime"));
oldScore.SetSecondaryScore(myScoreResult->getInt("bestLapTime"));
lowerScoreBetter = true;
break;
2023-05-31 01:21:10 +00:00
}
case Leaderboard::Type::MonumentRace: {
2023-05-30 11:11:37 +00:00
oldScore.SetPrimaryScore(myScoreResult->getInt("bestTime"));
lowerScoreBetter = true;
// Do score checking here
break;
2023-05-31 01:21:10 +00:00
}
2023-05-09 01:36:28 +00:00
case Leaderboard::Type::None:
default:
2023-05-30 11:11:37 +00:00
Game::logger->Log("LeaderboardManager", "Unknown leaderboard type %i. Cannot save score!", leaderboardType);
return;
}
2023-05-30 11:11:37 +00:00
bool newHighScore = lowerScoreBetter ? newScore < oldScore : newScore > oldScore;
if (newHighScore) {
saveQuery = FormatInsert(leaderboardType, newScore, true);
} else if (leaderboardType == Leaderboard::Type::Racing && tertiaryScore) {
saveQuery = "UPDATE leaderboard SET numWins = numWins + 1, timesPlayed = timesPlayed + 1 WHERE character_id = ? AND game_id = ?;";
}
} else {
2023-05-30 11:11:37 +00:00
saveQuery = FormatInsert(leaderboardType, newScore, false);
2023-05-07 07:31:38 +00:00
}
2023-05-30 11:11:37 +00:00
std::unique_ptr<sql::PreparedStatement> saveStatement(Database::CreatePreppedStmt(saveQuery));
2023-05-09 01:36:28 +00:00
saveStatement->setInt(1, playerID);
saveStatement->setInt(2, gameID);
saveStatement->execute();
}
2023-05-30 11:38:19 +00:00
void LeaderboardManager::SendLeaderboard(const uint32_t gameID, const Leaderboard::InfoType infoType, const bool weekly, const LWOOBJID playerID, const LWOOBJID targetID, const uint32_t resultStart, const uint32_t resultEnd) {
Leaderboard leaderboard(gameID, infoType, weekly, playerID, GetLeaderboardType(gameID));
2023-05-09 02:59:10 +00:00
leaderboard.SetupLeaderboard(resultStart, resultEnd);
2023-05-10 05:21:41 +00:00
leaderboard.Send(targetID);
}
2023-04-13 04:57:58 +00:00
Leaderboard::Type LeaderboardManager::GetLeaderboardType(const GameID gameID) {
auto lookup = leaderboardCache.find(gameID);
if (lookup != leaderboardCache.end()) return lookup->second;
auto* activitiesTable = CDClientManager::Instance().GetTable<CDActivitiesTable>();
std::vector<CDActivities> activities = activitiesTable->Query([=](const CDActivities& entry) {
2023-05-30 11:23:48 +00:00
return entry.ActivityID == gameID;
});
auto type = !activities.empty() ? static_cast<Leaderboard::Type>(activities.at(0).leaderboardType) : Leaderboard::Type::None;
2023-04-13 04:57:58 +00:00
leaderboardCache.insert_or_assign(gameID, type);
return type;
}