2014-12-13 00:51:14 +00:00
|
|
|
// Copyright 2014 Dolphin Emulator Project
|
2021-07-05 01:22:19 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2014-12-13 00:51:14 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <array>
|
2015-12-23 00:59:32 +00:00
|
|
|
#include <memory>
|
2014-12-13 00:51:14 +00:00
|
|
|
#include <string>
|
2021-03-11 23:43:00 +00:00
|
|
|
#include <vector>
|
2014-12-13 00:51:14 +00:00
|
|
|
|
|
|
|
#include "Common/CommonTypes.h"
|
|
|
|
#include "VideoCommon/CPMemory.h"
|
|
|
|
#include "VideoCommon/NativeVertexFormat.h"
|
|
|
|
|
|
|
|
class VertexLoaderUID
|
|
|
|
{
|
2021-09-04 04:43:19 +00:00
|
|
|
std::array<u32, 5> vid{};
|
|
|
|
size_t hash = 0;
|
2014-12-13 00:51:14 +00:00
|
|
|
|
2016-06-24 08:43:46 +00:00
|
|
|
public:
|
2014-12-13 00:51:14 +00:00
|
|
|
VertexLoaderUID() {}
|
|
|
|
VertexLoaderUID(const TVtxDesc& vtx_desc, const VAT& vat)
|
2016-06-24 08:43:46 +00:00
|
|
|
{
|
2021-06-09 04:35:43 +00:00
|
|
|
vid[0] = vtx_desc.low.Hex;
|
|
|
|
vid[1] = vtx_desc.high.Hex;
|
2014-12-13 00:51:14 +00:00
|
|
|
vid[2] = vat.g0.Hex;
|
|
|
|
vid[3] = vat.g1.Hex;
|
|
|
|
vid[4] = vat.g2.Hex;
|
|
|
|
hash = CalculateHash();
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
|
|
|
|
2014-12-13 00:51:14 +00:00
|
|
|
bool operator==(const VertexLoaderUID& rh) const { return vid == rh.vid; }
|
|
|
|
size_t GetHash() const { return hash; }
|
2018-04-12 12:18:04 +00:00
|
|
|
|
2014-12-13 00:51:14 +00:00
|
|
|
private:
|
|
|
|
size_t CalculateHash() const
|
2016-06-24 08:43:46 +00:00
|
|
|
{
|
2017-06-07 11:16:02 +00:00
|
|
|
size_t h = SIZE_MAX;
|
2014-12-13 00:51:14 +00:00
|
|
|
|
|
|
|
for (auto word : vid)
|
|
|
|
{
|
|
|
|
h = h * 137 + word;
|
2016-06-24 08:43:46 +00:00
|
|
|
}
|
2014-12-13 00:51:14 +00:00
|
|
|
|
|
|
|
return h;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
namespace std
|
|
|
|
{
|
|
|
|
template <>
|
|
|
|
struct hash<VertexLoaderUID>
|
|
|
|
{
|
|
|
|
size_t operator()(const VertexLoaderUID& uid) const { return uid.GetHash(); }
|
|
|
|
};
|
2019-05-05 23:48:12 +00:00
|
|
|
} // namespace std
|
2014-12-13 00:51:14 +00:00
|
|
|
|
|
|
|
class VertexLoaderBase
|
|
|
|
{
|
|
|
|
public:
|
2021-03-11 20:55:25 +00:00
|
|
|
static u32 GetVertexSize(const TVtxDesc& vtx_desc, const VAT& vtx_attr);
|
|
|
|
static u32 GetVertexComponents(const TVtxDesc& vtx_desc, const VAT& vtx_attr);
|
2015-12-23 00:59:32 +00:00
|
|
|
static std::unique_ptr<VertexLoaderBase> CreateVertexLoader(const TVtxDesc& vtx_desc,
|
|
|
|
const VAT& vtx_attr);
|
2015-01-11 15:20:44 +00:00
|
|
|
virtual ~VertexLoaderBase() {}
|
2022-11-23 00:54:05 +00:00
|
|
|
virtual int RunVertices(const u8* src, u8* dst, int count) = 0;
|
2014-12-13 00:51:14 +00:00
|
|
|
|
|
|
|
// per loader public state
|
2017-03-23 12:34:35 +00:00
|
|
|
PortableVertexDeclaration m_native_vtx_decl{};
|
2021-03-11 20:55:25 +00:00
|
|
|
const u32 m_vertex_size; // number of bytes of a raw GC vertex
|
|
|
|
const u32 m_native_components;
|
2014-12-13 00:51:14 +00:00
|
|
|
|
|
|
|
// used by VertexLoaderManager
|
2017-03-23 12:34:35 +00:00
|
|
|
NativeVertexFormat* m_native_vertex_format = nullptr;
|
|
|
|
int m_numLoadedVertices = 0;
|
2014-12-13 00:51:14 +00:00
|
|
|
|
|
|
|
protected:
|
2021-03-11 06:15:43 +00:00
|
|
|
VertexLoaderBase(const TVtxDesc& vtx_desc, const VAT& vtx_attr)
|
2021-05-30 16:10:20 +00:00
|
|
|
: m_vertex_size{GetVertexSize(vtx_desc, vtx_attr)}, m_native_components{GetVertexComponents(
|
|
|
|
vtx_desc, vtx_attr)},
|
|
|
|
m_VtxAttr{vtx_attr}, m_VtxDesc{vtx_desc}
|
2021-03-11 20:55:25 +00:00
|
|
|
{
|
|
|
|
}
|
2014-12-13 00:51:14 +00:00
|
|
|
|
|
|
|
// GC vertex format
|
2021-03-11 06:15:43 +00:00
|
|
|
const VAT m_VtxAttr;
|
|
|
|
const TVtxDesc m_VtxDesc;
|
2014-12-13 00:51:14 +00:00
|
|
|
};
|