1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
|
/* ResidualVM - A 3D game interpreter
*
* ResidualVM is the legal property of its developers, whose names
* are too numerous to list here. Please refer to the COPYRIGHT
* file distributed with this source distribution.
*
* 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; either version 2
* of the License, or (at your option) any later version.
*
* 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 for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
*
*/
#ifndef GRIM_GFX_OPENGL_H
#define GRIM_GFX_OPENGL_H
#include "engines/grim/gfx_base.h"
#ifdef USE_OPENGL
#ifdef USE_GLEW
#include <GL/glew.h>
#elif defined (SDL_BACKEND) && !defined(__amigaos4__)
#include <SDL_opengl.h>
#undef ARRAYSIZE
#else
#include <GL/gl.h>
#endif
namespace Grim {
class ModelNode;
class Mesh;
class MeshFace;
class GfxOpenGL : public GfxBase {
public:
GfxOpenGL();
virtual ~GfxOpenGL();
byte *setupScreen(int screenW, int screenH, bool fullscreen) override;
const char *getVideoDeviceName() override;
void setupCameraFrustum(float fov, float nclip, float fclip) override;
void positionCamera(const Math::Vector3d &pos, const Math::Vector3d &interest, float roll) override;
void positionCamera(const Math::Vector3d &pos, const Math::Matrix4 &rot) override;
Math::Matrix4 getModelView() override;
Math::Matrix4 getProjection() override;
void clearScreen() override;
void clearDepthBuffer() override;
void flipBuffer() override;
bool isHardwareAccelerated() override;
bool supportsShaders() override;
void getScreenBoundingBox(const Mesh *model, int *x1, int *y1, int *x2, int *y2) override;
void getScreenBoundingBox(const EMIModel *model, int *x1, int *y1, int *x2, int *y2) override;
void getActorScreenBBox(const Actor *actor, Common::Point &p1, Common::Point &p2) override;
void startActorDraw(const Actor *actor) override;
void finishActorDraw() override;
void setShadow(Shadow *shadow) override;
void drawShadowPlanes() override;
void setShadowMode() override;
void clearShadowMode() override;
void setShadowColor(byte r, byte g, byte b) override;
void getShadowColor(byte *r, byte *g, byte *b) override;
void set3DMode() override;
void translateViewpointStart() override;
void translateViewpoint(const Math::Vector3d &vec) override;
void rotateViewpoint(const Math::Angle &angle, const Math::Vector3d &axis) override;
void rotateViewpoint(const Math::Matrix4 &rot) override;
void translateViewpointFinish() override;
void drawEMIModelFace(const EMIModel *model, const EMIMeshFace *face) override;
void drawModelFace(const Mesh *mesh, const MeshFace *face) override;
void drawSprite(const Sprite *sprite) override;
void enableLights() override;
void disableLights() override;
void setupLight(Light *light, int lightId) override;
void turnOffLight(int lightId) override;
void createTexture(Texture *texture, const uint8 *data, const CMap *cmap, bool clamp) override;
void selectTexture(const Texture *texture) override;
void destroyTexture(Texture *texture) override;
void createBitmap(BitmapData *bitmap) override;
void drawBitmap(const Bitmap *bitmap, int x, int y, uint32 layer) override;
void destroyBitmap(BitmapData *bitmap) override;
void createFont(Font *font) override;
void destroyFont(Font *font) override;
void createTextObject(TextObject *text) override;
void drawTextObject(const TextObject *text) override;
void destroyTextObject(TextObject *text) override;
Bitmap *getScreenshot(int w, int h, bool useStored) override;
void storeDisplay() override;
void copyStoredToDisplay() override;
void dimScreen() override;
void dimRegion(int x, int y, int w, int h, float level) override;
void irisAroundRegion(int x1, int y1, int x2, int y2) override;
void drawEmergString(int x, int y, const char *text, const Color &fgColor) override;
void loadEmergFont() override;
void drawRectangle(const PrimitiveObject *primitive) override;
void drawLine(const PrimitiveObject *primitive) override;
void drawPolygon(const PrimitiveObject *primitive) override;
void drawDimPlane() override;
void prepareMovieFrame(Graphics::Surface *frame) override;
void drawMovieFrame(int offsetX, int offsetY) override;
void releaseMovieFrame() override;
void setBlendMode(bool additive) override;
protected:
void createSpecialtyTextureFromScreen(uint id, uint8 *data, int x, int y, int width, int height) override;
void drawDepthBitmap(int x, int y, int w, int h, char *data);
void initExtensions();
private:
GLuint _emergFont;
int _smushNumTex;
GLuint *_smushTexIds;
int _smushWidth;
int _smushHeight;
byte *_storedDisplay;
bool _useDepthShader;
GLuint _fragmentProgram;
bool _useDimShader;
GLuint _dimFragProgram;
GLint _maxLights;
float _alpha;
const Actor *_currentActor;
GLenum _depthFunc;
void readPixels(int x, int y, int width, int height, uint8 *buffer);
};
} // end of namespace Grim
#endif
#endif
|