mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-09-12 19:47:27 +00:00
Add InfoString loading
This commit is contained in:
@@ -1,15 +1,155 @@
|
||||
#include "InfoStringToStructConverterBase.h"
|
||||
|
||||
InfoStringToStructConverterBase::InfoStringToStructConverterBase(const InfoString& infoString, void* structure)
|
||||
#include <cstring>
|
||||
#include <iostream>
|
||||
|
||||
InfoStringToStructConverterBase::InfoStringToStructConverterBase(const InfoString& infoString, void* structure, ZoneScriptStrings& zoneScriptStrings, MemoryManager* memory)
|
||||
: m_info_string(infoString),
|
||||
m_structure(structure)
|
||||
m_zone_script_strings(zoneScriptStrings),
|
||||
m_memory(memory),
|
||||
m_structure(structure)
|
||||
{
|
||||
}
|
||||
|
||||
InfoStringToStructConverterBase::~InfoStringToStructConverterBase()
|
||||
= default;
|
||||
|
||||
void InfoStringToStructConverterBase::Convert()
|
||||
bool InfoStringToStructConverterBase::ConvertString(const std::string& value, const size_t offset)
|
||||
{
|
||||
FillStructure();
|
||||
}
|
||||
*reinterpret_cast<const char**>(reinterpret_cast<uintptr_t>(m_structure) + offset) = m_memory->Dup(value.c_str());
|
||||
return true;
|
||||
}
|
||||
|
||||
bool InfoStringToStructConverterBase::ConvertStringBuffer(const std::string& value, const size_t offset, const size_t bufferSize)
|
||||
{
|
||||
strncpy(reinterpret_cast<char*>(reinterpret_cast<uintptr_t>(m_structure) + offset), value.c_str(), bufferSize);
|
||||
return true;
|
||||
}
|
||||
|
||||
bool InfoStringToStructConverterBase::ConvertInt(const std::string& value, const size_t offset)
|
||||
{
|
||||
char* endPtr;
|
||||
*reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(m_structure) + offset) = strtol(value.c_str(), &endPtr, 0);
|
||||
|
||||
if(endPtr != &value[value.size()])
|
||||
{
|
||||
std::cout << "Failed to parse value \"" << value << "\" as int" << std::endl;
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool InfoStringToStructConverterBase::ConvertUint(const std::string& value, const size_t offset)
|
||||
{
|
||||
char* endPtr;
|
||||
*reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(m_structure) + offset) = strtoul(value.c_str(), &endPtr, 0);
|
||||
|
||||
if (endPtr != &value[value.size()])
|
||||
{
|
||||
std::cout << "Failed to parse value \"" << value << "\" as uint" << std::endl;
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool InfoStringToStructConverterBase::ConvertBool(const std::string& value, const size_t offset)
|
||||
{
|
||||
char* endPtr;
|
||||
const auto intValue = strtol(value.c_str(), &endPtr, 0);
|
||||
|
||||
*reinterpret_cast<bool*>(reinterpret_cast<uintptr_t>(m_structure) + offset) = intValue != 0;
|
||||
if (endPtr != &value[value.size()])
|
||||
{
|
||||
std::cout << "Failed to parse value \"" << value << "\" as bool" << std::endl;
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool InfoStringToStructConverterBase::ConvertQBoolean(const std::string& value, const size_t offset)
|
||||
{
|
||||
char* endPtr;
|
||||
const auto intValue = strtol(value.c_str(), &endPtr, 0);
|
||||
|
||||
*reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(m_structure) + offset) = intValue != 0 ? 1 : 0;
|
||||
if (endPtr != &value[value.size()])
|
||||
{
|
||||
std::cout << "Failed to parse value \"" << value << "\" as qboolean" << std::endl;
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool InfoStringToStructConverterBase::ConvertFloat(const std::string& value, const size_t offset)
|
||||
{
|
||||
char* endPtr;
|
||||
*reinterpret_cast<float*>(reinterpret_cast<uintptr_t>(m_structure) + offset) = strtof(value.c_str(), &endPtr);
|
||||
|
||||
if (endPtr != &value[value.size()])
|
||||
{
|
||||
std::cout << "Failed to parse value \"" << value << "\" as float" << std::endl;
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool InfoStringToStructConverterBase::ConvertMilliseconds(const std::string& value, const size_t offset)
|
||||
{
|
||||
char* endPtr;
|
||||
*reinterpret_cast<unsigned int*>(reinterpret_cast<uintptr_t>(m_structure) + offset) = static_cast<unsigned int>(strtof(value.c_str(), &endPtr) * 1000.0f);
|
||||
|
||||
if (endPtr != &value[value.size()])
|
||||
{
|
||||
std::cout << "Failed to parse value \"" << value << "\" as milliseconds" << std::endl;
|
||||
return false;
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool InfoStringToStructConverterBase::ConvertScriptString(const std::string& value, const size_t offset)
|
||||
{
|
||||
auto scrStrValue = m_zone_script_strings.AddOrGetScriptString(value);
|
||||
m_used_script_string_list.emplace(scrStrValue);
|
||||
*reinterpret_cast<scr_string_t*>(reinterpret_cast<uintptr_t>(m_structure) + offset) = scrStrValue;
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
bool InfoStringToStructConverterBase::ConvertEnumInt(const std::string& value, const size_t offset, const char** enumValues, const size_t enumSize)
|
||||
{
|
||||
for(auto i = 0u; i < enumSize; i++)
|
||||
{
|
||||
if(value == enumValues[i])
|
||||
{
|
||||
*reinterpret_cast<int*>(reinterpret_cast<uintptr_t>(m_structure) + offset) = static_cast<int>(i);
|
||||
return true;
|
||||
}
|
||||
}
|
||||
|
||||
return false;
|
||||
}
|
||||
|
||||
std::vector<scr_string_t> InfoStringToStructConverterBase::GetUsedScriptStrings() const
|
||||
{
|
||||
std::vector<scr_string_t> scrStringList;
|
||||
for(auto scrStr : m_used_script_string_list)
|
||||
{
|
||||
scrStringList.push_back(scrStr);
|
||||
}
|
||||
|
||||
return scrStringList;
|
||||
}
|
||||
|
||||
std::vector<XAssetInfoGeneric*> InfoStringToStructConverterBase::GetDependencies() const
|
||||
{
|
||||
std::vector<XAssetInfoGeneric*> dependencyList;
|
||||
for (auto* dependency : m_dependencies)
|
||||
{
|
||||
dependencyList.push_back(dependency);
|
||||
}
|
||||
|
||||
return dependencyList;
|
||||
}
|
||||
|
Reference in New Issue
Block a user