From 465dd47bdeebbcbb4765f9ea3151b146c7b22de2 Mon Sep 17 00:00:00 2001 From: arcum42 Date: Sat, 23 Oct 2010 08:15:39 +0000 Subject: [PATCH] GregMiscellaneous: zzogl-pg: Give VB its own header. Some changes to the Kick functions. git-svn-id: http://pcsx2.googlecode.com/svn/branches/GregMiscellaneous@3961 96395faa-99c1-11dd-bbfe-3dabce05a288 --- plugins/zerogs/opengl/Regs.cpp | 6 + plugins/zzogl-pg/opengl/CMakeLists.txt | 1 + plugins/zzogl-pg/opengl/GS.h | 44 +++-- plugins/zzogl-pg/opengl/HostMemory.cpp | 1 + .../opengl/Linux/zzogl-pg/zzogl-pg.cbp | 5 +- plugins/zzogl-pg/opengl/Regs.cpp | 47 +++--- plugins/zzogl-pg/opengl/ZZKick.cpp | 158 +++++++----------- plugins/zzogl-pg/opengl/ZZKick.h | 45 ++--- plugins/zzogl-pg/opengl/ZZoglCRTC.cpp | 4 +- plugins/zzogl-pg/opengl/ZZoglCreate.cpp | 5 +- plugins/zzogl-pg/opengl/ZZoglFlush.cpp | 10 +- plugins/zzogl-pg/opengl/ZZoglFlushHack.h | 1 + plugins/zzogl-pg/opengl/ZZoglSave.cpp | 2 +- plugins/zzogl-pg/opengl/ZZoglVB.cpp | 1 + plugins/zzogl-pg/opengl/ZZoglVB.h | 157 +++++++++++++++++ plugins/zzogl-pg/opengl/targets.cpp | 1 + plugins/zzogl-pg/opengl/targets.h | 140 +--------------- plugins/zzogl-pg/opengl/zerogs.cpp | 1 + 18 files changed, 333 insertions(+), 296 deletions(-) create mode 100644 plugins/zzogl-pg/opengl/ZZoglVB.h diff --git a/plugins/zerogs/opengl/Regs.cpp b/plugins/zerogs/opengl/Regs.cpp index 23a07bda52..5b7d38e12c 100644 --- a/plugins/zerogs/opengl/Regs.cpp +++ b/plugins/zerogs/opengl/Regs.cpp @@ -179,6 +179,8 @@ extern int g_PrevBitwiseTexX, g_PrevBitwiseTexY; void tex0Write(int i, u32 *data) { + if (!NoHighlights(i)) return; + u32 psm = (data[0] >> 20) & 0x3f; if( psm == 9 ) psm = 1; // hmm..., ffx intro menu @@ -340,6 +342,8 @@ __forceinline void testWrite(int i, u32 *data) __forceinline void clampWrite(int i, u32 *data) { + if (!NoHighlights(i)) return; + clampInfo& clamp = ZeroGS::vb[i].clamp; if( s_uClampData[i] != data[0] || ((clamp.minv>>8)|(clamp.maxv<<2)) != (data[1]&0x0fff) ) { @@ -500,6 +504,8 @@ void __fastcall GIFRegHandlerNOP(u32* data) void tex1Write(int i, u32* data) { + if (!NoHighlights(i)) return; + tex1Info& tex1 = ZeroGS::vb[i].tex1; if( conf.bilinear == 1 && (tex1.mmag != ((data[0] >> 5) & 0x1) || tex1.mmin != ((data[0] >> 6) & 0x7)) ) { diff --git a/plugins/zzogl-pg/opengl/CMakeLists.txt b/plugins/zzogl-pg/opengl/CMakeLists.txt index 88589615f9..349d67cc5f 100644 --- a/plugins/zzogl-pg/opengl/CMakeLists.txt +++ b/plugins/zzogl-pg/opengl/CMakeLists.txt @@ -105,6 +105,7 @@ set(zzoglHeaders ZZoglMath.h ZZoglShaders.h ZZoglShoots.h + ZZoglVB.h ) # zzogl S sources diff --git a/plugins/zzogl-pg/opengl/GS.h b/plugins/zzogl-pg/opengl/GS.h index 4381eefe04..34feaeaad5 100644 --- a/plugins/zzogl-pg/opengl/GS.h +++ b/plugins/zzogl-pg/opengl/GS.h @@ -40,6 +40,19 @@ struct Vector_16F // PS2 vertex +// Almost same as VertexGPU, controlled by prim.fst flags + +struct Vertex +{ + u16 x, y, f, resv0; // note: xy is 12d3 + u32 rgba; + u32 z; + float s, t, q; + // Texel coordinate of vertex. Used if prim.fst == 1 + // Bits 0-14 and 16-30 of UV + u16 u, v; +}; + struct VertexGPU { // gained from XYZ2, XYZ3, XYZF2, XYZF3, @@ -53,19 +66,26 @@ struct VertexGPU // Texture coordinates. S & T going from ST register (bits 0-31, and 32-63). // Q goes from RGBAQ register, bits 32-63 float s, t, q; -}; + + void move_x(Vertex v, int offset) + { + x = ((((int)v.x - offset) >> 1) & 0xffff); + } + + void move_y(Vertex v, int offset) + { + y = ((((int)v.y - offset) >> 1) & 0xffff); + } + + void move_z(Vertex v, int mask) + { + z = (mask == 0xffff) ? min((u32)0xffff, v.z) : v.z; + } -// Almost same as previous, controlled by prim.fst flags - -struct Vertex -{ - u16 x, y, f, resv0; // note: xy is 12d3 - u32 rgba; - u32 z; - float s, t, q; - // Texel coordinate of vertex. Used if prim.fst == 1 - // Bits 0-14 and 16-30 of UV - u16 u, v; + void move_fog(Vertex v) + { + f = ((s16)(v).f << 7) | 0x7f; + } }; extern GSconf conf; diff --git a/plugins/zzogl-pg/opengl/HostMemory.cpp b/plugins/zzogl-pg/opengl/HostMemory.cpp index ca79739f7d..a851612451 100644 --- a/plugins/zzogl-pg/opengl/HostMemory.cpp +++ b/plugins/zzogl-pg/opengl/HostMemory.cpp @@ -25,6 +25,7 @@ #include "Mem.h" #include "x86.h" #include "targets.h" +#include "ZZoglVB.h" // flush current vertices, call before setting new registers (the main render method) extern void Flush(int context); diff --git a/plugins/zzogl-pg/opengl/Linux/zzogl-pg/zzogl-pg.cbp b/plugins/zzogl-pg/opengl/Linux/zzogl-pg/zzogl-pg.cbp index 52beed068f..7e99bcdab6 100644 --- a/plugins/zzogl-pg/opengl/Linux/zzogl-pg/zzogl-pg.cbp +++ b/plugins/zzogl-pg/opengl/Linux/zzogl-pg/zzogl-pg.cbp @@ -98,8 +98,6 @@ - - @@ -145,6 +143,8 @@ + + @@ -164,6 +164,7 @@ +