mirror of
https://github.com/Laupetin/OpenAssetTools.git
synced 2026-03-05 04:23:02 +00:00
feat: add t6 sub asset loaders for shaders
This commit is contained in:
@@ -29,6 +29,8 @@
|
||||
#include "Slug/LoaderSlugT6.h"
|
||||
#include "Sound/LoaderSoundBankT6.h"
|
||||
#include "StringTable/LoaderStringTableT6.h"
|
||||
#include "Techset/PixelShaderLoaderT6.h"
|
||||
#include "Techset/VertexShaderLoaderT6.h"
|
||||
#include "Tracer/GdtLoaderTracerT6.h"
|
||||
#include "Tracer/RawLoaderTracerT6.h"
|
||||
#include "Utils/Logging/Log.h"
|
||||
@@ -434,6 +436,9 @@ namespace T6
|
||||
// collection.AddAssetCreator(std::make_unique<AssetLoaderFootstepFxTable>(memory));
|
||||
collection.AddAssetCreator(z_barrier::CreateRawLoaderT6(memory, searchPath, zone));
|
||||
collection.AddAssetCreator(z_barrier::CreateGdtLoaderT6(memory, searchPath, gdt, zone));
|
||||
|
||||
collection.AddSubAssetCreator(techset::CreateVertexShaderLoaderT6(memory, searchPath));
|
||||
collection.AddSubAssetCreator(techset::CreatePixelShaderLoaderT6(memory, searchPath));
|
||||
}
|
||||
} // namespace
|
||||
|
||||
|
||||
55
src/ObjLoading/Game/T6/Techset/PixelShaderLoaderT6.cpp
Normal file
55
src/ObjLoading/Game/T6/Techset/PixelShaderLoaderT6.cpp
Normal file
@@ -0,0 +1,55 @@
|
||||
#include "PixelShaderLoaderT6.h"
|
||||
|
||||
#include "Game/T6/T6.h"
|
||||
#include "Shader/ShaderCommon.h"
|
||||
|
||||
#include <format>
|
||||
#include <iostream>
|
||||
|
||||
using namespace T6;
|
||||
|
||||
namespace
|
||||
{
|
||||
class PixelShaderLoader final : public SubAssetCreator<SubAssetPixelShader>
|
||||
{
|
||||
public:
|
||||
PixelShaderLoader(MemoryManager& memory, ISearchPath& searchPath)
|
||||
: m_memory(memory),
|
||||
m_search_path(searchPath)
|
||||
{
|
||||
}
|
||||
|
||||
AssetCreationResult CreateSubAsset(const std::string& assetName, AssetCreationContext& context) override
|
||||
{
|
||||
const auto fileName = shader::GetFileNameForPixelShaderAssetName(assetName);
|
||||
const auto file = m_search_path.Open(fileName);
|
||||
if (!file.IsOpen())
|
||||
return AssetCreationResult::NoAction();
|
||||
|
||||
auto* pixelShader = m_memory.Alloc<MaterialPixelShader>();
|
||||
pixelShader->name = m_memory.Dup(assetName.c_str());
|
||||
pixelShader->prog.loadDef.programSize = static_cast<decltype(GfxPixelShaderLoadDef::programSize)>(file.m_length);
|
||||
pixelShader->prog.ps = nullptr;
|
||||
|
||||
auto* fileBuffer = m_memory.Alloc<char>(pixelShader->prog.loadDef.programSize);
|
||||
file.m_stream->read(fileBuffer, pixelShader->prog.loadDef.programSize);
|
||||
if (file.m_stream->gcount() != file.m_length)
|
||||
return AssetCreationResult::Failure();
|
||||
|
||||
pixelShader->prog.loadDef.program = fileBuffer;
|
||||
return AssetCreationResult::Success(context.AddSubAsset<SubAssetPixelShader>(assetName, pixelShader));
|
||||
}
|
||||
|
||||
private:
|
||||
MemoryManager& m_memory;
|
||||
ISearchPath& m_search_path;
|
||||
};
|
||||
} // namespace
|
||||
|
||||
namespace techset
|
||||
{
|
||||
std::unique_ptr<SubAssetCreator<SubAssetPixelShader>> CreatePixelShaderLoaderT6(MemoryManager& memory, ISearchPath& searchPath)
|
||||
{
|
||||
return std::make_unique<PixelShaderLoader>(memory, searchPath);
|
||||
}
|
||||
} // namespace techset
|
||||
13
src/ObjLoading/Game/T6/Techset/PixelShaderLoaderT6.h
Normal file
13
src/ObjLoading/Game/T6/Techset/PixelShaderLoaderT6.h
Normal file
@@ -0,0 +1,13 @@
|
||||
#pragma once
|
||||
|
||||
#include "Asset/IAssetCreator.h"
|
||||
#include "Game/T6/T6.h"
|
||||
#include "SearchPath/ISearchPath.h"
|
||||
#include "Utils/MemoryManager.h"
|
||||
|
||||
#include <memory>
|
||||
|
||||
namespace techset
|
||||
{
|
||||
std::unique_ptr<SubAssetCreator<T6::SubAssetPixelShader>> CreatePixelShaderLoaderT6(MemoryManager& memory, ISearchPath& searchPath);
|
||||
} // namespace techset
|
||||
55
src/ObjLoading/Game/T6/Techset/VertexShaderLoaderT6.cpp
Normal file
55
src/ObjLoading/Game/T6/Techset/VertexShaderLoaderT6.cpp
Normal file
@@ -0,0 +1,55 @@
|
||||
#include "VertexShaderLoaderT6.h"
|
||||
|
||||
#include "Game/T6/T6.h"
|
||||
#include "Shader/ShaderCommon.h"
|
||||
|
||||
#include <format>
|
||||
#include <iostream>
|
||||
|
||||
using namespace T6;
|
||||
|
||||
namespace
|
||||
{
|
||||
class VertexShaderLoader final : public SubAssetCreator<SubAssetVertexShader>
|
||||
{
|
||||
public:
|
||||
VertexShaderLoader(MemoryManager& memory, ISearchPath& searchPath)
|
||||
: m_memory(memory),
|
||||
m_search_path(searchPath)
|
||||
{
|
||||
}
|
||||
|
||||
AssetCreationResult CreateSubAsset(const std::string& assetName, AssetCreationContext& context) override
|
||||
{
|
||||
const auto fileName = shader::GetFileNameForVertexShaderAssetName(assetName);
|
||||
const auto file = m_search_path.Open(fileName);
|
||||
if (!file.IsOpen())
|
||||
return AssetCreationResult::NoAction();
|
||||
|
||||
auto* vertexShader = m_memory.Alloc<MaterialVertexShader>();
|
||||
vertexShader->name = m_memory.Dup(assetName.c_str());
|
||||
vertexShader->prog.loadDef.programSize = static_cast<decltype(GfxVertexShaderLoadDef::programSize)>(file.m_length);
|
||||
vertexShader->prog.vs = nullptr;
|
||||
|
||||
auto* fileBuffer = m_memory.Alloc<char>(vertexShader->prog.loadDef.programSize);
|
||||
file.m_stream->read(fileBuffer, vertexShader->prog.loadDef.programSize);
|
||||
if (file.m_stream->gcount() != file.m_length)
|
||||
return AssetCreationResult::Failure();
|
||||
|
||||
vertexShader->prog.loadDef.program = fileBuffer;
|
||||
return AssetCreationResult::Success(context.AddSubAsset<SubAssetVertexShader>(assetName, vertexShader));
|
||||
}
|
||||
|
||||
private:
|
||||
MemoryManager& m_memory;
|
||||
ISearchPath& m_search_path;
|
||||
};
|
||||
} // namespace
|
||||
|
||||
namespace techset
|
||||
{
|
||||
std::unique_ptr<SubAssetCreator<SubAssetVertexShader>> CreateVertexShaderLoaderT6(MemoryManager& memory, ISearchPath& searchPath)
|
||||
{
|
||||
return std::make_unique<VertexShaderLoader>(memory, searchPath);
|
||||
}
|
||||
} // namespace techset
|
||||
13
src/ObjLoading/Game/T6/Techset/VertexShaderLoaderT6.h
Normal file
13
src/ObjLoading/Game/T6/Techset/VertexShaderLoaderT6.h
Normal file
@@ -0,0 +1,13 @@
|
||||
#pragma once
|
||||
|
||||
#include "Asset/IAssetCreator.h"
|
||||
#include "Game/T6/T6.h"
|
||||
#include "SearchPath/ISearchPath.h"
|
||||
#include "Utils/MemoryManager.h"
|
||||
|
||||
#include <memory>
|
||||
|
||||
namespace techset
|
||||
{
|
||||
std::unique_ptr<SubAssetCreator<T6::SubAssetVertexShader>> CreateVertexShaderLoaderT6(MemoryManager& memory, ISearchPath& searchPath);
|
||||
} // namespace techset
|
||||
Reference in New Issue
Block a user