2015-05-24 06:55:12 +02:00
|
|
|
// Copyright 2008 Dolphin Emulator Project
|
2015-05-18 01:08:10 +02:00
|
|
|
// Licensed under GPLv2+
|
2013-04-17 23:09:55 -04:00
|
|
|
// Refer to the license.txt file included.
|
2009-03-07 08:35:01 +00:00
|
|
|
|
2019-06-01 07:55:09 -04:00
|
|
|
#include "VideoCommon/VertexLoaderManager.h"
|
|
|
|
|
|
2010-03-06 02:07:48 +00:00
|
|
|
#include <algorithm>
|
2019-06-01 07:55:09 -04:00
|
|
|
#include <iterator>
|
2014-06-05 17:55:21 +02:00
|
|
|
#include <memory>
|
2014-08-24 23:53:28 -04:00
|
|
|
#include <mutex>
|
2016-01-17 16:54:31 -05:00
|
|
|
#include <string>
|
2012-12-10 00:40:28 -06:00
|
|
|
#include <unordered_map>
|
2014-08-15 16:17:06 +02:00
|
|
|
#include <utility>
|
2009-03-07 08:35:01 +00:00
|
|
|
#include <vector>
|
|
|
|
|
|
2016-01-17 16:54:31 -05:00
|
|
|
#include "Common/Assert.h"
|
|
|
|
|
#include "Common/CommonTypes.h"
|
2021-02-28 13:53:32 -08:00
|
|
|
#include "Common/Logging/Log.h"
|
2014-02-17 05:18:15 -05:00
|
|
|
#include "Core/HW/Memmap.h"
|
2009-03-07 08:35:01 +00:00
|
|
|
|
2014-08-04 19:51:42 -07:00
|
|
|
#include "VideoCommon/BPMemory.h"
|
2021-02-28 13:53:32 -08:00
|
|
|
#include "VideoCommon/CPMemory.h"
|
2019-05-31 02:46:17 -04:00
|
|
|
#include "VideoCommon/CommandProcessor.h"
|
2016-01-31 14:51:55 -05:00
|
|
|
#include "VideoCommon/DataReader.h"
|
2014-08-01 23:42:15 -07:00
|
|
|
#include "VideoCommon/IndexGenerator.h"
|
2016-01-17 16:54:31 -05:00
|
|
|
#include "VideoCommon/NativeVertexFormat.h"
|
2019-02-15 11:59:50 +10:00
|
|
|
#include "VideoCommon/RenderBase.h"
|
2014-02-17 05:18:15 -05:00
|
|
|
#include "VideoCommon/Statistics.h"
|
2014-12-13 01:51:14 +01:00
|
|
|
#include "VideoCommon/VertexLoaderBase.h"
|
2014-07-26 01:10:44 +02:00
|
|
|
#include "VideoCommon/VertexManagerBase.h"
|
2014-02-17 05:18:15 -05:00
|
|
|
#include "VideoCommon/VertexShaderManager.h"
|
2010-03-06 02:07:48 +00:00
|
|
|
|
2009-03-07 08:35:01 +00:00
|
|
|
namespace VertexLoaderManager
|
|
|
|
|
{
|
2015-06-01 19:58:27 +02:00
|
|
|
float position_cache[3][4];
|
2016-05-07 09:35:40 +02:00
|
|
|
|
|
|
|
|
// The counter added to the address of the array is 1, 2, or 3, but never zero.
|
|
|
|
|
// So only index 1 - 3 are used.
|
|
|
|
|
u32 position_matrix_index[4];
|
2015-06-01 19:58:27 +02:00
|
|
|
|
2014-12-12 08:53:48 +01:00
|
|
|
static NativeVertexFormatMap s_native_vertex_map;
|
|
|
|
|
static NativeVertexFormat* s_current_vtx_fmt;
|
2015-11-01 22:39:31 +01:00
|
|
|
u32 g_current_components;
|
2014-12-12 08:53:48 +01:00
|
|
|
|
2014-12-13 01:51:14 +01:00
|
|
|
typedef std::unordered_map<VertexLoaderUID, std::unique_ptr<VertexLoaderBase>> VertexLoaderMap;
|
2014-08-24 23:53:28 -04:00
|
|
|
static std::mutex s_vertex_loader_map_lock;
|
|
|
|
|
static VertexLoaderMap s_vertex_loader_map;
|
2009-03-07 08:35:01 +00:00
|
|
|
// TODO - change into array of pointers. Keep a map of all seen so far.
|
|
|
|
|
|
2016-06-24 10:43:46 +02:00
|
|
|
u8* cached_arraybases[12];
|
2015-05-30 00:42:45 +12:00
|
|
|
|
2009-03-07 08:35:01 +00:00
|
|
|
void Init()
|
|
|
|
|
{
|
2016-06-24 10:43:46 +02:00
|
|
|
MarkAllDirty();
|
|
|
|
|
for (auto& map_entry : g_main_cp_state.vertex_loaders)
|
|
|
|
|
map_entry = nullptr;
|
|
|
|
|
for (auto& map_entry : g_preprocess_cp_state.vertex_loaders)
|
|
|
|
|
map_entry = nullptr;
|
2019-07-10 23:34:50 -04:00
|
|
|
SETSTAT(g_stats.num_vertex_loaders, 0);
|
2009-03-07 08:35:01 +00:00
|
|
|
}
|
|
|
|
|
|
2016-01-13 21:14:20 +01:00
|
|
|
void Clear()
|
2009-03-07 08:35:01 +00:00
|
|
|
{
|
2016-06-24 10:43:46 +02:00
|
|
|
std::lock_guard<std::mutex> lk(s_vertex_loader_map_lock);
|
|
|
|
|
s_vertex_loader_map.clear();
|
|
|
|
|
s_native_vertex_map.clear();
|
2009-03-07 08:35:01 +00:00
|
|
|
}
|
|
|
|
|
|
2015-05-30 00:42:45 +12:00
|
|
|
void UpdateVertexArrayPointers()
|
|
|
|
|
{
|
2016-06-24 10:43:46 +02:00
|
|
|
// Anything to update?
|
|
|
|
|
if (!g_main_cp_state.bases_dirty)
|
|
|
|
|
return;
|
2015-05-30 03:58:27 +12:00
|
|
|
|
2016-06-24 10:43:46 +02:00
|
|
|
// Some games such as Burnout 2 can put invalid addresses into
|
|
|
|
|
// the array base registers. (see issue 8591)
|
|
|
|
|
// But the vertex arrays with invalid addresses aren't actually enabled.
|
|
|
|
|
// Note: Only array bases 0 through 11 are used by the Vertex loaders.
|
|
|
|
|
// 12 through 15 are used for loading data into xfmem.
|
2021-02-08 15:22:10 -08:00
|
|
|
// We also only update the array base if the vertex description states we are going to use it.
|
|
|
|
|
if (IsIndexed(g_main_cp_state.vtx_desc.low.Position))
|
|
|
|
|
cached_arraybases[ARRAY_POSITION] =
|
|
|
|
|
Memory::GetPointer(g_main_cp_state.array_bases[ARRAY_POSITION]);
|
|
|
|
|
|
|
|
|
|
if (IsIndexed(g_main_cp_state.vtx_desc.low.Normal))
|
|
|
|
|
cached_arraybases[ARRAY_NORMAL] = Memory::GetPointer(g_main_cp_state.array_bases[ARRAY_NORMAL]);
|
|
|
|
|
|
|
|
|
|
for (size_t i = 0; i < g_main_cp_state.vtx_desc.low.Color.Size(); i++)
|
2016-06-24 10:43:46 +02:00
|
|
|
{
|
2021-02-08 15:22:10 -08:00
|
|
|
if (IsIndexed(g_main_cp_state.vtx_desc.low.Color[i]))
|
|
|
|
|
cached_arraybases[ARRAY_COLOR + i] =
|
|
|
|
|
Memory::GetPointer(g_main_cp_state.array_bases[ARRAY_COLOR + i]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for (size_t i = 0; i < g_main_cp_state.vtx_desc.high.TexCoord.Size(); i++)
|
|
|
|
|
{
|
|
|
|
|
if (IsIndexed(g_main_cp_state.vtx_desc.high.TexCoord[i]))
|
|
|
|
|
cached_arraybases[ARRAY_TEXCOORD0 + i] =
|
|
|
|
|
Memory::GetPointer(g_main_cp_state.array_bases[ARRAY_TEXCOORD0 + i]);
|
2016-06-24 10:43:46 +02:00
|
|
|
}
|
2015-05-30 03:58:27 +12:00
|
|
|
|
2016-06-24 10:43:46 +02:00
|
|
|
g_main_cp_state.bases_dirty = false;
|
2015-05-30 00:42:45 +12:00
|
|
|
}
|
|
|
|
|
|
2013-04-24 09:21:54 -04:00
|
|
|
namespace
|
|
|
|
|
{
|
|
|
|
|
struct entry
|
|
|
|
|
{
|
2016-06-24 10:43:46 +02:00
|
|
|
std::string text;
|
|
|
|
|
u64 num_verts;
|
|
|
|
|
bool operator<(const entry& other) const { return num_verts > other.num_verts; }
|
2009-03-07 08:35:01 +00:00
|
|
|
};
|
2019-05-05 23:48:12 +00:00
|
|
|
} // namespace
|
2009-03-07 08:35:01 +00:00
|
|
|
|
2017-03-26 22:52:10 -04:00
|
|
|
std::string VertexLoadersToString()
|
2009-03-07 08:35:01 +00:00
|
|
|
{
|
2016-06-24 10:43:46 +02:00
|
|
|
std::lock_guard<std::mutex> lk(s_vertex_loader_map_lock);
|
|
|
|
|
std::vector<entry> entries;
|
2009-03-07 08:35:01 +00:00
|
|
|
|
2016-06-24 10:43:46 +02:00
|
|
|
size_t total_size = 0;
|
|
|
|
|
for (const auto& map_entry : s_vertex_loader_map)
|
|
|
|
|
{
|
2017-03-26 22:17:37 -04:00
|
|
|
entry e = {map_entry.second->ToString(),
|
|
|
|
|
static_cast<u64>(map_entry.second->m_numLoadedVertices)};
|
|
|
|
|
|
2016-06-24 10:43:46 +02:00
|
|
|
total_size += e.text.size() + 1;
|
2017-03-26 22:17:37 -04:00
|
|
|
entries.push_back(std::move(e));
|
2016-06-24 10:43:46 +02:00
|
|
|
}
|
2017-03-26 22:52:10 -04:00
|
|
|
|
2016-06-24 10:43:46 +02:00
|
|
|
sort(entries.begin(), entries.end());
|
2017-03-26 22:52:10 -04:00
|
|
|
|
|
|
|
|
std::string dest;
|
|
|
|
|
dest.reserve(total_size);
|
2016-06-24 10:43:46 +02:00
|
|
|
for (const entry& entry : entries)
|
|
|
|
|
{
|
2017-03-26 22:52:10 -04:00
|
|
|
dest += entry.text;
|
|
|
|
|
dest += '\n';
|
2016-06-24 10:43:46 +02:00
|
|
|
}
|
2017-03-26 22:52:10 -04:00
|
|
|
|
|
|
|
|
return dest;
|
2009-03-07 08:35:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void MarkAllDirty()
|
|
|
|
|
{
|
2016-06-24 10:43:46 +02:00
|
|
|
g_main_cp_state.attr_dirty = BitSet32::AllTrue(8);
|
|
|
|
|
g_preprocess_cp_state.attr_dirty = BitSet32::AllTrue(8);
|
2009-03-07 08:35:01 +00:00
|
|
|
}
|
|
|
|
|
|
2017-07-03 19:43:47 +10:00
|
|
|
NativeVertexFormat* GetOrCreateMatchingFormat(const PortableVertexDeclaration& decl)
|
|
|
|
|
{
|
|
|
|
|
auto iter = s_native_vertex_map.find(decl);
|
|
|
|
|
if (iter == s_native_vertex_map.end())
|
|
|
|
|
{
|
2019-02-15 11:59:50 +10:00
|
|
|
std::unique_ptr<NativeVertexFormat> fmt = g_renderer->CreateNativeVertexFormat(decl);
|
2017-07-03 19:43:47 +10:00
|
|
|
auto ipair = s_native_vertex_map.emplace(decl, std::move(fmt));
|
|
|
|
|
iter = ipair.first;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return iter->second.get();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
NativeVertexFormat* GetUberVertexFormat(const PortableVertexDeclaration& decl)
|
|
|
|
|
{
|
|
|
|
|
// The padding in the structs can cause the memcmp() in the map to create duplicates.
|
|
|
|
|
// Avoid this by initializing the padding to zero.
|
|
|
|
|
PortableVertexDeclaration new_decl;
|
|
|
|
|
std::memset(&new_decl, 0, sizeof(new_decl));
|
|
|
|
|
new_decl.stride = decl.stride;
|
|
|
|
|
|
|
|
|
|
auto MakeDummyAttribute = [](AttributeFormat& attr, VarType type, int components, bool integer) {
|
|
|
|
|
attr.type = type;
|
|
|
|
|
attr.components = components;
|
|
|
|
|
attr.offset = 0;
|
|
|
|
|
attr.enable = true;
|
|
|
|
|
attr.integer = integer;
|
|
|
|
|
};
|
|
|
|
|
auto CopyAttribute = [](AttributeFormat& attr, const AttributeFormat& src) {
|
|
|
|
|
attr.type = src.type;
|
|
|
|
|
attr.components = src.components;
|
|
|
|
|
attr.offset = src.offset;
|
|
|
|
|
attr.enable = src.enable;
|
|
|
|
|
attr.integer = src.integer;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
if (decl.position.enable)
|
|
|
|
|
CopyAttribute(new_decl.position, decl.position);
|
|
|
|
|
else
|
|
|
|
|
MakeDummyAttribute(new_decl.position, VAR_FLOAT, 1, false);
|
2019-06-01 07:55:09 -04:00
|
|
|
for (size_t i = 0; i < std::size(new_decl.normals); i++)
|
2017-07-03 19:43:47 +10:00
|
|
|
{
|
|
|
|
|
if (decl.normals[i].enable)
|
|
|
|
|
CopyAttribute(new_decl.normals[i], decl.normals[i]);
|
|
|
|
|
else
|
|
|
|
|
MakeDummyAttribute(new_decl.normals[i], VAR_FLOAT, 1, false);
|
|
|
|
|
}
|
2019-06-01 07:55:09 -04:00
|
|
|
for (size_t i = 0; i < std::size(new_decl.colors); i++)
|
2017-07-03 19:43:47 +10:00
|
|
|
{
|
|
|
|
|
if (decl.colors[i].enable)
|
|
|
|
|
CopyAttribute(new_decl.colors[i], decl.colors[i]);
|
|
|
|
|
else
|
|
|
|
|
MakeDummyAttribute(new_decl.colors[i], VAR_UNSIGNED_BYTE, 4, false);
|
|
|
|
|
}
|
2019-06-01 07:55:09 -04:00
|
|
|
for (size_t i = 0; i < std::size(new_decl.texcoords); i++)
|
2017-07-03 19:43:47 +10:00
|
|
|
{
|
|
|
|
|
if (decl.texcoords[i].enable)
|
|
|
|
|
CopyAttribute(new_decl.texcoords[i], decl.texcoords[i]);
|
|
|
|
|
else
|
|
|
|
|
MakeDummyAttribute(new_decl.texcoords[i], VAR_FLOAT, 1, false);
|
|
|
|
|
}
|
|
|
|
|
if (decl.posmtx.enable)
|
|
|
|
|
CopyAttribute(new_decl.posmtx, decl.posmtx);
|
|
|
|
|
else
|
|
|
|
|
MakeDummyAttribute(new_decl.posmtx, VAR_UNSIGNED_BYTE, 1, true);
|
|
|
|
|
|
|
|
|
|
return GetOrCreateMatchingFormat(new_decl);
|
|
|
|
|
}
|
|
|
|
|
|
2015-01-02 21:05:36 +01:00
|
|
|
static VertexLoaderBase* RefreshLoader(int vtx_attr_group, bool preprocess = false)
|
2014-08-15 16:17:06 +02:00
|
|
|
{
|
2016-06-24 10:43:46 +02:00
|
|
|
CPState* state = preprocess ? &g_preprocess_cp_state : &g_main_cp_state;
|
|
|
|
|
state->last_id = vtx_attr_group;
|
2015-01-02 21:05:36 +01:00
|
|
|
|
2016-06-24 10:43:46 +02:00
|
|
|
VertexLoaderBase* loader;
|
|
|
|
|
if (state->attr_dirty[vtx_attr_group])
|
|
|
|
|
{
|
|
|
|
|
// We are not allowed to create a native vertex format on preprocessing as this is on the wrong
|
|
|
|
|
// thread
|
|
|
|
|
bool check_for_native_format = !preprocess;
|
2015-01-02 21:05:36 +01:00
|
|
|
|
2016-06-24 10:43:46 +02:00
|
|
|
VertexLoaderUID uid(state->vtx_desc, state->vtx_attr[vtx_attr_group]);
|
|
|
|
|
std::lock_guard<std::mutex> lk(s_vertex_loader_map_lock);
|
|
|
|
|
VertexLoaderMap::iterator iter = s_vertex_loader_map.find(uid);
|
|
|
|
|
if (iter != s_vertex_loader_map.end())
|
|
|
|
|
{
|
|
|
|
|
loader = iter->second.get();
|
|
|
|
|
check_for_native_format &= !loader->m_native_vertex_format;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
s_vertex_loader_map[uid] =
|
|
|
|
|
VertexLoaderBase::CreateVertexLoader(state->vtx_desc, state->vtx_attr[vtx_attr_group]);
|
|
|
|
|
loader = s_vertex_loader_map[uid].get();
|
2019-07-10 23:34:50 -04:00
|
|
|
INCSTAT(g_stats.num_vertex_loaders);
|
2016-06-24 10:43:46 +02:00
|
|
|
}
|
|
|
|
|
if (check_for_native_format)
|
|
|
|
|
{
|
|
|
|
|
// search for a cached native vertex format
|
|
|
|
|
const PortableVertexDeclaration& format = loader->m_native_vtx_decl;
|
|
|
|
|
std::unique_ptr<NativeVertexFormat>& native = s_native_vertex_map[format];
|
|
|
|
|
if (!native)
|
2019-02-15 11:59:50 +10:00
|
|
|
native = g_renderer->CreateNativeVertexFormat(format);
|
2016-06-24 10:43:46 +02:00
|
|
|
loader->m_native_vertex_format = native.get();
|
|
|
|
|
}
|
|
|
|
|
state->vertex_loaders[vtx_attr_group] = loader;
|
|
|
|
|
state->attr_dirty[vtx_attr_group] = false;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
loader = state->vertex_loaders[vtx_attr_group];
|
|
|
|
|
}
|
2015-05-29 18:25:19 +12:00
|
|
|
|
2016-06-24 10:43:46 +02:00
|
|
|
// Lookup pointers for any vertex arrays.
|
|
|
|
|
if (!preprocess)
|
|
|
|
|
UpdateVertexArrayPointers();
|
2015-05-29 18:25:19 +12:00
|
|
|
|
2016-06-24 10:43:46 +02:00
|
|
|
return loader;
|
2014-08-15 16:17:06 +02:00
|
|
|
}
|
|
|
|
|
|
2016-10-07 19:55:47 -07:00
|
|
|
int RunVertices(int vtx_attr_group, int primitive, int count, DataReader src, bool is_preprocess)
|
2009-03-07 08:35:01 +00:00
|
|
|
{
|
2016-06-24 10:43:46 +02:00
|
|
|
if (!count)
|
|
|
|
|
return 0;
|
2014-08-27 13:38:00 -04:00
|
|
|
|
2016-06-24 10:43:46 +02:00
|
|
|
VertexLoaderBase* loader = RefreshLoader(vtx_attr_group, is_preprocess);
|
2014-07-26 01:10:44 +02:00
|
|
|
|
2016-06-24 10:43:46 +02:00
|
|
|
int size = count * loader->m_VertexSize;
|
|
|
|
|
if ((int)src.size() < size)
|
|
|
|
|
return -1;
|
2014-09-01 01:11:32 -04:00
|
|
|
|
2016-10-07 19:55:47 -07:00
|
|
|
if (is_preprocess)
|
2016-06-24 10:43:46 +02:00
|
|
|
return size;
|
2014-08-04 19:51:42 -07:00
|
|
|
|
2016-06-24 10:43:46 +02:00
|
|
|
// If the native vertex format changed, force a flush.
|
|
|
|
|
if (loader->m_native_vertex_format != s_current_vtx_fmt ||
|
|
|
|
|
loader->m_native_components != g_current_components)
|
|
|
|
|
{
|
2016-08-21 23:02:37 -04:00
|
|
|
g_vertex_manager->Flush();
|
2016-06-24 10:43:46 +02:00
|
|
|
}
|
|
|
|
|
s_current_vtx_fmt = loader->m_native_vertex_format;
|
|
|
|
|
g_current_components = loader->m_native_components;
|
2017-07-20 15:25:27 +10:00
|
|
|
VertexShaderManager::SetVertexFormat(loader->m_native_components);
|
2014-07-26 01:10:44 +02:00
|
|
|
|
2016-06-24 10:43:46 +02:00
|
|
|
// if cull mode is CULL_ALL, tell VertexManager to skip triangles and quads.
|
|
|
|
|
// They still need to go through vertex loading, because we need to calculate a zfreeze refrence
|
|
|
|
|
// slope.
|
2021-02-10 18:11:31 -08:00
|
|
|
bool cullall = (bpmem.genMode.cullmode == CullMode::All && primitive < 5);
|
2015-01-24 14:37:20 +13:00
|
|
|
|
2016-08-21 23:02:37 -04:00
|
|
|
DataReader dst = g_vertex_manager->PrepareForAdditionalData(
|
2016-06-24 10:43:46 +02:00
|
|
|
primitive, count, loader->m_native_vtx_decl.stride, cullall);
|
2014-08-01 23:42:15 -07:00
|
|
|
|
2016-06-24 10:43:46 +02:00
|
|
|
count = loader->RunVertices(src, dst, count);
|
2014-08-01 23:42:15 -07:00
|
|
|
|
2019-12-05 10:01:33 -05:00
|
|
|
g_vertex_manager->AddIndices(primitive, count);
|
2016-08-21 23:02:37 -04:00
|
|
|
g_vertex_manager->FlushData(count, loader->m_native_vtx_decl.stride);
|
2014-12-09 08:35:04 +01:00
|
|
|
|
2019-07-10 23:34:50 -04:00
|
|
|
ADDSTAT(g_stats.this_frame.num_prims, count);
|
|
|
|
|
INCSTAT(g_stats.this_frame.num_primitive_joins);
|
2016-06-24 10:43:46 +02:00
|
|
|
return size;
|
2014-01-30 14:48:23 +01:00
|
|
|
}
|
2009-08-08 01:39:56 +00:00
|
|
|
|
2014-07-26 01:10:44 +02:00
|
|
|
NativeVertexFormat* GetCurrentVertexFormat()
|
2014-06-05 17:55:21 +02:00
|
|
|
{
|
2016-06-24 10:43:46 +02:00
|
|
|
return s_current_vtx_fmt;
|
2014-06-05 17:55:21 +02:00
|
|
|
}
|
|
|
|
|
|
2019-05-05 23:48:12 +00:00
|
|
|
} // namespace VertexLoaderManager
|
2009-03-07 08:35:01 +00:00
|
|
|
|
2014-08-27 13:38:00 -04:00
|
|
|
void LoadCPReg(u32 sub_cmd, u32 value, bool is_preprocess)
|
2009-03-07 08:35:01 +00:00
|
|
|
{
|
2016-06-24 10:43:46 +02:00
|
|
|
bool update_global_state = !is_preprocess;
|
|
|
|
|
CPState* state = is_preprocess ? &g_preprocess_cp_state : &g_main_cp_state;
|
2021-02-28 13:53:32 -08:00
|
|
|
switch (sub_cmd & CP_COMMAND_MASK)
|
2016-06-24 10:43:46 +02:00
|
|
|
{
|
2021-02-28 13:53:32 -08:00
|
|
|
case MATINDEX_A:
|
2016-06-24 10:43:46 +02:00
|
|
|
if (update_global_state)
|
|
|
|
|
VertexShaderManager::SetTexMatrixChangedA(value);
|
|
|
|
|
break;
|
2009-03-07 08:35:01 +00:00
|
|
|
|
2021-02-28 13:53:32 -08:00
|
|
|
case MATINDEX_B:
|
2016-06-24 10:43:46 +02:00
|
|
|
if (update_global_state)
|
|
|
|
|
VertexShaderManager::SetTexMatrixChangedB(value);
|
|
|
|
|
break;
|
2009-03-07 08:35:01 +00:00
|
|
|
|
2021-02-28 13:53:32 -08:00
|
|
|
case VCD_LO:
|
2021-02-08 15:22:10 -08:00
|
|
|
state->vtx_desc.low.Hex = value;
|
2021-02-28 13:53:32 -08:00
|
|
|
state->attr_dirty = BitSet32::AllTrue(CP_NUM_VAT_REG);
|
2016-06-24 10:43:46 +02:00
|
|
|
state->bases_dirty = true;
|
|
|
|
|
break;
|
2009-03-07 08:35:01 +00:00
|
|
|
|
2021-02-28 13:53:32 -08:00
|
|
|
case VCD_HI:
|
2021-02-08 15:22:10 -08:00
|
|
|
state->vtx_desc.high.Hex = value;
|
2021-02-28 13:53:32 -08:00
|
|
|
state->attr_dirty = BitSet32::AllTrue(CP_NUM_VAT_REG);
|
2016-06-24 10:43:46 +02:00
|
|
|
state->bases_dirty = true;
|
|
|
|
|
break;
|
2009-03-07 08:35:01 +00:00
|
|
|
|
2021-02-28 13:53:32 -08:00
|
|
|
case CP_VAT_REG_A:
|
|
|
|
|
if ((sub_cmd - CP_VAT_REG_A) >= CP_NUM_VAT_REG)
|
|
|
|
|
WARN_LOG_FMT(VIDEO, "CP_VAT_REG_A: Invalid VAT {}", sub_cmd - CP_VAT_REG_A);
|
|
|
|
|
state->vtx_attr[sub_cmd & CP_VAT_MASK].g0.Hex = value;
|
|
|
|
|
state->attr_dirty[sub_cmd & CP_VAT_MASK] = true;
|
2016-06-24 10:43:46 +02:00
|
|
|
break;
|
2009-03-07 08:35:01 +00:00
|
|
|
|
2021-02-28 13:53:32 -08:00
|
|
|
case CP_VAT_REG_B:
|
|
|
|
|
if ((sub_cmd - CP_VAT_REG_B) >= CP_NUM_VAT_REG)
|
|
|
|
|
WARN_LOG_FMT(VIDEO, "CP_VAT_REG_B: Invalid VAT {}", sub_cmd - CP_VAT_REG_B);
|
|
|
|
|
state->vtx_attr[sub_cmd & CP_VAT_MASK].g1.Hex = value;
|
|
|
|
|
state->attr_dirty[sub_cmd & CP_VAT_MASK] = true;
|
2016-06-24 10:43:46 +02:00
|
|
|
break;
|
2009-03-07 08:35:01 +00:00
|
|
|
|
2021-02-28 13:53:32 -08:00
|
|
|
case CP_VAT_REG_C:
|
|
|
|
|
if ((sub_cmd - CP_VAT_REG_C) >= CP_NUM_VAT_REG)
|
|
|
|
|
WARN_LOG_FMT(VIDEO, "CP_VAT_REG_C: Invalid VAT {}", sub_cmd - CP_VAT_REG_C);
|
|
|
|
|
state->vtx_attr[sub_cmd & CP_VAT_MASK].g2.Hex = value;
|
|
|
|
|
state->attr_dirty[sub_cmd & CP_VAT_MASK] = true;
|
2016-06-24 10:43:46 +02:00
|
|
|
break;
|
2009-03-07 08:35:01 +00:00
|
|
|
|
2016-06-24 10:43:46 +02:00
|
|
|
// Pointers to vertex arrays in GC RAM
|
2021-02-28 13:53:32 -08:00
|
|
|
case ARRAY_BASE:
|
|
|
|
|
state->array_bases[sub_cmd & CP_ARRAY_MASK] =
|
|
|
|
|
value & CommandProcessor::GetPhysicalAddressMask();
|
2016-06-24 10:43:46 +02:00
|
|
|
state->bases_dirty = true;
|
|
|
|
|
break;
|
2009-03-07 08:35:01 +00:00
|
|
|
|
2021-02-28 13:53:32 -08:00
|
|
|
case ARRAY_STRIDE:
|
|
|
|
|
state->array_strides[sub_cmd & CP_ARRAY_MASK] = value & 0xFF;
|
2016-06-24 10:43:46 +02:00
|
|
|
break;
|
2021-02-28 13:53:32 -08:00
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
WARN_LOG_FMT(VIDEO, "Unknown CP register {:02x} set to {:08x}", sub_cmd, value);
|
2016-06-24 10:43:46 +02:00
|
|
|
}
|
2009-03-07 08:35:01 +00:00
|
|
|
}
|
|
|
|
|
|
2016-06-24 10:43:46 +02:00
|
|
|
void FillCPMemoryArray(u32* memory)
|
2011-03-27 02:55:08 +00:00
|
|
|
{
|
2021-02-28 13:53:32 -08:00
|
|
|
memory[MATINDEX_A] = g_main_cp_state.matrix_index_a.Hex;
|
|
|
|
|
memory[MATINDEX_B] = g_main_cp_state.matrix_index_b.Hex;
|
2021-02-08 15:22:10 -08:00
|
|
|
memory[VCD_LO] = g_main_cp_state.vtx_desc.low.Hex;
|
|
|
|
|
memory[VCD_HI] = g_main_cp_state.vtx_desc.high.Hex;
|
2011-03-27 02:55:08 +00:00
|
|
|
|
2021-02-28 13:53:32 -08:00
|
|
|
for (int i = 0; i < CP_NUM_VAT_REG; ++i)
|
2016-06-24 10:43:46 +02:00
|
|
|
{
|
2021-02-28 13:53:32 -08:00
|
|
|
memory[CP_VAT_REG_A + i] = g_main_cp_state.vtx_attr[i].g0.Hex;
|
|
|
|
|
memory[CP_VAT_REG_B + i] = g_main_cp_state.vtx_attr[i].g1.Hex;
|
|
|
|
|
memory[CP_VAT_REG_C + i] = g_main_cp_state.vtx_attr[i].g2.Hex;
|
2016-06-24 10:43:46 +02:00
|
|
|
}
|
2011-03-27 02:55:08 +00:00
|
|
|
|
2021-02-28 13:53:32 -08:00
|
|
|
for (int i = 0; i < CP_NUM_ARRAYS; ++i)
|
2016-06-24 10:43:46 +02:00
|
|
|
{
|
2021-02-28 13:53:32 -08:00
|
|
|
memory[ARRAY_BASE + i] = g_main_cp_state.array_bases[i];
|
|
|
|
|
memory[ARRAY_STRIDE + i] = g_main_cp_state.array_strides[i];
|
2016-06-24 10:43:46 +02:00
|
|
|
}
|
2011-03-27 02:55:08 +00:00
|
|
|
}
|