ScummVM API documentation
gfx_tinygl.h
1 /* ScummVM - Graphic Adventure Engine
2  *
3  * ScummVM is the legal property of its developers, whose names
4  * are too numerous to list here. Please refer to the COPYRIGHT
5  * file distributed with this source distribution.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  *
20  */
21 
22 #ifndef FREESCAPE_GFX_TINYGL_H
23 #define FREESCAPE_GFX_TINYGL_H
24 
25 #include "math/vector3d.h"
26 
27 #include "freescape/gfx.h"
28 
29 namespace Freescape {
30 
31 class TinyGLRenderer : public Renderer {
32 public:
33  TinyGLRenderer(int screenW, int screenH, Common::RenderMode renderMode);
34  virtual ~TinyGLRenderer();
35 
36  struct Vertex {
37  TGLfloat x;
38  TGLfloat y;
39  TGLfloat z;
40  };
41 
42  void copyToVertexArray(uint idx, const Math::Vector3d &src) {
43  assert(idx < kVertexArraySize);
44  _verts[idx].x = src.x(); _verts[idx].y = src.y(); _verts[idx].z = src.z();
45  }
46 
47  Vertex *_verts;
48 
49  virtual void init() override;
50  virtual void clear(uint8 r, uint8 g, uint8 b, bool ignoreViewport = false) override;
51  virtual void setViewport(const Common::Rect &rect) override;
52  virtual void positionCamera(const Math::Vector3d &pos, const Math::Vector3d &interest) override;
53  virtual void updateProjectionMatrix(float fov, float yminValue, float ymaxValue, float nearClipPlane, float farClipPlane) override;
54 
55  virtual void useColor(uint8 r, uint8 g, uint8 b) override;
56  virtual void polygonOffset(bool enabled) override;
57  virtual void depthTesting(bool enabled) override;
58  virtual void setStippleData(byte *data) override;
59  virtual void useStipple(bool enabled) override;
60 
61  TGLubyte *_variableStippleArray;
62 
63  Texture *createTexture(const Graphics::Surface *surface) override;
64  void freeTexture(Texture *texture) override;
65  virtual void drawTexturedRect2D(const Common::Rect &screenRect, const Common::Rect &textureRect, Texture *texture) override;
66 
67  virtual void renderSensorShoot(byte color, const Math::Vector3d sensor, const Math::Vector3d player, const Common::Rect viewPort) override;
68  virtual void renderPlayerShootBall(byte color, const Common::Point position, int frame, const Common::Rect viewPort) override;
69  virtual void renderPlayerShootRay(byte color, const Common::Point position, const Common::Rect viewPort) override;
70  virtual void renderCrossair(const Common::Point crossairPosition) override;
71 
72  virtual void renderFace(const Common::Array<Math::Vector3d> &vertices) override;
73 
74  virtual void flipBuffer() override;
75  virtual void drawFloor(uint8 color) override;
76  virtual Graphics::Surface *getScreenshot() override;
77 };
78 
79 } // End of namespace Freescape
80 
81 #endif // FREESCAPE_GFX_TINYGL_H
Definition: surface.h:67
Definition: area.h:36
virtual void flipBuffer() override
Definition: gfx_tinygl.h:36
RenderMode
Definition: rendermode.h:48
Definition: rect.h:144
virtual void positionCamera(const Math::Vector3d &pos, const Math::Vector3d &interest) override
Definition: gfx.h:60
Definition: rect.h:45
Definition: gfx_tinygl.h:31
Definition: gfx.h:45