mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-04-21 00:25:44 +00:00
74 lines
1.9 KiB
C++
74 lines
1.9 KiB
C++
#include "AssetMarker.h"
|
|
|
|
#include <algorithm>
|
|
#include <cassert>
|
|
|
|
AssetMarker::AssetMarker(const asset_type_t assetType, Zone* zone)
|
|
: m_asset_type(assetType),
|
|
m_zone(zone)
|
|
{
|
|
}
|
|
|
|
void AssetMarker::AddDependency(XAssetInfoGeneric* assetInfo)
|
|
{
|
|
if (assetInfo == nullptr)
|
|
return;
|
|
|
|
const auto existingEntry = m_dependencies.find(assetInfo);
|
|
if (existingEntry != m_dependencies.end())
|
|
return;
|
|
|
|
m_dependencies.emplace(assetInfo);
|
|
}
|
|
|
|
void AssetMarker::Mark_ScriptString(const scr_string_t scrString)
|
|
{
|
|
assert(scrString < m_zone->m_script_strings.Count());
|
|
|
|
if (scrString >= m_zone->m_script_strings.Count())
|
|
return;
|
|
|
|
m_used_script_strings.emplace(scrString);
|
|
}
|
|
|
|
void AssetMarker::MarkArray_ScriptString(const scr_string_t* scrStringArray, const size_t count)
|
|
{
|
|
assert(scrStringArray != nullptr);
|
|
|
|
for (size_t index = 0; index < count; index++)
|
|
Mark_ScriptString(scrStringArray[index]);
|
|
}
|
|
|
|
XAssetInfoGeneric* AssetMarker::GetAssetInfoByName(std::string name) const
|
|
{
|
|
return m_zone->m_pools->GetAsset(m_asset_type, std::move(name));
|
|
}
|
|
|
|
std::vector<XAssetInfoGeneric*> AssetMarker::GetDependencies() const
|
|
{
|
|
std::vector<XAssetInfoGeneric*> dependencies;
|
|
if (!m_dependencies.empty())
|
|
{
|
|
dependencies.reserve(m_dependencies.size());
|
|
for (auto dependency : m_dependencies)
|
|
dependencies.push_back(dependency);
|
|
}
|
|
|
|
return dependencies;
|
|
}
|
|
|
|
std::vector<scr_string_t> AssetMarker::GetUsedScriptStrings() const
|
|
{
|
|
std::vector<scr_string_t> usedScriptStrings;
|
|
if (!m_used_script_strings.empty())
|
|
{
|
|
usedScriptStrings.reserve(m_used_script_strings.size());
|
|
for (auto scrString : m_used_script_strings)
|
|
usedScriptStrings.push_back(scrString);
|
|
|
|
std::sort(usedScriptStrings.begin(), usedScriptStrings.end());
|
|
}
|
|
|
|
return usedScriptStrings;
|
|
}
|