2006-03-03 03:31:19 +00:00
/*
Copyright ( C ) 1997 - 2001 Id Software , Inc .
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
2010-01-17 06:42:30 +00:00
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE .
2006-03-03 03:31:19 +00:00
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 . , 59 Temple Place - Suite 330 , Boston , MA 02111 - 1307 , USA .
*/
2008-02-21 03:19:46 +00:00
// gl_bloom.c: 2D lighting post process effect
2006-03-03 03:31:19 +00:00
2012-01-17 07:57:46 +00:00
/*
info about bloom algo :
bloom is basically smudging .
screen is nearest - downsampled to some usable scale and filtered to remove low - value light ( this is what stops non - bright stuff from blooming )
this filtered image is then downsized multiple times
the downsized image is then blured
the downsized images are then blured horizontally , and then vertically .
final pass simply adds each blured level to the original image .
all samples are then added together for final rendering ( with some kind of tone mapping if you want proper hdr ) .
note : the horizontal / vertical bluring is a guassian filter
note : bloom comes from the fact that the most downsampled image doesn ' t have too many pixels . the pixels that it does have are spread over a large area .
http : //prideout.net/archive/bloom/ contains some sample code
*/
2006-03-03 03:31:19 +00:00
//http://www.quakesrc.org/forums/viewtopic.php?t=4340&start=0
# include "quakedef.h"
2007-05-25 22:16:29 +00:00
2009-11-04 21:16:50 +00:00
# ifdef GLQUAKE
2012-01-17 07:57:46 +00:00
# include "shader.h"
# include "glquake.h"
2012-05-11 01:57:00 +00:00
cvar_t r_bloom = CVARAFD ( " r_bloom " , " 0 " , " gl_bloom " , CVAR_ARCHIVE , " Enables bloom (light bleeding from bright objects). Fractional values reduce the amount shown. " ) ;
cvar_t r_bloom_filter = CVARD ( " r_bloom_filter " , " 0.5 0.5 0.5 " , " Controls how bright the image must get before it will bloom (3 separate values, in RGB order). " ) ;
cvar_t r_bloom_scale = CVARD ( " r_bloom_scale " , " 0.5 " , " Controls the initial downscale size. Smaller values will bloom further but be more random. " ) ;
2012-01-17 07:57:46 +00:00
static shader_t * bloomfilter ;
static shader_t * bloomrescale ;
static shader_t * bloomblur ;
static shader_t * bloomfinal ;
# define MAXLEVELS 3
texid_t pingtex [ 2 ] [ MAXLEVELS ] ;
2014-02-07 08:38:40 +00:00
fbostate_t fbo_bloom ;
2012-01-17 07:57:46 +00:00
static int scrwidth , scrheight ;
static int texwidth [ MAXLEVELS ] , texheight [ MAXLEVELS ] ;
2014-08-10 00:31:37 +00:00
static void R_InitBloomTextures ( void )
{
int i ;
2012-01-17 07:57:46 +00:00
2014-08-10 00:31:37 +00:00
bloomfilter = NULL ;
bloomblur = NULL ;
bloomfinal = NULL ;
scrwidth = 0 , scrheight = 0 ;
for ( i = 0 ; i < MAXLEVELS ; i + + )
{
pingtex [ 0 ] [ i ] = r_nulltex ;
pingtex [ 1 ] [ i ] = r_nulltex ;
}
}
2012-01-17 07:57:46 +00:00
void R_BloomRegister ( void )
{
Cvar_Register ( & r_bloom , " bloom " ) ;
2012-05-11 01:57:00 +00:00
Cvar_Register ( & r_bloom_filter , " bloom " ) ;
Cvar_Register ( & r_bloom_scale , " bloom " ) ;
2012-01-17 07:57:46 +00:00
}
static void R_SetupBloomTextures ( int w , int h )
{
int i , j ;
char name [ 64 ] ;
2012-05-11 01:57:00 +00:00
if ( w = = scrwidth & & h = = scrheight & & ! r_bloom_scale . modified )
2012-01-17 07:57:46 +00:00
return ;
2012-05-11 01:57:00 +00:00
r_bloom_scale . modified = false ;
2012-01-17 07:57:46 +00:00
scrwidth = w ;
scrheight = h ;
2012-05-11 01:57:00 +00:00
//I'm depending on npot here
w * = r_bloom_scale . value ;
h * = r_bloom_scale . value ;
2012-01-17 07:57:46 +00:00
for ( i = 0 ; i < MAXLEVELS ; i + + )
{
w / = 2 ;
h / = 2 ;
/*I'm paranoid*/
if ( w < 4 )
w = 4 ;
if ( h < 4 )
h = 4 ;
texwidth [ i ] = w ;
texheight [ i ] = h ;
}
/*now create textures for each level*/
for ( j = 0 ; j < MAXLEVELS ; j + + )
{
for ( i = 0 ; i < 2 ; i + + )
{
if ( ! TEXVALID ( pingtex [ i ] [ j ] ) )
{
sprintf ( name , " ***bloom*%c*%i*** " , ' a ' + i , j ) ;
2014-08-19 06:08:23 +00:00
TEXASSIGN ( pingtex [ i ] [ j ] , GL_AllocNewTexture ( name , texwidth [ j ] , texheight [ j ] , IF_NOMIPMAP | IF_NOPICMIP | IF_LINEAR ) ) ;
2012-01-17 07:57:46 +00:00
}
GL_MTBind ( 0 , GL_TEXTURE_2D , pingtex [ i ] [ j ] ) ;
qglTexImage2D ( GL_TEXTURE_2D , 0 , GL_RGBA , texwidth [ j ] , texheight [ j ] , 0 , GL_RGBA , GL_UNSIGNED_BYTE , NULL ) ;
qglTexParameteri ( GL_TEXTURE_2D , GL_TEXTURE_MIN_FILTER , GL_LINEAR ) ;
qglTexParameteri ( GL_TEXTURE_2D , GL_TEXTURE_MAG_FILTER , GL_LINEAR ) ;
qglTexParameteri ( GL_TEXTURE_2D , GL_TEXTURE_WRAP_S , GL_CLAMP_TO_EDGE ) ;
qglTexParameteri ( GL_TEXTURE_2D , GL_TEXTURE_WRAP_T , GL_CLAMP_TO_EDGE ) ;
}
}
2013-08-21 07:14:39 +00:00
bloomfilter = R_RegisterShader ( " bloom_filter " , SUF_NONE ,
2012-01-17 07:57:46 +00:00
" { \n "
" cull none \n "
" program bloom_filter \n "
" { \n "
" map $sourcecolour \n "
" } \n "
" } \n " ) ;
2013-08-21 07:14:39 +00:00
bloomrescale = R_RegisterShader ( " bloom_rescale " , SUF_NONE ,
2012-01-17 07:57:46 +00:00
" { \n "
" cull none \n "
" program default2d \n "
" { \n "
" map $sourcecolour \n "
" } \n "
" } \n " ) ;
2013-08-21 07:14:39 +00:00
bloomblur = R_RegisterShader ( " bloom_blur " , SUF_NONE ,
2012-01-17 07:57:46 +00:00
" { \n "
" cull none \n "
" program bloom_blur \n "
" { \n "
" map $sourcecolour \n "
" } \n "
" } \n " ) ;
2013-08-21 07:14:39 +00:00
bloomfinal = R_RegisterShader ( " bloom_final " , SUF_NONE ,
2012-01-17 07:57:46 +00:00
" { \n "
" cull none \n "
" program bloom_final \n "
" { \n "
" map $sourcecolour \n "
" } \n "
" { \n "
" map $diffuse \n "
" } \n "
" { \n "
" map $loweroverlay \n "
" } \n "
" { \n "
" map $upperoverlay \n "
" } \n "
" } \n " ) ;
bloomfinal - > defaulttextures . base = pingtex [ 0 ] [ 0 ] ;
bloomfinal - > defaulttextures . loweroverlay = pingtex [ 0 ] [ 1 ] ;
bloomfinal - > defaulttextures . upperoverlay = pingtex [ 0 ] [ 2 ] ;
}
2014-08-19 06:08:23 +00:00
qboolean R_CanBloom ( void )
2012-01-17 07:57:46 +00:00
{
2014-08-19 06:08:23 +00:00
if ( ! r_bloom . value )
return false ;
2012-01-17 07:57:46 +00:00
if ( ! gl_config . ext_framebuffer_objects )
2014-08-19 06:08:23 +00:00
return false ;
2012-01-17 07:57:46 +00:00
if ( ! gl_config . arb_shader_objects )
2014-08-19 06:08:23 +00:00
return false ;
------------------------------------------------------------------------
r4169 | acceptthis | 2013-01-17 08:55:12 +0000 (Thu, 17 Jan 2013) | 31 lines
removed MAX_VISEDICTS limit.
PEXT2_REPLACEMENTDELTAS tweaked, now has 4 million entity limit. still not enabled by default.
TE_BEAM now maps to a separate TEQW_BEAM to avoid conflicts with QW.
added android multitouch emulation for windows/rawinput (in_simulatemultitouch).
split topcolor/bottomcolor from scoreboard, for dp's colormap|1024 feature.
now using utf-8 for windows consoles.
qcc warnings/errors now give clickable console links for quick+easy editing.
disabled menutint when the currently active item changes contrast or gamma (for OneManClan).
Added support for drawfont/drawfontscale.
tweaked the qcvm a little to reduce the number of pointers.
.doll file loading. still experimental and will likely crash. requires csqc active, even if its a dummy progs. this will be fixed in time. Still other things that need cleaning up.
windows: gl_font "?" shows the standard windows font-selection dialog, and can be used to select windows fonts. not all work. and you probably don't want to use windings.
fixed splitscreen support when playing mvds. added mini-scoreboards to splitscreen.
editor/debugger now shows asm if there's no linenumber info. also, pressing f1 for help shows the shortcuts.
Added support for .framegroups files for psk(psa) and iqm formats.
True support for ezquake's colour codes. Mutually exclusive with background colours.
path command output slightly more readable.
added support for digest_hex (MD4, SHA1, CRC16).
skingroups now colourmap correctly.
Fix terrain colour hints, and litdata from the wrong bsp.
fix ftp dual-homed issue. support epsv command, and enable ipv6 (eprt still not supported).
remove d3d11 compilation from the makefile. the required headers are not provided by mingw, and are not available to the build bot, so don't bother.
fix v *= v.x and similar opcodes.
fteqcc: fixed support for áéÃóú type chars in names. utf-8 files now properly supported (even with the utf-8 bom/identifier). utf-16 also supported.
fteqcc: fixed '#if 1 == 3 && 4' parsing.
fteqcc: -Werror acts on the warning, rather than as a separate error. Line numbers are thus more readable.
fteqcc: copyright message now includes compile date instead.
fteqccgui: the treeview control is now coloured depending on whether there were warnings/errors in the last compile.
fteqccgui: the output window is now focused and scrolls down as compilation progresses.
pr_dumpplatform command dumps out some pragmas to convert more serious warnings to errors. This is to avoid the infamous 'fteqcc sucks cos my code sucks' issue.
rewrote prespawn/modelist/soundlist code. server tracks progress now.
------------------------------------------------------------------------
git-svn-id: https://svn.code.sf.net/p/fteqw/code/trunk@4167 fc73d0e0-1445-4013-8a0c-d673dee63da5
2013-03-12 22:29:40 +00:00
if ( ! r_config . texture_non_power_of_two )
2014-08-19 06:08:23 +00:00
return false ;
return true ;
}
void R_BloomBlend ( texid_t source , int x , int y , int w , int h )
{
int i ;
int oldfbo = 0 ;
2012-01-17 07:57:46 +00:00
/*whu?*/
2014-08-19 06:08:23 +00:00
if ( ! w | | ! h )
2012-01-17 07:57:46 +00:00
return ;
/*update textures if we need to resize them*/
2014-08-19 06:08:23 +00:00
R_SetupBloomTextures ( w , h ) ;
2012-01-17 07:57:46 +00:00
for ( i = 0 ; i < MAXLEVELS ; i + + )
{
2013-03-12 23:18:37 +00:00
if ( i = = 0 )
{
/*filter the screen into a downscaled image*/
2014-08-15 02:20:41 +00:00
oldfbo = GLBE_FBO_Update ( & fbo_bloom , 0 , & pingtex [ 0 ] [ 0 ] , 1 , r_nulltex , 0 , 0 ) ;
2014-08-19 06:08:23 +00:00
GLBE_FBO_Sources ( source , r_nulltex ) ;
2013-03-12 23:18:37 +00:00
qglViewport ( 0 , 0 , texwidth [ 0 ] , texheight [ 0 ] ) ;
R2D_ScalePic ( 0 , vid . height , vid . width , - ( int ) vid . height , bloomfilter ) ;
}
else
{
/*simple downscale that multiple times*/
2014-08-15 02:20:41 +00:00
GLBE_FBO_Update ( & fbo_bloom , 0 , & pingtex [ 0 ] [ i ] , 1 , r_nulltex , 0 , 0 ) ;
2014-02-07 08:38:40 +00:00
GLBE_FBO_Sources ( pingtex [ 0 ] [ i - 1 ] , r_nulltex ) ;
2013-03-12 23:18:37 +00:00
qglViewport ( 0 , 0 , texwidth [ i ] , texheight [ i ] ) ;
R2D_ScalePic ( 0 , vid . height , vid . width , - ( int ) vid . height , bloomrescale ) ;
}
// }
// for (i = 0; i < MAXLEVELS; i++)
// {
/*gaussian filter the mips to bloom more smoothly
the blur is done with two passes . first samples horizontally then vertically .
the 1.2 pixels thing gives us a 5 * 5 filter by weighting the edge accordingly
*/
2012-01-17 07:57:46 +00:00
r_worldentity . glowmod [ 0 ] = 1.2 / texwidth [ i ] ;
r_worldentity . glowmod [ 1 ] = 0 ;
2014-08-15 02:20:41 +00:00
GLBE_FBO_Update ( & fbo_bloom , 0 , & pingtex [ 1 ] [ i ] , 1 , r_nulltex , 0 , 0 ) ;
2014-02-07 08:38:40 +00:00
GLBE_FBO_Sources ( pingtex [ 0 ] [ i ] , r_nulltex ) ;
2012-01-17 07:57:46 +00:00
qglViewport ( 0 , 0 , texwidth [ i ] , texheight [ i ] ) ;
R2D_ScalePic ( 0 , vid . height , vid . width , - ( int ) vid . height , bloomblur ) ;
2013-03-12 23:18:37 +00:00
2012-01-17 07:57:46 +00:00
r_worldentity . glowmod [ 0 ] = 0 ;
r_worldentity . glowmod [ 1 ] = 1.2 / texheight [ i ] ;
2014-08-15 02:20:41 +00:00
GLBE_FBO_Update ( & fbo_bloom , 0 , & pingtex [ 0 ] [ i ] , 1 , r_nulltex , 0 , 0 ) ;
2014-02-07 08:38:40 +00:00
GLBE_FBO_Sources ( pingtex [ 1 ] [ i ] , r_nulltex ) ;
2012-01-17 07:57:46 +00:00
qglViewport ( 0 , 0 , texwidth [ i ] , texheight [ i ] ) ;
R2D_ScalePic ( 0 , vid . height , vid . width , - ( int ) vid . height , bloomblur ) ;
}
2013-11-21 23:02:28 +00:00
r_worldentity . glowmod [ 0 ] = 0 ;
r_worldentity . glowmod [ 1 ] = 0 ;
2012-01-17 07:57:46 +00:00
GL_Set2D ( false ) ;
/*combine them onto the screen*/
2014-02-07 08:38:40 +00:00
GLBE_FBO_Pop ( oldfbo ) ;
2014-08-19 06:08:23 +00:00
GLBE_FBO_Sources ( source , r_nulltex ) ;
R2D_ScalePic ( x , y + h , w , - h , bloomfinal ) ;
2012-01-17 07:57:46 +00:00
}
2014-08-10 00:31:37 +00:00
void R_BloomShutdown ( void )
2012-01-17 07:57:46 +00:00
{
2014-08-10 00:31:37 +00:00
GLBE_FBO_Destroy ( & fbo_bloom ) ;
2012-01-17 07:57:46 +00:00
2014-08-10 00:31:37 +00:00
R_InitBloomTextures ( ) ;
2012-01-17 07:57:46 +00:00
}
2007-03-28 13:27:35 +00:00
# endif