ppsspp/GPU/GPUState.h

311 lines
6.4 KiB
C
Raw Normal View History

2012-11-01 15:19:01 +00:00
// Copyright (c) 2012- PPSSPP Project.
// 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, version 2.0 or later versions.
2012-11-01 15:19:01 +00:00
// 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 2.0 for more details.
// A copy of the GPL 2.0 should have been included with the program.
// If not, see http://www.gnu.org/licenses/
// Official git repository and contact information can be found at
// https://github.com/hrydgard/ppsspp and http://www.ppsspp.org/.
#pragma once
#include "../Globals.h"
2012-11-26 10:38:39 +00:00
#include "../native/gfx/gl_common.h"
#include "ge_constants.h"
#include <cstring>
2012-11-01 15:19:01 +00:00
struct GPUgstate
{
// Getting rid of this ugly union in favor of the accessor functions
// might be a good idea....
2012-11-01 15:19:01 +00:00
union
{
u32 cmdmem[256];
struct
{
u32 nop,
vaddr,
2012-11-01 15:19:01 +00:00
iaddr,
pad00,
prim,
bezier,
spline,
boundBox,
jump,
bjump,
call,
ret,
end,
pad01,
signal,
finish,
base,
pad02,
vertType,
offsetAddr,
origin,
region1,
region2,
lightingEnable,
lightEnable[4],
clipEnable,
cullfaceEnable,
textureMapEnable,
fogEnable,
ditherEnable,
alphaBlendEnable,
alphaTestEnable,
zTestEnable,
stencilTestEnable,
antiAliasEnable,
patchCullEnable,
colorTestEnable,
logicOpEnable,
pad03,
boneMatrixNumber,
boneMatrixData,
morphwgt[8], //dont use
2012-12-28 18:33:26 +00:00
pad04[2],
patchdivision,
patchprimitive,
patchfacing,
pad04_a,
2012-11-01 15:19:01 +00:00
2012-12-28 18:33:26 +00:00
worldmtxnum, //0x3A
worldmtxdata, //0x3B
2012-11-01 15:19:01 +00:00
viewmtxnum, //0x3C
viewmtxdata,
projmtxnum,
projmtxdata,
texmtxnum,
texmtxdata,
viewportx1,
viewporty1,
viewportz1,
viewportx2,
viewporty2,
viewportz2,
texscaleu,
texscalev,
texoffsetu,
texoffsetv,
offsetx,
offsety,
pad111[2],
lmode,
reversenormals,
pad222,
materialupdate,
materialemissive,
materialambient,
materialdiffuse,
materialspecular,
materialalpha,
2012-11-25 17:12:20 +00:00
pad333[2],
2012-11-01 15:19:01 +00:00
materialspecularcoef,
ambientcolor,
ambientalpha,
colormodel,
ltype[4],
lpos[12],
ldir[12],
latt[12],
lconv[4],
lcutoff[4],
lcolor[12],
cullmode,
fbptr,
fbwidth,
zbptr,
zbwidth,
texaddr[8],
texbufwidth[8],
clutaddr,
clutaddrupper,
transfersrc,
transfersrcw,
transferdst,
transferdstw,
padxxx[2],
texsize[8],
texmapmode,
texshade,
texmode,
texformat,
loadclut,
clutformat,
texfilter,
texwrap,
padxxxxx,
texfunc,
texenvcolor,
texflush,
texsync,
fog1,
fog2,
fogcolor,
texlodslope,
padxxxxxx,
framebufpixformat,
clearmode,
scissor1,
scissor2,
minz,
maxz,
colortest,
colorref,
colormask,
alphatest,
stenciltest,
stencilop,
ztestfunc,
blend,
blendfixa,
blendfixb,
dith1,
dith2,
dith3,
dith4,
lop,
zmsk,
pmsk1,
pmsk2,
transferstart,
transfersrcpos,
transferdstpos,
2012-12-17 18:04:19 +00:00
pad99,
transfersize; // 0xEE
2012-11-01 15:19:01 +00:00
2012-12-17 18:04:19 +00:00
u32 pad05[0xFF- 0xEE];
2012-11-01 15:19:01 +00:00
};
};
float worldMatrix[12];
float viewMatrix[12];
float projMatrix[16];
float tgenMatrix[12];
float boneMatrix[12 * 8]; // Eight bone matrices.
// Pixel Pipeline
bool isModeClear() const { return clearmode & 1; }
bool isCullEnabled() const { return cullfaceEnable & 1; }
int getCullMode() const { return cullmode & 1; }
int getBlendFuncA() const { return blend & 0xF; }
u32 getFixA() const { return blendfixa & 0xFFFFFF; }
u32 getFixB() const { return blendfixb & 0xFFFFFF; }
int getBlendFuncB() const { return (blend >> 4) & 0xF; }
int getBlendEq() const { return (blend >> 8) & 0x7; }
bool isDepthTestEnabled() const { return zTestEnable & 1; }
bool isDepthWriteEnabled() const { return !(zmsk & 1); }
int getDepthTestFunc() const { return ztestfunc & 0x7; }
bool isFogEnabled() const { return fogEnable & 1; }
// UV gen
int getUVGenMode() const { return texmapmode & 3;} // 2 bits
int getUVProjMode() const { return (texmapmode >> 8) & 3;} // 2 bits
int getUVLS0() const { return texshade & 0x3; } // 2 bits
int getUVLS1() const { return (texshade >> 8) & 0x3; } // 2 bits
// Vertex type
bool isModeThrough() const { return (vertType & GE_VTYPE_THROUGH) != 0; }
int getNumBoneWeights() const {
return 1 + ((vertType & GE_VTYPE_WEIGHTCOUNT_MASK) >> GE_VTYPE_WEIGHTCOUNT_SHIFT);
}
// Real data in the context ends here
};
2012-11-18 22:14:50 +00:00
// The rest is cached simplified/converted data for fast access.
// Does not need to be saved when saving/restoring context.
struct GPUStateCache
{
2012-11-01 15:19:01 +00:00
u32 vertexAddr;
u32 indexAddr;
bool textureChanged;
float uScale,vScale,zScale;
float uOff,vOff,zOff;
float zMin, zMax;
2012-11-01 15:19:01 +00:00
float lightpos[4][3];
float lightdir[4][3];
float lightatt[4][3];
float lightColor[3][4][3]; //Amtient Diffuse Specular
2012-11-01 15:19:01 +00:00
float morphWeights[8];
u32 curTextureWidth;
u32 curTextureHeight;
float vpWidth;
float vpHeight;
};
2012-11-01 15:19:01 +00:00
// TODO: Implement support for these.
struct GPUStatistics
{
void reset() {
memset(this, 0, sizeof(*this));
}
void resetFrame() {
numJoins = 0;
numDrawCalls = 0;
numVertsTransformed = 0;
numTextureSwitches = 0;
numShaderSwitches = 0;
numFlushes = 0;
numTexturesDecoded = 0;
}
// Per frame statistics
int numJoins;
int numDrawCalls;
int numFlushes;
int numVertsTransformed;
int numTextureSwitches;
int numShaderSwitches;
int numTexturesDecoded;
// Total statistics, updated by the GPU core in UpdateStats
int numFrames;
int numTextures;
int numVertexShaders;
int numFragmentShaders;
int numShaders;
2012-11-01 15:19:01 +00:00
};
void InitGfxState();
2012-11-06 16:05:27 +00:00
void ShutdownGfxState();
2012-11-01 15:19:01 +00:00
void ReapplyGfxState();
// PSP uses a curious 24-bit float - it's basically the top 24 bits of a regular IEEE754 32-bit float.
// This is used for light positions, transform matrices, you name it.
2012-11-01 15:19:01 +00:00
inline float getFloat24(unsigned int data)
{
data <<= 8;
2012-11-01 15:19:01 +00:00
float f;
memcpy(&f, &data, 4);
return f;
}
// in case we ever want to generate PSP display lists...
inline unsigned int toFloat24(float f) {
unsigned int i;
memcpy(&i, &f, 4);
return i >> 8;
2012-11-01 15:19:01 +00:00
}
2012-11-06 16:05:27 +00:00
class GPUInterface;
2012-11-01 15:19:01 +00:00
extern GPUgstate gstate;
extern GPUStateCache gstate_c;
extern GPUInterface *gpu;
extern GPUStatistics gpuStats;