Skip to content
Snippets Groups Projects
Commit dd9ea10a authored by dg's avatar dg
Browse files

gamma on boot

git-svn-id: http://svn.net-core.org/repos/t-engine4@4001 51575b47-30f0-44d4-a5cc-537603b46e54
parent 95dc35bb
No related branches found
No related tags found
No related merge requests found
......@@ -43,6 +43,9 @@ local NPC = require "mod.class.NPC"
module(..., package.seeall, class.inherit(engine.GameEnergyBased, engine.interface.GameMusic, engine.interface.GameSound))
-- Tell the engine that we have a fullscreen shader that supports gamma correction
support_shader_gamma = true
function _M:init()
engine.interface.GameMusic.init(self)
engine.interface.GameSound.init(self)
......@@ -136,6 +139,7 @@ function _M:newGame()
self.player = Player.new{name=self.player_name, game_ender=true}
Map:setViewerActor(self.player)
self:setupDisplayMode()
self:setGamma(config.settings.gamma_correction / 100)
self.player:resolve()
self.player:resolve(nil, true)
......@@ -177,6 +181,9 @@ function _M:setupDisplayMode()
self.fbo_shader:setUniform("colorize", {1,1,1,0.9})
end
end
self.full_fbo = core.display.newFBO(self.w, self.h)
if self.full_fbo then self.full_fbo_shader = Shader.new("full_fbo") if not self.full_fbo_shader.shad then self.full_fbo = nil self.full_fbo_shader = nil end end
end
function _M:changeLevel(lev, zone)
......@@ -248,12 +255,15 @@ function _M:display(nb_keyframes)
-- If switching resolution, blank everything but the dialog
if self.change_res_dialog then engine.GameEnergyBased.display(self, nb_keyframes) return end
if self.full_fbo then self.full_fbo:use(true) end
-- If background anim is stopped, things are greatly simplified
if self.stopped then
if self.background then self.background:toScreenFull(0, 0, self.w, self.h, self.background_w, self.background_h) end
self.tooltip:display()
self.tooltip:toScreen(5, 5)
engine.GameEnergyBased.display(self, nb_keyframes)
if self.full_fbo then self.full_fbo:use(false) self.full_fbo:toScreen(0, 0, self.w, self.h, self.full_fbo_shader.shad) end
return
end
......@@ -276,7 +286,7 @@ function _M:display(nb_keyframes)
-- Display using Framebuffer, so that we can use shaders and all
if self.fbo then
self.fbo:use(false)
self.fbo:use(false, self.full_fbo)
_2DNoise:bind(1, false)
self.fbo:toScreen(
self.level.map.display_x, self.level.map.display_y,
......@@ -294,6 +304,8 @@ function _M:display(nb_keyframes)
self.flyers = nil
engine.GameEnergyBased.display(self, nb_keyframes)
self.flyers = old
if self.full_fbo then self.full_fbo:use(false) self.full_fbo:toScreen(0, 0, self.w, self.h, self.full_fbo_shader.shad) end
end
--- Ask if we really want to close, if so, save the game first
......
uniform sampler2D sceneBuffer;
uniform float gamma;
void main(void)
{
vec2 uv = gl_TexCoord[0].xy;
vec3 color = texture2D(sceneBuffer, uv).rgb;
gl_FragColor.rgb = pow(color, vec3(1.0 / gamma));
}
-- ToME - Tales of Maj'Eyal
-- Copyright (C) 2009, 2010, 2011 Nicolas Casalini
--
-- 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 3 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, see <http://www.gnu.org/licenses/>.
--
-- Nicolas Casalini "DarkGod"
-- darkgod@te4.org
return {
frag = "full_fbo",
vert = nil,
args = {
},
clone = false,
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment