tibia-client/src/framework/graphics/painter.cpp

161 lines
4.7 KiB
C++
Raw Normal View History

2011-12-07 01:31:55 +01:00
/*
2012-01-02 17:58:37 +01:00
* Copyright (c) 2010-2012 OTClient <https://github.com/edubart/otclient>
2011-12-07 01:31:55 +01:00
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#include "painter.h"
#include "graphics.h"
Painter *g_painter = nullptr;
2011-12-07 01:31:55 +01:00
Painter::Painter()
2011-12-07 01:31:55 +01:00
{
m_glTextureId = 0;
m_oldStateIndex = 0;
m_color = Color::white;
m_opacity = 1.0f;
m_compositionMode = CompositionMode_Normal;
m_shaderProgram = nullptr;
m_texture = nullptr;
2011-12-07 01:31:55 +01:00
}
void Painter::resetState()
2011-12-07 01:31:55 +01:00
{
resetColor();
resetOpacity();
resetCompositionMode();
resetClipRect();
resetShaderProgram();
resetTexture();
2011-12-07 01:31:55 +01:00
}
void Painter::refreshState()
2011-12-07 01:31:55 +01:00
{
updateGlCompositionMode();
updateGlClipRect();
updateGlTexture();
}
2011-12-07 01:31:55 +01:00
void Painter::saveState()
{
assert(m_oldStateIndex<10);
m_olderStates[m_oldStateIndex].projectionMatrix = m_projectionMatrix;
m_olderStates[m_oldStateIndex].textureMatrix = m_textureMatrix;
m_olderStates[m_oldStateIndex].color = m_color;
m_olderStates[m_oldStateIndex].opacity = m_opacity;
m_olderStates[m_oldStateIndex].compositionMode = m_compositionMode;
m_olderStates[m_oldStateIndex].clipRect = m_clipRect;
m_olderStates[m_oldStateIndex].shaderProgram = m_shaderProgram;
m_olderStates[m_oldStateIndex].texture = m_texture;
m_oldStateIndex++;
}
void Painter::saveAndResetState()
{
saveState();
resetState();
2011-12-07 19:49:20 +01:00
}
2011-12-07 01:31:55 +01:00
void Painter::restoreSavedState()
2011-12-07 19:49:20 +01:00
{
m_oldStateIndex--;
setProjectionMatrix(m_olderStates[m_oldStateIndex].projectionMatrix);
setTextureMatrix(m_olderStates[m_oldStateIndex].textureMatrix);
setColor(m_olderStates[m_oldStateIndex].color);
setOpacity(m_olderStates[m_oldStateIndex].opacity);
setCompositionMode(m_olderStates[m_oldStateIndex].compositionMode);
setClipRect(m_olderStates[m_oldStateIndex].clipRect);
setShaderProgram(m_olderStates[m_oldStateIndex].shaderProgram);
setTexture(m_olderStates[m_oldStateIndex].texture);
2011-12-07 01:31:55 +01:00
}
void Painter::setCompositionMode(Painter::CompositionMode compositionMode)
2011-12-07 19:49:20 +01:00
{
if(m_compositionMode == compositionMode)
2011-12-07 19:49:20 +01:00
return;
m_compositionMode = compositionMode;
updateGlCompositionMode();
2011-12-07 19:49:20 +01:00
}
void Painter::setClipRect(const Rect& clipRect)
2011-12-07 01:31:55 +01:00
{
if(m_clipRect == clipRect)
2011-12-07 01:31:55 +01:00
return;
m_clipRect = clipRect;
updateGlClipRect();
2011-12-07 01:31:55 +01:00
}
void Painter::setTexture(Texture* texture)
2011-12-07 01:31:55 +01:00
{
if(m_texture == texture)
2011-12-07 01:31:55 +01:00
return;
m_texture = texture;
GLuint glTextureId;
if(texture) {
setTextureMatrix(texture->getTransformMatrix());
glTextureId = texture->getId();
} else
glTextureId = 0;
if(m_glTextureId != glTextureId) {
m_glTextureId = glTextureId;
updateGlTexture();
2012-04-24 18:37:46 +02:00
}
2011-12-07 01:31:55 +01:00
}
void Painter::updateGlTexture()
2011-12-07 01:31:55 +01:00
{
if(m_glTextureId != 0)
glBindTexture(GL_TEXTURE_2D, m_glTextureId);
2011-12-07 01:31:55 +01:00
}
void Painter::updateGlCompositionMode()
2011-12-07 01:31:55 +01:00
{
switch(m_compositionMode) {
case CompositionMode_Normal:
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
break;
case CompositionMode_Multiply:
glBlendFunc(GL_DST_COLOR, GL_ONE_MINUS_SRC_ALPHA);
break;
case CompositionMode_Add:
glBlendFunc(GL_ONE, GL_ONE);
break;
case CompositionMode_Replace:
glBlendFunc(GL_ONE, GL_ZERO);
break;
case CompositionMode_DestBlending:
glBlendFunc(GL_ONE_MINUS_DST_ALPHA, GL_DST_ALPHA);
break;
2011-12-07 01:31:55 +01:00
}
2012-01-30 07:27:21 +01:00
}
void Painter::updateGlClipRect()
2012-04-05 00:46:49 +02:00
{
if(m_clipRect.isValid()) {
2012-04-05 00:46:49 +02:00
glEnable(GL_SCISSOR_TEST);
glScissor(m_clipRect.left(), g_graphics.getViewportSize().height() - m_clipRect.bottom() - 1, m_clipRect.width(), m_clipRect.height());
2012-04-05 00:46:49 +02:00
} else {
glDisable(GL_SCISSOR_TEST);
}
2011-12-07 01:31:55 +01:00
}