mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-10-11 18:08:05 +00:00

* feat: re-write persistent object ID tracker Features: - Remove random objectIDs entirely - Replace random objectIDs with persistentIDs - Remove the need to contact the MASTER server for a persistent ID - Add persistent ID logic to WorldServers that use transactions to guarantee unique IDs no matter when they are generated - Default character xml version to be the most recent one Fixes: - Return optional from GetModel (and check for nullopt where it may exist) - Regenerate inventory item ids on first login to be unique item IDs (fixes all those random IDs Pet IDs and subkeys are left alone and are assumed to be reserved (checks are there to prevent this) There is also duplicate check logic in place for properties and UGC/Models * Update comment and log * fix: sqlite transaction bug * fix colliding temp item ids temp items should not be saved. would cause issues between worlds as experienced before this commit
42 lines
1.5 KiB
C++
42 lines
1.5 KiB
C++
#include "ObjectIDManager.h"
|
|
|
|
// Custom Classes
|
|
#include "MasterPackets.h"
|
|
#include "Database.h"
|
|
#include "Logger.h"
|
|
#include "Game.h"
|
|
#include "eObjectBits.h"
|
|
|
|
// should the spawners from vanity also have the CLIENT flag?
|
|
|
|
namespace {
|
|
// Start the range in a way that it when first called it will fetch some new persistent IDs
|
|
std::optional<IObjectIdTracker::Range> CurrentRange = std::nullopt;
|
|
uint32_t CurrentObjectID = uint32_t(1152921508165007067); // The current object ID (this should really start at the highest current ID in the world, then increment from there)
|
|
};
|
|
|
|
uint64_t ObjectIDManager::GetPersistentID() {
|
|
if (!CurrentRange.has_value() || CurrentRange->minID > CurrentRange->maxID) {
|
|
CurrentRange = Database::Get()->GetPersistentIdRange();
|
|
// We're getting close to being out of IDs in this range, log a warning
|
|
const auto WARNING_RANGE = 70368744100000ULL;
|
|
if (CurrentRange->minID >= 70368744100000ULL) {
|
|
LOG("WARNING: Your server is running low on persistent IDs, please consider an ID squash in the near future.");
|
|
}
|
|
|
|
LOG("Reserved object ID range: %llu - %llu", CurrentRange->minID, CurrentRange->maxID);
|
|
}
|
|
|
|
const auto usedID = CurrentRange->minID++;
|
|
auto toReturn = usedID;
|
|
// Any IDs gotten from persistent IDs use the CHARACTER bit
|
|
GeneralUtils::SetBit(toReturn, eObjectBits::CHARACTER);
|
|
LOG("Using ID: %llu:%llu", toReturn, usedID);
|
|
return toReturn;
|
|
}
|
|
|
|
// Generates an object ID server-sided (used for regular entities like smashables)
|
|
uint32_t ObjectIDManager::GenerateObjectID() {
|
|
return ++CurrentObjectID;
|
|
}
|