28 #ifndef HPL_LOWLEVELGRAPHICS_SDL_H 29 #define HPL_LOWLEVELGRAPHICS_SDL_H 31 #include "common/ptr.h" 32 #include "graphics/pixelformat.h" 33 #include "graphics/surface.h" 34 #include "hpl1/engine/graphics/LowLevelGraphics.h" 35 #include "hpl1/engine/math/MathTypes.h" 36 #include "hpl1/opengl.h" 44 GLenum ColorFormatToGL(eColorDataFormat format);
46 GLenum TextureTargetToGL(eTextureTarget target);
50 class cLowLevelGraphicsSDL :
public iLowLevelGraphics {
52 cLowLevelGraphicsSDL();
53 ~cLowLevelGraphicsSDL();
55 bool Init(
int alWidth,
int alHeight,
int alBpp,
int abFullscreen,
int alMultisampling,
56 const tString &asWindowCaption);
58 int GetCaps(eGraphicCaps aType)
const;
60 void ShowCursor(
bool abX);
62 void SetMultisamplingActive(
bool abX);
64 void SetGammaCorrection(
float afX);
65 float GetGammaCorrection();
67 int GetMultisampling() {
return mlMultisampling; }
69 void SetClipPlane(
int alIdx,
const cPlanef &aPlane);
70 cPlanef GetClipPlane(
int alIdx,
const cPlanef &aPlane);
71 void SetClipPlaneActive(
int alIdx,
bool abX);
73 cVector2f GetScreenSize();
74 cVector2f GetVirtualSize();
75 void SetVirtualSize(cVector2f avSize);
77 Bitmap2D *CreateBitmap2D(
const cVector2l &avSize);
78 FontData *CreateFontData(
const tString &asName);
80 iTexture *CreateTexture(
bool abUseMipMaps, eTextureType aType, eTextureTarget aTarget);
81 iTexture *CreateTexture(
const tString &asName,
bool abUseMipMaps, eTextureType aType, eTextureTarget aTarget);
82 iTexture *CreateTexture(Bitmap2D *apBmp,
bool abUseMipMaps, eTextureType aType, eTextureTarget aTarget);
83 iTexture *CreateTexture(
const cVector2l &avSize,
int alBpp, cColor aFillCol,
84 bool abUseMipMaps, eTextureType aType, eTextureTarget aTarget);
88 iGpuProgram *CreateGpuProgram(
const tString &vertex,
const tString &fragment);
90 void SaveScreenToBMP(
const tString &asFile);
94 void PushMatrix(eMatrix aMtxType);
95 void PopMatrix(eMatrix aMtxType);
96 void SetIdentityMatrix(eMatrix aMtxType);
98 void SetMatrix(eMatrix aMtxType,
const cMatrixf &a_mtxA);
100 void TranslateMatrix(eMatrix aMtxType,
const cVector3f &avPos);
101 void RotateMatrix(eMatrix aMtxType,
const cVector3f &avRot);
102 void ScaleMatrix(eMatrix aMtxType,
const cVector3f &avScale);
104 void SetOrthoProjection(
const cVector2f &avSize,
float afMin,
float afMax);
109 iOcclusionQuery *CreateOcclusionQuery();
110 void DestroyOcclusionQuery(iOcclusionQuery *apQuery);
115 void SetClearColor(
const cColor &aCol);
116 void SetClearDepth(
float afDepth);
117 void SetClearStencil(
int alVal);
119 void SetClearColorActive(
bool abX);
120 void SetClearDepthActive(
bool abX);
121 void SetClearStencilActive(
bool abX);
123 void SetColorWriteActive(
bool abR,
bool abG,
bool abB,
bool abA);
124 void SetDepthWriteActive(
bool abX);
126 void SetCullActive(
bool abX);
127 void SetCullMode(eCullMode aMode);
130 void SetDepthTestActive(
bool abX);
131 void SetDepthTestFunc(eDepthTestFunc aFunc);
134 void SetAlphaTestActive(
bool abX);
135 void SetAlphaTestFunc(eAlphaTestFunc aFunc,
float afRef);
138 void SetStencilActive(
bool abX);
143 void SetStencil(eStencilFunc aFunc,
int alRef,
unsigned int aMask,
144 eStencilOp aFailOp, eStencilOp aZFailOp, eStencilOp aZPassOp);
145 void SetStencilTwoSide(eStencilFunc aFrontFunc, eStencilFunc aBackFunc,
146 int alRef,
unsigned int aMask,
147 eStencilOp aFrontFailOp, eStencilOp aFrontZFailOp, eStencilOp aFrontZPassOp,
148 eStencilOp aBackFailOp, eStencilOp aBackZFailOp, eStencilOp aBackZPassOp);
149 void SetStencilTwoSide(
bool abX);
152 void SetScissorActive(
bool abX);
153 void SetScissorRect(
const cRect2l &aRect);
156 void SetBlendActive(
bool abX);
157 void SetBlendFunc(eBlendFunc aSrcFactor, eBlendFunc aDestFactor);
158 void SetBlendFuncSeparate(eBlendFunc aSrcFactorColor, eBlendFunc aDestFactorColor,
159 eBlendFunc aSrcFactorAlpha, eBlendFunc aDestFactorAlpha);
162 void SetTexture(
unsigned int alUnit, iTexture *apTex);
163 void SetActiveTextureUnit(
unsigned int alUnit);
164 void SetTextureEnv(eTextureParam aParam,
int alVal);
165 void SetTextureConstantColor(
const cColor &color);
167 void SetColor(
const cColor &aColor);
170 iVertexBuffer *CreateVertexBuffer(tVertexFlag aFlags, eVertexBufferDrawType aDrawType,
171 eVertexBufferUsageType aUsageType,
172 int alReserveVtxSize = 0,
int alReserveIdxSize = 0);
174 void DrawRect(
const cVector2f &avPos,
const cVector2f &avSize,
float afZ);
176 void DrawTri(
const tVertexVec &avVtx);
177 void DrawTri(
const cVertex *avVtx);
179 void DrawQuad(
const tVertexVec &avVtx);
180 void DrawQuad(
const tVertexVec &avVtx,
const cColor aCol);
181 void DrawQuad(
const tVertexVec &avVtx,
const float afZ);
182 void DrawQuad(
const tVertexVec &avVtx,
const float afZ,
const cColor &aCol);
183 void DrawQuadMultiTex(
const tVertexVec &avVtx,
const tVector3fVec &avExtraUvs);
185 void AddVertexToBatch(
const cVertex &apVtx);
186 void AddVertexToBatch(
const cVertex *apVtx,
const cVector3f *avTransform);
187 void AddVertexToBatch(
const cVertex *apVtx,
const cMatrixf *aMtx);
189 void AddVertexToBatch_Size2D(
const cVertex *apVtx,
const cVector3f *avTransform,
190 const cColor *apCol,
const float &mfW,
const float &mfH);
192 void AddVertexToBatch_Raw(
const cVector3f &avPos,
const cColor &aColor,
193 const cVector3f &avTex);
195 void AddTexCoordToBatch(
unsigned int alUnit,
const cVector3f *apCoord);
196 void SetBatchTextureUnitActive(
unsigned int alUnit,
bool abActive);
198 void AddIndexToBatch(
int alIndex);
200 void FlushTriBatch(tVtxBatchFlag aTypeFlags,
bool abAutoClear =
true);
201 void FlushQuadBatch(tVtxBatchFlag aTypeFlags,
bool abAutoClear =
true);
205 void DrawLine(
const cVector3f &avBegin,
const cVector3f &avEnd, cColor aCol);
206 void DrawBoxMaxMin(
const cVector3f &avMax,
const cVector3f &avMin, cColor aCol);
207 void DrawSphere(
const cVector3f &avPos,
float afRadius, cColor aCol);
209 void DrawLine2D(
const cVector2f &avBegin,
const cVector2f &avEnd,
float afZ, cColor aCol);
210 void DrawLineRect2D(
const cRect2f &aRect,
float afZ, cColor aCol);
211 void DrawLineCircle2D(
const cVector2f &avCenter,
float afRadius,
float afZ, cColor aCol);
213 void DrawFilledRect2D(
const cRect2f &aRect,
float afZ, cColor aCol);
216 void CopyContextToTexure(iTexture *apTex,
const cVector2l &avPos,
217 const cVector2l &avSize,
const cVector2l &avTexOffset = 0);
218 void SetRenderTarget(iTexture *pTex);
219 bool RenderTargetHasZBuffer();
220 void FlushRenderTarget();
222 void FlushRendering();
229 GLenum GetGLTextureTargetEnum(eTextureTarget aType);
232 cVector2l mvScreenSize;
233 cVector2f mvVirtualSize;
239 float mfGammaCorrection;
242 cPlanef mvClipPlanes[kMaxClipPlanes];
250 float *mpVertexArray;
251 unsigned int mlVertexCount;
252 unsigned int *mpIndexArray;
253 unsigned int mlIndexCount;
255 unsigned int mlBatchStride;
257 float *mpTexCoordArray[MAX_TEXTUREUNITS];
258 bool mbTexCoordArrayActive[MAX_TEXTUREUNITS];
259 unsigned int mlTexCoordArrayCount[MAX_TEXTUREUNITS];
261 unsigned int mlBatchArraySize;
269 iTexture *mpRenderTarget;
272 iTexture *mpCurrentTexture[MAX_TEXTUREUNITS];
274 iTexture *_screenBuffer;
275 iGpuProgram *_gammaCorrectionProgram;
281 void CheckMultisampleCaps();
283 void applyGammaCorrection();
286 void SetUpBatchArrays();
289 GLenum GetGLDepthTestFuncEnum(eDepthTestFunc aType);
292 GLenum GetGLAlphaTestFuncEnum(eAlphaTestFunc aType);
295 GLenum GetGLStencilFuncEnum(eStencilFunc aType);
296 GLenum GetGLStencilOpEnum(eStencilOp aType);
299 void SetMatrixMode(eMatrix mType);
302 GLenum GetGLTextureParamEnum(eTextureParam aType);
303 GLenum GetGLTextureOpEnum(eTextureOp aType);
304 GLenum GetGLTextureFuncEnum(eTextureFunc aType);
305 GLenum GetGLTextureSourceEnum(eTextureSource aType);
308 GLenum GetGLBlendEnum(eBlendFunc aType);
311 void SetVtxBatchStates(tVtxBatchFlag flags);
317 #endif // HPL_LOWLEVELGRAPHICS_SDL_H