Optimize playerdatadef patching (include versioning and updating)

This commit is contained in:
momo5502 2016-05-26 01:39:33 +02:00
parent 82fecdb1b9
commit 75895199f4
4 changed files with 92 additions and 42 deletions

2
deps/protobuf vendored

@ -1 +1 @@
Subproject commit cc5296b8692beff00285505dd7062c7d5bcb325a Subproject commit d089f04ae53565aff77240172e1007f3959503f4

View File

@ -150,14 +150,15 @@ namespace Components
// Redirect zone paths // Redirect zone paths
Utils::Hook(0x44DA90, FastFiles::GetZoneLocation, HOOK_JUMP).Install()->Quick(); Utils::Hook(0x44DA90, FastFiles::GetZoneLocation, HOOK_JUMP).Install()->Quick();
// Allow dlc ui zone loading // Allow custom zone loading
if (!ZoneBuilder::IsEnabled()) if (!ZoneBuilder::IsEnabled())
{ {
Utils::Hook(0x506BC7, FastFiles::LoadInitialZones, HOOK_CALL).Install()->Quick(); Utils::Hook(0x506BC7, FastFiles::LoadInitialZones, HOOK_CALL).Install()->Quick();
Utils::Hook(0x60B4AC, FastFiles::LoadDLCUIZones, HOOK_CALL).Install()->Quick(); Utils::Hook(0x60B4AC, FastFiles::LoadDLCUIZones, HOOK_CALL).Install()->Quick();
Utils::Hook(0x506B25, FastFiles::LoadGfxZones, HOOK_CALL).Install()->Quick();
} }
//Utils::Hook(0x506B25, FastFiles::LoadGfxZones, HOOK_CALL).Install()->Quick();
// basic checks (hash jumps, both normal and playlist) // basic checks (hash jumps, both normal and playlist)
Utils::Hook::Nop(0x5B97A3, 2); Utils::Hook::Nop(0x5B97A3, 2);
Utils::Hook::Nop(0x5BA493, 2); Utils::Hook::Nop(0x5BA493, 2);

View File

@ -6,29 +6,25 @@ namespace Components
int StructuredData::IndexCount[StructuredData::ENUM_MAX]; int StructuredData::IndexCount[StructuredData::ENUM_MAX];
Game::StructuredDataEnumEntry* StructuredData::Indices[StructuredData::ENUM_MAX]; Game::StructuredDataEnumEntry* StructuredData::Indices[StructuredData::ENUM_MAX];
std::vector<StructuredData::EnumEntry> StructuredData::Entries[StructuredData::ENUM_MAX]; std::vector<std::string> StructuredData::Entries[StructuredData::ENUM_MAX];
void StructuredData::AddPlayerDataEntry(StructuredData::PlayerDataType type, int index, std::string name) void StructuredData::AddPlayerDataEntry(StructuredData::PlayerDataType type, std::string name)
{ {
if (type >= StructuredData::ENUM_MAX) return; if (type >= StructuredData::ENUM_MAX) return;
// Check for duplications // Check for duplications
for (auto entry : StructuredData::Entries[type]) auto v = &StructuredData::Entries[type];
if (std::find(v->begin(), v->end(), name) == v->end())
{ {
if (entry.name == name || entry.statOffset == index) StructuredData::Entries[type].push_back(name);
{
return;
} }
} }
StructuredData::Entries[type].push_back({ name, index }); void StructuredData::PatchPlayerDataEnum(Game::StructuredDataDef* data, StructuredData::PlayerDataType type, std::vector<std::string>& entries)
}
void StructuredData::PatchPlayerDataEnum(Game::StructuredDataDefSet* data, StructuredData::PlayerDataType type, std::vector<StructuredData::EnumEntry>& entries)
{ {
if (!data || !data->data || type >= StructuredData::ENUM_MAX) return; if (!data || type >= StructuredData::ENUM_MAX) return;
Game::StructuredDataEnum* dataEnum = &data->data->enums[type]; Game::StructuredDataEnum* dataEnum = &data->enums[type];
if (StructuredData::IndexCount[type]) if (StructuredData::IndexCount[type])
{ {
@ -62,13 +58,13 @@ namespace Components
for (; pos < (dataEnum->numIndices + i); pos++) for (; pos < (dataEnum->numIndices + i); pos++)
{ {
if (StructuredData::Indices[type][pos].key == entries[i].name) if (StructuredData::Indices[type][pos].key == entries[i])
{ {
Logger::Error("Duplicate playerdatadef entry found: %s", entries[i].name.data()); Logger::Error("Duplicate playerdatadef entry found: %s", entries[i].data());
} }
// We found our position // We found our position
if (entries[i].name < StructuredData::Indices[type][pos].key) if (entries[i] < StructuredData::Indices[type][pos].key)
{ {
break; break;
} }
@ -79,8 +75,8 @@ namespace Components
memcpy(&StructuredData::Indices[type][j], &StructuredData::Indices[type][j - 1], sizeof(Game::StructuredDataEnumEntry)); memcpy(&StructuredData::Indices[type][j], &StructuredData::Indices[type][j - 1], sizeof(Game::StructuredDataEnumEntry));
} }
StructuredData::Indices[type][pos].index = entries[i].statOffset + lastIndex; StructuredData::Indices[type][pos].index = i + lastIndex;
StructuredData::Indices[type][pos].key = StructuredData::GetSingleton()->MemAllocator.DuplicateString(entries[i].name); StructuredData::Indices[type][pos].key = StructuredData::GetSingleton()->MemAllocator.DuplicateString(entries[i]);
} }
// Apply our patches // Apply our patches
@ -103,6 +99,25 @@ namespace Components
// Only execute this when building zones // Only execute this when building zones
if (!ZoneBuilder::IsEnabled()) return; if (!ZoneBuilder::IsEnabled()) return;
// TODO: Increment the version once you change something below
static int version = 156;
// ---------- Weapons ----------
StructuredData::AddPlayerDataEntry(StructuredData::ENUM_WEAPONS, "m40a3");
StructuredData::AddPlayerDataEntry(StructuredData::ENUM_WEAPONS, "ak47classic");
//StructuredData::AddPlayerDataEntry(StructuredData::ENUM_WEAPONS, "ak74u");
//StructuredData::AddPlayerDataEntry(StructuredData::ENUM_WEAPONS, "peacekeeper");
// ---------- Cardicons ----------
StructuredData::AddPlayerDataEntry(StructuredData::ENUM_CARDICONS, "cardicon_rtrolling");
// ---------- Cardtitles ----------
StructuredData::AddPlayerDataEntry(StructuredData::ENUM_CARDTITLES, "cardtitle_evilchicken");
StructuredData::AddPlayerDataEntry(StructuredData::ENUM_CARDTITLES, "cardtitle_nolaststand");
// Patch handing and initialization
StructuredData::Singleton = this; StructuredData::Singleton = this;
ZeroMemory(StructuredData::IndexCount, sizeof(StructuredData)); ZeroMemory(StructuredData::IndexCount, sizeof(StructuredData));
@ -118,31 +133,70 @@ namespace Components
if (data) if (data)
{ {
// First check if all versions are present
for (int ver = 155; ver <= version; ++ver)
{
bool foundVersion = false;
for (int i = 0; i < data->count; ++i)
{
if (data->data[i].version == ver)
{
foundVersion = true;
break;
}
}
if (foundVersion && ver == version)
{
//Logger::Print("PlayerDataDef already patched for version %d, no need to patch anything!\n", version);
return header;
}
else if (!foundVersion && ver != version)
{
Logger::Error("PlayerDataDef for version %d is missing!", ver);
return header;
}
}
if (data->data[data->count - 1].version != 155)
{
Logger::Error("Initial PlayerDataDef is not version 155, patching not possible!");
return header;
}
Logger::Print("Patching PlayerDataDef for version %d...\n", version);
// Reallocate the definition
Game::StructuredDataDef* newData = StructuredData::GetSingleton()->MemAllocator.AllocateArray<Game::StructuredDataDef>(data->count + 1);
memcpy(&newData[1], data->data, sizeof Game::StructuredDataDef * data->count);
// Fill our new definition with the base data (155)
memcpy(newData, &data->data[data->count - 1], sizeof Game::StructuredDataDef);
newData->version = version;
// Reallocate the enum array
Game::StructuredDataEnum* newEnums = StructuredData::GetSingleton()->MemAllocator.AllocateArray<Game::StructuredDataEnum>(newData->numEnums);
memcpy(newEnums, newData->enums, sizeof Game::StructuredDataEnum * newData->numEnums);
newData->enums = newEnums;
// Patch the definition
for (int i = 0; i < ARR_SIZE(StructuredData::Entries); ++i) for (int i = 0; i < ARR_SIZE(StructuredData::Entries); ++i)
{ {
if (StructuredData::Entries[i].size()) if (StructuredData::Entries[i].size())
{ {
StructuredData::PatchPlayerDataEnum(data, static_cast<StructuredData::PlayerDataType>(i), StructuredData::Entries[i]); StructuredData::PatchPlayerDataEnum(newData, static_cast<StructuredData::PlayerDataType>(i), StructuredData::Entries[i]);
} }
} }
// Apply the patch
data->data = newData;
data->count++;
} }
} }
return header; return header;
}); });
// ---------- Weapons ----------
StructuredData::AddPlayerDataEntry(StructuredData::ENUM_WEAPONS, 1, "m40a3");
StructuredData::AddPlayerDataEntry(StructuredData::ENUM_WEAPONS, 2, "ak47classic");
//StructuredData::AddPlayerDataEntry(StructuredData::ENUM_WEAPONS, 3, "ak74u");
//StructuredData::AddPlayerDataEntry(StructuredData::ENUM_WEAPONS, 4, "peacekeeper");
// ---------- Cardicons ----------
StructuredData::AddPlayerDataEntry(StructuredData::ENUM_CARDICONS, 1, "cardicon_rtrolling");
// ---------- Cardtitles ----------
StructuredData::AddPlayerDataEntry(StructuredData::ENUM_CARDTITLES, 1, "cardtitle_evilchicken");
StructuredData::AddPlayerDataEntry(StructuredData::ENUM_CARDTITLES, 2, "cardtitle_nolaststand");
} }
StructuredData::~StructuredData() StructuredData::~StructuredData()

View File

@ -25,22 +25,17 @@ namespace Components
~StructuredData(); ~StructuredData();
const char* GetName() { return "StructuredData"; }; const char* GetName() { return "StructuredData"; };
void AddPlayerDataEntry(PlayerDataType type, int index, std::string name); void AddPlayerDataEntry(PlayerDataType type, std::string name);
private: private:
struct EnumEntry static void PatchPlayerDataEnum(Game::StructuredDataDef* data, PlayerDataType type, std::vector<std::string>& entries);
{
std::string name;
int statOffset;
};
static void PatchPlayerDataEnum(Game::StructuredDataDefSet* data, PlayerDataType type, std::vector<EnumEntry>& entries);
static StructuredData* GetSingleton(); static StructuredData* GetSingleton();
Utils::Memory::Allocator MemAllocator; Utils::Memory::Allocator MemAllocator;
static int IndexCount[ENUM_MAX]; static int IndexCount[ENUM_MAX];
static Game::StructuredDataEnumEntry* Indices[ENUM_MAX]; static Game::StructuredDataEnumEntry* Indices[ENUM_MAX];
static std::vector<EnumEntry> Entries[ENUM_MAX]; static std::vector<std::string> Entries[ENUM_MAX];
static StructuredData* Singleton; static StructuredData* Singleton;
}; };