mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-09-01 06:27:26 +00:00
53 lines
1.6 KiB
C++
53 lines
1.6 KiB
C++
#include "GdtLoaderPhysPresetIW4.h"
|
|
|
|
#include "Game/IW4/IW4.h"
|
|
#include "Game/IW4/ObjConstantsIW4.h"
|
|
#include "InfoString/InfoString.h"
|
|
#include "InfoStringLoaderPhysPresetIW4.h"
|
|
|
|
#include <format>
|
|
#include <iostream>
|
|
|
|
using namespace IW4;
|
|
|
|
namespace
|
|
{
|
|
class GdtLoaderPhysPreset final : public AssetCreator<AssetPhysPreset>
|
|
{
|
|
public:
|
|
GdtLoaderPhysPreset(MemoryManager& memory, IGdtQueryable& gdt, Zone& zone)
|
|
: m_gdt(gdt),
|
|
m_info_string_loader(memory, zone)
|
|
{
|
|
}
|
|
|
|
AssetCreationResult CreateAsset(const std::string& assetName, AssetCreationContext& context) override
|
|
{
|
|
const auto* gdtEntry = m_gdt.GetGdtEntryByGdfAndName(ObjConstants::GDF_FILENAME_PHYS_PRESET, assetName);
|
|
if (gdtEntry == nullptr)
|
|
return AssetCreationResult::NoAction();
|
|
|
|
InfoString infoString;
|
|
if (!infoString.FromGdtProperties(*gdtEntry))
|
|
{
|
|
std::cerr << std::format("Failed to read phys preset gdt entry: \"{}\"\n", assetName);
|
|
return AssetCreationResult::Failure();
|
|
}
|
|
|
|
return m_info_string_loader.CreateAsset(assetName, infoString, context);
|
|
}
|
|
|
|
private:
|
|
IGdtQueryable& m_gdt;
|
|
phys_preset::InfoStringLoaderIW4 m_info_string_loader;
|
|
};
|
|
} // namespace
|
|
|
|
namespace phys_preset
|
|
{
|
|
std::unique_ptr<AssetCreator<IW4::AssetPhysPreset>> CreateGdtLoaderIW4(MemoryManager& memory, IGdtQueryable& gdt, Zone& zone)
|
|
{
|
|
return std::make_unique<GdtLoaderPhysPreset>(memory, gdt, zone);
|
|
}
|
|
} // namespace phys_preset
|