2018-07-06 14:11:38 +00:00
|
|
|
#ifndef ENGINE_CLIENT_GRAPHICS_THREADED_H
|
|
|
|
#define ENGINE_CLIENT_GRAPHICS_THREADED_H
|
2011-12-31 00:11:24 +00:00
|
|
|
|
2012-01-03 20:39:10 +00:00
|
|
|
#include <engine/graphics.h>
|
|
|
|
|
2017-09-12 18:08:45 +00:00
|
|
|
#include <vector>
|
|
|
|
|
2018-03-13 20:47:07 +00:00
|
|
|
#define CMD_BUFFER_DATA_BUFFER_SIZE 1024*1024*2
|
|
|
|
#define CMD_BUFFER_CMD_BUFFER_SIZE 1024*256
|
|
|
|
|
2011-12-31 00:11:24 +00:00
|
|
|
class CCommandBuffer
|
|
|
|
{
|
|
|
|
class CBuffer
|
|
|
|
{
|
|
|
|
unsigned char *m_pData;
|
|
|
|
unsigned m_Size;
|
|
|
|
unsigned m_Used;
|
|
|
|
public:
|
|
|
|
CBuffer(unsigned BufferSize)
|
|
|
|
{
|
|
|
|
m_Size = BufferSize;
|
|
|
|
m_pData = new unsigned char[m_Size];
|
|
|
|
m_Used = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
~CBuffer()
|
|
|
|
{
|
|
|
|
delete [] m_pData;
|
|
|
|
m_pData = 0x0;
|
|
|
|
m_Used = 0;
|
|
|
|
m_Size = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Reset()
|
|
|
|
{
|
|
|
|
m_Used = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void *Alloc(unsigned Requested)
|
|
|
|
{
|
|
|
|
if(Requested + m_Used > m_Size)
|
|
|
|
return 0;
|
|
|
|
void *pPtr = &m_pData[m_Used];
|
|
|
|
m_Used += Requested;
|
|
|
|
return pPtr;
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned char *DataPtr() { return m_pData; }
|
|
|
|
unsigned DataSize() { return m_Size; }
|
|
|
|
unsigned DataUsed() { return m_Used; }
|
|
|
|
};
|
|
|
|
|
2012-01-03 21:01:37 +00:00
|
|
|
public:
|
2011-12-31 00:11:24 +00:00
|
|
|
CBuffer m_CmdBuffer;
|
|
|
|
CBuffer m_DataBuffer;
|
2012-01-03 21:01:37 +00:00
|
|
|
|
2011-12-31 08:40:11 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
MAX_TEXTURES=1024*4,
|
2017-09-14 00:50:31 +00:00
|
|
|
MAX_VERTICES=32*1024,
|
2011-12-31 08:40:11 +00:00
|
|
|
};
|
|
|
|
|
2011-12-31 00:11:24 +00:00
|
|
|
enum
|
|
|
|
{
|
2012-01-03 20:39:10 +00:00
|
|
|
// commadn groups
|
|
|
|
CMDGROUP_CORE = 0, // commands that everyone has to implement
|
2012-10-06 21:31:02 +00:00
|
|
|
CMDGROUP_PLATFORM_OPENGL = 10000, // commands specific to a platform
|
|
|
|
CMDGROUP_PLATFORM_SDL = 20000,
|
2011-12-31 00:11:24 +00:00
|
|
|
|
|
|
|
//
|
2012-01-03 20:39:10 +00:00
|
|
|
CMD_NOP = CMDGROUP_CORE,
|
2011-12-31 00:11:24 +00:00
|
|
|
|
|
|
|
//
|
|
|
|
CMD_RUNBUFFER,
|
|
|
|
|
2018-02-04 15:00:47 +00:00
|
|
|
// synchronization
|
2011-12-31 00:11:24 +00:00
|
|
|
CMD_SIGNAL,
|
|
|
|
|
|
|
|
// texture commands
|
|
|
|
CMD_TEXTURE_CREATE,
|
|
|
|
CMD_TEXTURE_DESTROY,
|
2011-12-31 08:40:11 +00:00
|
|
|
CMD_TEXTURE_UPDATE,
|
2011-12-31 00:11:24 +00:00
|
|
|
|
|
|
|
// rendering
|
|
|
|
CMD_CLEAR,
|
|
|
|
CMD_RENDER,
|
2019-04-26 22:11:15 +00:00
|
|
|
|
2020-08-22 06:09:10 +00:00
|
|
|
//opengl 2.0+ commands (some are just emulated and only exist in opengl 3.3+)
|
2018-03-13 20:47:07 +00:00
|
|
|
CMD_CREATE_BUFFER_OBJECT, // create vbo
|
|
|
|
CMD_RECREATE_BUFFER_OBJECT, // recreate vbo
|
|
|
|
CMD_UPDATE_BUFFER_OBJECT, // update vbo
|
|
|
|
CMD_COPY_BUFFER_OBJECT, // copy vbo to another
|
|
|
|
CMD_DELETE_BUFFER_OBJECT, // delete vbo
|
|
|
|
|
|
|
|
CMD_CREATE_BUFFER_CONTAINER, // create vao
|
|
|
|
CMD_DELETE_BUFFER_CONTAINER, // delete vao
|
|
|
|
CMD_UPDATE_BUFFER_CONTAINER, // update vao
|
|
|
|
|
|
|
|
CMD_INDICES_REQUIRED_NUM_NOTIFY, // create indices that are required
|
|
|
|
|
|
|
|
CMD_RENDER_TILE_LAYER, // render a tilelayer
|
|
|
|
CMD_RENDER_BORDER_TILE, // render one tile multiple times
|
|
|
|
CMD_RENDER_BORDER_TILE_LINE, // render an amount of tiles multiple times
|
|
|
|
CMD_RENDER_QUAD_LAYER, // render a quad layer
|
|
|
|
CMD_RENDER_TEXT, // render text
|
|
|
|
CMD_RENDER_TEXT_STREAM, // render text stream
|
|
|
|
CMD_RENDER_QUAD_CONTAINER, // render a quad buffer container
|
|
|
|
CMD_RENDER_QUAD_CONTAINER_SPRITE, // render a quad buffer container as sprite
|
|
|
|
CMD_RENDER_QUAD_CONTAINER_SPRITE_MULTIPLE, // render a quad buffer container as sprite multiple times
|
2019-04-26 22:11:15 +00:00
|
|
|
|
2011-12-31 00:11:24 +00:00
|
|
|
// swap
|
|
|
|
CMD_SWAP,
|
2012-01-01 12:38:46 +00:00
|
|
|
|
2012-01-01 13:30:45 +00:00
|
|
|
// misc
|
2016-04-29 22:34:12 +00:00
|
|
|
CMD_VSYNC,
|
2012-01-01 12:38:46 +00:00
|
|
|
CMD_SCREENSHOT,
|
2012-01-01 13:30:45 +00:00
|
|
|
CMD_VIDEOMODES,
|
2016-04-30 15:59:58 +00:00
|
|
|
CMD_RESIZE,
|
2012-01-03 20:39:10 +00:00
|
|
|
|
2011-12-31 00:11:24 +00:00
|
|
|
};
|
|
|
|
|
2011-12-31 08:40:11 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
TEXFORMAT_INVALID = 0,
|
|
|
|
TEXFORMAT_RGB,
|
|
|
|
TEXFORMAT_RGBA,
|
|
|
|
TEXFORMAT_ALPHA,
|
2011-12-31 10:18:55 +00:00
|
|
|
|
|
|
|
TEXFLAG_NOMIPMAPS = 1,
|
2012-08-27 16:58:30 +00:00
|
|
|
TEXFLAG_COMPRESSED = 2,
|
2012-10-07 09:22:49 +00:00
|
|
|
TEXFLAG_QUALITY = 4,
|
2020-08-19 05:05:51 +00:00
|
|
|
TEXFLAG_TO_3D_TEXTURE = (1 << 3),
|
|
|
|
TEXFLAG_TO_2D_ARRAY_TEXTURE = (1 << 4),
|
|
|
|
TEXFLAG_TO_3D_TEXTURE_SINGLE_LAYER = (1 << 5),
|
|
|
|
TEXFLAG_TO_2D_ARRAY_TEXTURE_SINGLE_LAYER = (1 << 6),
|
2020-08-23 06:25:21 +00:00
|
|
|
TEXFLAG_NO_2D_TEXTURE = (1 << 7),
|
2011-12-31 08:40:11 +00:00
|
|
|
};
|
|
|
|
|
2011-12-31 00:11:24 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
//
|
|
|
|
PRIMTYPE_INVALID = 0,
|
2015-07-09 00:08:14 +00:00
|
|
|
PRIMTYPE_LINES,
|
2011-12-31 00:11:24 +00:00
|
|
|
PRIMTYPE_QUADS,
|
2015-03-31 11:35:18 +00:00
|
|
|
PRIMTYPE_TRIANGLES,
|
2011-12-31 00:11:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
BLEND_NONE = 0,
|
|
|
|
BLEND_ALPHA,
|
|
|
|
BLEND_ADDITIVE,
|
|
|
|
};
|
|
|
|
|
2012-01-08 00:47:53 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
WRAP_REPEAT = 0,
|
|
|
|
WRAP_CLAMP,
|
|
|
|
};
|
2011-12-31 00:11:24 +00:00
|
|
|
|
2018-04-03 15:40:21 +00:00
|
|
|
typedef GL_SPoint SPoint;
|
|
|
|
typedef GL_STexCoord STexCoord;
|
|
|
|
typedef GL_SColorf SColorf;
|
|
|
|
typedef GL_SColor SColor;
|
|
|
|
typedef GL_SVertex SVertex;
|
2011-12-31 00:11:24 +00:00
|
|
|
|
|
|
|
struct SCommand
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
SCommand(unsigned Cmd) : m_Cmd(Cmd), m_Size(0) {}
|
|
|
|
unsigned m_Cmd;
|
|
|
|
unsigned m_Size;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct SState
|
|
|
|
{
|
|
|
|
int m_BlendMode;
|
2012-01-08 00:47:53 +00:00
|
|
|
int m_WrapMode;
|
2011-12-31 00:11:24 +00:00
|
|
|
int m_Texture;
|
|
|
|
SPoint m_ScreenTL;
|
|
|
|
SPoint m_ScreenBR;
|
|
|
|
|
|
|
|
// clip
|
|
|
|
bool m_ClipEnable;
|
|
|
|
int m_ClipX;
|
|
|
|
int m_ClipY;
|
|
|
|
int m_ClipW;
|
|
|
|
int m_ClipH;
|
|
|
|
};
|
2015-07-09 00:08:14 +00:00
|
|
|
|
2011-12-31 00:11:24 +00:00
|
|
|
struct SCommand_Clear : public SCommand
|
|
|
|
{
|
|
|
|
SCommand_Clear() : SCommand(CMD_CLEAR) {}
|
2017-09-27 10:16:34 +00:00
|
|
|
SColorf m_Color;
|
2011-12-31 00:11:24 +00:00
|
|
|
};
|
2015-07-09 00:08:14 +00:00
|
|
|
|
2011-12-31 09:04:46 +00:00
|
|
|
struct SCommand_Signal : public SCommand
|
|
|
|
{
|
|
|
|
SCommand_Signal() : SCommand(CMD_SIGNAL) {}
|
|
|
|
semaphore *m_pSemaphore;
|
|
|
|
};
|
2011-12-31 00:11:24 +00:00
|
|
|
|
|
|
|
struct SCommand_RunBuffer : public SCommand
|
|
|
|
{
|
|
|
|
SCommand_RunBuffer() : SCommand(CMD_RUNBUFFER) {}
|
|
|
|
CCommandBuffer *m_pOtherBuffer;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct SCommand_Render : public SCommand
|
|
|
|
{
|
|
|
|
SCommand_Render() : SCommand(CMD_RENDER) {}
|
|
|
|
SState m_State;
|
|
|
|
unsigned m_PrimType;
|
|
|
|
unsigned m_PrimCount;
|
2018-03-13 20:47:07 +00:00
|
|
|
SVertex *m_pVertices; // you should use the command buffer data to allocate vertices for this command
|
2011-12-31 00:11:24 +00:00
|
|
|
};
|
2018-03-13 20:47:07 +00:00
|
|
|
|
|
|
|
struct SCommand_CreateBufferObject : public SCommand
|
2017-09-12 18:08:45 +00:00
|
|
|
{
|
2018-03-13 20:47:07 +00:00
|
|
|
SCommand_CreateBufferObject() : SCommand(CMD_CREATE_BUFFER_OBJECT) {}
|
|
|
|
|
|
|
|
int m_BufferIndex;
|
|
|
|
|
|
|
|
void *m_pUploadData;
|
|
|
|
size_t m_DataSize;
|
2017-09-12 18:08:45 +00:00
|
|
|
};
|
2018-03-13 20:47:07 +00:00
|
|
|
|
|
|
|
|
|
|
|
struct SCommand_RecreateBufferObject : public SCommand
|
2017-09-12 18:08:45 +00:00
|
|
|
{
|
2018-03-13 20:47:07 +00:00
|
|
|
SCommand_RecreateBufferObject() : SCommand(CMD_RECREATE_BUFFER_OBJECT) {}
|
|
|
|
|
|
|
|
int m_BufferIndex;
|
|
|
|
|
|
|
|
void *m_pUploadData;
|
|
|
|
size_t m_DataSize;
|
2017-09-12 18:08:45 +00:00
|
|
|
};
|
2018-03-13 20:47:07 +00:00
|
|
|
|
|
|
|
struct SCommand_UpdateBufferObject : public SCommand
|
2017-09-12 18:08:45 +00:00
|
|
|
{
|
2018-03-13 20:47:07 +00:00
|
|
|
SCommand_UpdateBufferObject() : SCommand(CMD_UPDATE_BUFFER_OBJECT) {}
|
|
|
|
|
|
|
|
int m_BufferIndex;
|
|
|
|
|
|
|
|
void *m_pOffset;
|
|
|
|
void *m_pUploadData;
|
|
|
|
size_t m_DataSize;
|
2017-09-12 18:08:45 +00:00
|
|
|
};
|
2018-03-13 20:47:07 +00:00
|
|
|
|
|
|
|
struct SCommand_CopyBufferObject : public SCommand
|
2017-09-12 18:08:45 +00:00
|
|
|
{
|
2018-03-13 20:47:07 +00:00
|
|
|
SCommand_CopyBufferObject() : SCommand(CMD_COPY_BUFFER_OBJECT) {}
|
|
|
|
|
|
|
|
int m_WriteBufferIndex;
|
|
|
|
int m_ReadBufferIndex;
|
|
|
|
|
|
|
|
size_t m_pReadOffset;
|
|
|
|
size_t m_pWriteOffset;
|
|
|
|
size_t m_CopySize;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct SCommand_DeleteBufferObject : public SCommand
|
|
|
|
{
|
|
|
|
SCommand_DeleteBufferObject() : SCommand(CMD_DELETE_BUFFER_OBJECT) {}
|
|
|
|
|
|
|
|
int m_BufferIndex;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct SCommand_CreateBufferContainer : public SCommand
|
|
|
|
{
|
|
|
|
SCommand_CreateBufferContainer() : SCommand(CMD_CREATE_BUFFER_CONTAINER) {}
|
|
|
|
|
|
|
|
int m_BufferContainerIndex;
|
|
|
|
|
|
|
|
int m_Stride;
|
|
|
|
|
|
|
|
int m_AttrCount;
|
|
|
|
SBufferContainerInfo::SAttribute* m_Attributes;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct SCommand_UpdateBufferContainer : public SCommand
|
|
|
|
{
|
|
|
|
SCommand_UpdateBufferContainer() : SCommand(CMD_UPDATE_BUFFER_CONTAINER) {}
|
|
|
|
|
|
|
|
int m_BufferContainerIndex;
|
|
|
|
|
|
|
|
int m_Stride;
|
|
|
|
|
|
|
|
int m_AttrCount;
|
|
|
|
SBufferContainerInfo::SAttribute* m_Attributes;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct SCommand_DeleteBufferContainer : public SCommand
|
|
|
|
{
|
|
|
|
SCommand_DeleteBufferContainer() : SCommand(CMD_DELETE_BUFFER_CONTAINER) {}
|
|
|
|
|
|
|
|
int m_BufferContainerIndex;
|
|
|
|
bool m_DestroyAllBO;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct SCommand_IndicesRequiredNumNotify : public SCommand
|
|
|
|
{
|
|
|
|
SCommand_IndicesRequiredNumNotify() : SCommand(CMD_INDICES_REQUIRED_NUM_NOTIFY) {}
|
|
|
|
|
|
|
|
unsigned int m_RequiredIndicesNum;
|
|
|
|
};
|
2019-04-26 22:11:15 +00:00
|
|
|
|
2018-03-13 20:47:07 +00:00
|
|
|
struct SCommand_RenderTileLayer : public SCommand
|
|
|
|
{
|
|
|
|
SCommand_RenderTileLayer() : SCommand(CMD_RENDER_TILE_LAYER) {}
|
2017-09-12 18:08:45 +00:00
|
|
|
SState m_State;
|
2017-09-27 10:16:34 +00:00
|
|
|
SColorf m_Color; //the color of the whole tilelayer -- already envelopped
|
2019-04-26 22:11:15 +00:00
|
|
|
|
2017-09-27 10:16:34 +00:00
|
|
|
//the char offset of all indices that should be rendered, and the amount of renders
|
|
|
|
char** m_pIndicesOffsets;
|
2017-12-02 21:19:57 +00:00
|
|
|
unsigned int *m_pDrawCount;
|
2019-04-26 22:11:15 +00:00
|
|
|
|
2017-09-12 18:08:45 +00:00
|
|
|
int m_IndicesDrawNum;
|
2018-03-13 20:47:07 +00:00
|
|
|
int m_BufferContainerIndex;
|
2017-09-12 18:08:45 +00:00
|
|
|
};
|
2019-04-26 22:11:15 +00:00
|
|
|
|
2017-09-12 18:08:45 +00:00
|
|
|
struct SCommand_RenderBorderTile : public SCommand
|
|
|
|
{
|
|
|
|
SCommand_RenderBorderTile() : SCommand(CMD_RENDER_BORDER_TILE) {}
|
|
|
|
SState m_State;
|
2017-09-27 10:16:34 +00:00
|
|
|
SColorf m_Color; //the color of the whole tilelayer -- already envelopped
|
2017-09-12 18:08:45 +00:00
|
|
|
char *m_pIndicesOffset; // you should use the command buffer data to allocate vertices for this command
|
|
|
|
unsigned int m_DrawNum;
|
2018-03-13 20:47:07 +00:00
|
|
|
int m_BufferContainerIndex;
|
2019-04-26 22:11:15 +00:00
|
|
|
|
2017-09-12 18:08:45 +00:00
|
|
|
float m_Offset[2];
|
|
|
|
float m_Dir[2];
|
|
|
|
int m_JumpIndex;
|
|
|
|
};
|
2019-04-26 22:11:15 +00:00
|
|
|
|
2017-09-12 18:08:45 +00:00
|
|
|
struct SCommand_RenderBorderTileLine : public SCommand
|
|
|
|
{
|
|
|
|
SCommand_RenderBorderTileLine() : SCommand(CMD_RENDER_BORDER_TILE_LINE) {}
|
|
|
|
SState m_State;
|
2017-09-27 10:16:34 +00:00
|
|
|
SColorf m_Color; //the color of the whole tilelayer -- already envelopped
|
2017-09-12 18:08:45 +00:00
|
|
|
char *m_pIndicesOffset; // you should use the command buffer data to allocate vertices for this command
|
|
|
|
unsigned int m_IndexDrawNum;
|
|
|
|
unsigned int m_DrawNum;
|
2018-03-13 20:47:07 +00:00
|
|
|
int m_BufferContainerIndex;
|
2019-04-26 22:11:15 +00:00
|
|
|
|
2018-08-02 16:26:12 +00:00
|
|
|
float m_Offset[2];
|
2017-09-12 18:08:45 +00:00
|
|
|
float m_Dir[2];
|
|
|
|
};
|
2018-03-13 20:47:07 +00:00
|
|
|
|
|
|
|
struct SCommand_RenderQuadLayer : public SCommand
|
|
|
|
{
|
|
|
|
SCommand_RenderQuadLayer() : SCommand(CMD_RENDER_QUAD_LAYER) {}
|
|
|
|
SState m_State;
|
|
|
|
|
|
|
|
int m_BufferContainerIndex;
|
|
|
|
SQuadRenderInfo* m_pQuadInfo;
|
|
|
|
int m_QuadNum;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct SCommand_RenderText : public SCommand
|
|
|
|
{
|
|
|
|
SCommand_RenderText() : SCommand(CMD_RENDER_TEXT) {}
|
|
|
|
SState m_State;
|
|
|
|
|
|
|
|
int m_BufferContainerIndex;
|
|
|
|
int m_TextureSize;
|
|
|
|
|
|
|
|
int m_TextTextureIndex;
|
|
|
|
int m_TextOutlineTextureIndex;
|
|
|
|
|
|
|
|
int m_DrawNum;
|
|
|
|
float m_aTextColor[4];
|
|
|
|
float m_aTextOutlineColor[4];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct SCommand_RenderTextStream : public SCommand
|
2017-09-12 18:08:45 +00:00
|
|
|
{
|
2018-03-13 20:47:07 +00:00
|
|
|
SCommand_RenderTextStream() : SCommand(CMD_RENDER_TEXT_STREAM) {}
|
|
|
|
SState m_State;
|
2019-04-26 22:11:15 +00:00
|
|
|
|
2018-03-13 20:47:07 +00:00
|
|
|
SVertex *m_pVertices;
|
|
|
|
int m_QuadNum;
|
|
|
|
|
|
|
|
int m_TextureSize;
|
|
|
|
|
|
|
|
int m_TextTextureIndex;
|
|
|
|
int m_TextOutlineTextureIndex;
|
|
|
|
|
|
|
|
float m_aTextOutlineColor[4];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct SCommand_RenderQuadContainer : public SCommand
|
|
|
|
{
|
|
|
|
SCommand_RenderQuadContainer() : SCommand(CMD_RENDER_QUAD_CONTAINER) {}
|
|
|
|
SState m_State;
|
|
|
|
|
|
|
|
int m_BufferContainerIndex;
|
|
|
|
|
|
|
|
unsigned int m_DrawNum;
|
|
|
|
void *m_pOffset;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct SCommand_RenderQuadContainerAsSprite : public SCommand
|
|
|
|
{
|
|
|
|
SCommand_RenderQuadContainerAsSprite() : SCommand(CMD_RENDER_QUAD_CONTAINER_SPRITE) {}
|
|
|
|
SState m_State;
|
|
|
|
|
|
|
|
int m_BufferContainerIndex;
|
|
|
|
|
|
|
|
float m_Rotation;
|
|
|
|
SPoint m_Center;
|
|
|
|
|
|
|
|
SColorf m_VertexColor;
|
|
|
|
|
|
|
|
unsigned int m_DrawNum;
|
|
|
|
void *m_pOffset;
|
|
|
|
};
|
|
|
|
|
|
|
|
struct SCommand_RenderQuadContainerAsSpriteMultiple : public SCommand
|
|
|
|
{
|
|
|
|
SCommand_RenderQuadContainerAsSpriteMultiple() : SCommand(CMD_RENDER_QUAD_CONTAINER_SPRITE_MULTIPLE) {}
|
|
|
|
SState m_State;
|
|
|
|
|
|
|
|
int m_BufferContainerIndex;
|
|
|
|
|
|
|
|
IGraphics::SRenderSpriteInfo *m_pRenderInfo;
|
|
|
|
|
|
|
|
SPoint m_Center;
|
|
|
|
SColorf m_VertexColor;
|
|
|
|
|
|
|
|
unsigned int m_DrawNum;
|
|
|
|
unsigned int m_DrawCount;
|
|
|
|
void *m_pOffset;
|
2017-09-12 18:08:45 +00:00
|
|
|
};
|
2011-12-31 00:11:24 +00:00
|
|
|
|
2012-01-01 12:38:46 +00:00
|
|
|
struct SCommand_Screenshot : public SCommand
|
|
|
|
{
|
|
|
|
SCommand_Screenshot() : SCommand(CMD_SCREENSHOT) {}
|
2012-01-01 13:15:35 +00:00
|
|
|
CImageInfo *m_pImage; // processor will fill this out, the one who adds this command must free the data as well
|
2012-01-01 12:38:46 +00:00
|
|
|
};
|
|
|
|
|
2012-01-01 13:30:45 +00:00
|
|
|
struct SCommand_VideoModes : public SCommand
|
|
|
|
{
|
2016-04-29 22:34:12 +00:00
|
|
|
SCommand_VideoModes() : SCommand(CMD_VIDEOMODES) {}
|
2012-01-01 13:30:45 +00:00
|
|
|
|
|
|
|
CVideoMode *m_pModes; // processor will fill this in
|
|
|
|
int m_MaxModes; // maximum of modes the processor can write to the m_pModes
|
|
|
|
int *m_pNumModes; // processor will write to this pointer
|
2015-08-24 20:46:28 +00:00
|
|
|
int m_Screen;
|
2012-01-01 13:30:45 +00:00
|
|
|
};
|
|
|
|
|
2011-12-31 00:11:24 +00:00
|
|
|
struct SCommand_Swap : public SCommand
|
|
|
|
{
|
|
|
|
SCommand_Swap() : SCommand(CMD_SWAP) {}
|
2012-01-06 13:12:49 +00:00
|
|
|
|
|
|
|
int m_Finish;
|
2011-12-31 00:11:24 +00:00
|
|
|
};
|
2011-12-31 08:40:11 +00:00
|
|
|
|
2016-04-29 22:34:12 +00:00
|
|
|
struct SCommand_VSync : public SCommand
|
|
|
|
{
|
|
|
|
SCommand_VSync() : SCommand(CMD_VSYNC) {}
|
|
|
|
|
|
|
|
int m_VSync;
|
|
|
|
bool *m_pRetOk;
|
|
|
|
};
|
|
|
|
|
2016-04-30 15:59:58 +00:00
|
|
|
struct SCommand_Resize : public SCommand
|
|
|
|
{
|
|
|
|
SCommand_Resize() : SCommand(CMD_RESIZE) {}
|
|
|
|
|
|
|
|
int m_Width;
|
|
|
|
int m_Height;
|
|
|
|
};
|
|
|
|
|
2011-12-31 08:40:11 +00:00
|
|
|
struct SCommand_Texture_Create : public SCommand
|
|
|
|
{
|
|
|
|
SCommand_Texture_Create() : SCommand(CMD_TEXTURE_CREATE) {}
|
|
|
|
|
|
|
|
// texture information
|
|
|
|
int m_Slot;
|
|
|
|
|
|
|
|
int m_Width;
|
|
|
|
int m_Height;
|
2012-10-06 21:31:02 +00:00
|
|
|
int m_PixelSize;
|
2011-12-31 08:40:11 +00:00
|
|
|
int m_Format;
|
|
|
|
int m_StoreFormat;
|
2011-12-31 10:18:55 +00:00
|
|
|
int m_Flags;
|
2011-12-31 08:40:11 +00:00
|
|
|
void *m_pData; // will be freed by the command processor
|
|
|
|
};
|
|
|
|
|
|
|
|
struct SCommand_Texture_Update : public SCommand
|
|
|
|
{
|
|
|
|
SCommand_Texture_Update() : SCommand(CMD_TEXTURE_UPDATE) {}
|
|
|
|
|
|
|
|
// texture information
|
|
|
|
int m_Slot;
|
|
|
|
|
|
|
|
int m_X;
|
|
|
|
int m_Y;
|
|
|
|
int m_Width;
|
|
|
|
int m_Height;
|
|
|
|
int m_Format;
|
|
|
|
void *m_pData; // will be freed by the command processor
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct SCommand_Texture_Destroy : public SCommand
|
|
|
|
{
|
|
|
|
SCommand_Texture_Destroy() : SCommand(CMD_TEXTURE_DESTROY) {}
|
|
|
|
|
|
|
|
// texture information
|
|
|
|
int m_Slot;
|
|
|
|
};
|
2015-07-09 00:08:14 +00:00
|
|
|
|
2011-12-31 00:11:24 +00:00
|
|
|
//
|
|
|
|
CCommandBuffer(unsigned CmdBufferSize, unsigned DataBufferSize)
|
|
|
|
: m_CmdBuffer(CmdBufferSize), m_DataBuffer(DataBufferSize)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void *AllocData(unsigned WantedSize)
|
|
|
|
{
|
|
|
|
return m_DataBuffer.Alloc(WantedSize);
|
|
|
|
}
|
|
|
|
|
|
|
|
template<class T>
|
2012-01-03 21:01:37 +00:00
|
|
|
bool AddCommand(const T &Command)
|
2011-12-31 00:11:24 +00:00
|
|
|
{
|
2012-01-03 20:39:10 +00:00
|
|
|
// make sure that we don't do something stupid like ->AddCommand(&Cmd);
|
|
|
|
(void)static_cast<const SCommand *>(&Command);
|
|
|
|
|
|
|
|
// allocate and copy the command into the buffer
|
2011-12-31 00:11:24 +00:00
|
|
|
SCommand *pCmd = (SCommand *)m_CmdBuffer.Alloc(sizeof(Command));
|
|
|
|
if(!pCmd)
|
2012-01-03 21:01:37 +00:00
|
|
|
return false;
|
2011-12-31 00:11:24 +00:00
|
|
|
mem_copy(pCmd, &Command, sizeof(Command));
|
|
|
|
pCmd->m_Size = sizeof(Command);
|
2012-01-03 21:01:37 +00:00
|
|
|
return true;
|
2011-12-31 00:11:24 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
SCommand *GetCommand(unsigned *pIndex)
|
|
|
|
{
|
|
|
|
if(*pIndex >= m_CmdBuffer.DataUsed())
|
|
|
|
return NULL;
|
|
|
|
|
|
|
|
SCommand *pCommand = (SCommand *)&m_CmdBuffer.DataPtr()[*pIndex];
|
|
|
|
*pIndex += pCommand->m_Size;
|
|
|
|
return pCommand;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Reset()
|
|
|
|
{
|
|
|
|
m_CmdBuffer.Reset();
|
|
|
|
m_DataBuffer.Reset();
|
2012-01-03 21:01:37 +00:00
|
|
|
}
|
2011-12-31 00:11:24 +00:00
|
|
|
};
|
|
|
|
|
2020-08-22 06:09:10 +00:00
|
|
|
enum EGraphicsBackendErrorCodes
|
|
|
|
{
|
|
|
|
GRAPHICS_BACKEND_ERROR_CODE_UNKNOWN = -1,
|
|
|
|
GRAPHICS_BACKEND_ERROR_CODE_NONE = 0,
|
|
|
|
GRAPHICS_BACKEND_ERROR_CODE_OPENGL_CONTEXT_FAILED,
|
|
|
|
GRAPHICS_BACKEND_ERROR_CODE_OPENGL_VERSION_FAILED,
|
|
|
|
GRAPHICS_BACKEND_ERROR_CODE_SDL_INIT_FAILED,
|
|
|
|
GRAPHICS_BACKEND_ERROR_CODE_SDL_SCREEN_REQUEST_FAILED,
|
|
|
|
GRAPHICS_BACKEND_ERROR_CODE_SDL_SCREEN_INFO_REQUEST_FAILED,
|
|
|
|
GRAPHICS_BACKEND_ERROR_CODE_SDL_SCREEN_RESOLUTION_REQUEST_FAILED,
|
|
|
|
GRAPHICS_BACKEND_ERROR_CODE_SDL_WINDOW_CREATE_FAILED,
|
|
|
|
};
|
|
|
|
|
2012-01-03 20:39:10 +00:00
|
|
|
// interface for the graphics backend
|
|
|
|
// all these functions are called on the main thread
|
|
|
|
class IGraphicsBackend
|
2011-12-31 00:11:24 +00:00
|
|
|
{
|
|
|
|
public:
|
2012-01-03 20:39:10 +00:00
|
|
|
enum
|
|
|
|
{
|
2020-04-07 20:37:46 +00:00
|
|
|
INITFLAG_FULLSCREEN = 1<<0,
|
|
|
|
INITFLAG_VSYNC = 1<<1,
|
|
|
|
INITFLAG_RESIZABLE = 1<<2,
|
|
|
|
INITFLAG_BORDERLESS = 1<<3,
|
2020-04-07 20:57:07 +00:00
|
|
|
INITFLAG_HIGHDPI = 1<<4,
|
2012-01-03 20:39:10 +00:00
|
|
|
};
|
2011-12-31 00:11:24 +00:00
|
|
|
|
2012-08-16 22:03:53 +00:00
|
|
|
virtual ~IGraphicsBackend() {}
|
|
|
|
|
2017-12-02 21:19:57 +00:00
|
|
|
virtual int Init(const char *pName, int *Screen, int *pWidth, int *pHeight, int FsaaSamples, int Flags, int *pDesktopWidth, int *pDesktopHeight, int *pCurrentWidth, int *pCurrentHeight, class IStorage *pStorage) = 0;
|
2012-01-03 20:39:10 +00:00
|
|
|
virtual int Shutdown() = 0;
|
2011-12-31 00:11:24 +00:00
|
|
|
|
2012-10-06 21:31:02 +00:00
|
|
|
virtual int MemoryUsage() const = 0;
|
|
|
|
|
2016-04-29 22:34:12 +00:00
|
|
|
virtual int GetNumScreens() const = 0;
|
|
|
|
|
2012-01-03 20:39:10 +00:00
|
|
|
virtual void Minimize() = 0;
|
|
|
|
virtual void Maximize() = 0;
|
2016-04-29 19:07:10 +00:00
|
|
|
virtual bool Fullscreen(bool State) = 0;
|
2016-04-29 22:34:12 +00:00
|
|
|
virtual void SetWindowBordered(bool State) = 0;
|
|
|
|
virtual bool SetWindowScreen(int Index) = 0;
|
|
|
|
virtual int GetWindowScreen() = 0;
|
2012-01-03 20:39:10 +00:00
|
|
|
virtual int WindowActive() = 0;
|
|
|
|
virtual int WindowOpen() = 0;
|
2015-08-24 23:01:38 +00:00
|
|
|
virtual void SetWindowGrab(bool Grab) = 0;
|
2014-10-18 14:17:36 +00:00
|
|
|
virtual void NotifyWindow() = 0;
|
2012-01-01 13:15:35 +00:00
|
|
|
|
2012-01-03 20:39:10 +00:00
|
|
|
virtual void RunBuffer(CCommandBuffer *pBuffer) = 0;
|
|
|
|
virtual bool IsIdle() const = 0;
|
|
|
|
virtual void WaitForIdle() = 0;
|
2019-04-26 22:11:15 +00:00
|
|
|
|
2020-08-18 18:26:35 +00:00
|
|
|
virtual bool IsNewOpenGL() { return false; }
|
2020-08-22 06:09:10 +00:00
|
|
|
virtual bool HasTileBuffering() { return false; }
|
|
|
|
virtual bool HasQuadBuffering() { return false; }
|
|
|
|
virtual bool HasTextBuffering() { return false; }
|
|
|
|
virtual bool HasQuadContainerBuffering() { return false; }
|
|
|
|
virtual bool Has2DTextureArrays() { return false; }
|
2011-12-31 00:11:24 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class CGraphics_Threaded : public IEngineGraphics
|
|
|
|
{
|
2012-01-03 21:01:37 +00:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
NUM_CMDBUFFERS = 2,
|
|
|
|
|
|
|
|
MAX_VERTICES = 32*1024,
|
|
|
|
MAX_TEXTURES = 1024*4,
|
2015-07-09 00:08:14 +00:00
|
|
|
|
2012-01-03 21:01:37 +00:00
|
|
|
DRAWING_QUADS=1,
|
|
|
|
DRAWING_LINES=2
|
|
|
|
};
|
|
|
|
|
2011-12-31 00:11:24 +00:00
|
|
|
CCommandBuffer::SState m_State;
|
2012-01-03 20:39:10 +00:00
|
|
|
IGraphicsBackend *m_pBackend;
|
2020-08-22 06:09:10 +00:00
|
|
|
bool m_OpenGLTileBufferingEnabled;
|
|
|
|
bool m_OpenGLQuadBufferingEnabled;
|
|
|
|
bool m_OpenGLTextBufferingEnabled;
|
|
|
|
bool m_OpenGLQuadContainerBufferingEnabled;
|
2020-08-19 05:05:51 +00:00
|
|
|
bool m_OpenGLHasTextureArrays;
|
2020-08-18 18:26:35 +00:00
|
|
|
bool m_IsNewOpenGL;
|
2011-12-31 00:11:24 +00:00
|
|
|
|
2012-01-03 21:01:37 +00:00
|
|
|
CCommandBuffer *m_apCommandBuffers[NUM_CMDBUFFERS];
|
2011-12-31 00:11:24 +00:00
|
|
|
CCommandBuffer *m_pCommandBuffer;
|
|
|
|
unsigned m_CurrentCommandBuffer;
|
|
|
|
|
|
|
|
//
|
|
|
|
class IStorage *m_pStorage;
|
|
|
|
class IConsole *m_pConsole;
|
|
|
|
|
|
|
|
CCommandBuffer::SVertex m_aVertices[MAX_VERTICES];
|
|
|
|
int m_NumVertices;
|
|
|
|
|
|
|
|
CCommandBuffer::SColor m_aColor[4];
|
|
|
|
CCommandBuffer::STexCoord m_aTexture[4];
|
|
|
|
|
|
|
|
bool m_RenderEnable;
|
|
|
|
|
|
|
|
float m_Rotation;
|
|
|
|
int m_Drawing;
|
|
|
|
bool m_DoScreenshot;
|
|
|
|
char m_aScreenshotName[128];
|
|
|
|
|
2012-08-12 10:41:50 +00:00
|
|
|
CTextureHandle m_InvalidTexture;
|
2011-12-31 00:11:24 +00:00
|
|
|
|
2012-10-06 21:31:02 +00:00
|
|
|
int m_aTextureIndices[MAX_TEXTURES];
|
2011-12-31 00:11:24 +00:00
|
|
|
int m_FirstFreeTexture;
|
|
|
|
int m_TextureMemoryUsage;
|
|
|
|
|
2020-08-29 10:49:45 +00:00
|
|
|
std::vector<SGraphicsWarning> m_Warnings;
|
|
|
|
|
2018-03-13 20:47:07 +00:00
|
|
|
struct SVertexArrayInfo
|
|
|
|
{
|
|
|
|
SVertexArrayInfo() : m_FreeIndex(-1) {}
|
|
|
|
// keep a reference to them, so we can free their IDs
|
|
|
|
std::vector<int> m_AssociatedBufferObjectIndices;
|
|
|
|
|
|
|
|
int m_FreeIndex;
|
|
|
|
};
|
|
|
|
std::vector<SVertexArrayInfo> m_VertexArrayInfo;
|
|
|
|
int m_FirstFreeVertexArrayInfo;
|
|
|
|
|
|
|
|
std::vector<int> m_BufferObjectIndices;
|
|
|
|
int m_FirstFreeBufferObjectIndex;
|
|
|
|
|
|
|
|
struct SQuadContainer
|
|
|
|
{
|
|
|
|
SQuadContainer()
|
|
|
|
{
|
|
|
|
m_Quads.clear();
|
|
|
|
m_QuadBufferObjectIndex = m_QuadBufferContainerIndex = -1;
|
|
|
|
m_FreeIndex = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct SQuad
|
|
|
|
{
|
|
|
|
CCommandBuffer::SVertex m_aVertices[4];
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
std::vector<SQuad> m_Quads;
|
|
|
|
|
|
|
|
int m_QuadBufferObjectIndex;
|
|
|
|
int m_QuadBufferContainerIndex;
|
|
|
|
|
|
|
|
int m_FreeIndex;
|
|
|
|
};
|
|
|
|
std::vector<SQuadContainer> m_QuadContainers;
|
|
|
|
int m_FirstFreeQuadContainer;
|
|
|
|
|
2018-03-21 14:48:48 +00:00
|
|
|
struct SWindowResizeListener
|
|
|
|
{
|
|
|
|
SWindowResizeListener(WINDOW_RESIZE_FUNC pFunc, void *pUser) : m_pFunc(pFunc), m_pUser(pUser) {}
|
|
|
|
WINDOW_RESIZE_FUNC m_pFunc;
|
|
|
|
void *m_pUser;
|
|
|
|
};
|
|
|
|
std::vector<SWindowResizeListener> m_ResizeListeners;
|
|
|
|
|
2018-03-13 20:47:07 +00:00
|
|
|
void* AllocCommandBufferData(unsigned AllocSize);
|
|
|
|
|
2011-12-31 00:11:24 +00:00
|
|
|
void AddVertices(int Count);
|
2018-03-13 20:47:07 +00:00
|
|
|
void Rotate(const CCommandBuffer::SPoint &rCenter, CCommandBuffer::SVertex *pPoints, int NumPoints);
|
2011-12-31 00:11:24 +00:00
|
|
|
|
2012-01-01 13:15:35 +00:00
|
|
|
void KickCommandBuffer();
|
|
|
|
|
2011-12-31 13:00:49 +00:00
|
|
|
int IssueInit();
|
|
|
|
int InitWindow();
|
2011-12-31 00:11:24 +00:00
|
|
|
public:
|
|
|
|
CGraphics_Threaded();
|
|
|
|
|
|
|
|
virtual void ClipEnable(int x, int y, int w, int h);
|
|
|
|
virtual void ClipDisable();
|
|
|
|
|
|
|
|
virtual void BlendNone();
|
|
|
|
virtual void BlendNormal();
|
|
|
|
virtual void BlendAdditive();
|
|
|
|
|
2012-01-08 00:47:53 +00:00
|
|
|
virtual void WrapNormal();
|
|
|
|
virtual void WrapClamp();
|
|
|
|
|
2011-12-31 00:11:24 +00:00
|
|
|
virtual int MemoryUsage() const;
|
|
|
|
|
|
|
|
virtual void MapScreen(float TopLeftX, float TopLeftY, float BottomRightX, float BottomRightY);
|
|
|
|
virtual void GetScreen(float *pTopLeftX, float *pTopLeftY, float *pBottomRightX, float *pBottomRightY);
|
|
|
|
|
|
|
|
virtual void LinesBegin();
|
|
|
|
virtual void LinesEnd();
|
|
|
|
virtual void LinesDraw(const CLineItem *pArray, int Num);
|
|
|
|
|
2012-08-12 10:41:50 +00:00
|
|
|
virtual int UnloadTexture(IGraphics::CTextureHandle Index);
|
2020-08-29 10:49:45 +00:00
|
|
|
virtual IGraphics::CTextureHandle LoadTextureRaw(int Width, int Height, int Format, const void *pData, int StoreFormat, int Flags, const char *pTexName = NULL);
|
2012-08-12 10:41:50 +00:00
|
|
|
virtual int LoadTextureRawSub(IGraphics::CTextureHandle TextureID, int x, int y, int Width, int Height, int Format, const void *pData);
|
2011-12-31 00:11:24 +00:00
|
|
|
|
|
|
|
// simple uncompressed RGBA loaders
|
2012-08-12 10:41:50 +00:00
|
|
|
virtual IGraphics::CTextureHandle LoadTexture(const char *pFilename, int StorageType, int StoreFormat, int Flags);
|
2011-12-31 00:11:24 +00:00
|
|
|
virtual int LoadPNG(CImageInfo *pImg, const char *pFilename, int StorageType);
|
|
|
|
|
2014-01-19 03:02:01 +00:00
|
|
|
void ScreenshotDirect();
|
2011-12-31 00:11:24 +00:00
|
|
|
|
2012-08-12 10:41:50 +00:00
|
|
|
virtual void TextureSet(CTextureHandle TextureID);
|
2011-12-31 00:11:24 +00:00
|
|
|
|
|
|
|
virtual void Clear(float r, float g, float b);
|
|
|
|
|
|
|
|
virtual void QuadsBegin();
|
|
|
|
virtual void QuadsEnd();
|
2018-03-13 20:47:07 +00:00
|
|
|
virtual void TextQuadsBegin();
|
|
|
|
virtual void TextQuadsEnd(int TextureSize, int TextTextureIndex, int TextOutlineTextureIndex, float* pOutlineTextColor);
|
|
|
|
virtual void QuadsEndKeepVertices();
|
|
|
|
virtual void QuadsDrawCurrentVertices(bool KeepVertices = true);
|
2011-12-31 00:11:24 +00:00
|
|
|
virtual void QuadsSetRotation(float Angle);
|
|
|
|
|
|
|
|
virtual void SetColorVertex(const CColorVertex *pArray, int Num);
|
|
|
|
virtual void SetColor(float r, float g, float b, float a);
|
2019-04-26 22:11:15 +00:00
|
|
|
virtual void SetColor(ColorRGBA rgb);
|
2018-03-13 20:47:07 +00:00
|
|
|
|
|
|
|
// go through all vertices and change their color (only works for quads)
|
|
|
|
virtual void ChangeColorOfCurrentQuadVertices(float r, float g, float b, float a);
|
2018-04-03 15:40:21 +00:00
|
|
|
virtual void ChangeColorOfQuadVertices(int QuadOffset, unsigned char r, unsigned char g, unsigned char b, unsigned char a);
|
2019-04-26 22:11:15 +00:00
|
|
|
|
2018-03-13 20:47:07 +00:00
|
|
|
void SetColor(CCommandBuffer::SVertex *pVertex, int ColorIndex);
|
2011-12-31 00:11:24 +00:00
|
|
|
|
|
|
|
virtual void QuadsSetSubset(float TlU, float TlV, float BrU, float BrV);
|
|
|
|
virtual void QuadsSetSubsetFree(
|
|
|
|
float x0, float y0, float x1, float y1,
|
|
|
|
float x2, float y2, float x3, float y3);
|
|
|
|
|
|
|
|
virtual void QuadsDraw(CQuadItem *pArray, int Num);
|
|
|
|
virtual void QuadsDrawTL(const CQuadItem *pArray, int Num);
|
|
|
|
virtual void QuadsDrawFreeform(const CFreeformItem *pArray, int Num);
|
2012-10-14 12:04:48 +00:00
|
|
|
virtual void QuadsText(float x, float y, float Size, const char *pText);
|
2011-12-31 00:11:24 +00:00
|
|
|
|
2018-03-13 20:47:07 +00:00
|
|
|
virtual int CreateQuadContainer();
|
2018-04-15 17:34:56 +00:00
|
|
|
virtual void QuadContainerUpload(int ContainerIndex);
|
2018-03-13 20:47:07 +00:00
|
|
|
virtual void QuadContainerAddQuads(int ContainerIndex, CQuadItem *pArray, int Num);
|
|
|
|
virtual void QuadContainerAddQuads(int ContainerIndex, CFreeformItem *pArray, int Num);
|
|
|
|
virtual void QuadContainerReset(int ContainerIndex);
|
|
|
|
virtual void DeleteQuadContainer(int ContainerIndex);
|
|
|
|
virtual void RenderQuadContainer(int ContainerIndex, int QuadDrawNum);
|
|
|
|
virtual void RenderQuadContainer(int ContainerIndex, int QuadOffset, int QuadDrawNum);
|
|
|
|
virtual void RenderQuadContainerAsSprite(int ContainerIndex, int QuadOffset, float X, float Y, float ScaleX = 1.f, float ScaleY = 1.f);
|
|
|
|
virtual void RenderQuadContainerAsSpriteMultiple(int ContainerIndex, int QuadOffset, int DrawCount, SRenderSpriteInfo *pRenderInfo);
|
|
|
|
|
|
|
|
virtual void FlushVertices(bool KeepVertices = false);
|
|
|
|
virtual void FlushTextVertices(int TextureSize, int TextTextureIndex, int TextOutlineTextureIndex, float *pOutlineTextColor);
|
|
|
|
|
2018-08-02 16:26:12 +00:00
|
|
|
virtual void RenderTileLayer(int BufferContainerIndex, float *pColor, char **pOffsets, unsigned int *IndicedVertexDrawNum, size_t NumIndicesOffet);
|
|
|
|
virtual void RenderBorderTiles(int BufferContainerIndex, float *pColor, char *pIndexBufferOffset, float *pOffset, float *pDir, int JumpIndex, unsigned int DrawNum);
|
|
|
|
virtual void RenderBorderTileLines(int BufferContainerIndex, float *pColor, char *pIndexBufferOffset, float *pOffset, float *pDir, unsigned int IndexDrawNum, unsigned int RedrawNum);
|
2018-03-13 20:47:07 +00:00
|
|
|
virtual void RenderQuadLayer(int BufferContainerIndex, SQuadRenderInfo* pQuadInfo, int QuadNum);
|
|
|
|
virtual void RenderText(int BufferContainerIndex, int TextQuadNum, int TextureSize, int TextureTextIndex, int TextureTextOutlineIndex, float* pTextColor, float* pTextoutlineColor);
|
|
|
|
|
|
|
|
// opengl 3.3 functions
|
|
|
|
virtual int CreateBufferObject(size_t UploadDataSize, void* pUploadData);
|
|
|
|
virtual void RecreateBufferObject(int BufferIndex, size_t UploadDataSize, void* pUploadData);
|
|
|
|
virtual void UpdateBufferObject(int BufferIndex, size_t UploadDataSize, void* pUploadData, void* pOffset);
|
|
|
|
virtual void CopyBufferObject(int WriteBufferIndex, int ReadBufferIndex, size_t WriteOffset, size_t ReadOffset, size_t CopyDataSize);
|
|
|
|
virtual void DeleteBufferObject(int BufferIndex);
|
|
|
|
|
|
|
|
virtual int CreateBufferContainer(SBufferContainerInfo *pContainerInfo);
|
|
|
|
// destroying all buffer objects means, that all referenced VBOs are destroyed automatically, so the user does not need to save references to them
|
|
|
|
virtual void DeleteBufferContainer(int ContainerIndex, bool DestroyAllBO = true);
|
|
|
|
virtual void UpdateBufferContainer(int ContainerIndex, SBufferContainerInfo *pContainerInfo);
|
|
|
|
virtual void IndicesNumRequiredNotify(unsigned int RequiredIndicesCount);
|
|
|
|
|
|
|
|
|
2016-04-29 22:34:12 +00:00
|
|
|
virtual int GetNumScreens() const;
|
2011-12-31 00:11:24 +00:00
|
|
|
virtual void Minimize();
|
|
|
|
virtual void Maximize();
|
2016-04-29 19:07:10 +00:00
|
|
|
virtual bool Fullscreen(bool State);
|
2016-04-29 22:34:12 +00:00
|
|
|
virtual void SetWindowBordered(bool State);
|
|
|
|
virtual bool SetWindowScreen(int Index);
|
2016-04-30 15:59:58 +00:00
|
|
|
virtual void Resize(int w, int h);
|
2018-03-21 14:48:48 +00:00
|
|
|
virtual void AddWindowResizeListener(WINDOW_RESIZE_FUNC pFunc, void *pUser);
|
2016-04-29 22:34:12 +00:00
|
|
|
virtual int GetWindowScreen();
|
2011-12-31 00:11:24 +00:00
|
|
|
|
|
|
|
virtual int WindowActive();
|
|
|
|
virtual int WindowOpen();
|
|
|
|
|
2015-08-24 23:01:38 +00:00
|
|
|
virtual void SetWindowGrab(bool Grab);
|
2014-10-18 14:17:36 +00:00
|
|
|
virtual void NotifyWindow();
|
|
|
|
|
2012-01-03 20:39:10 +00:00
|
|
|
virtual int Init();
|
2011-12-31 00:11:24 +00:00
|
|
|
virtual void Shutdown();
|
|
|
|
|
|
|
|
virtual void TakeScreenshot(const char *pFilename);
|
2014-01-19 03:02:01 +00:00
|
|
|
virtual void TakeCustomScreenshot(const char *pFilename);
|
2011-12-31 00:11:24 +00:00
|
|
|
virtual void Swap();
|
2016-04-29 22:34:12 +00:00
|
|
|
virtual bool SetVSync(bool State);
|
2011-12-31 00:11:24 +00:00
|
|
|
|
2015-08-24 20:46:28 +00:00
|
|
|
virtual int GetVideoModes(CVideoMode *pModes, int MaxModes, int Screen);
|
|
|
|
|
|
|
|
virtual int GetDesktopScreenWidth() { return m_DesktopScreenWidth; }
|
|
|
|
virtual int GetDesktopScreenHeight() { return m_DesktopScreenHeight; }
|
2011-12-31 00:11:24 +00:00
|
|
|
|
2018-02-04 15:00:47 +00:00
|
|
|
// synchronization
|
2011-12-31 09:04:46 +00:00
|
|
|
virtual void InsertSignal(semaphore *pSemaphore);
|
|
|
|
virtual bool IsIdle();
|
|
|
|
virtual void WaitForIdle();
|
2019-04-26 22:11:15 +00:00
|
|
|
|
2020-08-29 10:49:45 +00:00
|
|
|
virtual SGraphicsWarning *GetCurWarning();
|
|
|
|
|
2020-08-22 06:09:10 +00:00
|
|
|
virtual bool IsTileBufferingEnabled() { return m_OpenGLTileBufferingEnabled; }
|
|
|
|
virtual bool IsQuadBufferingEnabled() { return m_OpenGLQuadBufferingEnabled; }
|
|
|
|
virtual bool IsTextBufferingEnabled() { return m_OpenGLTextBufferingEnabled; }
|
|
|
|
virtual bool IsQuadContainerBufferingEnabled() { return m_OpenGLQuadContainerBufferingEnabled; }
|
2020-08-19 05:05:51 +00:00
|
|
|
virtual bool HasTextureArrays() { return m_OpenGLHasTextureArrays; }
|
2012-01-03 20:39:10 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
extern IGraphicsBackend *CreateGraphicsBackend();
|
2018-07-06 14:11:38 +00:00
|
|
|
|
|
|
|
#endif // ENGINE_CLIENT_GRAPHICS_THREADED_H
|