2013-04-18 03:09:55 +00:00
|
|
|
// Copyright 2013 Dolphin Emulator Project
|
|
|
|
// Licensed under GPLv2
|
|
|
|
// Refer to the license.txt file included.
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-10 18:54:46 +00:00
|
|
|
#pragma once
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2009-02-15 13:45:03 +00:00
|
|
|
// Top vertex loaders
|
|
|
|
// Metroid Prime: P I16-flt N I16-s16 T0 I16-u16 T1 i16-flt
|
|
|
|
|
2010-03-05 12:04:09 +00:00
|
|
|
#include <algorithm>
|
2008-12-08 04:46:09 +00:00
|
|
|
#include <string>
|
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "Common/Common.h"
|
|
|
|
#include "Common/x64Emitter.h"
|
2009-02-28 16:33:59 +00:00
|
|
|
|
2014-02-17 10:18:15 +00:00
|
|
|
#include "VideoCommon/CPMemory.h"
|
|
|
|
#include "VideoCommon/DataReader.h"
|
|
|
|
#include "VideoCommon/NativeVertexFormat.h"
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-06-13 18:36:54 +00:00
|
|
|
#ifdef _M_X86
|
2014-02-23 14:14:27 +00:00
|
|
|
#ifndef __APPLE__
|
|
|
|
#define USE_VERTEX_LOADER_JIT
|
|
|
|
#endif
|
|
|
|
#endif
|
2008-12-19 21:24:52 +00:00
|
|
|
|
2014-07-08 13:58:25 +00:00
|
|
|
// They are used for the communication with the loader functions
|
|
|
|
extern int tcIndex;
|
|
|
|
extern int colIndex;
|
|
|
|
extern int colElements[2];
|
|
|
|
extern float posScale;
|
|
|
|
extern float tcScale[8];
|
|
|
|
|
2008-12-08 04:46:09 +00:00
|
|
|
class VertexLoaderUID
|
|
|
|
{
|
|
|
|
u32 vid[5];
|
2010-03-06 10:07:37 +00:00
|
|
|
size_t hash;
|
2008-12-08 04:46:09 +00:00
|
|
|
public:
|
2013-10-29 05:23:17 +00:00
|
|
|
VertexLoaderUID()
|
2013-04-24 13:21:54 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2014-07-23 23:12:12 +00:00
|
|
|
VertexLoaderUID(const TVtxDesc& vtx_desc, const VAT& vat)
|
2013-04-24 13:21:54 +00:00
|
|
|
{
|
2014-07-23 23:12:12 +00:00
|
|
|
vid[0] = vtx_desc.Hex & 0xFFFFFFFF;
|
|
|
|
vid[1] = vtx_desc.Hex >> 32;
|
|
|
|
vid[2] = vat.g0.Hex & ~VAT_0_FRACBITS;
|
|
|
|
vid[3] = vat.g1.Hex & ~VAT_1_FRACBITS;
|
|
|
|
vid[4] = vat.g2.Hex & ~VAT_2_FRACBITS;
|
2010-03-06 10:07:37 +00:00
|
|
|
hash = CalculateHash();
|
2008-12-08 04:46:09 +00:00
|
|
|
}
|
2013-04-24 13:21:54 +00:00
|
|
|
|
|
|
|
bool operator < (const VertexLoaderUID &other) const
|
|
|
|
{
|
2010-03-06 02:07:48 +00:00
|
|
|
// This is complex because of speed.
|
|
|
|
if (vid[0] < other.vid[0])
|
|
|
|
return true;
|
|
|
|
else if (vid[0] > other.vid[0])
|
|
|
|
return false;
|
2013-04-24 13:21:54 +00:00
|
|
|
|
|
|
|
for (int i = 1; i < 5; ++i)
|
|
|
|
{
|
2010-03-06 02:07:48 +00:00
|
|
|
if (vid[i] < other.vid[i])
|
|
|
|
return true;
|
|
|
|
else if (vid[i] > other.vid[i])
|
|
|
|
return false;
|
|
|
|
}
|
2013-04-24 13:21:54 +00:00
|
|
|
|
2010-03-06 02:07:48 +00:00
|
|
|
return false;
|
|
|
|
}
|
2013-04-24 13:21:54 +00:00
|
|
|
|
|
|
|
bool operator == (const VertexLoaderUID& rh) const
|
|
|
|
{
|
2010-03-06 10:07:37 +00:00
|
|
|
return hash == rh.hash && std::equal(vid, vid + sizeof(vid) / sizeof(vid[0]), rh.vid);
|
|
|
|
}
|
2013-04-24 13:21:54 +00:00
|
|
|
|
|
|
|
size_t GetHash() const
|
|
|
|
{
|
2010-03-06 10:07:37 +00:00
|
|
|
return hash;
|
|
|
|
}
|
2013-04-24 13:21:54 +00:00
|
|
|
|
2010-03-06 10:07:37 +00:00
|
|
|
private:
|
2013-04-24 13:21:54 +00:00
|
|
|
|
|
|
|
size_t CalculateHash()
|
|
|
|
{
|
2010-03-06 02:07:48 +00:00
|
|
|
size_t h = -1;
|
2013-04-24 13:21:54 +00:00
|
|
|
|
2013-10-29 05:09:01 +00:00
|
|
|
for (auto word : vid)
|
2013-04-24 13:21:54 +00:00
|
|
|
{
|
2013-10-29 05:09:01 +00:00
|
|
|
h = h * 137 + word;
|
2010-03-06 02:07:48 +00:00
|
|
|
}
|
2013-04-24 13:21:54 +00:00
|
|
|
|
2010-03-06 02:07:48 +00:00
|
|
|
return h;
|
|
|
|
}
|
2008-12-08 04:46:09 +00:00
|
|
|
};
|
|
|
|
|
2013-02-26 19:49:00 +00:00
|
|
|
// ARMTODO: This should be done in a better way
|
|
|
|
#ifndef _M_GENERIC
|
2014-04-09 06:22:52 +00:00
|
|
|
class VertexLoader : public Gen::X64CodeBlock
|
2013-02-26 19:49:00 +00:00
|
|
|
#else
|
|
|
|
class VertexLoader
|
|
|
|
#endif
|
2008-12-08 04:46:09 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
VertexLoader(const TVtxDesc &vtx_desc, const VAT &vtx_attr);
|
|
|
|
~VertexLoader();
|
|
|
|
|
|
|
|
int GetVertexSize() const {return m_VertexSize;}
|
2014-07-25 23:10:44 +00:00
|
|
|
u32 GetNativeComponents() const { return m_native_components; }
|
|
|
|
const PortableVertexDeclaration& GetNativeVertexDeclaration() const
|
|
|
|
{ return m_native_vtx_decl; }
|
2013-10-29 05:23:17 +00:00
|
|
|
|
2014-07-23 23:51:37 +00:00
|
|
|
void SetupRunVertices(const VAT& vat, int primitive, int const count);
|
|
|
|
void RunVertices(const VAT& vat, int primitive, int count);
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
// For debugging / profiling
|
2009-02-15 12:38:25 +00:00
|
|
|
void AppendToString(std::string *dest) const;
|
|
|
|
int GetNumLoadedVerts() const { return m_numLoadedVertices; }
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
int m_VertexSize; // number of bytes of a raw GC vertex. Computed by CompileVertexTranslator.
|
|
|
|
|
|
|
|
// GC vertex format
|
|
|
|
TVtxAttr m_VtxAttr; // VAT decoded into easy format
|
|
|
|
TVtxDesc m_VtxDesc; // Not really used currently - or well it is, but could be easily avoided.
|
|
|
|
|
|
|
|
// PC vertex format
|
2014-07-25 23:10:44 +00:00
|
|
|
u32 m_native_components;
|
|
|
|
PortableVertexDeclaration m_native_vtx_decl;
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2014-02-23 14:14:27 +00:00
|
|
|
#ifndef USE_VERTEX_LOADER_JIT
|
|
|
|
// Pipeline.
|
2008-12-08 04:46:09 +00:00
|
|
|
TPipelineFunction m_PipelineStages[64]; // TODO - figure out real max. it's lower.
|
|
|
|
int m_numPipelineStages;
|
2014-02-23 14:14:27 +00:00
|
|
|
#endif
|
2008-12-08 04:46:09 +00:00
|
|
|
|
2008-12-19 21:24:52 +00:00
|
|
|
const u8 *m_compiledCode;
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
int m_numLoadedVertices;
|
|
|
|
|
2014-07-23 23:25:23 +00:00
|
|
|
void SetVAT(const VAT& vat);
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
void CompileVertexTranslator();
|
2013-02-21 10:36:10 +00:00
|
|
|
void ConvertVertices(int count);
|
2008-12-08 04:46:09 +00:00
|
|
|
|
|
|
|
void WriteCall(TPipelineFunction);
|
2009-01-10 23:10:33 +00:00
|
|
|
|
2013-02-26 19:49:00 +00:00
|
|
|
#ifndef _M_GENERIC
|
2009-02-06 19:52:23 +00:00
|
|
|
void WriteGetVariable(int bits, Gen::OpArg dest, void *address);
|
|
|
|
void WriteSetVariable(int bits, void *address, Gen::OpArg dest);
|
2013-02-26 19:49:00 +00:00
|
|
|
#endif
|
2013-03-20 01:51:12 +00:00
|
|
|
};
|