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 @@
+
diff --git a/plugins/zzogl-pg/opengl/Regs.cpp b/plugins/zzogl-pg/opengl/Regs.cpp
index 5241352991..d0984acc19 100644
--- a/plugins/zzogl-pg/opengl/Regs.cpp
+++ b/plugins/zzogl-pg/opengl/Regs.cpp
@@ -23,6 +23,7 @@
#include "PS2Etypes.h"
#include "targets.h"
+#include "ZZoglVB.h"
#include "ZZKick.h"
#ifdef USE_OLD_REGS
@@ -95,11 +96,11 @@ void __gifCall GIFPackedRegHandlerXYZF2(const u32* data)
if (data[3] & 0x8000)
{
- KICK_VERTEX3();
+ ZZKick->KickVERTEX3();
}
else
{
- KICK_VERTEX2();
+ ZZKick->KickVERTEX2();
}
}
@@ -114,11 +115,11 @@ void __gifCall GIFPackedRegHandlerXYZ2(const u32* data)
if (data[3] & 0x8000)
{
- KICK_VERTEX3();
+ ZZKick->KickVERTEX3();
}
else
{
- KICK_VERTEX2();
+ ZZKick->KickVERTEX2();
}
}
@@ -146,6 +147,9 @@ void __gifCall GIFPackedRegHandlerNOP(const u32* data)
void tex0Write(int i, const u32 *data)
{
FUNCLOG
+
+ if (!NoHighlights(i)) return;
+
u32 psm = ZZOglGet_psm_TexBitsFix(data[0]);
if (m_Blocks[psm].bpp == 0)
@@ -274,6 +278,9 @@ __forceinline
void clampWrite(int i, const u32 *data)
{
FUNCLOG
+
+ if (!NoHighlights(i)) return;
+
clampInfo& clamp = vb[i].clamp;
if ((s_uClampData[i] != data[0]) || (((clamp.minv >> 8) | (clamp.maxv << 2)) != (data[1]&0x0fff)))
@@ -361,7 +368,7 @@ void __gifCall GIFRegHandlerXYZF2(const u32* data)
gs.gsvertex[gs.primIndex] = gs.vertexregs;
gs.primIndex = gs.primNext();
- KICK_VERTEX2();
+ ZZKick->KickVERTEX2();
}
void __gifCall GIFRegHandlerXYZ2(const u32* data)
@@ -373,24 +380,20 @@ void __gifCall GIFRegHandlerXYZ2(const u32* data)
gs.gsvertex[gs.primIndex] = gs.vertexregs;
gs.primIndex = gs.primNext();
- KICK_VERTEX2();
+ ZZKick->KickVERTEX2();
}
void __gifCall GIFRegHandlerTEX0_1(const u32* data)
{
FUNCLOG
-
- if (!NoHighlights(0)) return;
-
+
tex0Write(0, data);
}
void __gifCall GIFRegHandlerTEX0_2(const u32* data)
{
FUNCLOG
-
- if (!NoHighlights(1)) return;
-
+
tex0Write(1, data);
}
@@ -398,8 +401,6 @@ void __gifCall GIFRegHandlerCLAMP_1(const u32* data)
{
FUNCLOG
- if (!NoHighlights(0)) return;
-
clampWrite(0, data);
}
@@ -407,8 +408,6 @@ void __gifCall GIFRegHandlerCLAMP_2(const u32* data)
{
FUNCLOG
- if (!NoHighlights(1)) return;
-
clampWrite(1, data);
}
@@ -429,7 +428,7 @@ void __gifCall GIFRegHandlerXYZF3(const u32* data)
gs.gsvertex[gs.primIndex] = gs.vertexregs;
gs.primIndex = gs.primNext();
- KICK_VERTEX3();
+ ZZKick->KickVERTEX3();
}
void __gifCall GIFRegHandlerXYZ3(const u32* data)
@@ -441,7 +440,7 @@ void __gifCall GIFRegHandlerXYZ3(const u32* data)
gs.gsvertex[gs.primIndex] = gs.vertexregs;
gs.primIndex = gs.primNext();
- KICK_VERTEX3();
+ ZZKick->KickVERTEX3();
}
void __gifCall GIFRegHandlerNOP(const u32* data)
@@ -452,6 +451,9 @@ void __gifCall GIFRegHandlerNOP(const u32* data)
void tex1Write(int i, const u32* data)
{
FUNCLOG
+
+ if (!NoHighlights(i)) return;
+
tex1Info& tex1 = vb[i].tex1;
if (conf.bilinear == 1 && (tex1.mmag != ((data[0] >> 5) & 0x1) || tex1.mmin != ((data[0] >> 6) & 0x7)))
@@ -461,7 +463,6 @@ void tex1Write(int i, const u32* data)
}
tex1.lcm = (data[0]) & 0x1;
-
tex1.mxl = (data[0] >> 2) & 0x7;
tex1.mmag = (data[0] >> 5) & 0x1;
tex1.mmin = (data[0] >> 6) & 0x7;
@@ -473,9 +474,7 @@ void tex1Write(int i, const u32* data)
void __gifCall GIFRegHandlerTEX1_1(const u32* data)
{
FUNCLOG
-
- if (!NoHighlights(0)) return;
-
+
tex1Write(0, data);
}
@@ -483,20 +482,20 @@ void __gifCall GIFRegHandlerTEX1_2(const u32* data)
{
FUNCLOG
- if (!NoHighlights(1)) return;
-
tex1Write(1, data);
}
void __gifCall GIFRegHandlerTEX2_1(const u32* data)
{
FUNCLOG
+
tex2Write(0, data);
}
void __gifCall GIFRegHandlerTEX2_2(const u32* data)
{
FUNCLOG
+
tex2Write(1, data);
}
diff --git a/plugins/zzogl-pg/opengl/ZZKick.cpp b/plugins/zzogl-pg/opengl/ZZKick.cpp
index 16d478e6fe..87ffc36798 100644
--- a/plugins/zzogl-pg/opengl/ZZKick.cpp
+++ b/plugins/zzogl-pg/opengl/ZZKick.cpp
@@ -18,7 +18,9 @@
*/
#include "ZZKick.h"
-#include "targets.h"
+#include "ZZoglVB.h"
+
+Kick* ZZKick;
const u32 g_primmult[8] = { 1, 2, 2, 3, 3, 3, 2, 0xff };
const u32 g_primsub[8] = { 1, 2, 1, 3, 1, 1, 2, 0 };
@@ -27,35 +29,6 @@ const GLenum primtype[8] = { GL_POINTS, GL_LINES, GL_LINES, GL_TRIANGLES, GL_TRI
extern float fiTexWidth[2], fiTexHeight[2]; // current tex width and height
-DrawFn drawfn[8] = { KickDummy, KickDummy, KickDummy, KickDummy,
- KickDummy, KickDummy, KickDummy, KickDummy
- };
-
-void init_drawfn()
-{
- drawfn[0] = KickPoint;
- drawfn[1] = KickLine;
- drawfn[2] = KickLine;
- drawfn[3] = KickTriangle;
- drawfn[4] = KickTriangle;
- drawfn[5] = KickTriangleFan;
- drawfn[6] = KickSprite;
- drawfn[7] = KickDummy;
-}
-
-void clear_drawfn()
-{
-
- drawfn[0] = KickDummy;
- drawfn[1] = KickDummy;
- drawfn[2] = KickDummy;
- drawfn[3] = KickDummy;
- drawfn[4] = KickDummy;
- drawfn[5] = KickDummy;
- drawfn[6] = KickDummy;
- drawfn[7] = KickDummy;
-}
-
// Still thinking about the best place to put this.
// called on a primitive switch
void Prim()
@@ -70,16 +43,6 @@ void Prim()
curvb.curprim.prim = prim->prim;
}
-__forceinline void MOVZ(VertexGPU *p, u32 gsz, const VB& curvb)
-{
- p->z = (curvb.zprimmask == 0xffff) ? min((u32)0xffff, gsz) : gsz;
-}
-
-__forceinline void MOVFOG(VertexGPU *p, Vertex gsf)
-{
- p->f = ((s16)(gsf).f << 7) | 0x7f;
-}
-
// return true if triangle SHOULD be painted.
// Hackish and should be replaced.
bool __forceinline NoHighlights(int i)
@@ -100,19 +63,19 @@ bool __forceinline NoHighlights(int i)
return (!(conf.settings().xenosaga_spec) || !vb[i].zbuf.zmsk || prim->iip) ;
}
-void __forceinline KICK_VERTEX2()
+void __forceinline Kick::KickVERTEX2()
{
FUNCLOG
if (++gs.primC >= (int)g_primmult[prim->prim])
{
- if (NoHighlights(prim->ctxt)) (*drawfn[prim->prim])();
+ if (NoHighlights(prim->ctxt)) ZZKick->fn(prim->prim);
gs.primC -= g_primsub[prim->prim];
}
}
-void __forceinline KICK_VERTEX3()
+void __forceinline Kick::KickVERTEX3()
{
FUNCLOG
@@ -123,50 +86,40 @@ void __forceinline KICK_VERTEX3()
if (prim->prim == 5)
{
/* tri fans need special processing */
- if (gs.nTriFanVert == gs.primIndex)
- gs.primIndex = gs.primNext();
+ if (gs.nTriFanVert == gs.primIndex) gs.primIndex = gs.primNext();
}
}
}
-void __forceinline KickVertex(bool adc)
+void __forceinline Kick::KickVertex(bool adc)
{
FUNCLOG
if (++gs.primC >= (int)g_primmult[prim->prim])
{
- if (!adc && NoHighlights(prim->ctxt)) (*drawfn[prim->prim])();
+ if (!adc && NoHighlights(prim->ctxt)) fn(prim->prim);
gs.primC -= g_primsub[prim->prim];
if (adc && prim->prim == 5)
{
/* tri fans need special processing */
- if (gs.nTriFanVert == gs.primIndex)
- gs.primIndex = gs.primNext();
+ if (gs.nTriFanVert == gs.primIndex) gs.primIndex = gs.primNext();
}
}
}
-
-inline void SET_VERTEX(VertexGPU *p, int Index, const VB& curvb)
+inline void Kick::SET_VERTEX(VertexGPU *p, int i)
{
- int index = Index;
- p->x = ((((int)gs.gsvertex[index].x - curvb.offset.x) >> 1) & 0xffff);
- p->y = ((((int)gs.gsvertex[index].y - curvb.offset.y) >> 1) & 0xffff);
- p->f = ((s16)gs.gsvertex[index].f << 7) | 0x7f;
+ p->move_x(gs.gsvertex[i], vb[prim->ctxt].offset.x);
+ p->move_y(gs.gsvertex[i], vb[prim->ctxt].offset.y);
+ p->move_z(gs.gsvertex[i], vb[prim->ctxt].zprimmask);
+ p->move_fog(gs.gsvertex[i]);
- MOVZ(p, gs.gsvertex[index].z, curvb);
-
- p->rgba = prim->iip ? gs.gsvertex[index].rgba : gs.rgba;
-
-// This code is somehow incorrect
-// if ((gs.texa.aem) && ((p->rgba & 0xffffff ) == 0))
-// p->rgba = 0;
+ p->rgba = prim->iip ? gs.gsvertex[i].rgba : gs.rgba;
if (conf.settings().texa)
{
- u32 B = ((p->rgba & 0xfe000000) >> 1) +
- (0x01000000 * curvb.fba.fba) ;
+ u32 B = ((p->rgba & 0xfe000000) >> 1) + (0x01000000 * vb[prim->ctxt].fba.fba);
p->rgba = (p->rgba & 0xffffff) + B;
}
@@ -174,20 +127,20 @@ inline void SET_VERTEX(VertexGPU *p, int Index, const VB& curvb)
{
if (prim->fst)
{
- p->s = (float)gs.gsvertex[index].u * fiTexWidth[prim->ctxt];
- p->t = (float)gs.gsvertex[index].v * fiTexHeight[prim->ctxt];
+ p->s = (float)gs.gsvertex[i].u * fiTexWidth[prim->ctxt];
+ p->t = (float)gs.gsvertex[i].v * fiTexHeight[prim->ctxt];
p->q = 1;
}
else
{
- p->s = gs.gsvertex[index].s;
- p->t = gs.gsvertex[index].t;
- p->q = gs.gsvertex[index].q;
+ p->s = gs.gsvertex[i].s;
+ p->t = gs.gsvertex[i].t;
+ p->q = gs.gsvertex[i].q;
}
}
}
-static __forceinline void OUTPUT_VERT(VertexGPU vert, u32 id)
+__forceinline void Kick::OUTPUT_VERT(VertexGPU vert, u32 id)
{
#ifdef WRITE_PRIM_LOGS
ZZLog::Prim_Log("%c%d(%d): xyzf=(%4d,%4d,0x%x,%3d), rgba=0x%8.8x, stq = (%2.5f,%2.5f,%2.5f)\n",
@@ -196,7 +149,22 @@ static __forceinline void OUTPUT_VERT(VertexGPU vert, u32 id)
#endif
}
-void KickPoint()
+void Kick::fn(u32 i)
+{
+ switch (i)
+ {
+ case 0: Point(); break;
+ case 1: Line(); break;
+ case 2: Line(); break;
+ case 3: Triangle(); break;
+ case 4: Triangle(); break;
+ case 5: TriangleFan(); break;
+ case 6: Sprite(); break;
+ default: Dummy(); break;
+ }
+}
+
+void Kick::Point()
{
FUNCLOG
assert(gs.primC >= 1);
@@ -216,13 +184,13 @@ void KickPoint()
int last = gs.primNext(2);
VertexGPU* p = curvb.pBufferData + curvb.nCount;
- SET_VERTEX(&p[0], last, curvb);
+ SET_VERTEX(&p[0], last);
curvb.nCount++;
OUTPUT_VERT(p[0], 0);
}
-void KickLine()
+void Kick::Line()
{
FUNCLOG
assert(gs.primC >= 2);
@@ -242,8 +210,8 @@ void KickLine()
int last = gs.primNext(2);
VertexGPU* p = curvb.pBufferData + curvb.nCount;
- SET_VERTEX(&p[0], next, curvb);
- SET_VERTEX(&p[1], last, curvb);
+ SET_VERTEX(&p[0], next);
+ SET_VERTEX(&p[1], last);
curvb.nCount += 2;
@@ -251,7 +219,7 @@ void KickLine()
OUTPUT_VERT(p[1], 1);
}
-void KickTriangle()
+void Kick::Triangle()
{
FUNCLOG
assert(gs.primC >= 3);
@@ -268,9 +236,9 @@ void KickTriangle()
curvb.NotifyWrite(3);
VertexGPU* p = curvb.pBufferData + curvb.nCount;
- SET_VERTEX(&p[0], 0, curvb);
- SET_VERTEX(&p[1], 1, curvb);
- SET_VERTEX(&p[2], 2, curvb);
+ SET_VERTEX(&p[0], 0);
+ SET_VERTEX(&p[1], 1);
+ SET_VERTEX(&p[2], 2);
curvb.nCount += 3;
@@ -279,7 +247,7 @@ void KickTriangle()
OUTPUT_VERT(p[2], 2);
}
-void KickTriangleFan()
+void Kick::TriangleFan()
{
FUNCLOG
assert(gs.primC >= 3);
@@ -296,9 +264,9 @@ void KickTriangleFan()
curvb.NotifyWrite(3);
VertexGPU* p = curvb.pBufferData + curvb.nCount;
- SET_VERTEX(&p[0], 0, curvb);
- SET_VERTEX(&p[1], 1, curvb);
- SET_VERTEX(&p[2], 2, curvb);
+ SET_VERTEX(&p[0], 0);
+ SET_VERTEX(&p[1], 1);
+ SET_VERTEX(&p[2], 2);
curvb.nCount += 3;
@@ -311,14 +279,14 @@ void KickTriangleFan()
OUTPUT_VERT(p[2], 2);
}
-void SetKickVertex(VertexGPU *p, Vertex v, int next, const VB& curvb)
+void Kick::SetKickVertex(VertexGPU *p, Vertex v, int next)
{
- SET_VERTEX(p, next, curvb);
- MOVZ(p, v.z, curvb);
- MOVFOG(p, v);
+ SET_VERTEX(p, next);
+ p->move_z(v, vb[prim->ctxt].zprimmask);
+ p->move_fog(v);
}
-void KickSprite()
+void Kick::Sprite()
{
FUNCLOG
assert(gs.primC >= 2);
@@ -346,16 +314,16 @@ void KickSprite()
VertexGPU* p = curvb.pBufferData + curvb.nCount;
- SetKickVertex(&p[0], gs.gsvertex[last], next, curvb);
- SetKickVertex(&p[3], gs.gsvertex[last], next, curvb);
- SetKickVertex(&p[1], gs.gsvertex[last], last, curvb);
- SetKickVertex(&p[4], gs.gsvertex[last], last, curvb);
- SetKickVertex(&p[2], gs.gsvertex[last], next, curvb);
+ SetKickVertex(&p[0], gs.gsvertex[last], next);
+ SetKickVertex(&p[3], gs.gsvertex[last], next);
+ SetKickVertex(&p[1], gs.gsvertex[last], last);
+ SetKickVertex(&p[4], gs.gsvertex[last], last);
+ SetKickVertex(&p[2], gs.gsvertex[last], next);
p[2].s = p[1].s;
p[2].x = p[1].x;
- SetKickVertex(&p[5], gs.gsvertex[last], last, curvb);
+ SetKickVertex(&p[5], gs.gsvertex[last], last);
p[5].s = p[0].s;
p[5].x = p[0].x;
@@ -366,7 +334,7 @@ void KickSprite()
OUTPUT_VERT(p[1], 1);
}
-void KickDummy()
+void Kick::Dummy()
{
FUNCLOG
//ZZLog::Greg_Log("Kicking bad primitive: %.8x\n", *(u32*)prim);
diff --git a/plugins/zzogl-pg/opengl/ZZKick.h b/plugins/zzogl-pg/opengl/ZZKick.h
index 5ad9763a5a..fb56a9d898 100644
--- a/plugins/zzogl-pg/opengl/ZZKick.h
+++ b/plugins/zzogl-pg/opengl/ZZKick.h
@@ -20,30 +20,33 @@
#ifndef ZZKICK_H_INCLUDED
#define ZZKICK_H_INCLUDED
+#include "Util.h"
#include "GS.h"
-// visible members
-typedef void (*DrawFn)();
-extern DrawFn drawfn[8];
-
-// Older Kick Vertex functions.
-void __forceinline KICK_VERTEX2();
-void __forceinline KICK_VERTEX3();
-
-// Newer version.
-extern void __forceinline KickVertex(bool adc);
-
extern bool __forceinline NoHighlights(int i);
-extern void init_drawfn();
-extern void clear_drawfn();
-
-extern void KickPoint();
-extern void KickLine();
-extern void KickTriangle();
-extern void KickTriangleFan();
-extern void KickSprite();
-extern void KickDummy();
-
+class Kick
+{
+ private:
+ void SET_VERTEX(VertexGPU *p, int i);
+ void SetKickVertex(VertexGPU *p, Vertex v, int next);
+ void OUTPUT_VERT(VertexGPU vert, u32 id);
+ public:
+ Kick() { }
+ ~Kick() { }
+
+ void KickVertex(bool adc);
+ void KickVERTEX2();
+ void KickVERTEX3();
+
+ void fn(u32 i);
+ void Point();
+ void Line();
+ void Triangle();
+ void TriangleFan();
+ void Sprite();
+ void Dummy();
+};
+extern Kick* ZZKick;
#endif // ZZKICK_H_INCLUDED
diff --git a/plugins/zzogl-pg/opengl/ZZoglCRTC.cpp b/plugins/zzogl-pg/opengl/ZZoglCRTC.cpp
index 6c1060944d..ed004382a9 100644
--- a/plugins/zzogl-pg/opengl/ZZoglCRTC.cpp
+++ b/plugins/zzogl-pg/opengl/ZZoglCRTC.cpp
@@ -28,6 +28,7 @@
#include "ZZKick.h"
#include "rasterfont.h" // simple font
#include
+#include "ZZoglVB.h"
//------------------ Defines
#if !defined(ZEROGS_DEVBUILD)
@@ -704,7 +705,8 @@ void ZZReset()
ZZGSStateReset();
ZZDestroy();
- clear_drawfn();
+ //clear_drawfn();
+ if (ZZKick != NULL) delete ZZKick;
}
// If needed reset
diff --git a/plugins/zzogl-pg/opengl/ZZoglCreate.cpp b/plugins/zzogl-pg/opengl/ZZoglCreate.cpp
index 32a4d341ab..1a072a31a0 100644
--- a/plugins/zzogl-pg/opengl/ZZoglCreate.cpp
+++ b/plugins/zzogl-pg/opengl/ZZoglCreate.cpp
@@ -28,6 +28,7 @@
#include "targets.h"
#include "rasterfont.h" // simple font
#include "ZZKick.h"
+#include "ZZoglVB.h"
// This include for windows resource file with Shaders
#ifdef _WIN32
@@ -507,7 +508,9 @@ bool ZZCreate(int _width, int _height)
if (err != GL_NO_ERROR) bSuccess = false;
// init draw fns
- init_drawfn();
+ //init_drawfn();
+ if (ZZKick != NULL) delete ZZKick;
+ ZZKick = new Kick;
SetAA(conf.aa);
diff --git a/plugins/zzogl-pg/opengl/ZZoglFlush.cpp b/plugins/zzogl-pg/opengl/ZZoglFlush.cpp
index e7d3589c83..1c573a1ad6 100644
--- a/plugins/zzogl-pg/opengl/ZZoglFlush.cpp
+++ b/plugins/zzogl-pg/opengl/ZZoglFlush.cpp
@@ -464,18 +464,18 @@ inline CRenderTarget* FlushReGetTarget(int& tbw, int& tbp0, int& tpsm, VB& curvb
if ((ptextarg == NULL) && (tpsm == PSMT8) && (conf.settings().reget))
{
// check for targets with half the width. Break Valkyrie Chronicles
- ptextarg = s_RTs.GetTarg(tbp0, tbw / 2, curvb);
+ ptextarg = s_RTs.GetTarg(tbp0, tbw / 2);
if (ptextarg == NULL)
{
tbp0 &= ~0x7ff;
- ptextarg = s_RTs.GetTarg(tbp0, tbw / 2, curvb); // mgs3 hack
+ ptextarg = s_RTs.GetTarg(tbp0, tbw / 2); // mgs3 hack
if (ptextarg == NULL)
{
// check the next level (mgs3)
tbp0 &= ~0xfff;
- ptextarg = s_RTs.GetTarg(tbp0, tbw / 2, curvb); // mgs3 hack
+ ptextarg = s_RTs.GetTarg(tbp0, tbw / 2); // mgs3 hack
}
if (ptextarg != NULL && ptextarg->start > tbp0*256)
@@ -490,7 +490,7 @@ inline CRenderTarget* FlushReGetTarget(int& tbw, int& tbp0, int& tpsm, VB& curvb
if (PSMT_ISZTEX(tpsm) && (ptextarg == NULL))
{
// try depth
- ptextarg = s_DepthRTs.GetTarg(tbp0, tbw, curvb);
+ ptextarg = s_DepthRTs.GetTarg(tbp0, tbw);
}
if ((ptextarg == NULL) && (conf.settings().texture_targs))
@@ -556,7 +556,7 @@ inline CRenderTarget* FlushGetTarget(VB& curvb)
tpsm = curvb.tex0.psm;
}
- ptextarg = s_RTs.GetTarg(tbp0, tbw, curvb);
+ ptextarg = s_RTs.GetTarg(tbp0, tbw);
if (ptextarg == NULL)
ptextarg = FlushReGetTarget(tbw, tbp0, tpsm, curvb);
diff --git a/plugins/zzogl-pg/opengl/ZZoglFlushHack.h b/plugins/zzogl-pg/opengl/ZZoglFlushHack.h
index 2e05604baa..a23572e9e2 100644
--- a/plugins/zzogl-pg/opengl/ZZoglFlushHack.h
+++ b/plugins/zzogl-pg/opengl/ZZoglFlushHack.h
@@ -28,6 +28,7 @@
#include "GS.h"
#include "targets.h"
+#include "ZZoglVB.h"
extern int g_SkipFlushFrame;
diff --git a/plugins/zzogl-pg/opengl/ZZoglSave.cpp b/plugins/zzogl-pg/opengl/ZZoglSave.cpp
index 32d2a5d7e0..e0b52e232a 100644
--- a/plugins/zzogl-pg/opengl/ZZoglSave.cpp
+++ b/plugins/zzogl-pg/opengl/ZZoglSave.cpp
@@ -20,7 +20,7 @@
// Save and Load.
//------------------ Includes
-#include "targets.h"
+#include "ZZoglVB.h"
extern void ZZGSStateReset();
//----------------------- Defines
diff --git a/plugins/zzogl-pg/opengl/ZZoglVB.cpp b/plugins/zzogl-pg/opengl/ZZoglVB.cpp
index 4621de7666..5545d8f7a7 100644
--- a/plugins/zzogl-pg/opengl/ZZoglVB.cpp
+++ b/plugins/zzogl-pg/opengl/ZZoglVB.cpp
@@ -22,6 +22,7 @@
//------------------- Includes
#include "targets.h"
+#include "ZZoglVB.h"
#include "GS.h"
#include "Mem.h"
extern float fiTexWidth[2], fiTexHeight[2]; // current tex width and height
diff --git a/plugins/zzogl-pg/opengl/ZZoglVB.h b/plugins/zzogl-pg/opengl/ZZoglVB.h
new file mode 100644
index 0000000000..d0f2f6d521
--- /dev/null
+++ b/plugins/zzogl-pg/opengl/ZZoglVB.h
@@ -0,0 +1,157 @@
+/* ZZ Open GL graphics plugin
+ * Copyright (c)2009-2010 zeydlitz@gmail.com, arcum42@gmail.com
+ * Based on Zerofrog's ZeroGS KOSMOS (c)2005-2008
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
+ */
+
+// Zerogs:VB implementation.
+// VB stands for Visual Buffer, as I think
+
+#ifndef ZZOGLVB_H_INCLUDED
+#define ZZOGLVB_H_INCLUDED
+
+#include "targets.h"
+
+extern const GLenum primtype[8];
+
+struct VB
+{
+ VB();
+ ~VB();
+
+ void Destroy();
+
+ inline bool CheckPrim()
+ {
+ static const int PRIMMASK = 0x0e; // for now ignore 0x10 (AA)
+
+ if ((PRIMMASK & prim->_val) != (PRIMMASK & curprim._val) || primtype[prim->prim] != primtype[curprim.prim])
+ return nCount > 0;
+
+ return false;
+ }
+
+ void CheckFrame(int tbp);
+
+ // context specific state
+ Point offset;
+ Rect2 scissor;
+ tex0Info tex0;
+ tex1Info tex1;
+ miptbpInfo miptbp0;
+ miptbpInfo miptbp1;
+ alphaInfo alpha;
+ fbaInfo fba;
+ clampInfo clamp;
+ pixTest test;
+ u32 ptexClamp[2]; // textures for x and y dir region clamping
+
+public:
+ void FlushTexData();
+ inline int CheckFrameAddConstraints(int tbp);
+ inline void CheckScissors(int maxpos);
+ inline void CheckFrame32bitRes(int maxpos);
+ inline int FindMinimalMemoryConstrain(int tbp, int maxpos);
+ inline int FindZbufferMemoryConstrain(int tbp, int maxpos);
+ inline int FindMinimalHeightConstrain(int maxpos);
+
+ inline int CheckFrameResolveRender(int tbp);
+ inline void CheckFrame16vs32Conversion();
+ inline int CheckFrameResolveDepth(int tbp);
+
+ inline void FlushTexUnchangedClutDontUpdate() ;
+ inline void FlushTexClutDontUpdate() ;
+ inline void FlushTexClutting() ;
+ inline void FlushTexSetNewVars(u32 psm) ;
+
+ // notify VB that nVerts need to be written to pbuf
+ inline void NotifyWrite(int nVerts)
+ {
+ assert(pBufferData != NULL && nCount <= nNumVertices && nVerts > 0);
+
+ if (nCount + nVerts > nNumVertices)
+ {
+ // recreate except with a bigger count
+ VertexGPU* ptemp = (VertexGPU*)_aligned_malloc(sizeof(VertexGPU) * nNumVertices * 2, 256);
+ memcpy_amd(ptemp, pBufferData, sizeof(VertexGPU) * nCount);
+ nNumVertices *= 2;
+ assert(nCount + nVerts <= nNumVertices);
+ _aligned_free(pBufferData);
+ pBufferData = ptemp;
+ }
+ }
+
+ void Init(int nVerts)
+ {
+ if (pBufferData == NULL && nVerts > 0)
+ {
+ pBufferData = (VertexGPU*)_aligned_malloc(sizeof(VertexGPU) * nVerts, 256);
+ nNumVertices = nVerts;
+ }
+
+ nCount = 0;
+ }
+
+ u8 bNeedFrameCheck;
+ u8 bNeedZCheck;
+ u8 bNeedTexCheck;
+ u8 dummy0;
+
+ union
+ {
+ struct
+ {
+ u8 bTexConstsSync; // only pixel shader constants that context owns
+ u8 bVarsTexSync; // texture info
+ u8 bVarsSetTarg;
+ u8 dummy1;
+ };
+
+ u32 bSyncVars;
+ };
+
+ int ictx;
+ VertexGPU* pBufferData; // current allocated data
+
+ int nNumVertices; // size of pBufferData in terms of VertexGPU objects
+ int nCount;
+ primInfo curprim; // the previous prim the current buffers are set to
+
+ zbufInfo zbuf;
+ frameInfo gsfb; // the real info set by FRAME cmd
+ frameInfo frame;
+ int zprimmask; // zmask for incoming points
+
+union
+{
+ u32 uCurTex0Data[2]; // current tex0 data
+ GIFRegTEX0 uCurTex0;
+};
+ u32 uNextTex0Data[2]; // tex0 data that has to be applied if bNeedTexCheck is 1
+
+ //int nFrameHeights[8]; // frame heights for the past frame changes
+ int nNextFrameHeight;
+
+ CMemoryTarget* pmemtarg; // the current mem target set
+ CRenderTarget* prndr;
+ CDepthTarget* pdepth;
+
+};
+
+// VB variables
+extern VB vb[2];
+
+#endif // ZZOGLVB_H_INCLUDED
diff --git a/plugins/zzogl-pg/opengl/targets.cpp b/plugins/zzogl-pg/opengl/targets.cpp
index 556f29da73..9e75a74f19 100644
--- a/plugins/zzogl-pg/opengl/targets.cpp
+++ b/plugins/zzogl-pg/opengl/targets.cpp
@@ -27,6 +27,7 @@
#include "ZZoglShaders.h"
#include "ZZClut.h"
#include
+#include "ZZoglVB.h"
#ifdef ZEROGS_SSE2
#include
diff --git a/plugins/zzogl-pg/opengl/targets.h b/plugins/zzogl-pg/opengl/targets.h
index 7943681489..2cafd3f264 100644
--- a/plugins/zzogl-pg/opengl/targets.h
+++ b/plugins/zzogl-pg/opengl/targets.h
@@ -26,6 +26,7 @@
#include