#pragma once #include "common.hpp" #include namespace aurora::gfx::gx { 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; constexpr u32 MaxTexMtx = 10; constexpr u32 MaxPTTexMtx = 20; constexpr u32 MaxTexCoord = GX::MAX_TEXCOORD; constexpr u32 MaxVtxAttr = GX::VA_MAX_ATTR; constexpr u32 MaxTevSwap = GX::MAX_TEVSWAP; template struct TevPass { Arg a = Default; Arg b = Default; Arg c = Default; Arg d = Default; bool operator==(const TevPass&) const = default; }; 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; bool operator==(const TevOp&) const = default; }; struct TevStage { TevPass colorPass; TevPass alphaPass; TevOp colorOp; TevOp alphaOp; 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; GX::TevSwapSel tevSwapRas = GX::TEV_SWAP0; GX::TevSwapSel tevSwapTex = GX::TEV_SWAP0; bool operator==(const TevStage&) const = default; }; struct TextureBind { aurora::gfx::TextureHandle handle; metaforce::EClampMode clampMode; float lod; TextureBind() noexcept = default; TextureBind(aurora::gfx::TextureHandle handle, metaforce::EClampMode clampMode, float lod) noexcept : 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; } }; // For shader generation struct ColorChannelConfig { GX::ColorSrc matSrc = GX::SRC_REG; GX::ColorSrc ambSrc = GX::SRC_REG; bool lightingEnabled = false; bool operator==(const ColorChannelConfig&) const = default; }; // For uniform generation struct ColorChannelState { zeus::CColor matColor; zeus::CColor ambColor; GX::LightMask lightState; }; using LightVariant = std::variant; // Mat4x4 used instead of Mat4x3 for padding purposes using TexMtxVariant = std::variant, Mat4x4>; 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; bool operator==(const TcgConfig&) const = default; }; 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; }; 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{}; } }; 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{}; } }; struct GXState { zeus::CMatrix4f mv; zeus::CMatrix4f mvInv; zeus::CMatrix4f proj; FogState fog; 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 dstAlpha; AlphaCompare alphaCompare; std::array colorRegs; std::array kcolors; std::array colorChannelConfig; std::array colorChannelState; std::array lights; std::array tevStages; std::array textures; std::array texMtxs; std::array, MaxPTTexMtx> ptTexMtxs; std::array tcgs; std::array vtxDesc; std::array 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}, }; 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; static inline Mat4x4 get_combined_matrix() noexcept { return g_gxState.proj * g_gxState.mv; } void shutdown() noexcept; const TextureBind& get_texture(GX::TexMapID id) noexcept; struct ShaderConfig { GX::FogType fogType; std::array vtxAttrs; std::array tevSwapTable; std::array, MaxTevStages> tevStages; std::array colorChannels; std::array tcgs; AlphaCompare alphaCompare; u32 indexedAttributeCount = 0; bool operator==(const ShaderConfig&) const = default; }; struct PipelineConfig { ShaderConfig shaderConfig; GX::Primitive primitive; GX::Compare depthFunc; GX::CullMode cullMode; GX::BlendMode blendMode; GX::BlendFactor blendFacSrc, blendFacDst; GX::LogicOp blendOp; std::optional dstAlpha; bool depthCompare, depthUpdate, alphaUpdate; }; struct GXBindGroupLayouts { wgpu::BindGroupLayout uniformLayout; wgpu::BindGroupLayout samplerLayout; wgpu::BindGroupLayout textureLayout; }; struct GXBindGroups { BindGroupRef uniformBindGroup; BindGroupRef samplerBindGroup; BindGroupRef textureBindGroup; }; // Output info from shader generation struct ShaderInfo { GXBindGroups bindGroups; std::bitset sampledTextures; std::bitset sampledKColors; std::bitset sampledColorChannels; std::bitset usesTevReg; std::bitset usesTexMtx; std::bitset usesPTTexMtx; std::array texMtxTypes; u32 uniformSize = 0; bool usesFog : 1 = false; }; struct BindGroupRanges { Range vtxDataRange; Range nrmDataRange; Range tcDataRange; Range packedTcDataRange; }; ShaderInfo populate_pipeline_config(PipelineConfig& config, GX::Primitive primitive, const BindGroupRanges& ranges) noexcept; wgpu::RenderPipeline build_pipeline(const PipelineConfig& config, const ShaderInfo& info, ArrayRef vtxBuffers, wgpu::ShaderModule shader, zstring_view label) noexcept; std::pair build_shader(const ShaderConfig& config) noexcept; // Range build_vertex_buffer(const GXShaderInfo& info) noexcept; Range build_uniform(const ShaderInfo& info) noexcept; 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; } // namespace aurora::gfx::gx namespace aurora { template inline void xxh3_update(XXH3_state_t& state, const gfx::gx::TevPass& 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)); } template <> 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)); } template <> inline void xxh3_update(XXH3_state_t& state, const gfx::gx::TevStage& input) { xxh3_update(state, input.colorPass); xxh3_update(state, input.alphaPass); xxh3_update(state, input.colorOp); xxh3_update(state, input.alphaOp); 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)); } } template <> 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 <> 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 <> inline void xxh3_update(XXH3_state_t& state, const gfx::gx::ShaderConfig& input) { 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)); for (const auto& item : input.tevStages) { if (!item) { break; } xxh3_update(state, *item); } for (const auto& item : input.colorChannels) { xxh3_update(state, item); } for (const auto& item : input.tcgs) { xxh3_update(state, item); } if (input.alphaCompare) { xxh3_update(state, input.alphaCompare); } XXH3_64bits_update(&state, &input.indexedAttributeCount, sizeof(gfx::gx::ShaderConfig::indexedAttributeCount)); } } // namespace aurora