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-06 07:46:42 +00:00
|
|
|
extern zeus::CMatrix4f g_mv;
|
|
|
|
extern zeus::CMatrix4f g_mvInv;
|
|
|
|
extern zeus::CMatrix4f g_proj;
|
|
|
|
extern metaforce::CFogState g_fogState;
|
|
|
|
extern metaforce::ERglCullMode g_cullMode;
|
|
|
|
extern metaforce::ERglBlendMode g_blendMode;
|
|
|
|
extern metaforce::ERglBlendFactor g_blendFacSrc;
|
|
|
|
extern metaforce::ERglBlendFactor g_blendFacDst;
|
|
|
|
extern metaforce::ERglLogicOp g_blendOp;
|
|
|
|
extern bool g_depthCompare;
|
|
|
|
extern bool g_depthUpdate;
|
|
|
|
extern metaforce::ERglEnum g_depthFunc;
|
|
|
|
extern std::array<zeus::CColor, 3> g_colorRegs;
|
|
|
|
extern std::array<zeus::CColor, GX::MAX_KCOLOR> g_kcolors;
|
|
|
|
extern bool g_alphaUpdate;
|
|
|
|
extern std::optional<float> g_dstAlpha;
|
|
|
|
extern zeus::CColor g_clearColor;
|
2022-03-06 20:58:06 +00:00
|
|
|
extern bool g_alphaDiscard;
|
2022-03-06 07:46:42 +00:00
|
|
|
|
|
|
|
struct SChannelState {
|
|
|
|
zeus::CColor matColor;
|
|
|
|
zeus::CColor ambColor;
|
2022-03-07 23:53:42 +00:00
|
|
|
GX::ColorSrc matSrc;
|
2022-03-06 07:46:42 +00:00
|
|
|
};
|
|
|
|
extern std::array<SChannelState, 2> g_colorChannels;
|
|
|
|
using LightVariant = std::variant<std::monostate, Light, zeus::CColor>;
|
|
|
|
extern std::array<LightVariant, MaxLights> g_lights;
|
|
|
|
extern std::bitset<MaxLights> g_lightState;
|
|
|
|
|
|
|
|
struct STevStage {
|
|
|
|
metaforce::CTevCombiners::ColorPass colorPass;
|
|
|
|
metaforce::CTevCombiners::AlphaPass alphaPass;
|
|
|
|
metaforce::CTevCombiners::CTevOp colorOp;
|
|
|
|
metaforce::CTevCombiners::CTevOp 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;
|
|
|
|
|
2022-03-06 20:58:06 +00:00
|
|
|
constexpr STevStage(const metaforce::CTevCombiners::ColorPass& colPass,
|
|
|
|
const metaforce::CTevCombiners::AlphaPass& alphaPass,
|
|
|
|
const metaforce::CTevCombiners::CTevOp& colorOp,
|
|
|
|
const metaforce::CTevCombiners::CTevOp& alphaOp) noexcept
|
2022-03-06 07:46:42 +00:00
|
|
|
: colorPass(colPass), alphaPass(alphaPass), colorOp(colorOp), alphaOp(alphaOp) {}
|
|
|
|
};
|
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-06 07:46:42 +00:00
|
|
|
|
|
|
|
constexpr u32 maxTevStages = GX::MAX_TEVSTAGE;
|
|
|
|
extern std::array<std::optional<STevStage>, maxTevStages> g_tevStages;
|
2022-03-06 20:58:06 +00:00
|
|
|
constexpr u32 maxTextures = 8;
|
2022-03-07 23:53:42 +00:00
|
|
|
extern std::array<TextureBind, maxTextures> g_textures;
|
2022-03-06 20:58:06 +00:00
|
|
|
|
|
|
|
static inline Mat4x4<float> get_combined_matrix() noexcept { return g_proj * g_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-06 20:58:06 +00:00
|
|
|
std::array<std::optional<STevStage>, maxTevStages> tevStages;
|
2022-03-07 23:53:42 +00:00
|
|
|
std::array<GX::ColorSrc, 2> channelMatSrcs;
|
2022-03-08 05:28:31 +00:00
|
|
|
bool alphaDiscard = false;
|
|
|
|
bool denormalizedVertexAttributes = false;
|
|
|
|
bool denormalizedHasNrm = false; // TODO this is a hack
|
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;
|
|
|
|
metaforce::ERglEnum depthFunc;
|
|
|
|
metaforce::ERglCullMode cullMode;
|
|
|
|
metaforce::ERglBlendMode blendMode;
|
|
|
|
metaforce::ERglBlendFactor blendFacSrc, blendFacDst;
|
|
|
|
metaforce::ERglLogicOp blendOp;
|
|
|
|
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-07 23:53:42 +00:00
|
|
|
std::bitset<maxTextures> sampledTextures;
|
|
|
|
std::bitset<4> sampledKcolors;
|
|
|
|
std::bitset<2> sampledColorChannels;
|
|
|
|
u32 uniformSize = 0;
|
|
|
|
bool usesVtxColor : 1 = false;
|
|
|
|
bool usesNormal : 1 = false;
|
|
|
|
};
|
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;
|
|
|
|
|
|
|
|
struct DlVert {
|
|
|
|
s16 pos;
|
|
|
|
s16 norm;
|
|
|
|
// colors ignored
|
|
|
|
std::array<s16, 7> uvs;
|
|
|
|
// pn_mtx_idx ignored
|
|
|
|
// tex_mtx_idxs ignored
|
|
|
|
s16 _pad;
|
|
|
|
};
|
2022-03-07 23:53:42 +00:00
|
|
|
} // namespace aurora::gfx::gx
|
|
|
|
|
|
|
|
namespace aurora {
|
|
|
|
template <>
|
|
|
|
inline void xxh3_update(XXH3_state_t& state, const gfx::gx::STevStage& input) {
|
|
|
|
XXH3_64bits_update(&state, &input.colorPass, sizeof(metaforce::CTevCombiners::ColorPass));
|
|
|
|
XXH3_64bits_update(&state, &input.alphaPass, sizeof(metaforce::CTevCombiners::AlphaPass));
|
|
|
|
XXH3_64bits_update(&state, &input.colorOp, sizeof(metaforce::CTevCombiners::CTevOp));
|
|
|
|
XXH3_64bits_update(&state, &input.alphaOp, sizeof(metaforce::CTevCombiners::CTevOp));
|
|
|
|
XXH3_64bits_update(&state, &input.kcSel, sizeof(GX::TevKColorSel));
|
|
|
|
XXH3_64bits_update(&state, &input.kaSel, sizeof(GX::TevKAlphaSel));
|
|
|
|
XXH3_64bits_update(&state, &input.texCoordId, sizeof(GX::TexCoordID));
|
|
|
|
XXH3_64bits_update(&state, &input.texMapId, sizeof(GX::TexMapID));
|
|
|
|
XXH3_64bits_update(&state, &input.channelId, sizeof(GX::ChannelID));
|
|
|
|
}
|
|
|
|
template <>
|
|
|
|
inline XXH64_hash_t xxh3_hash(const gfx::gx::ShaderConfig& input, XXH64_hash_t seed) {
|
|
|
|
XXH3_state_t state;
|
|
|
|
XXH3_INITSTATE(&state);
|
|
|
|
XXH3_64bits_reset_withSeed(&state, seed);
|
|
|
|
for (const auto& item : input.tevStages) {
|
|
|
|
if (!item) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
xxh3_update(state, *item);
|
|
|
|
}
|
|
|
|
XXH3_64bits_update(&state, input.channelMatSrcs.data(), input.channelMatSrcs.size() * sizeof(GX::ColorSrc));
|
|
|
|
XXH3_64bits_update(&state, &input.alphaDiscard, sizeof(bool));
|
|
|
|
XXH3_64bits_update(&state, &input.denormalizedVertexAttributes, sizeof(bool));
|
2022-03-08 05:28:31 +00:00
|
|
|
XXH3_64bits_update(&state, &input.denormalizedHasNrm, sizeof(bool));
|
2022-03-07 23:53:42 +00:00
|
|
|
return XXH3_64bits_digest(&state);
|
|
|
|
}
|
2022-03-08 05:28:31 +00:00
|
|
|
} // namespace aurora
|