2017-10-29 10:28:14 +01:00
|
|
|
/****************************************************************************
|
|
|
|
* Copyright (C) 2015 Dimok
|
|
|
|
*
|
|
|
|
* 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/>.
|
|
|
|
****************************************************************************/
|
|
|
|
#ifndef SHADER_3D_H_
|
|
|
|
#define SHADER_3D_H_
|
|
|
|
|
2019-08-14 23:24:55 +02:00
|
|
|
#include <gui/video/shaders/VertexShader.h>
|
|
|
|
#include <gui/video/shaders/PixelShader.h>
|
|
|
|
#include <gui/video/shaders/FetchShader.h>
|
2017-10-29 10:28:14 +01:00
|
|
|
|
2018-06-21 20:44:58 +02:00
|
|
|
class Shader3D : public Shader {
|
2017-10-29 10:28:14 +01:00
|
|
|
private:
|
|
|
|
Shader3D();
|
|
|
|
virtual ~Shader3D();
|
|
|
|
|
|
|
|
static Shader3D * shaderInstance;
|
|
|
|
|
|
|
|
static const unsigned char cuAttributeCount = 2;
|
2018-06-21 20:44:58 +02:00
|
|
|
static const uint32_t ciPositionVtxsSize = 4 * cuVertexAttrSize;
|
|
|
|
static const uint32_t ciTexCoordsVtxsSize = 4 * cuTexCoordAttrSize;
|
2017-10-29 10:28:14 +01:00
|
|
|
|
|
|
|
FetchShader *fetchShader;
|
|
|
|
VertexShader vertexShader;
|
|
|
|
PixelShader pixelShader;
|
|
|
|
|
2018-06-21 20:44:58 +02:00
|
|
|
float *posVtxs;
|
|
|
|
float *texCoords;
|
2017-10-29 10:28:14 +01:00
|
|
|
|
2018-06-21 20:44:58 +02:00
|
|
|
uint32_t modelMatrixLocation;
|
|
|
|
uint32_t viewMatrixLocation;
|
|
|
|
uint32_t projectionMatrixLocation;
|
|
|
|
uint32_t positionLocation;
|
|
|
|
uint32_t texCoordLocation;
|
2017-10-29 10:28:14 +01:00
|
|
|
|
2018-06-21 20:44:58 +02:00
|
|
|
uint32_t colorIntensityLocation;
|
|
|
|
uint32_t fadeDistanceLocation;
|
|
|
|
uint32_t fadeOutLocation;
|
|
|
|
uint32_t samplerLocation;
|
2017-10-29 10:28:14 +01:00
|
|
|
public:
|
|
|
|
static Shader3D *instance() {
|
|
|
|
if(!shaderInstance) {
|
|
|
|
shaderInstance = new Shader3D();
|
|
|
|
}
|
|
|
|
return shaderInstance;
|
|
|
|
}
|
|
|
|
static void destroyInstance() {
|
|
|
|
if(shaderInstance) {
|
|
|
|
delete shaderInstance;
|
|
|
|
shaderInstance = NULL;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-21 20:44:58 +02:00
|
|
|
void setShaders(void) const {
|
2017-10-29 10:28:14 +01:00
|
|
|
fetchShader->setShader();
|
|
|
|
vertexShader.setShader();
|
|
|
|
pixelShader.setShader();
|
|
|
|
}
|
|
|
|
|
2018-06-21 20:44:58 +02:00
|
|
|
void setAttributeBuffer(const uint32_t & vtxCount = 0, const float * posVtxs_in = NULL, const float * texCoords_in = NULL) const {
|
|
|
|
if(posVtxs_in && texCoords_in && vtxCount) {
|
2017-10-29 10:28:14 +01:00
|
|
|
VertexShader::setAttributeBuffer(0, vtxCount * cuVertexAttrSize, cuVertexAttrSize, posVtxs_in);
|
|
|
|
VertexShader::setAttributeBuffer(1, vtxCount * cuTexCoordAttrSize, cuTexCoordAttrSize, texCoords_in);
|
2018-06-21 20:44:58 +02:00
|
|
|
} else {
|
2017-10-29 10:28:14 +01:00
|
|
|
//! use default quad vertex and texture coordinates if nothing is passed
|
|
|
|
VertexShader::setAttributeBuffer(0, ciPositionVtxsSize, cuVertexAttrSize, posVtxs);
|
|
|
|
VertexShader::setAttributeBuffer(1, ciTexCoordsVtxsSize, cuTexCoordAttrSize, texCoords);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-21 20:44:58 +02:00
|
|
|
void setProjectionMtx(const glm::mat4 & mtx) {
|
2017-10-29 10:28:14 +01:00
|
|
|
VertexShader::setUniformReg(projectionMatrixLocation, 16, &mtx[0][0]);
|
|
|
|
}
|
2018-06-21 20:44:58 +02:00
|
|
|
void setViewMtx(const glm::mat4 & mtx) {
|
2017-10-29 10:28:14 +01:00
|
|
|
VertexShader::setUniformReg(viewMatrixLocation, 16, &mtx[0][0]);
|
|
|
|
}
|
2018-06-21 20:44:58 +02:00
|
|
|
void setModelViewMtx(const glm::mat4 & mtx) {
|
2017-10-29 10:28:14 +01:00
|
|
|
VertexShader::setUniformReg(modelMatrixLocation, 16, &mtx[0][0]);
|
|
|
|
}
|
2018-06-21 20:44:58 +02:00
|
|
|
void setColorIntensity(const glm::vec4 & vec) {
|
2017-10-29 10:28:14 +01:00
|
|
|
PixelShader::setUniformReg(colorIntensityLocation, 4, &vec[0]);
|
|
|
|
}
|
2018-06-21 20:44:58 +02:00
|
|
|
void setAlphaFadeOut(const glm::vec4 & vec) {
|
2017-10-29 10:28:14 +01:00
|
|
|
PixelShader::setUniformReg(fadeOutLocation, 4, &vec[0]);
|
|
|
|
}
|
2018-06-21 20:44:58 +02:00
|
|
|
void setDistanceFadeOut(const float & value) {
|
2017-10-29 10:28:14 +01:00
|
|
|
PixelShader::setUniformReg(fadeDistanceLocation, 4, &value);
|
|
|
|
}
|
|
|
|
|
|
|
|
void setTextureAndSampler(const GX2Texture *texture, const GX2Sampler *sampler) const {
|
2018-06-21 20:44:58 +02:00
|
|
|
GX2SetPixelTexture((GX2Texture*)texture, samplerLocation);
|
|
|
|
GX2SetPixelSampler((GX2Sampler*)sampler, samplerLocation);
|
2017-10-29 10:28:14 +01:00
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SHADER_3D_H_
|