2013-07-14 15:09:41 +02:00
|
|
|
/* 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.
|
2014-04-05 18:18:42 +02:00
|
|
|
*
|
2013-07-14 15:09:41 +02:00
|
|
|
* 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.
|
2014-04-05 18:18:42 +02:00
|
|
|
*
|
2013-07-14 15:09:41 +02:00
|
|
|
* 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_SHADERS_H
|
|
|
|
#define GRIM_GFX_OPENGL_SHADERS_H
|
|
|
|
|
|
|
|
#include "engines/grim/actor.h"
|
|
|
|
#include "engines/grim/gfx_base.h"
|
2016-01-04 22:23:01 +01:00
|
|
|
#include "graphics/opengl/shader.h"
|
2013-07-14 15:09:41 +02:00
|
|
|
#include "common/stack.h"
|
2014-08-03 13:16:01 -04:00
|
|
|
#include "common/rect.h"
|
2013-07-14 15:09:41 +02:00
|
|
|
|
|
|
|
namespace Grim {
|
|
|
|
|
|
|
|
class GfxOpenGLS : public GfxBase {
|
|
|
|
public:
|
|
|
|
GfxOpenGLS();
|
|
|
|
virtual ~GfxOpenGLS();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Creates a render-context.
|
|
|
|
*
|
|
|
|
* @param screenW the width of the context
|
|
|
|
* @param screenH the height of the context
|
|
|
|
* @param fullscreen true if fullscreen is desired, false otherwise.
|
|
|
|
*/
|
2014-06-17 20:57:13 +02:00
|
|
|
virtual byte *setupScreen(int screenW, int screenH, bool fullscreen) override;
|
2013-07-14 15:09:41 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Query whether the current context is hardware-accelerated
|
|
|
|
*
|
|
|
|
* @return true if hw-accelerated, false otherwise
|
|
|
|
*/
|
2014-06-17 20:57:13 +02:00
|
|
|
virtual bool isHardwareAccelerated() override { return true; };
|
2014-06-23 00:24:43 +03:00
|
|
|
virtual bool supportsShaders() override { return true; }
|
2014-07-19 22:42:43 -04:00
|
|
|
virtual void setupCameraFrustum(float fov, float nclip, float fclip) override;
|
2014-06-17 20:57:13 +02:00
|
|
|
virtual void positionCamera(const Math::Vector3d &pos, const Math::Vector3d &interest, float roll) override;
|
2014-08-05 15:43:39 -04:00
|
|
|
virtual void positionCamera(const Math::Vector3d &pos, const Math::Matrix4 &rot) override;
|
2013-07-14 15:09:41 +02:00
|
|
|
|
2014-06-17 20:57:13 +02:00
|
|
|
virtual Math::Matrix4 getModelView() override;
|
|
|
|
virtual Math::Matrix4 getProjection() override;
|
2014-06-09 18:41:01 +03:00
|
|
|
|
2014-06-17 20:57:13 +02:00
|
|
|
virtual void clearScreen() override;
|
2014-06-17 21:00:17 +02:00
|
|
|
virtual void clearDepthBuffer() override;
|
2013-07-14 15:09:41 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Swap the buffers, making the drawn screen visible
|
|
|
|
*/
|
2014-06-17 20:57:13 +02:00
|
|
|
virtual void flipBuffer() override;
|
|
|
|
|
2014-07-22 19:13:29 -04:00
|
|
|
virtual void getScreenBoundingBox(const Mesh *mesh, int *x1, int *y1, int *x2, int *y2) override;
|
|
|
|
virtual void getScreenBoundingBox(const EMIModel *model, int *x1, int *y1, int *x2, int *y2) override;
|
2014-08-03 13:16:01 -04:00
|
|
|
void getActorScreenBBox(const Actor *actor, Common::Point &p1, Common::Point &p2) override;
|
2014-06-17 20:57:13 +02:00
|
|
|
virtual void startActorDraw(const Actor *actor) override;
|
|
|
|
|
|
|
|
virtual void finishActorDraw() override;
|
|
|
|
virtual void setShadow(Shadow *shadow) override;
|
|
|
|
virtual void drawShadowPlanes() override;
|
|
|
|
virtual void setShadowMode() override;
|
|
|
|
virtual void clearShadowMode() override;
|
|
|
|
virtual bool isShadowModeActive() override;
|
|
|
|
virtual void setShadowColor(byte r, byte g, byte b) override;
|
|
|
|
virtual void getShadowColor(byte *r, byte *g, byte *b) override;
|
2016-07-12 06:09:39 +02:00
|
|
|
virtual void destroyShadow(Shadow *shadow) override;
|
2014-06-17 20:57:13 +02:00
|
|
|
|
|
|
|
virtual void set3DMode() override;
|
|
|
|
|
|
|
|
virtual void translateViewpointStart() override;
|
|
|
|
virtual void translateViewpoint(const Math::Vector3d &vec) override;
|
|
|
|
virtual void rotateViewpoint(const Math::Angle &angle, const Math::Vector3d &axis) override;
|
2014-06-25 17:15:41 +03:00
|
|
|
virtual void rotateViewpoint(const Math::Matrix4 &rot) override;
|
2014-06-17 20:57:13 +02:00
|
|
|
virtual void translateViewpointFinish() override;
|
|
|
|
|
|
|
|
virtual void drawEMIModelFace(const EMIModel* model, const EMIMeshFace* face) override;
|
|
|
|
virtual void drawModelFace(const Mesh *mesh, const MeshFace *face) override;
|
|
|
|
virtual void drawSprite(const Sprite *sprite) override;
|
|
|
|
virtual void drawMesh(const Mesh *mesh) override;
|
2014-09-15 20:44:35 +02:00
|
|
|
virtual void drawDimPlane() override;
|
2014-06-17 20:57:13 +02:00
|
|
|
|
|
|
|
virtual void enableLights() override;
|
|
|
|
virtual void disableLights() override;
|
|
|
|
virtual void setupLight(Light *light, int lightId) override;
|
|
|
|
virtual void turnOffLight(int lightId) override;
|
|
|
|
|
2014-07-24 15:37:11 +02:00
|
|
|
virtual void createTexture(Texture *texture, const uint8 *data, const CMap *cmap, bool clamp) override;
|
2014-06-30 22:13:40 +02:00
|
|
|
virtual void selectTexture(const Texture *texture) override;
|
|
|
|
virtual void destroyTexture(Texture *texture) override;
|
2013-07-14 15:09:41 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Prepares a bitmap for drawing
|
|
|
|
* performs any format conversions needed for the renderer,
|
|
|
|
* and might create an internal representation of the bitmap
|
|
|
|
* external changes to the bitmap may not be visible after this
|
|
|
|
* is called. Must be called before drawBitmap can be used.
|
|
|
|
*
|
|
|
|
* the external bitmap might have its data changed by this function,
|
|
|
|
*
|
|
|
|
* @param bitmap the bitmap to be prepared
|
|
|
|
* @see destroyBitmap
|
|
|
|
* @see drawBitmap
|
|
|
|
*/
|
2014-06-17 20:57:13 +02:00
|
|
|
virtual void createBitmap(BitmapData *bitmap) override;
|
2013-07-14 15:09:41 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Draws a bitmap
|
|
|
|
* before this is safe to use, createBitmap MUST have been called
|
|
|
|
*
|
|
|
|
* @param bitmap the bitmap to be drawn
|
|
|
|
* @see createBitmap
|
|
|
|
* @see destroyBitmap
|
|
|
|
*/
|
2014-06-17 20:57:13 +02:00
|
|
|
virtual void drawBitmap(const Bitmap *bitmap, int x, int y, uint32 layer = 0) override;
|
2013-07-14 15:09:41 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Deletes any internal references and representations of a bitmap
|
|
|
|
* after this is called, it is safe to dispose of or change the external
|
|
|
|
* bitmapdata.
|
|
|
|
*
|
|
|
|
* @param bitmap the bitmap to be destroyed
|
|
|
|
* @see createBitmap
|
|
|
|
* @see drawBitmap
|
|
|
|
*/
|
2014-06-17 20:57:13 +02:00
|
|
|
virtual void destroyBitmap(BitmapData *bitmap) override;
|
2013-07-14 15:09:41 +02:00
|
|
|
|
2014-06-17 20:57:13 +02:00
|
|
|
virtual void createFont(Font *font) override;
|
|
|
|
virtual void destroyFont(Font *font) override;
|
2013-07-14 15:09:41 +02:00
|
|
|
|
2014-06-17 20:57:13 +02:00
|
|
|
virtual void createTextObject(TextObject *text) override;
|
|
|
|
virtual void drawTextObject(const TextObject *text) override;
|
|
|
|
virtual void destroyTextObject(TextObject *text) override;
|
2013-07-14 15:09:41 +02:00
|
|
|
|
2014-06-30 22:46:50 +02:00
|
|
|
virtual Bitmap *getScreenshot(int w, int h, bool useStored) override;
|
2014-06-17 20:57:13 +02:00
|
|
|
virtual void storeDisplay() override;
|
|
|
|
virtual void copyStoredToDisplay() override;
|
2013-07-14 15:09:41 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Dims the entire screen
|
|
|
|
* Sets the entire screen to 10% of its current brightness,
|
|
|
|
* and converts it to grayscale.
|
|
|
|
*/
|
2014-06-17 20:57:13 +02:00
|
|
|
virtual void dimScreen() override;
|
|
|
|
virtual void dimRegion(int x, int y, int w, int h, float level) override;
|
2013-07-14 15:09:41 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Draw a completely opaque Iris around the specified rectangle.
|
|
|
|
* the arguments specify the distance from the screen-edge to the first
|
|
|
|
* non-iris pixel.
|
|
|
|
*
|
|
|
|
* @param x the width of the Iris
|
|
|
|
* @param y the height of the Iris
|
|
|
|
*/
|
2014-06-17 20:57:13 +02:00
|
|
|
virtual void irisAroundRegion(int x1, int y1, int x2, int y2) override;
|
2013-07-14 15:09:41 +02:00
|
|
|
|
2014-06-17 20:57:13 +02:00
|
|
|
virtual void drawEmergString(int x, int y, const char *text, const Color &fgColor) override;
|
|
|
|
virtual void loadEmergFont() override;
|
2013-07-14 15:09:41 +02:00
|
|
|
|
2014-06-17 20:57:13 +02:00
|
|
|
virtual void drawRectangle(const PrimitiveObject *primitive) override;
|
|
|
|
virtual void drawLine(const PrimitiveObject *primitive) override;
|
|
|
|
virtual void drawPolygon(const PrimitiveObject *primitive) override;
|
2013-07-14 15:09:41 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Prepare a movie-frame for drawing
|
|
|
|
* performing any necessary conversion
|
|
|
|
*
|
|
|
|
* @param width the width of the movie-frame.
|
|
|
|
* @param height the height of the movie-frame.
|
|
|
|
* @param bitmap a pointer to the data for the movie-frame.
|
|
|
|
* @see drawMovieFrame
|
|
|
|
* @see releaseMovieFrame
|
|
|
|
*/
|
2014-06-17 20:57:13 +02:00
|
|
|
virtual void prepareMovieFrame(Graphics::Surface* frame) override;
|
|
|
|
virtual void drawMovieFrame(int offsetX, int offsetY) override;
|
2013-07-14 15:09:41 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Release the currently prepared movie-frame, if one exists.
|
|
|
|
*
|
|
|
|
* @see drawMovieFrame
|
|
|
|
* @see prepareMovieFrame
|
|
|
|
*/
|
2014-06-17 20:57:13 +02:00
|
|
|
virtual void releaseMovieFrame() override;
|
2013-07-14 15:09:41 +02:00
|
|
|
|
2014-06-17 20:57:13 +02:00
|
|
|
virtual const char *getVideoDeviceName() override;
|
2013-07-14 15:09:41 +02:00
|
|
|
|
2014-06-17 20:57:13 +02:00
|
|
|
virtual void renderBitmaps(bool render) override;
|
|
|
|
virtual void renderZBitmaps(bool render) override;
|
2013-07-14 15:09:41 +02:00
|
|
|
|
2014-07-09 18:08:01 -07:00
|
|
|
virtual void createMesh(Mesh *mesh) override;
|
2014-07-09 18:17:09 -07:00
|
|
|
virtual void destroyMesh(const Mesh *mesh) override;
|
2014-06-17 20:57:13 +02:00
|
|
|
virtual void createEMIModel(EMIModel *model) override;
|
|
|
|
virtual void updateEMIModel(const EMIModel* model) override;
|
2016-07-12 06:09:39 +02:00
|
|
|
virtual void destroyEMIModel(EMIModel *model) override;
|
2013-07-14 15:09:41 +02:00
|
|
|
|
2014-08-05 18:03:39 +03:00
|
|
|
virtual void setBlendMode(bool additive) override;
|
|
|
|
|
2013-07-14 15:09:41 +02:00
|
|
|
protected:
|
|
|
|
void setupShaders();
|
|
|
|
GLuint compileShader(const char *vertex, const char *fragment);
|
|
|
|
GLuint compileShader(const char *shader) { return compileShader(shader, shader); }
|
2014-07-24 15:37:11 +02:00
|
|
|
void createSpecialtyTextureFromScreen(uint id, uint8 *data, int x, int y, int width, int height) override;
|
2013-07-14 15:09:41 +02:00
|
|
|
|
|
|
|
private:
|
2013-07-14 15:46:18 +02:00
|
|
|
const Actor *_currentActor;
|
2013-07-14 15:09:41 +02:00
|
|
|
float _alpha;
|
2013-11-21 21:47:57 +01:00
|
|
|
int _maxLights;
|
2013-07-14 15:09:41 +02:00
|
|
|
GLuint _emergTexture;
|
2016-01-04 22:23:01 +01:00
|
|
|
OpenGL::Shader* _emergProgram;
|
|
|
|
|
|
|
|
OpenGL::Shader* _backgroundProgram;
|
|
|
|
OpenGL::Shader* _actorProgram;
|
|
|
|
OpenGL::Shader* _spriteProgram;
|
|
|
|
OpenGL::Shader* _dimProgram;
|
|
|
|
OpenGL::Shader* _dimPlaneProgram;
|
|
|
|
OpenGL::Shader* _dimRegionProgram;
|
|
|
|
OpenGL::Shader* _smushProgram;
|
2014-01-14 00:26:44 +01:00
|
|
|
GLuint _smushVBO, _quadEBO;
|
2016-01-04 22:23:01 +01:00
|
|
|
OpenGL::Shader* _textProgram;
|
|
|
|
OpenGL::Shader* _primitiveProgram;
|
|
|
|
OpenGL::Shader* _irisProgram;
|
|
|
|
OpenGL::Shader* _shadowPlaneProgram;
|
2013-07-14 15:09:41 +02:00
|
|
|
|
|
|
|
int _smushWidth;
|
|
|
|
int _smushHeight;
|
|
|
|
GLuint _smushTexId;
|
|
|
|
bool _smushSwizzle;
|
2016-09-17 07:04:23 +00:00
|
|
|
bool _smushSwap;
|
2013-07-14 15:09:41 +02:00
|
|
|
void setupTexturedQuad();
|
2014-01-14 00:26:44 +01:00
|
|
|
void setupQuadEBO();
|
2013-07-14 15:09:41 +02:00
|
|
|
|
|
|
|
void setupZBuffer();
|
|
|
|
void drawDepthBitmap(int x, int y, int w, int h, char *data);
|
|
|
|
|
|
|
|
float _fov;
|
|
|
|
float _nclip;
|
|
|
|
float _fclip;
|
|
|
|
Math::Matrix4 _projMatrix;
|
|
|
|
Math::Matrix4 _viewMatrix;
|
|
|
|
Math::Matrix4 _mvpMatrix;
|
2014-11-23 23:11:49 +01:00
|
|
|
Math::Matrix4 _overworldProjMatrix;
|
2013-07-14 15:09:41 +02:00
|
|
|
|
|
|
|
void setupTexturedCenteredQuad();
|
|
|
|
|
|
|
|
GLuint _spriteVBO;
|
|
|
|
|
|
|
|
Common::Stack<Math::Matrix4> _matrixStack;
|
|
|
|
Texture *_selectedTexture;
|
|
|
|
|
|
|
|
GLuint _zBufTex;
|
|
|
|
Math::Vector2d _zBufTexCrop;
|
|
|
|
|
2020-01-06 00:36:40 +01:00
|
|
|
struct GLSLight {
|
2013-07-14 15:09:41 +02:00
|
|
|
Math::Vector4d _position;
|
|
|
|
Math::Vector4d _direction;
|
|
|
|
Math::Vector4d _color;
|
2014-06-23 00:24:43 +03:00
|
|
|
Math::Vector4d _params;
|
2013-07-14 15:09:41 +02:00
|
|
|
};
|
|
|
|
|
2020-01-06 00:36:40 +01:00
|
|
|
GLSLight *_lights;
|
2014-06-23 00:24:43 +03:00
|
|
|
bool _hasAmbientLight;
|
2013-07-14 15:09:41 +02:00
|
|
|
bool _lightsEnabled;
|
2013-11-20 01:03:12 +01:00
|
|
|
|
|
|
|
void setupPrimitives();
|
|
|
|
GLuint nextPrimitive();
|
|
|
|
GLuint _primitiveVBOs[32];
|
|
|
|
uint32 _currentPrimitive;
|
|
|
|
void drawGenericPrimitive(const float *vertices, uint32 numVertices, const PrimitiveObject *primitive);
|
2013-11-21 23:42:43 +01:00
|
|
|
GLuint _irisVBO;
|
2014-07-07 08:53:46 -07:00
|
|
|
GLuint _dimVBO;
|
2014-07-07 13:50:38 -07:00
|
|
|
GLuint _dimRegionVBO;
|
2014-01-17 09:48:06 -08:00
|
|
|
GLuint _blastVBO;
|
2014-07-07 08:53:46 -07:00
|
|
|
GLuint _storedDisplay;
|
2013-07-14 15:09:41 +02:00
|
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|