mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2025-06-10 14:58:10 -05:00
22 lines
1.0 KiB
C++
22 lines
1.0 KiB
C++
#pragma once
|
|
#include "Game/T5/T5.h"
|
|
#include "AssetLoading/BasicAssetLoader.h"
|
|
#include "AssetLoading/IAssetLoadingManager.h"
|
|
#include "SearchPath/ISearchPath.h"
|
|
|
|
namespace T5
|
|
{
|
|
class AssetLoaderRawFile final : public BasicAssetLoader<ASSET_TYPE_RAWFILE, RawFile>
|
|
{
|
|
static constexpr size_t COMPRESSED_BUFFER_SIZE_PADDING = 64;
|
|
|
|
static bool LoadGsc(const SearchPathOpenFile& file, const std::string& assetName, ISearchPath* searchPath, MemoryManager* memory, IAssetLoadingManager* manager);
|
|
static bool LoadDefault(const SearchPathOpenFile& file, const std::string& assetName, ISearchPath* searchPath, MemoryManager* memory, IAssetLoadingManager* manager);
|
|
|
|
public:
|
|
_NODISCARD void* CreateEmptyAsset(const std::string& assetName, MemoryManager* memory) override;
|
|
_NODISCARD bool CanLoadFromRaw() const override;
|
|
bool LoadFromRaw(const std::string& assetName, ISearchPath* searchPath, MemoryManager* memory, IAssetLoadingManager* manager, Zone* zone) const override;
|
|
};
|
|
}
|