mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-21 16:45:44 +00:00
245 lines
7.1 KiB
C++
245 lines
7.1 KiB
C++
#include "InfoStringToStructConverterBase.h"
|
|
|
|
#include <cstring>
|
|
#include <iostream>
|
|
|
|
InfoStringToStructConverterBase::InfoStringToStructConverterBase(const InfoString& infoString, void* structure, ZoneScriptStrings& zoneScriptStrings, MemoryManager* memory)
|
|
: m_info_string(infoString),
|
|
m_zone_script_strings(zoneScriptStrings),
|
|
m_memory(memory),
|
|
m_structure(structure)
|
|
{
|
|
}
|
|
|
|
bool InfoStringToStructConverterBase::ParseAsArray(const std::string& value, std::vector<std::string>& valueArray)
|
|
{
|
|
auto startPos = 0u;
|
|
for (auto ci = 0u; ci < value.size(); ci++)
|
|
{
|
|
const auto c = value[ci];
|
|
|
|
if (c == '\r' && ci + 1 < value.size() && value[ci + 1] == '\n')
|
|
{
|
|
valueArray.emplace_back(value, startPos, ci - startPos);
|
|
startPos = ++ci + 1;
|
|
}
|
|
else if(c == '\n')
|
|
{
|
|
valueArray.emplace_back(value, startPos, ci - startPos);
|
|
startPos = ci + 1;
|
|
}
|
|
}
|
|
|
|
if(startPos < value.size())
|
|
{
|
|
valueArray.emplace_back(value, startPos, value.size() - startPos);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
bool InfoStringToStructConverterBase::ParseAsPairs(const std::string& value, std::vector<std::pair<std::string, std::string>>& valueArray) const
|
|
{
|
|
std::string key;
|
|
auto isKey = true;
|
|
|
|
for (auto ci = 0u; ci < value.size(); ci++)
|
|
{
|
|
auto c = value[ci];
|
|
|
|
if (c == '\r' && ci + 1 < value.size() && value[ci + 1] == '\n')
|
|
c = value[++ci];
|
|
|
|
if (c == '\n' && !isKey)
|
|
{
|
|
std::cout << "Expected value but got new line" << std::endl;
|
|
return false;
|
|
}
|
|
|
|
if (isspace(c))
|
|
continue;
|
|
|
|
int separator;
|
|
const auto startPos = ci;
|
|
while (true)
|
|
{
|
|
ci++;
|
|
if (ci >= value.size())
|
|
{
|
|
separator = EOF;
|
|
break;
|
|
}
|
|
c = value[ci];
|
|
if (c == '\r' && ci + 1 < value.size() && value[ci + 1] == '\n')
|
|
c = value[++ci];
|
|
if (isspace(c))
|
|
{
|
|
separator = static_cast<int>(static_cast<unsigned char>(c));
|
|
break;
|
|
}
|
|
}
|
|
|
|
if (isKey)
|
|
{
|
|
if (separator == '\n' || separator == EOF)
|
|
{
|
|
std::cout << "Expected value but got new line" << std::endl;
|
|
return false;
|
|
}
|
|
key = std::string(value, startPos, ci - startPos);
|
|
}
|
|
else
|
|
{
|
|
auto parsedValue = std::string(value, startPos, ci - startPos);
|
|
valueArray.emplace_back(std::make_pair(std::move(key), std::move(parsedValue)));
|
|
key = std::string();
|
|
}
|
|
isKey = !isKey;
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
bool InfoStringToStructConverterBase::ConvertString(const std::string& value, const size_t offset)
|
|
{
|
|
*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;
|
|
}
|