22 #ifndef GRIM_GFX_OPENGL_H 23 #define GRIM_GFX_OPENGL_H 25 #include "engines/grim/gfx_base.h" 27 #ifdef USE_OPENGL_GAME 29 #include "graphics/opengl/system_headers.h" 37 class GfxOpenGL :
public GfxBase {
42 void setupScreen(
int screenW,
int screenH)
override;
44 const char *getVideoDeviceName()
override;
46 void setupCameraFrustum(
float fov,
float nclip,
float fclip)
override;
47 void positionCamera(
const Math::Vector3d &pos,
const Math::Vector3d &interest,
float roll)
override;
48 void positionCamera(
const Math::Vector3d &pos,
const Math::Matrix4 &rot)
override;
50 Math::Matrix4 getModelView()
override;
51 Math::Matrix4 getProjection()
override;
53 void clearScreen()
override;
54 void clearDepthBuffer()
override;
55 void flipBuffer(
bool opportunistic =
false)
override;
57 bool isHardwareAccelerated()
override;
58 bool supportsShaders()
override;
60 void getScreenBoundingBox(
const Mesh *model,
int *x1,
int *y1,
int *x2,
int *y2)
override;
61 void getScreenBoundingBox(
const EMIModel *model,
int *x1,
int *y1,
int *x2,
int *y2)
override;
64 void startActorDraw(
const Actor *actor)
override;
65 void finishActorDraw()
override;
66 void setShadow(Shadow *shadow)
override;
67 void drawShadowPlanes()
override;
68 void setShadowMode()
override;
69 void clearShadowMode()
override;
70 void setShadowColor(byte r, byte g, byte b)
override;
71 void getShadowColor(byte *r, byte *g, byte *b)
override;
73 void set3DMode()
override;
75 void translateViewpointStart()
override;
76 void translateViewpoint(
const Math::Vector3d &vec)
override;
77 void rotateViewpoint(
const Math::Angle &angle,
const Math::Vector3d &axis)
override;
78 void rotateViewpoint(
const Math::Matrix4 &rot)
override;
79 void translateViewpointFinish()
override;
81 void drawEMIModelFace(
const EMIModel *model,
const EMIMeshFace *face)
override;
82 void drawModelFace(
const Mesh *mesh,
const MeshFace *face)
override;
83 void drawSprite(
const Sprite *sprite)
override;
85 void drawOverlay(
const Overlay *overlay)
override;
87 void enableLights()
override;
88 void disableLights()
override;
89 void setupLight(Light *light,
int lightId)
override;
90 void turnOffLight(
int lightId)
override;
92 void createTexture(Texture *texture,
const uint8 *data,
const CMap *cmap,
bool clamp)
override;
93 void selectTexture(
const Texture *texture)
override;
94 void destroyTexture(Texture *texture)
override;
96 void createBitmap(BitmapData *bitmap)
override;
97 void drawBitmap(
const Bitmap *bitmap,
int x,
int y, uint32 layer)
override;
98 void destroyBitmap(BitmapData *bitmap)
override;
100 void createFont(Font *font)
override;
101 void destroyFont(Font *font)
override;
103 void createTextObject(TextObject *text)
override;
104 void drawTextObject(
const TextObject *text)
override;
105 void destroyTextObject(TextObject *text)
override;
107 Bitmap *getScreenshot(
int w,
int h,
bool useStored)
override;
108 void storeDisplay()
override;
109 void copyStoredToDisplay()
override;
110 void dimScreen()
override;
111 void dimRegion(
int x,
int y,
int w,
int h,
float level)
override;
112 void irisAroundRegion(
int x1,
int y1,
int x2,
int y2)
override;
114 void drawEmergString(
int x,
int y,
const char *text,
const Color &fgColor)
override;
115 void loadEmergFont()
override;
117 void drawRectangle(
const PrimitiveObject *primitive)
override;
118 void drawLine(
const PrimitiveObject *primitive)
override;
119 void drawPolygon(
const PrimitiveObject *primitive)
override;
120 void drawDimPlane()
override;
124 void drawMovieFrame(
int offsetX,
int offsetY)
override;
125 void releaseMovieFrame()
override;
127 void setBlendMode(
bool additive)
override;
130 void createSpecialtyTextureFromScreen(uint
id, uint8 *data,
int x,
int y,
int width,
int height)
override;
131 void drawDepthBitmap(
int x,
int y,
int w,
int h,
const char *data);
132 void initExtensions();
136 GLuint *_smushTexIds;
139 byte *_storedDisplay;
140 bool _useDepthShader;
141 #ifdef GL_ARB_fragment_program 142 GLuint _fragmentProgram;
143 GLuint _dimFragProgram;
148 const Actor *_currentActor;
151 void readPixels(
int x,
int y,
int width,
int height, uint8 *buffer);
Definition: default_display_client.h:65