2022-02-18 00:38:31 +00:00
|
|
|
#pragma once
|
|
|
|
#include <aurora/gfx.hpp>
|
|
|
|
|
|
|
|
#include <utility>
|
|
|
|
|
|
|
|
#include <dawn/webgpu_cpp.h>
|
2022-02-27 16:05:48 +00:00
|
|
|
#include <xxhash_impl.h>
|
2022-02-18 00:38:31 +00:00
|
|
|
|
2022-02-19 05:33:56 +00:00
|
|
|
#ifndef ALIGN
|
|
|
|
#define ALIGN(x, a) (((x) + ((a)-1)) & ~((a)-1))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
namespace aurora {
|
2022-03-07 23:53:42 +00:00
|
|
|
template <typename T>
|
|
|
|
static inline void xxh3_update(XXH3_state_t& state, const T& input);
|
2022-02-19 05:33:56 +00:00
|
|
|
static inline XXH64_hash_t xxh3_hash(const void* input, size_t len, XXH64_hash_t seed = 0) {
|
|
|
|
return XXH3_64bits_withSeed(input, len, seed);
|
|
|
|
}
|
2022-02-18 00:38:31 +00:00
|
|
|
template <typename T>
|
2022-02-19 05:33:56 +00:00
|
|
|
static inline XXH64_hash_t xxh3_hash(const T& input, XXH64_hash_t seed = 0) {
|
2022-03-08 08:52:36 +00:00
|
|
|
XXH3_state_t state;
|
|
|
|
memset(&state, 0, sizeof(XXH3_state_t));
|
|
|
|
XXH3_64bits_reset_withSeed(&state, seed);
|
|
|
|
xxh3_update(state, input);
|
|
|
|
return XXH3_64bits_digest(&state);
|
2022-02-18 00:38:31 +00:00
|
|
|
}
|
|
|
|
|
2022-02-19 05:33:56 +00:00
|
|
|
class ByteBuffer {
|
|
|
|
public:
|
2022-03-04 07:47:21 +00:00
|
|
|
ByteBuffer() noexcept = default;
|
|
|
|
explicit ByteBuffer(size_t size) noexcept
|
|
|
|
: m_data(static_cast<uint8_t*>(calloc(1, size))), m_length(size), m_capacity(size) {}
|
|
|
|
~ByteBuffer() noexcept {
|
2022-02-19 05:33:56 +00:00
|
|
|
if (m_data != nullptr) {
|
|
|
|
free(m_data);
|
|
|
|
}
|
|
|
|
}
|
2022-03-04 07:47:21 +00:00
|
|
|
ByteBuffer(ByteBuffer&& rhs) noexcept : m_data(rhs.m_data), m_length(rhs.m_length), m_capacity(rhs.m_capacity) {
|
|
|
|
rhs.m_data = nullptr;
|
|
|
|
rhs.m_length = 0;
|
|
|
|
rhs.m_capacity = 0;
|
|
|
|
}
|
|
|
|
ByteBuffer& operator=(ByteBuffer&& rhs) noexcept {
|
|
|
|
if (m_data != nullptr) {
|
|
|
|
free(m_data);
|
|
|
|
}
|
|
|
|
m_data = rhs.m_data;
|
|
|
|
m_length = rhs.m_length;
|
|
|
|
m_capacity = rhs.m_capacity;
|
|
|
|
rhs.m_data = nullptr;
|
|
|
|
rhs.m_length = 0;
|
|
|
|
rhs.m_capacity = 0;
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
ByteBuffer(ByteBuffer const&) = delete;
|
|
|
|
ByteBuffer& operator=(ByteBuffer const&) = delete;
|
2022-02-19 05:33:56 +00:00
|
|
|
|
2022-03-04 07:47:21 +00:00
|
|
|
[[nodiscard]] uint8_t* data() noexcept { return m_data; }
|
|
|
|
[[nodiscard]] const uint8_t* data() const noexcept { return m_data; }
|
|
|
|
[[nodiscard]] size_t size() const noexcept { return m_length; }
|
|
|
|
[[nodiscard]] bool empty() const noexcept { return m_length == 0; }
|
2022-02-19 05:33:56 +00:00
|
|
|
|
|
|
|
void append(const void* data, size_t size) {
|
|
|
|
resize(m_length + size);
|
|
|
|
memcpy(m_data + m_length, data, size);
|
|
|
|
m_length += size;
|
|
|
|
}
|
2022-02-19 08:28:44 +00:00
|
|
|
|
2022-02-19 05:33:56 +00:00
|
|
|
void append_zeroes(size_t size) {
|
|
|
|
resize(m_length + size);
|
|
|
|
memset(m_data + m_length, 0, size);
|
|
|
|
m_length += size;
|
|
|
|
}
|
|
|
|
|
|
|
|
void clear() {
|
|
|
|
if (m_data != nullptr) {
|
|
|
|
free(m_data);
|
|
|
|
}
|
|
|
|
m_data = nullptr;
|
|
|
|
m_length = 0;
|
|
|
|
m_capacity = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
uint8_t* m_data = nullptr;
|
|
|
|
size_t m_length = 0;
|
|
|
|
size_t m_capacity = 0;
|
2022-02-19 08:28:44 +00:00
|
|
|
|
|
|
|
void resize(size_t size) {
|
|
|
|
if (size == 0) {
|
|
|
|
clear();
|
|
|
|
} else if (m_data == nullptr) {
|
|
|
|
m_data = static_cast<uint8_t*>(malloc(size));
|
|
|
|
} else if (size > m_capacity) {
|
|
|
|
m_data = static_cast<uint8_t*>(realloc(m_data, size));
|
|
|
|
} else {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
m_capacity = size;
|
|
|
|
}
|
2022-02-19 05:33:56 +00:00
|
|
|
};
|
2022-02-18 00:38:31 +00:00
|
|
|
} // namespace aurora
|
|
|
|
|
|
|
|
namespace aurora::gfx {
|
2022-02-19 05:33:56 +00:00
|
|
|
extern wgpu::Buffer g_vertexBuffer;
|
|
|
|
extern wgpu::Buffer g_uniformBuffer;
|
|
|
|
extern wgpu::Buffer g_indexBuffer;
|
2022-03-08 05:28:31 +00:00
|
|
|
extern wgpu::Buffer g_storageBuffer;
|
2022-02-19 05:33:56 +00:00
|
|
|
|
2022-02-18 00:38:31 +00:00
|
|
|
struct TextureRef {
|
|
|
|
wgpu::Texture texture;
|
|
|
|
wgpu::TextureView view;
|
|
|
|
wgpu::Extent3D size;
|
|
|
|
wgpu::TextureFormat format;
|
2022-03-04 07:47:21 +00:00
|
|
|
uint32_t mipCount;
|
|
|
|
metaforce::ETexelFormat gameFormat;
|
|
|
|
|
|
|
|
TextureRef(wgpu::Texture&& texture, wgpu::TextureView&& view, wgpu::Extent3D size, wgpu::TextureFormat format,
|
|
|
|
uint32_t mipCount, metaforce::ETexelFormat gameFormat = metaforce::ETexelFormat::Invalid)
|
|
|
|
: texture(std::move(texture))
|
|
|
|
, view(std::move(view))
|
|
|
|
, size(size)
|
|
|
|
, format(format)
|
|
|
|
, mipCount(mipCount)
|
|
|
|
, gameFormat(gameFormat) {}
|
2022-02-18 00:38:31 +00:00
|
|
|
};
|
|
|
|
|
2022-02-19 05:33:56 +00:00
|
|
|
using BindGroupRef = uint64_t;
|
2022-03-05 03:36:54 +00:00
|
|
|
using PipelineRef = uint64_t;
|
|
|
|
using SamplerRef = uint64_t;
|
|
|
|
using ShaderRef = uint64_t;
|
2022-02-19 05:33:56 +00:00
|
|
|
using Range = std::pair<uint32_t, uint32_t>;
|
2022-02-18 00:38:31 +00:00
|
|
|
|
|
|
|
enum class ShaderType {
|
|
|
|
Aabb,
|
2022-02-20 21:06:04 +00:00
|
|
|
ColoredQuad,
|
2022-02-18 00:38:31 +00:00
|
|
|
TexturedQuad,
|
|
|
|
MoviePlayer,
|
2022-03-05 03:36:54 +00:00
|
|
|
Stream,
|
2022-03-08 05:28:31 +00:00
|
|
|
Model,
|
2022-02-18 00:38:31 +00:00
|
|
|
};
|
2022-02-19 05:33:56 +00:00
|
|
|
|
2022-02-19 06:41:21 +00:00
|
|
|
void initialize();
|
|
|
|
void shutdown();
|
2022-02-19 05:33:56 +00:00
|
|
|
|
|
|
|
void render(const wgpu::RenderPassEncoder& pass);
|
|
|
|
|
|
|
|
Range push_verts(const uint8_t* data, size_t length);
|
|
|
|
template <typename T>
|
|
|
|
static inline Range push_verts(ArrayRef<T> data) {
|
|
|
|
return push_verts(reinterpret_cast<const uint8_t*>(data.data()), data.size() * sizeof(T));
|
|
|
|
}
|
|
|
|
Range push_indices(const uint8_t* data, size_t length);
|
|
|
|
template <typename T>
|
|
|
|
static inline Range push_indices(ArrayRef<T> data) {
|
|
|
|
return push_indices(reinterpret_cast<const uint8_t*>(data.data()), data.size() * sizeof(T));
|
|
|
|
}
|
|
|
|
Range push_uniform(const uint8_t* data, size_t length);
|
|
|
|
template <typename T>
|
|
|
|
static inline Range push_uniform(const T& data) {
|
|
|
|
return push_uniform(reinterpret_cast<const uint8_t*>(&data), sizeof(T));
|
|
|
|
}
|
2022-03-08 05:28:31 +00:00
|
|
|
Range push_storage(const uint8_t* data, size_t length);
|
|
|
|
template <typename T>
|
|
|
|
static inline Range push_storage(const T& data) {
|
|
|
|
return push_storage(reinterpret_cast<const uint8_t*>(&data), sizeof(T));
|
|
|
|
}
|
2022-02-19 05:33:56 +00:00
|
|
|
|
2022-03-05 03:36:54 +00:00
|
|
|
template <typename State>
|
|
|
|
const State& get_state();
|
|
|
|
template <typename DrawData>
|
|
|
|
void push_draw_command(DrawData data);
|
|
|
|
|
2022-02-19 05:33:56 +00:00
|
|
|
template <typename PipelineConfig>
|
|
|
|
PipelineRef pipeline_ref(PipelineConfig config);
|
|
|
|
bool bind_pipeline(PipelineRef ref, const wgpu::RenderPassEncoder& pass);
|
|
|
|
|
|
|
|
BindGroupRef bind_group_ref(const wgpu::BindGroupDescriptor& descriptor);
|
|
|
|
const wgpu::BindGroup& find_bind_group(BindGroupRef id);
|
|
|
|
|
2022-03-05 03:36:54 +00:00
|
|
|
const wgpu::Sampler& sampler_ref(const wgpu::SamplerDescriptor& descriptor);
|
|
|
|
|
|
|
|
uint32_t align_uniform(uint32_t value);
|
2022-02-18 00:38:31 +00:00
|
|
|
} // namespace aurora::gfx
|