2019-10-17 07:42:11 +00:00
/*
* * glbackend . cpp
* *
* * OpenGL API abstraction
* *
* * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
* * Copyright 2019 Christoph Oelckers
* * All rights reserved .
* *
* * Redistribution and use in source and binary forms , with or without
* * modification , are permitted provided that the following conditions
* * are met :
* *
* * 1. Redistributions of source code must retain the above copyright
* * notice , this list of conditions and the following disclaimer .
* * 2. Redistributions in binary form must reproduce the above copyright
* * notice , this list of conditions and the following disclaimer in the
* * documentation and / or other materials provided with the distribution .
* * 3. The name of the author may not be used to endorse or promote products
* * derived from this software without specific prior written permission .
* *
* * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ` ` AS IS ' ' AND ANY EXPRESS OR
* * IMPLIED WARRANTIES , INCLUDING , BUT NOT LIMITED TO , THE IMPLIED WARRANTIES
* * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED .
* * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT , INDIRECT ,
* * INCIDENTAL , SPECIAL , EXEMPLARY , OR CONSEQUENTIAL DAMAGES ( INCLUDING , BUT
* * NOT LIMITED TO , PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES ; LOSS OF USE ,
* * DATA , OR PROFITS ; OR BUSINESS INTERRUPTION ) HOWEVER CAUSED AND ON ANY
* * THEORY OF LIABILITY , WHETHER IN CONTRACT , STRICT LIABILITY , OR TORT
* * ( INCLUDING NEGLIGENCE OR OTHERWISE ) ARISING IN ANY WAY OUT OF THE USE OF
* * THIS SOFTWARE , EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE .
* * - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
* *
*/
2019-10-04 21:29:00 +00:00
# include <memory>
2019-09-16 17:35:04 +00:00
# include "glad/glad.h"
2019-10-06 17:32:35 +00:00
# include "glbackend.h"
2019-09-16 20:56:48 +00:00
# include "gl_samplers.h"
2019-10-05 10:28:08 +00:00
# include "gl_shader.h"
2019-10-17 18:29:58 +00:00
# include "textures.h"
# include "palette.h"
2019-09-16 17:35:04 +00:00
2019-10-04 19:13:04 +00:00
# include "baselayer.h"
2019-10-04 21:29:00 +00:00
# include "resourcefile.h"
std : : unique_ptr < FResourceFile > engine_res ;
// The resourge manager in cache1d is far too broken to add some arbitrary file without some adjustment.
// For now, keep this file here, until the resource management can be redone in a more workable fashion.
extern FString progdir ;
void InitBaseRes ( )
{
if ( ! engine_res )
{
// If we get here for the first time, load the engine-internal data.
FString baseres = progdir + " demolition.pk3 " ;
engine_res . reset ( FResourceFile : : OpenResourceFile ( baseres , true , true ) ) ;
if ( ! engine_res )
{
2019-10-19 17:22:23 +00:00
FStringf msg ( " Engine resources (%s) not found " , baseres.GetChars()) ;
wm_msgbox ( " Fatal error " , msg . GetChars ( ) ) ;
2019-10-04 21:29:00 +00:00
exit ( - 1 ) ;
}
}
}
FileReader GetBaseResource ( const char * fn )
{
auto lump = engine_res - > FindLump ( fn ) ;
if ( ! lump )
{
wm_msgbox ( " Fatal error " , " Base resource '%s' not found " , fn ) ;
exit ( - 1 ) ;
}
return lump - > NewReader ( ) ;
}
2019-09-23 21:33:59 +00:00
2019-09-16 17:35:04 +00:00
GLInstance GLInterface ;
2019-10-06 19:15:53 +00:00
GLInstance : : GLInstance ( )
: palmanager ( this )
{
}
2019-09-16 20:56:48 +00:00
void GLInstance : : Init ( )
{
2019-10-04 21:29:00 +00:00
InitBaseRes ( ) ;
2019-09-18 18:44:21 +00:00
if ( ! mSamplers )
{
mSamplers = new FSamplerManager ;
memset ( LastBoundTextures , 0 , sizeof ( LastBoundTextures ) ) ;
}
2019-10-04 19:13:04 +00:00
glinfo . vendor = ( const char * ) glGetString ( GL_VENDOR ) ;
glinfo . renderer = ( const char * ) glGetString ( GL_RENDERER ) ;
glinfo . version = ( const char * ) glGetString ( GL_VERSION ) ;
glinfo . extensions = ( const char * ) glGetString ( GL_EXTENSIONS ) ;
glinfo . bufferstorage = ! ! strstr ( glinfo . extensions , " GL_ARB_buffer_storage " ) ;
glGetFloatv ( GL_MAX_TEXTURE_MAX_ANISOTROPY_EXT , & glinfo . maxanisotropy ) ;
if ( ! glinfo . dumped )
{
osdcmd_glinfo ( NULL ) ;
glinfo . dumped = 1 ;
}
2019-10-05 10:28:08 +00:00
new ( & renderState ) PolymostRenderState ; // reset to defaults.
2019-10-06 08:19:51 +00:00
try
{
LoadSurfaceShader ( ) ;
LoadVPXShader ( ) ;
LoadPolymostShader ( ) ;
}
catch ( const std : : runtime_error & err )
{
// This is far from an optimal solution but at this point the only way to get the error out.
2019-10-17 07:42:11 +00:00
wm_msgbox ( nullptr , " Shader compilation failed: %s " , err . what ( ) ) ;
2019-10-06 08:19:51 +00:00
exit ( 1 ) ;
}
2019-10-04 19:13:04 +00:00
2019-09-16 20:56:48 +00:00
}
2019-10-05 10:28:08 +00:00
void GLInstance : : LoadPolymostShader ( )
{
auto fr1 = GetBaseResource ( " demolition/shaders/glsl/polymost.vp " ) ;
2019-10-05 11:38:02 +00:00
TArray < uint8_t > Vert = fr1 . Read ( ) ;
2019-10-05 10:28:08 +00:00
fr1 = GetBaseResource ( " demolition/shaders/glsl/polymost.fp " ) ;
2019-10-05 11:38:02 +00:00
TArray < uint8_t > Frag = fr1 . Read ( ) ;
2019-10-05 10:28:08 +00:00
// Zero-terminate both strings.
2019-10-05 11:38:02 +00:00
Vert . Push ( 0 ) ;
Frag . Push ( 0 ) ;
2019-10-05 10:28:08 +00:00
polymostShader = new PolymostShader ( ) ;
2019-10-06 08:19:51 +00:00
polymostShader - > Load ( " PolymostShader " , ( const char * ) Vert . Data ( ) , ( const char * ) Frag . Data ( ) ) ;
2019-10-05 10:28:08 +00:00
SetPolymostShader ( ) ;
}
2019-10-05 11:38:02 +00:00
void GLInstance : : LoadVPXShader ( )
{
auto fr1 = GetBaseResource ( " demolition/shaders/glsl/animvpx.vp " ) ;
TArray < uint8_t > Vert = fr1 . Read ( ) ;
fr1 = GetBaseResource ( " demolition/shaders/glsl/animvpx.fp " ) ;
TArray < uint8_t > Frag = fr1 . Read ( ) ;
// Zero-terminate both strings.
Vert . Push ( 0 ) ;
Frag . Push ( 0 ) ;
vpxShader = new FShader ( ) ;
2019-10-06 08:19:51 +00:00
vpxShader - > Load ( " VPXShader " , ( const char * ) Vert . Data ( ) , ( const char * ) Frag . Data ( ) ) ;
2019-10-05 11:38:02 +00:00
}
2019-10-05 11:09:15 +00:00
void GLInstance : : LoadSurfaceShader ( )
{
2019-10-05 12:17:59 +00:00
auto fr1 = GetBaseResource ( " demolition/shaders/glsl/glsurface.vp " ) ;
2019-10-05 11:09:15 +00:00
TArray < uint8_t > Vert = fr1 . Read ( ) ;
2019-10-05 12:17:59 +00:00
fr1 = GetBaseResource ( " demolition/shaders/glsl/glsurface.fp " ) ;
2019-10-05 11:09:15 +00:00
TArray < uint8_t > Frag = fr1 . Read ( ) ;
// Zero-terminate both strings.
Vert . Push ( 0 ) ;
Frag . Push ( 0 ) ;
surfaceShader = new SurfaceShader ( ) ;
2019-10-06 08:19:51 +00:00
surfaceShader - > Load ( " SurfaceShader " , ( const char * ) Vert . Data ( ) , ( const char * ) Frag . Data ( ) ) ;
2019-10-05 11:09:15 +00:00
}
2019-10-05 10:28:08 +00:00
2019-10-04 16:12:03 +00:00
void GLInstance : : InitGLState ( int fogmode , int multisample )
{
glShadeModel ( GL_SMOOTH ) ; // GL_FLAT
glHint ( GL_PERSPECTIVE_CORRECTION_HINT , GL_NICEST ) ;
glDisable ( GL_DITHER ) ;
glEnable ( GL_TEXTURE_2D ) ;
glHint ( GL_FOG_HINT , GL_NICEST ) ;
glBlendFunc ( GL_SRC_ALPHA , GL_ONE_MINUS_SRC_ALPHA ) ;
glPixelStorei ( GL_PACK_ALIGNMENT , 1 ) ;
glPixelStorei ( GL_UNPACK_ALIGNMENT , 1 ) ;
glEnable ( GL_DEPTH_CLAMP ) ;
if ( multisample > 0 )
{
glHint ( GL_MULTISAMPLE_FILTER_HINT_NV , GL_NICEST ) ;
glEnable ( GL_MULTISAMPLE ) ;
}
glGetIntegerv ( GL_MAX_TEXTURE_SIZE , & maxTextureSize ) ;
}
2019-09-16 20:56:48 +00:00
void GLInstance : : Deinit ( )
{
if ( mSamplers ) delete mSamplers ;
2019-09-23 21:33:59 +00:00
mSamplers = nullptr ;
2019-10-05 10:28:08 +00:00
if ( polymostShader ) delete polymostShader ;
polymostShader = nullptr ;
2019-10-06 19:15:53 +00:00
if ( surfaceShader ) delete surfaceShader ;
surfaceShader = nullptr ;
if ( vpxShader ) delete vpxShader ;
vpxShader = nullptr ;
2019-10-05 10:28:08 +00:00
activeShader = nullptr ;
2019-10-06 19:15:53 +00:00
palmanager . DeleteAll ( ) ;
2019-10-06 22:07:45 +00:00
lastPalswapIndex = - 1 ;
2019-09-16 20:56:48 +00:00
}
2019-09-16 17:35:04 +00:00
std : : pair < size_t , BaseVertex * > GLInstance : : AllocVertices ( size_t num )
{
Buffer . resize ( num ) ;
return std : : make_pair ( ( size_t ) 0 , Buffer . data ( ) ) ;
}
2019-10-17 12:21:51 +00:00
void GLInstance : : RestoreTextureProps ( )
{
// todo: reset everything that's needed to ensure proper functionality
VSMatrix identity ( 0 ) ;
2019-10-18 17:06:57 +00:00
if ( MatrixChange & 1 ) GLInterface . SetMatrix ( Matrix_Texture , & identity ) ;
if ( MatrixChange & 2 ) GLInterface . SetMatrix ( Matrix_Detail , & identity ) ;
MatrixChange = 0 ;
2019-10-17 12:21:51 +00:00
}
static GLint primtypes [ ] =
2019-09-16 17:35:04 +00:00
{
GL_TRIANGLES ,
GL_TRIANGLE_STRIP ,
GL_TRIANGLE_FAN ,
GL_QUADS ,
GL_LINES
} ;
void GLInstance : : Draw ( EDrawType type , size_t start , size_t count )
{
2019-10-09 22:07:45 +00:00
// Todo: Based on the current tinting flags and the texture type (indexed texture and APPLYOVERPALSWAP not set) this may have to reset the palette for the draw call / texture creation.
2019-10-17 12:21:51 +00:00
bool applied = false ;
2019-10-09 22:07:45 +00:00
2019-10-10 19:24:09 +00:00
if ( activeShader = = polymostShader )
{
renderState . Apply ( polymostShader ) ;
}
2019-09-16 17:35:04 +00:00
glBegin ( primtypes [ type ] ) ;
auto p = & Buffer [ start ] ;
for ( size_t i = 0 ; i < count ; i + + , p + + )
{
2019-10-06 08:46:23 +00:00
glVertexAttrib2f ( 1 , p - > u , p - > v ) ;
glVertexAttrib3f ( 0 , p - > x , p - > y , p - > z ) ;
2019-09-16 17:35:04 +00:00
}
glEnd ( ) ;
2019-10-18 17:06:57 +00:00
if ( MatrixChange ) RestoreTextureProps ( ) ;
2019-09-16 17:35:04 +00:00
}
2019-09-16 20:56:48 +00:00
2019-09-17 17:03:42 +00:00
int GLInstance : : GetTextureID ( )
{
2019-10-19 08:40:47 +00:00
uint32_t id = 0 ;
glGenTextures ( 1 , & id ) ;
return id ;
2019-09-17 17:03:42 +00:00
}
2019-09-16 20:56:48 +00:00
2019-09-18 18:44:21 +00:00
FHardwareTexture * GLInstance : : NewTexture ( )
{
return new FHardwareTexture ;
}
2019-10-10 17:16:27 +00:00
2019-09-18 18:44:21 +00:00
void GLInstance : : BindTexture ( int texunit , FHardwareTexture * tex , int sampler )
2019-09-16 20:56:48 +00:00
{
2019-09-18 18:44:21 +00:00
if ( ! tex ) return ;
2019-09-17 17:03:42 +00:00
if ( texunit ! = 0 ) glActiveTexture ( GL_TEXTURE0 + texunit ) ;
2019-09-18 18:44:21 +00:00
glBindTexture ( GL_TEXTURE_2D , tex - > GetTextureHandle ( ) ) ;
mSamplers - > Bind ( texunit , sampler = = NoSampler ? tex - > GetSampler ( ) : sampler , 0 ) ;
2019-09-17 17:03:42 +00:00
if ( texunit ! = 0 ) glActiveTexture ( GL_TEXTURE0 ) ;
2019-09-18 18:44:21 +00:00
LastBoundTextures [ texunit ] = tex - > GetTextureHandle ( ) ;
2019-10-10 19:24:09 +00:00
if ( texunit = = 0 ) texv = tex ;
2019-09-17 17:03:42 +00:00
}
void GLInstance : : UnbindTexture ( int texunit )
{
if ( LastBoundTextures [ texunit ] ! = 0 )
{
if ( texunit ! = 0 ) glActiveTexture ( GL_TEXTURE0 + texunit ) ;
glBindTexture ( GL_TEXTURE_2D , 0 ) ;
if ( texunit ! = 0 ) glActiveTexture ( GL_TEXTURE0 ) ;
LastBoundTextures [ texunit ] = 0 ;
}
}
void GLInstance : : UnbindAllTextures ( )
{
for ( int texunit = 0 ; texunit < MAX_TEXTURES ; texunit + + )
{
UnbindTexture ( texunit ) ;
}
}
2019-10-04 16:12:03 +00:00
void GLInstance : : EnableBlend ( bool on )
{
if ( on ) glEnable ( GL_BLEND ) ;
else glDisable ( GL_BLEND ) ;
}
void GLInstance : : EnableAlphaTest ( bool on )
{
if ( on ) glEnable ( GL_ALPHA_TEST ) ;
else glDisable ( GL_ALPHA_TEST ) ;
}
void GLInstance : : EnableDepthTest ( bool on )
{
if ( on ) glEnable ( GL_DEPTH_TEST ) ;
else glDisable ( GL_DEPTH_TEST ) ;
}
void GLInstance : : SetMatrix ( int num , const VSMatrix * mat )
{
matrices [ num ] = * mat ;
switch ( num )
{
2019-10-05 10:28:08 +00:00
default :
return ;
2019-10-06 08:19:51 +00:00
2019-10-05 10:28:08 +00:00
case Matrix_View :
polymostShader - > RotMatrix . Set ( mat - > get ( ) ) ;
break ;
2019-10-04 16:12:03 +00:00
case Matrix_Projection :
2019-10-06 08:19:51 +00:00
polymostShader - > ProjectionMatrix . Set ( mat - > get ( ) ) ;
2019-10-04 16:12:03 +00:00
break ;
case Matrix_ModelView :
2019-10-06 08:19:51 +00:00
polymostShader - > ModelMatrix . Set ( mat - > get ( ) ) ;
2019-10-04 16:12:03 +00:00
break ;
2019-10-06 08:19:51 +00:00
case Matrix_Detail :
polymostShader - > DetailMatrix . Set ( mat - > get ( ) ) ;
break ;
2019-10-10 17:40:33 +00:00
case Matrix_Texture :
polymostShader - > TextureMatrix . Set ( mat - > get ( ) ) ;
break ;
2019-10-04 16:12:03 +00:00
}
}
void GLInstance : : EnableStencilWrite ( int value )
{
glEnable ( GL_STENCIL_TEST ) ;
glClear ( GL_STENCIL_BUFFER_BIT ) ;
glStencilOp ( GL_REPLACE , GL_REPLACE , GL_REPLACE ) ;
glStencilFunc ( GL_ALWAYS , value , 0xFF ) ;
}
void GLInstance : : EnableStencilTest ( int value )
{
glEnable ( GL_STENCIL_TEST ) ;
glStencilFunc ( GL_EQUAL , value , 0xFF ) ;
glStencilOp ( GL_KEEP , GL_KEEP , GL_KEEP ) ;
}
void GLInstance : : DisableStencil ( )
{
glDisable ( GL_STENCIL_TEST ) ;
}
2019-10-04 19:13:04 +00:00
void GLInstance : : SetCull ( int type , int winding )
2019-10-04 16:12:03 +00:00
{
if ( type = = Cull_None )
{
glDisable ( GL_CULL_FACE ) ;
}
else if ( type = = Cull_Front )
{
2019-10-04 19:13:04 +00:00
glFrontFace ( winding = = Winding_CW ? GL_CW : GL_CCW ) ;
2019-10-04 16:12:03 +00:00
glEnable ( GL_CULL_FACE ) ;
glCullFace ( GL_FRONT ) ;
}
else if ( type = = Cull_Back )
{
2019-10-04 19:13:04 +00:00
glFrontFace ( winding = = Winding_CW ? GL_CW : GL_CCW ) ;
2019-10-04 16:12:03 +00:00
glEnable ( GL_CULL_FACE ) ;
glCullFace ( GL_BACK ) ;
}
}
2019-10-04 16:25:18 +00:00
void GLInstance : : SetColor ( float r , float g , float b , float a )
{
2019-10-06 08:46:23 +00:00
glVertexAttrib4f ( 2 , r , g , b , a ) ;
2019-10-04 16:44:16 +00:00
}
void GLInstance : : SetDepthFunc ( int func )
{
int f [ ] = { GL_ALWAYS , GL_LESS , GL_EQUAL , GL_LEQUAL } ;
glDepthFunc ( f [ func ] ) ;
}
2019-10-04 17:17:55 +00:00
void GLInstance : : SetColorMask ( bool on )
{
glColorMask ( on , on , on , on ) ;
}
void GLInstance : : SetDepthMask ( bool on )
{
glDepthMask ( on ) ;
}
static int blendstyles [ ] = { GL_ZERO , GL_ONE , GL_SRC_ALPHA , GL_ONE_MINUS_SRC_ALPHA , GL_SRC_COLOR , GL_ONE_MINUS_SRC_COLOR , GL_DST_COLOR , GL_ONE_MINUS_DST_COLOR , GL_DST_ALPHA , GL_ONE_MINUS_DST_ALPHA } ;
void GLInstance : : SetBlendFunc ( int src , int dst )
{
glBlendFunc ( blendstyles [ src ] , blendstyles [ dst ] ) ;
}
static int renderops [ ] = { GL_FUNC_ADD , GL_FUNC_SUBTRACT , GL_FUNC_REVERSE_SUBTRACT } ;
void GLInstance : : SetBlendOp ( int op )
{
glBlendEquation ( renderops [ op ] ) ;
}
2019-10-04 19:13:04 +00:00
void GLInstance : : ClearScreen ( float r , float g , float b , bool depth )
{
glClearColor ( r , g , b , 1.f ) ;
glClear ( depth ? GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT : GL_COLOR_BUFFER_BIT ) ;
}
void GLInstance : : ClearDepth ( )
{
glClear ( GL_DEPTH_BUFFER_BIT ) ;
}
void GLInstance : : SetAlphaThreshold ( float al )
{
glAlphaFunc ( GL_GREATER , al ) ;
}
void GLInstance : : SetViewport ( int x , int y , int w , int h )
{
glViewport ( x , y , w , h ) ;
}
void GLInstance : : SetWireframe ( bool on )
{
glPolygonMode ( GL_FRONT_AND_BACK , on ? GL_LINE : GL_FILL ) ;
}
void GLInstance : : ReadPixels ( int xdim , int ydim , uint8_t * buffer )
{
glReadPixels ( 0 , 0 , xdim , ydim , GL_RGB , GL_UNSIGNED_BYTE , buffer ) ;
2019-10-05 10:28:08 +00:00
}
void GLInstance : : SetPolymostShader ( )
{
if ( activeShader ! = polymostShader )
{
polymostShader - > Bind ( ) ;
activeShader = polymostShader ;
}
}
2019-10-05 11:09:15 +00:00
void GLInstance : : SetSurfaceShader ( )
{
if ( activeShader ! = surfaceShader )
{
surfaceShader - > Bind ( ) ;
activeShader = surfaceShader ;
}
}
2019-10-05 11:38:02 +00:00
void GLInstance : : SetVPXShader ( )
{
if ( activeShader ! = vpxShader )
{
vpxShader - > Bind ( ) ;
activeShader = vpxShader ;
}
}
2019-10-05 11:09:15 +00:00
2019-10-06 19:15:53 +00:00
void GLInstance : : SetPalette ( int index )
{
palmanager . BindPalette ( index ) ;
}
2019-10-05 10:28:08 +00:00
2019-10-07 20:11:09 +00:00
void GLInstance : : SetPalswap ( int index )
{
2019-10-07 23:08:08 +00:00
palmanager . BindPalswap ( index ) ;
2019-10-07 20:11:09 +00:00
}
2019-10-05 10:28:08 +00:00
void PolymostRenderState : : Apply ( PolymostShader * shader )
{
2019-10-19 20:46:37 +00:00
shader - > Flags . Set ( Flags ) ;
2019-10-05 10:28:08 +00:00
shader - > Shade . Set ( Shade ) ;
shader - > NumShades . Set ( NumShades ) ;
2019-10-19 23:14:48 +00:00
shader - > ShadeDiv . Set ( ShadeDiv ) ;
2019-10-05 10:28:08 +00:00
shader - > VisFactor . Set ( VisFactor ) ;
2019-10-19 20:46:37 +00:00
shader - > Flags . Set ( Flags ) ;
2019-10-05 10:28:08 +00:00
shader - > NPOTEmulationFactor . Set ( NPOTEmulationFactor ) ;
shader - > NPOTEmulationXOffset . Set ( NPOTEmulationXOffset ) ;
shader - > Brightness . Set ( Brightness ) ;
2019-10-06 10:42:35 +00:00
shader - > FogColor . Set ( FogColor ) ;
2019-10-06 22:07:45 +00:00
2019-10-05 10:28:08 +00:00
}