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