#include "GdtLoaderVehicleT6.h" #include "Game/T6/ObjConstantsT6.h" #include "Game/T6/T6.h" #include "InfoString/InfoString.h" #include "InfoStringLoaderVehicleT6.h" #include "Utils/Logging/Log.h" #include #include #include using namespace T6; namespace { class GdtLoaderVehicle final : public AssetCreator { public: GdtLoaderVehicle(MemoryManager& memory, ISearchPath& searchPath, IGdtQueryable& gdt, Zone& zone) : m_gdt(gdt), m_info_string_loader(memory, searchPath, zone) { } AssetCreationResult CreateAsset(const std::string& assetName, AssetCreationContext& context) override { const auto* gdtEntry = m_gdt.GetGdtEntryByGdfAndName(GDF_FILENAME_VEHICLE, assetName); if (gdtEntry == nullptr) return AssetCreationResult::NoAction(); InfoString infoString; if (!infoString.FromGdtProperties(*gdtEntry)) { con::error("Failed to read vehicle gdt entry: \"{}\"", assetName); return AssetCreationResult::Failure(); } return m_info_string_loader.CreateAsset(assetName, infoString, context); } private: IGdtQueryable& m_gdt; vehicle::InfoStringLoaderT6 m_info_string_loader; }; } // namespace namespace vehicle { std::unique_ptr> CreateGdtLoaderT6(MemoryManager& memory, ISearchPath& searchPath, IGdtQueryable& gdt, Zone& zone) { return std::make_unique(memory, searchPath, gdt, zone); } } // namespace vehicle