sdrangel/sdrgui/gui/glshadertvarray.cpp

335 wiersze
8.8 KiB
C++
Czysty Zwykły widok Historia

2017-02-23 07:18:56 +00:00
///////////////////////////////////////////////////////////////////////////////////
// Copyright (C) 2017 F4HKW //
// for F4EXB / SDRAngel //
// //
// 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 as version 3 of the License, or //
// (at your option) any later version. //
2017-02-23 07:18:56 +00:00
// //
// 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 V3 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/>. //
///////////////////////////////////////////////////////////////////////////////////
#include <QOpenGLContext>
#include "gui/glshadertvarray.h"
2017-02-23 07:18:56 +00:00
2018-03-11 12:00:33 +00:00
const QString GLShaderTVArray::m_strVertexShaderSourceArray = QString(
2017-02-23 07:18:56 +00:00
"uniform highp mat4 uMatrix;\n"
"attribute highp vec4 vertex;\n"
"attribute highp vec2 texCoord;\n"
"varying mediump vec2 texCoordVar;\n"
"void main() {\n"
" gl_Position = uMatrix * vertex;\n"
" texCoordVar = texCoord;\n"
"}\n");
2017-02-23 07:18:56 +00:00
2018-03-11 12:00:33 +00:00
const QString GLShaderTVArray::m_strFragmentShaderSourceColored = QString(
2017-02-23 07:18:56 +00:00
"uniform lowp sampler2D uTexture;\n"
"varying mediump vec2 texCoordVar;\n"
"void main() {\n"
" gl_FragColor = texture2D(uTexture, texCoordVar);\n"
"}\n");
2017-02-23 07:18:56 +00:00
GLShaderTVArray::GLShaderTVArray(bool blnColor) :
m_objProgram(nullptr),
m_matrixLoc(0),
m_textureLoc(0),
m_objImage(nullptr),
m_objTexture(nullptr),
m_intCols(0),
m_intRows(0),
m_objCurrentRow(nullptr),
m_blnInitialized(false),
m_blnColor(blnColor),
m_blnAlphaBlend(false),
m_blnAlphaReset(false)
2017-02-23 07:18:56 +00:00
{
}
2018-03-11 12:00:33 +00:00
GLShaderTVArray::~GLShaderTVArray()
2017-02-23 07:18:56 +00:00
{
qDebug("GLShaderTVArray::~GLShaderTVArray");
cleanup();
2017-02-23 07:18:56 +00:00
}
void GLShaderTVArray::initializeGL(int intCols, int intRows)
2017-02-23 07:18:56 +00:00
{
QMatrix4x4 objQMatrix;
m_blnInitialized = false;
2017-02-23 07:18:56 +00:00
m_intCols = 0;
m_intRows = 0;
2017-02-23 07:18:56 +00:00
m_objCurrentRow = nullptr;
2017-02-23 07:18:56 +00:00
if (!m_objProgram)
2017-02-23 07:18:56 +00:00
{
m_objProgram = new QOpenGLShaderProgram();
if (!m_objProgram->addShaderFromSourceCode(QOpenGLShader::Vertex,
m_strVertexShaderSourceArray))
2017-02-23 07:18:56 +00:00
{
qDebug() << "GLShaderArray::initializeGL: error in vertex shader: "
<< m_objProgram->log();
2017-02-23 07:18:56 +00:00
}
if (!m_objProgram->addShaderFromSourceCode(QOpenGLShader::Fragment,
m_strFragmentShaderSourceColored))
2017-02-23 07:18:56 +00:00
{
qDebug()
<< "GLShaderArray::initializeGL: error in fragment shader: "
<< m_objProgram->log();
2017-02-23 07:18:56 +00:00
}
m_objProgram->bindAttributeLocation("vertex", 0);
if (!m_objProgram->link())
{
qDebug() << "GLShaderArray::initializeGL: error linking shader: "
<< m_objProgram->log();
2017-02-23 07:18:56 +00:00
}
m_objProgram->bind();
m_objProgram->setUniformValue(m_matrixLoc, objQMatrix);
m_objProgram->setUniformValue(m_textureLoc, 0);
2017-02-23 07:18:56 +00:00
m_objProgram->release();
}
m_matrixLoc = m_objProgram->uniformLocation("uMatrix");
m_textureLoc = m_objProgram->uniformLocation("uTexture");
2017-02-23 07:18:56 +00:00
if (m_objTexture)
2017-02-23 07:18:56 +00:00
{
delete m_objTexture;
m_objTexture = nullptr;
2017-02-23 07:18:56 +00:00
}
//Image container
m_objImage = new QImage(intCols, intRows, QImage::Format_RGBA8888);
m_objImage->fill(QColor(0, 0, 0));
2017-02-23 07:18:56 +00:00
m_objTexture = new QOpenGLTexture(*m_objImage);
2018-03-29 08:41:46 +00:00
//m_objTexture->setFormat(QOpenGLTexture::RGBA8_UNorm); avoids OpenGL warning and in fact is useless
2017-02-23 07:18:56 +00:00
m_objTexture->setMinificationFilter(QOpenGLTexture::Linear);
m_objTexture->setMagnificationFilter(QOpenGLTexture::Linear);
m_objTexture->setWrapMode(QOpenGLTexture::ClampToEdge);
m_intCols = intCols;
m_intRows = intRows;
m_blnInitialized = true;
2017-02-23 07:18:56 +00:00
}
QRgb *GLShaderTVArray::GetRowBuffer(int intRow)
2017-02-23 07:18:56 +00:00
{
if (!m_blnInitialized) {
return nullptr;
2017-02-23 07:18:56 +00:00
}
if (!m_objImage) {
return nullptr;
2017-02-23 07:18:56 +00:00
}
if (intRow > m_intRows) {
return nullptr;
2017-02-23 07:18:56 +00:00
}
return (QRgb *) m_objImage->scanLine(intRow);
2017-02-23 07:18:56 +00:00
}
2018-03-11 12:00:33 +00:00
void GLShaderTVArray::RenderPixels(unsigned char *chrData)
{
2017-02-23 07:18:56 +00:00
QOpenGLFunctions *ptrF;
int intI;
int intJ;
int intNbVertices = 6;
2017-02-23 07:18:56 +00:00
QMatrix4x4 objQMatrix;
GLfloat arrVertices[] =
// 2 3
// 1 4
//1 2 3 3 4 1
{ -1.0f, -1.0f, -1.0f, 1.0f, 1.0f, 1.0f, 1.0f, 1.0f, 1.0f, -1.0f, -1.0f, -1.0f };
2017-02-23 07:18:56 +00:00
GLfloat arrTextureCoords[] =
// 1 4
// 2 3
//1 2 3 3 4 1
{ 0.0f, 1.0f, 0.0f, 0.0f, 1.0f, 0.0f, 1.0f, 0.0f, 1.0f, 1.0f, 0.0f, 1.0f };
2017-02-23 07:18:56 +00:00
QRgb *ptrLine;
int intVal;
if (!m_blnInitialized) {
2017-02-23 07:18:56 +00:00
return;
}
if (!m_objImage) {
return;
2017-02-23 07:18:56 +00:00
}
if (chrData != 0)
2017-02-23 07:18:56 +00:00
{
for (intJ = 0; intJ < m_intRows; intJ++)
2017-02-23 07:18:56 +00:00
{
ptrLine = (QRgb *) m_objImage->scanLine(intJ);
2017-02-23 07:18:56 +00:00
for (intI = 0; intI < m_intCols; intI++)
2017-02-23 07:18:56 +00:00
{
2018-03-11 12:00:33 +00:00
if (m_blnColor)
{
*ptrLine = qRgb((int) (*(chrData+2)), (int) (*(chrData+1)), (int) (*chrData));
chrData+=3;
}
else
{
intVal = (int) (*chrData);
*ptrLine = qRgb(intVal, intVal, intVal);
chrData++;
}
2017-02-23 07:18:56 +00:00
ptrLine++;
2017-02-23 07:18:56 +00:00
}
}
}
//Affichage
ptrF = QOpenGLContext::currentContext()->functions();
m_objProgram->bind();
m_objProgram->setUniformValue(m_matrixLoc, objQMatrix);
m_objProgram->setUniformValue(m_textureLoc, 0);
if (m_blnAlphaReset)
{
ptrF->glClear(GL_COLOR_BUFFER_BIT);
m_blnAlphaReset = false;
}
if (m_blnAlphaBlend)
{
ptrF->glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
ptrF->glEnable(GL_BLEND);
}
else
{
ptrF->glDisable(GL_BLEND);
}
2017-02-23 07:18:56 +00:00
m_objTexture->bind();
ptrF->glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, m_intCols, m_intRows, GL_RGBA,
GL_UNSIGNED_BYTE, m_objImage->bits());
2017-02-23 07:18:56 +00:00
ptrF->glEnableVertexAttribArray(0); // vertex
ptrF->glVertexAttribPointer(0, 2, GL_FLOAT, GL_FALSE, 0, arrVertices);
ptrF->glEnableVertexAttribArray(1); // texture coordinates
ptrF->glVertexAttribPointer(1, 2, GL_FLOAT, GL_FALSE, 0, arrTextureCoords);
ptrF->glDrawArrays(GL_TRIANGLES, 0, intNbVertices);
2017-02-23 07:18:56 +00:00
//cleanup
ptrF->glDisableVertexAttribArray(0);
ptrF->glDisableVertexAttribArray(1);
//*********************//
m_objTexture->release();
m_objProgram->release();
}
2018-03-11 12:00:33 +00:00
void GLShaderTVArray::ResetPixels()
2017-02-23 07:18:56 +00:00
{
if (m_objImage) {
2017-02-23 07:18:56 +00:00
m_objImage->fill(0);
}
}
void GLShaderTVArray::ResetPixels(int alpha)
{
if (m_objImage) {
m_objImage->fill(qRgba(0, 0, 0, alpha));
}
}
void GLShaderTVArray::cleanup()
2017-02-23 07:18:56 +00:00
{
m_blnInitialized = false;
2017-02-23 07:18:56 +00:00
m_intCols = 0;
m_intRows = 0;
2017-02-23 07:18:56 +00:00
m_objCurrentRow = nullptr;
2017-02-23 07:18:56 +00:00
if (!QOpenGLContext::currentContext()) {
return;
}
2017-02-23 07:18:56 +00:00
if (m_objProgram)
{
delete m_objProgram;
m_objProgram = nullptr;
2017-02-23 07:18:56 +00:00
}
if (m_objTexture)
2017-02-23 07:18:56 +00:00
{
delete m_objTexture;
m_objTexture = nullptr;
2017-02-23 07:18:56 +00:00
}
if (m_objImage)
2017-02-23 07:18:56 +00:00
{
delete m_objImage;
m_objImage = nullptr;
2017-02-23 07:18:56 +00:00
}
}
2018-03-11 12:00:33 +00:00
bool GLShaderTVArray::SelectRow(int intLine)
2017-02-23 07:18:56 +00:00
{
bool blnRslt = false;
2017-02-23 07:18:56 +00:00
if (m_blnInitialized)
2017-02-23 07:18:56 +00:00
{
if ((intLine < m_intRows) && (intLine >= 0))
2017-02-23 07:18:56 +00:00
{
m_objCurrentRow = (QRgb *) m_objImage->scanLine(intLine);
blnRslt = true;
2017-02-23 07:18:56 +00:00
}
else
{
m_objCurrentRow = nullptr;
2017-02-23 07:18:56 +00:00
}
}
return blnRslt;
}
2018-03-11 12:00:33 +00:00
bool GLShaderTVArray::SetDataColor(int intCol, QRgb objColor)
2017-02-23 07:18:56 +00:00
{
bool blnRslt = false;
2017-02-23 07:18:56 +00:00
if (m_blnInitialized)
2017-02-23 07:18:56 +00:00
{
if ((intCol < m_intCols) && (intCol >= 0) && m_objCurrentRow)
2017-02-23 07:18:56 +00:00
{
m_objCurrentRow[intCol] = objColor;
blnRslt = true;
2017-02-23 07:18:56 +00:00
}
}
return blnRslt;
}