2022-03-06 07:46:42 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "common.hpp"
|
|
|
|
|
|
|
|
#include <variant>
|
|
|
|
|
2022-03-07 23:53:42 +00:00
|
|
|
namespace aurora::gfx::gx {
|
2022-03-12 15:47:20 +00:00
|
|
|
constexpr u32 MaxTextures = GX::MAX_TEXMAP;
|
|
|
|
constexpr u32 MaxTevStages = GX::MAX_TEVSTAGE;
|
|
|
|
constexpr u32 MaxColorChannels = 2; // COLOR0A0, COLOR1A1
|
|
|
|
constexpr u32 MaxTevRegs = 3; // TEVREG0-2
|
|
|
|
constexpr u32 MaxKColors = GX::MAX_KCOLOR;
|
2022-03-14 22:00:03 +00:00
|
|
|
constexpr u32 MaxTexMtx = 10;
|
|
|
|
constexpr u32 MaxPTTexMtx = 20;
|
|
|
|
constexpr u32 MaxTexCoord = GX::MAX_TEXCOORD;
|
2022-03-19 17:30:25 +00:00
|
|
|
constexpr u32 MaxVtxAttr = GX::VA_MAX_ATTR;
|
|
|
|
constexpr u32 MaxTevSwap = GX::MAX_TEVSWAP;
|
2022-03-06 07:46:42 +00:00
|
|
|
|
2022-03-12 15:47:20 +00:00
|
|
|
template <typename Arg, Arg Default>
|
|
|
|
struct TevPass {
|
|
|
|
Arg a = Default;
|
|
|
|
Arg b = Default;
|
|
|
|
Arg c = Default;
|
|
|
|
Arg d = Default;
|
2022-03-15 06:18:45 +00:00
|
|
|
bool operator==(const TevPass&) const = default;
|
2022-03-06 07:46:42 +00:00
|
|
|
};
|
2022-03-12 15:47:20 +00:00
|
|
|
struct TevOp {
|
|
|
|
GX::TevOp op = GX::TevOp::TEV_ADD;
|
|
|
|
GX::TevBias bias = GX::TevBias::TB_ZERO;
|
|
|
|
GX::TevScale scale = GX::TevScale::CS_SCALE_1;
|
|
|
|
GX::TevRegID outReg = GX::TevRegID::TEVPREV;
|
|
|
|
bool clamp = true;
|
2022-03-15 06:18:45 +00:00
|
|
|
bool operator==(const TevOp&) const = default;
|
2022-03-12 15:47:20 +00:00
|
|
|
};
|
|
|
|
struct TevStage {
|
|
|
|
TevPass<GX::TevColorArg, GX::CC_ZERO> colorPass;
|
|
|
|
TevPass<GX::TevAlphaArg, GX::CA_ZERO> alphaPass;
|
|
|
|
TevOp colorOp;
|
|
|
|
TevOp alphaOp;
|
2022-03-06 07:46:42 +00:00
|
|
|
GX::TevKColorSel kcSel = GX::TEV_KCSEL_1;
|
|
|
|
GX::TevKAlphaSel kaSel = GX::TEV_KASEL_1;
|
|
|
|
GX::TexCoordID texCoordId = GX::TEXCOORD_NULL;
|
|
|
|
GX::TexMapID texMapId = GX::TEXMAP_NULL;
|
|
|
|
GX::ChannelID channelId = GX::COLOR_NULL;
|
2022-03-19 17:30:25 +00:00
|
|
|
GX::TevSwapSel tevSwapRas = GX::TEV_SWAP0;
|
|
|
|
GX::TevSwapSel tevSwapTex = GX::TEV_SWAP0;
|
2022-03-15 06:18:45 +00:00
|
|
|
bool operator==(const TevStage&) const = default;
|
2022-03-06 07:46:42 +00:00
|
|
|
};
|
2022-03-07 23:53:42 +00:00
|
|
|
struct TextureBind {
|
2022-03-06 20:58:06 +00:00
|
|
|
aurora::gfx::TextureHandle handle;
|
|
|
|
metaforce::EClampMode clampMode;
|
|
|
|
float lod;
|
|
|
|
|
2022-03-07 23:53:42 +00:00
|
|
|
TextureBind() noexcept = default;
|
|
|
|
TextureBind(aurora::gfx::TextureHandle handle, metaforce::EClampMode clampMode, float lod) noexcept
|
2022-03-06 20:58:06 +00:00
|
|
|
: handle(std::move(handle)), clampMode(clampMode), lod(lod) {}
|
|
|
|
void reset() noexcept { handle.reset(); };
|
|
|
|
[[nodiscard]] wgpu::SamplerDescriptor get_descriptor() const noexcept;
|
|
|
|
operator bool() const noexcept { return handle; }
|
|
|
|
};
|
2022-03-12 15:47:20 +00:00
|
|
|
// For shader generation
|
|
|
|
struct ColorChannelConfig {
|
|
|
|
GX::ColorSrc matSrc = GX::SRC_REG;
|
|
|
|
GX::ColorSrc ambSrc = GX::SRC_REG;
|
|
|
|
bool lightingEnabled = false;
|
2022-03-15 06:18:45 +00:00
|
|
|
bool operator==(const ColorChannelConfig&) const = default;
|
2022-03-12 15:47:20 +00:00
|
|
|
};
|
|
|
|
// For uniform generation
|
|
|
|
struct ColorChannelState {
|
2022-03-20 20:24:02 +00:00
|
|
|
zeus::CColor matColor;
|
|
|
|
zeus::CColor ambColor;
|
2022-03-12 15:47:20 +00:00
|
|
|
GX::LightMask lightState;
|
|
|
|
};
|
|
|
|
using LightVariant = std::variant<std::monostate, Light, zeus::CColor>;
|
2022-03-14 22:00:03 +00:00
|
|
|
// Mat4x4 used instead of Mat4x3 for padding purposes
|
|
|
|
using TexMtxVariant = std::variant<std::monostate, Mat4x2<float>, Mat4x4<float>>;
|
|
|
|
struct TcgConfig {
|
|
|
|
GX::TexGenType type = GX::TG_MTX2x4;
|
|
|
|
GX::TexGenSrc src = GX::MAX_TEXGENSRC;
|
|
|
|
GX::TexMtx mtx = GX::IDENTITY;
|
|
|
|
GX::PTTexMtx postMtx = GX::PTIDENTITY;
|
|
|
|
bool normalize = false;
|
2022-03-15 06:18:45 +00:00
|
|
|
bool operator==(const TcgConfig&) const = default;
|
2022-03-14 22:00:03 +00:00
|
|
|
};
|
2022-03-14 23:12:18 +00:00
|
|
|
struct FogState {
|
|
|
|
GX::FogType type = GX::FOG_NONE;
|
|
|
|
float startZ = 0.f;
|
|
|
|
float endZ = 0.f;
|
|
|
|
float nearZ = 0.f;
|
|
|
|
float farZ = 0.f;
|
|
|
|
zeus::CColor color;
|
|
|
|
};
|
2022-03-19 17:30:25 +00:00
|
|
|
struct TevSwap {
|
|
|
|
GX::TevColorChan red = GX::CH_RED;
|
|
|
|
GX::TevColorChan green = GX::CH_GREEN;
|
|
|
|
GX::TevColorChan blue = GX::CH_BLUE;
|
|
|
|
GX::TevColorChan alpha = GX::CH_ALPHA;
|
|
|
|
bool operator==(const TevSwap&) const = default;
|
|
|
|
operator bool() const { return *this != TevSwap{}; }
|
|
|
|
};
|
2022-03-19 21:06:27 +00:00
|
|
|
struct AlphaCompare {
|
|
|
|
GX::Compare comp0 = GX::ALWAYS;
|
|
|
|
float ref0 = 0.f;
|
|
|
|
GX::AlphaOp op = GX::AOP_AND;
|
|
|
|
GX::Compare comp1 = GX::ALWAYS;
|
|
|
|
float ref1 = 0.f;
|
|
|
|
bool operator==(const AlphaCompare& other) const = default;
|
|
|
|
operator bool() const { return *this != AlphaCompare{}; }
|
|
|
|
};
|
2022-03-20 20:24:02 +00:00
|
|
|
|
2022-03-12 15:47:20 +00:00
|
|
|
struct GXState {
|
|
|
|
zeus::CMatrix4f mv;
|
|
|
|
zeus::CMatrix4f mvInv;
|
|
|
|
zeus::CMatrix4f proj;
|
2022-03-14 23:12:18 +00:00
|
|
|
FogState fog;
|
2022-03-12 15:47:20 +00:00
|
|
|
GX::CullMode cullMode = GX::CULL_BACK;
|
|
|
|
GX::BlendMode blendMode = GX::BM_NONE;
|
|
|
|
GX::BlendFactor blendFacSrc = GX::BL_SRCALPHA;
|
|
|
|
GX::BlendFactor blendFacDst = GX::BL_INVSRCALPHA;
|
|
|
|
GX::LogicOp blendOp = GX::LO_CLEAR;
|
|
|
|
GX::Compare depthFunc = GX::LEQUAL;
|
|
|
|
zeus::CColor clearColor = zeus::skBlack;
|
|
|
|
std::optional<float> dstAlpha;
|
2022-03-19 21:06:27 +00:00
|
|
|
AlphaCompare alphaCompare;
|
2022-03-12 15:47:20 +00:00
|
|
|
std::array<zeus::CColor, MaxTevRegs> colorRegs;
|
|
|
|
std::array<zeus::CColor, GX::MAX_KCOLOR> kcolors;
|
|
|
|
std::array<ColorChannelConfig, MaxColorChannels> colorChannelConfig;
|
|
|
|
std::array<ColorChannelState, MaxColorChannels> colorChannelState;
|
|
|
|
std::array<LightVariant, GX::MaxLights> lights;
|
|
|
|
std::array<TevStage, MaxTevStages> tevStages;
|
|
|
|
std::array<TextureBind, MaxTextures> textures;
|
2022-03-14 22:00:03 +00:00
|
|
|
std::array<TexMtxVariant, MaxTexMtx> texMtxs;
|
|
|
|
std::array<Mat4x4<float>, MaxPTTexMtx> ptTexMtxs;
|
|
|
|
std::array<TcgConfig, MaxTexCoord> tcgs;
|
2022-03-19 17:30:25 +00:00
|
|
|
std::array<GX::AttrType, MaxVtxAttr> vtxDesc;
|
|
|
|
std::array<TevSwap, MaxTevSwap> tevSwapTable{
|
|
|
|
TevSwap{},
|
|
|
|
TevSwap{GX::CH_RED, GX::CH_RED, GX::CH_RED, GX::CH_ALPHA},
|
|
|
|
TevSwap{GX::CH_GREEN, GX::CH_GREEN, GX::CH_GREEN, GX::CH_ALPHA},
|
|
|
|
TevSwap{GX::CH_BLUE, GX::CH_BLUE, GX::CH_BLUE, GX::CH_ALPHA},
|
|
|
|
};
|
2022-03-12 15:47:20 +00:00
|
|
|
bool depthCompare = true;
|
|
|
|
bool depthUpdate = true;
|
|
|
|
bool alphaUpdate = true;
|
|
|
|
u8 numChans = 0;
|
|
|
|
u8 numIndStages = 0;
|
|
|
|
u8 numTevStages = 0;
|
|
|
|
u8 numTexGens = 0;
|
|
|
|
};
|
|
|
|
extern GXState g_gxState;
|
2022-03-06 20:58:06 +00:00
|
|
|
|
2022-03-12 15:47:20 +00:00
|
|
|
static inline Mat4x4<float> get_combined_matrix() noexcept { return g_gxState.proj * g_gxState.mv; }
|
2022-03-06 07:46:42 +00:00
|
|
|
|
2022-03-07 23:53:42 +00:00
|
|
|
void shutdown() noexcept;
|
|
|
|
const TextureBind& get_texture(GX::TexMapID id) noexcept;
|
2022-03-06 07:46:42 +00:00
|
|
|
|
2022-03-07 23:53:42 +00:00
|
|
|
struct ShaderConfig {
|
2022-03-14 23:12:18 +00:00
|
|
|
GX::FogType fogType;
|
2022-03-19 17:30:25 +00:00
|
|
|
std::array<GX::AttrType, MaxVtxAttr> vtxAttrs;
|
|
|
|
std::array<TevSwap, MaxTevSwap> tevSwapTable;
|
2022-03-12 15:47:20 +00:00
|
|
|
std::array<std::optional<TevStage>, MaxTevStages> tevStages;
|
|
|
|
std::array<ColorChannelConfig, MaxColorChannels> colorChannels;
|
2022-03-14 22:00:03 +00:00
|
|
|
std::array<TcgConfig, MaxTexCoord> tcgs;
|
2022-03-19 21:06:27 +00:00
|
|
|
AlphaCompare alphaCompare;
|
2022-03-27 00:30:29 +00:00
|
|
|
u32 indexedAttributeCount = 0;
|
2022-03-15 06:18:45 +00:00
|
|
|
bool operator==(const ShaderConfig&) const = default;
|
2022-03-06 20:58:06 +00:00
|
|
|
};
|
2022-03-07 23:53:42 +00:00
|
|
|
struct PipelineConfig {
|
|
|
|
ShaderConfig shaderConfig;
|
2022-03-06 20:58:06 +00:00
|
|
|
GX::Primitive primitive;
|
2022-03-12 15:47:20 +00:00
|
|
|
GX::Compare depthFunc;
|
|
|
|
GX::CullMode cullMode;
|
|
|
|
GX::BlendMode blendMode;
|
|
|
|
GX::BlendFactor blendFacSrc, blendFacDst;
|
|
|
|
GX::LogicOp blendOp;
|
2022-03-06 20:58:06 +00:00
|
|
|
std::optional<float> dstAlpha;
|
|
|
|
bool depthCompare, depthUpdate, alphaUpdate;
|
|
|
|
};
|
2022-03-08 00:07:14 +00:00
|
|
|
struct GXBindGroupLayouts {
|
|
|
|
wgpu::BindGroupLayout uniformLayout;
|
|
|
|
wgpu::BindGroupLayout samplerLayout;
|
|
|
|
wgpu::BindGroupLayout textureLayout;
|
|
|
|
};
|
|
|
|
struct GXBindGroups {
|
|
|
|
BindGroupRef uniformBindGroup;
|
|
|
|
BindGroupRef samplerBindGroup;
|
|
|
|
BindGroupRef textureBindGroup;
|
|
|
|
};
|
2022-03-07 23:53:42 +00:00
|
|
|
// Output info from shader generation
|
|
|
|
struct ShaderInfo {
|
2022-03-08 00:07:14 +00:00
|
|
|
GXBindGroups bindGroups;
|
2022-03-12 15:47:20 +00:00
|
|
|
std::bitset<MaxTextures> sampledTextures;
|
|
|
|
std::bitset<MaxKColors> sampledKColors;
|
|
|
|
std::bitset<MaxColorChannels> sampledColorChannels;
|
|
|
|
std::bitset<MaxTevRegs> usesTevReg;
|
2022-03-14 22:00:03 +00:00
|
|
|
std::bitset<MaxTexMtx> usesTexMtx;
|
|
|
|
std::bitset<MaxPTTexMtx> usesPTTexMtx;
|
|
|
|
std::array<GX::TexGenType, MaxTexMtx> texMtxTypes;
|
2022-03-07 23:53:42 +00:00
|
|
|
u32 uniformSize = 0;
|
2022-03-14 23:12:18 +00:00
|
|
|
bool usesFog : 1 = false;
|
2022-03-07 23:53:42 +00:00
|
|
|
};
|
2022-03-08 05:28:31 +00:00
|
|
|
struct BindGroupRanges {
|
|
|
|
Range vtxDataRange;
|
|
|
|
Range nrmDataRange;
|
|
|
|
Range tcDataRange;
|
|
|
|
Range packedTcDataRange;
|
|
|
|
};
|
|
|
|
ShaderInfo populate_pipeline_config(PipelineConfig& config, GX::Primitive primitive,
|
|
|
|
const BindGroupRanges& ranges) noexcept;
|
2022-03-07 23:53:42 +00:00
|
|
|
wgpu::RenderPipeline build_pipeline(const PipelineConfig& config, const ShaderInfo& info,
|
|
|
|
ArrayRef<wgpu::VertexBufferLayout> vtxBuffers, wgpu::ShaderModule shader,
|
|
|
|
zstring_view label) noexcept;
|
|
|
|
std::pair<wgpu::ShaderModule, ShaderInfo> build_shader(const ShaderConfig& config) noexcept;
|
|
|
|
// Range build_vertex_buffer(const GXShaderInfo& info) noexcept;
|
|
|
|
Range build_uniform(const ShaderInfo& info) noexcept;
|
2022-03-08 05:28:31 +00:00
|
|
|
GXBindGroupLayouts build_bind_group_layouts(const ShaderInfo& info, const ShaderConfig& config) noexcept;
|
|
|
|
GXBindGroups build_bind_groups(const ShaderInfo& info, const ShaderConfig& config,
|
|
|
|
const BindGroupRanges& ranges) noexcept;
|
2022-03-07 23:53:42 +00:00
|
|
|
} // namespace aurora::gfx::gx
|
|
|
|
|
|
|
|
namespace aurora {
|
2022-03-12 15:47:20 +00:00
|
|
|
template <typename Arg, Arg Default>
|
|
|
|
inline void xxh3_update(XXH3_state_t& state, const gfx::gx::TevPass<Arg, Default>& input) {
|
|
|
|
XXH3_64bits_update(&state, &input.a, sizeof(Arg));
|
|
|
|
XXH3_64bits_update(&state, &input.b, sizeof(Arg));
|
|
|
|
XXH3_64bits_update(&state, &input.c, sizeof(Arg));
|
|
|
|
XXH3_64bits_update(&state, &input.d, sizeof(Arg));
|
|
|
|
}
|
2022-03-07 23:53:42 +00:00
|
|
|
template <>
|
2022-03-12 15:47:20 +00:00
|
|
|
inline void xxh3_update(XXH3_state_t& state, const gfx::gx::TevOp& input) {
|
|
|
|
XXH3_64bits_update(&state, &input.op, sizeof(gfx::gx::TevOp::op));
|
|
|
|
XXH3_64bits_update(&state, &input.bias, sizeof(gfx::gx::TevOp::bias));
|
|
|
|
XXH3_64bits_update(&state, &input.scale, sizeof(gfx::gx::TevOp::scale));
|
|
|
|
XXH3_64bits_update(&state, &input.outReg, sizeof(gfx::gx::TevOp::outReg));
|
|
|
|
XXH3_64bits_update(&state, &input.clamp, sizeof(bool));
|
2022-03-08 07:44:46 +00:00
|
|
|
}
|
|
|
|
template <>
|
2022-03-12 15:47:20 +00:00
|
|
|
inline void xxh3_update(XXH3_state_t& state, const gfx::gx::TevStage& input) {
|
|
|
|
xxh3_update(state, input.colorPass);
|
|
|
|
xxh3_update(state, input.alphaPass);
|
2022-03-08 07:44:46 +00:00
|
|
|
xxh3_update(state, input.colorOp);
|
|
|
|
xxh3_update(state, input.alphaOp);
|
2022-03-12 15:47:20 +00:00
|
|
|
XXH3_64bits_update(&state, &input.kcSel, sizeof(gfx::gx::TevStage::kcSel));
|
|
|
|
XXH3_64bits_update(&state, &input.kaSel, sizeof(gfx::gx::TevStage::kaSel));
|
|
|
|
XXH3_64bits_update(&state, &input.texCoordId, sizeof(gfx::gx::TevStage::texCoordId));
|
|
|
|
XXH3_64bits_update(&state, &input.texMapId, sizeof(gfx::gx::TevStage::texMapId));
|
|
|
|
XXH3_64bits_update(&state, &input.channelId, sizeof(gfx::gx::TevStage::channelId));
|
|
|
|
}
|
|
|
|
template <>
|
|
|
|
inline void xxh3_update(XXH3_state_t& state, const gfx::gx::ColorChannelConfig& input) {
|
|
|
|
XXH3_64bits_update(&state, &input.lightingEnabled, sizeof(gfx::gx::ColorChannelConfig::lightingEnabled));
|
|
|
|
XXH3_64bits_update(&state, &input.matSrc, sizeof(gfx::gx::ColorChannelConfig::matSrc));
|
|
|
|
if (input.lightingEnabled) {
|
|
|
|
// Unused when lighting is disabled
|
|
|
|
XXH3_64bits_update(&state, &input.ambSrc, sizeof(gfx::gx::ColorChannelConfig::ambSrc));
|
|
|
|
}
|
2022-03-07 23:53:42 +00:00
|
|
|
}
|
|
|
|
template <>
|
2022-03-14 22:00:03 +00:00
|
|
|
inline void xxh3_update(XXH3_state_t& state, const gfx::gx::TcgConfig& input) {
|
|
|
|
XXH3_64bits_update(&state, &input.type, sizeof(gfx::gx::TcgConfig::type));
|
|
|
|
XXH3_64bits_update(&state, &input.src, sizeof(gfx::gx::TcgConfig::src));
|
|
|
|
XXH3_64bits_update(&state, &input.mtx, sizeof(gfx::gx::TcgConfig::mtx));
|
|
|
|
XXH3_64bits_update(&state, &input.postMtx, sizeof(gfx::gx::TcgConfig::postMtx));
|
|
|
|
XXH3_64bits_update(&state, &input.normalize, sizeof(gfx::gx::TcgConfig::normalize));
|
|
|
|
}
|
|
|
|
template <>
|
2022-03-20 20:24:02 +00:00
|
|
|
inline void xxh3_update(XXH3_state_t& state, const gfx::gx::AlphaCompare& input) {
|
|
|
|
XXH3_64bits_update(&state, &input.comp0, sizeof(gfx::gx::AlphaCompare::comp0));
|
|
|
|
XXH3_64bits_update(&state, &input.ref0, sizeof(gfx::gx::AlphaCompare::ref0));
|
|
|
|
XXH3_64bits_update(&state, &input.op, sizeof(gfx::gx::AlphaCompare::op));
|
|
|
|
XXH3_64bits_update(&state, &input.comp1, sizeof(gfx::gx::AlphaCompare::comp1));
|
|
|
|
XXH3_64bits_update(&state, &input.ref1, sizeof(gfx::gx::AlphaCompare::ref1));
|
|
|
|
}
|
|
|
|
template <>
|
2022-03-08 08:52:36 +00:00
|
|
|
inline void xxh3_update(XXH3_state_t& state, const gfx::gx::ShaderConfig& input) {
|
2022-03-19 17:30:25 +00:00
|
|
|
XXH3_64bits_update(&state, &input.fogType, sizeof(gfx::gx::ShaderConfig::fogType));
|
|
|
|
XXH3_64bits_update(&state, &input.vtxAttrs, sizeof(gfx::gx::ShaderConfig::vtxAttrs));
|
|
|
|
XXH3_64bits_update(&state, &input.tevSwapTable, sizeof(gfx::gx::ShaderConfig::tevSwapTable));
|
2022-03-07 23:53:42 +00:00
|
|
|
for (const auto& item : input.tevStages) {
|
|
|
|
if (!item) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
xxh3_update(state, *item);
|
|
|
|
}
|
2022-03-12 15:47:20 +00:00
|
|
|
for (const auto& item : input.colorChannels) {
|
|
|
|
xxh3_update(state, item);
|
|
|
|
}
|
2022-03-14 22:00:03 +00:00
|
|
|
for (const auto& item : input.tcgs) {
|
|
|
|
xxh3_update(state, item);
|
|
|
|
}
|
2022-03-19 21:06:27 +00:00
|
|
|
if (input.alphaCompare) {
|
2022-03-20 20:24:02 +00:00
|
|
|
xxh3_update(state, input.alphaCompare);
|
2022-03-08 07:44:46 +00:00
|
|
|
}
|
2022-03-27 00:30:29 +00:00
|
|
|
XXH3_64bits_update(&state, &input.indexedAttributeCount, sizeof(gfx::gx::ShaderConfig::indexedAttributeCount));
|
2022-03-07 23:53:42 +00:00
|
|
|
}
|
2022-03-08 05:28:31 +00:00
|
|
|
} // namespace aurora
|