22 #ifndef FREESCAPE_GFX_OPENGL_H 23 #define FREESCAPE_GFX_OPENGL_H 25 #include "graphics/opengl/system_headers.h" 26 #include "math/vector3d.h" 27 #include "math/vector2d.h" 29 #include "freescape/gfx.h" 31 #ifdef USE_OPENGL_GAME 35 class OpenGLRenderer :
public Renderer {
37 OpenGLRenderer(
int screenW,
int screenH,
Common::RenderMode renderMode,
bool authenticGraphics);
38 virtual ~OpenGLRenderer();
46 void copyToVertexArray(uint idx,
const Math::Vector3d &src) {
47 assert(idx < kVertexArraySize);
48 _verts[idx].x = src.x();
49 _verts[idx].y = src.y();
50 _verts[idx].z = src.z();
62 void copyToCoordArray(uint idx,
const Math::Vector2d &src) {
63 assert(idx < kCoordsArraySize);
64 _coords[idx].x = src.getValue(0);
65 _coords[idx].y = src.getValue(1);
68 virtual void init()
override;
69 virtual void clear(uint8 r, uint8 g, uint8 b,
bool ignoreViewport =
false)
override;
70 virtual void setViewport(
const Common::Rect &rect)
override;
72 virtual void positionCamera(
const Math::Vector3d &pos,
const Math::Vector3d &interest)
override;
73 virtual void updateProjectionMatrix(
float fov,
float aspectRatio,
float nearClipPlane,
float farClipPlane)
override;
75 virtual void useColor(uint8 r, uint8 g, uint8 b)
override;
76 virtual void polygonOffset(
bool enabled)
override;
77 virtual void setStippleData(byte *data)
override;
78 virtual void useStipple(
bool enabled)
override;
79 virtual void depthTesting(
bool enabled)
override;
82 Texture *createTexture(
const Graphics::Surface *surface,
bool is3D =
false)
override;
83 void freeTexture(Texture *texture)
override;
84 virtual void drawTexturedRect2D(
const Common::Rect &screenRect,
const Common::Rect &textureRect, Texture *texture)
override;
86 virtual void renderSensorShoot(byte color,
const Math::Vector3d sensor,
const Math::Vector3d player,
const Common::Rect viewPort)
override;
87 virtual void renderPlayerShootBall(byte color,
const Common::Point position,
int frame,
const Common::Rect viewPort)
override;
89 virtual void renderCrossair(
const Common::Point crossairPosition)
override;
93 virtual void flipBuffer()
override;
94 virtual void drawFloor(uint8 color)
override;
95 void drawCelestialBody(Math::Vector3d position,
float radius, uint8 color)
override;
96 void drawSkybox(Texture *texture, Math::Vector3d camera)
override;
105 #endif // FREESCAPE_GFX_OPENGL_H
RenderMode
Definition: rendermode.h:48
Definition: display_client.h:53