mirror of
https://github.com/OpenSpace/OpenSpace.git
synced 2026-01-10 13:41:45 -06:00
* Cleanup * CMake cleanups * Update current year * Update copyright header * Use script to return list of all modules * Update credits, license and ghoul
354 lines
11 KiB
C++
354 lines
11 KiB
C++
/*****************************************************************************************
|
|
* *
|
|
* OpenSpace *
|
|
* *
|
|
* Copyright (c) 2014-2019 *
|
|
* *
|
|
* 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 <openspace/rendering/helper.h>
|
|
|
|
#include <openspace/engine/globals.h>
|
|
#include <openspace/engine/windowdelegate.h>
|
|
#include <ghoul/filesystem/filesystem.h>
|
|
#include <ghoul/misc/assert.h>
|
|
#include <ghoul/opengl/texture.h>
|
|
#include <ghoul/opengl/textureunit.h>
|
|
#include <fstream>
|
|
#include <string>
|
|
|
|
namespace {
|
|
|
|
bool isInitialized = false;
|
|
|
|
std::string xyuvrgbaVertexFile;
|
|
std::string xyuvrgbaFragmentFile;
|
|
|
|
std::string screenFillingVertexFile;
|
|
std::string screenFillingFragmentFile;
|
|
|
|
constexpr const char* XyuvrgbaVertexCode = R"(
|
|
#version __CONTEXT__
|
|
|
|
layout(location = 0) in vec2 in_position;
|
|
layout(location = 1) in vec2 in_uv;
|
|
layout(location = 2) in vec4 in_color;
|
|
|
|
out vec2 out_position;
|
|
out vec2 out_uv;
|
|
out vec4 out_color;
|
|
|
|
uniform mat4 ortho;
|
|
|
|
void main() {
|
|
out_position = in_position;
|
|
out_uv = in_uv;
|
|
out_color = in_color;
|
|
gl_Position = ortho * vec4(in_position, 0.0, 1.0);
|
|
}
|
|
|
|
)";
|
|
|
|
constexpr const char* ScreenFillingQuadVertexCode = R"(
|
|
#version __CONTEXT__
|
|
|
|
vec2 positions[6] = vec2[](
|
|
vec2(-1.0, -1.0), vec2( 1.0, -1.0), vec2( 1.0, 1.0),
|
|
vec2(-1.0, -1.0), vec2( 1.0, 1.0), vec2(-1.0, 1.0)
|
|
);
|
|
|
|
out vec2 out_uv;
|
|
out vec4 out_color;
|
|
|
|
void main() {
|
|
gl_Position = vec4(positions[gl_VertexID], 0.0, 1.0);
|
|
out_uv = (positions[gl_VertexID] + 1.0) / 2.0;
|
|
out_color = vec4(1.0);
|
|
}
|
|
|
|
)";
|
|
|
|
constexpr const char* XyuvrgbaFragmentCode = R"(
|
|
#version __CONTEXT__
|
|
|
|
uniform bool hasTexture = false;
|
|
uniform bvec2 shouldFlipTexture = bvec2(false, false);
|
|
uniform sampler2D tex;
|
|
uniform vec4 color = vec4(1.0, 1.0, 1.0, 1.0);
|
|
|
|
in vec2 out_uv;
|
|
in vec4 out_color;
|
|
|
|
out vec4 FragColor;
|
|
|
|
void main() {
|
|
if (hasTexture) {
|
|
vec2 uv = out_uv;
|
|
if (shouldFlipTexture.x) {
|
|
uv.x = 1.0 - uv.x;
|
|
}
|
|
if (shouldFlipTexture.y) {
|
|
uv.y = 1.0 - uv.y;
|
|
}
|
|
FragColor = out_color * color * texture(tex, uv);
|
|
}
|
|
else {
|
|
FragColor = out_color * color;
|
|
}
|
|
}
|
|
)";
|
|
|
|
} // namespace
|
|
|
|
namespace openspace::rendering::helper {
|
|
|
|
namespace detail {
|
|
|
|
Shaders& gShadersConstructor() {
|
|
static Shaders g;
|
|
return g;
|
|
}
|
|
|
|
VertexObjects& gVertexObjectsConstructor() {
|
|
static VertexObjects g;
|
|
return g;
|
|
}
|
|
|
|
} // namespace detail
|
|
|
|
void initialize() {
|
|
ghoul_assert(!isInitialized, "Rendering Helper initialized twice");
|
|
|
|
//
|
|
// XYUVRGBA shader
|
|
//
|
|
xyuvrgbaVertexFile = absPath("${TEMPORARY}/xyuvrgba.vert");
|
|
{
|
|
std::fstream vertexFile;
|
|
vertexFile.exceptions(std::ifstream::failbit | std::ifstream::badbit);
|
|
vertexFile.open(xyuvrgbaVertexFile, std::fstream::out);
|
|
vertexFile << XyuvrgbaVertexCode;
|
|
vertexFile.close();
|
|
}
|
|
|
|
xyuvrgbaFragmentFile = absPath("${TEMPORARY}/xyuvrgba.frag");
|
|
{
|
|
std::fstream fragmentFile;
|
|
fragmentFile.exceptions(std::ifstream::failbit | std::ifstream::badbit);
|
|
fragmentFile.open(xyuvrgbaFragmentFile, std::fstream::out);
|
|
fragmentFile << XyuvrgbaFragmentCode;
|
|
fragmentFile.close();
|
|
}
|
|
shaders.xyuvrgba.program = ghoul::opengl::ProgramObject::Build(
|
|
"xyuvrgba", xyuvrgbaVertexFile, xyuvrgbaFragmentFile);
|
|
ghoul::opengl::updateUniformLocations(*shaders.xyuvrgba.program,
|
|
shaders.xyuvrgba.cache,
|
|
{ "tex", "hasTexture", "shouldFlipTexture", "ortho", "color" });
|
|
|
|
//
|
|
// Screenfilling shader
|
|
//
|
|
screenFillingVertexFile = absPath("${TEMPORARY}/screenfilling.vert");
|
|
{
|
|
std::fstream vertexFile;
|
|
vertexFile.exceptions(std::ifstream::failbit | std::ifstream::badbit);
|
|
vertexFile.open(screenFillingVertexFile, std::fstream::out);
|
|
vertexFile << ScreenFillingQuadVertexCode;
|
|
vertexFile.close();
|
|
}
|
|
|
|
screenFillingFragmentFile = absPath("${TEMPORARY}/screenfilling.frag");
|
|
{
|
|
std::fstream fragmentFile;
|
|
fragmentFile.exceptions(std::ifstream::failbit | std::ifstream::badbit);
|
|
fragmentFile.open(screenFillingFragmentFile, std::fstream::out);
|
|
fragmentFile << XyuvrgbaFragmentCode;
|
|
fragmentFile.close();
|
|
}
|
|
|
|
shaders.screenfilling.program = ghoul::opengl::ProgramObject::Build(
|
|
"screenfilling", xyuvrgbaVertexFile, xyuvrgbaFragmentFile);
|
|
ghoul::opengl::updateUniformLocations(*shaders.screenfilling.program,
|
|
shaders.screenfilling.cache,
|
|
{ "tex", "hasTexture", "shouldFlipTexture", "ortho", "color" });
|
|
|
|
|
|
//
|
|
// Square vertex objects
|
|
//
|
|
glGenVertexArrays(1, &vertexObjects.square.vao);
|
|
glGenBuffers(1, &vertexObjects.square.vbo);
|
|
|
|
glBindVertexArray(vertexObjects.square.vao);
|
|
glBindBuffer(GL_ARRAY_BUFFER, vertexObjects.square.vbo);
|
|
|
|
struct Vertex {
|
|
GLfloat xy[2];
|
|
GLfloat uv[2];
|
|
GLfloat rgba[4];
|
|
};
|
|
Vertex data[] = {
|
|
// X Y U V R G B A
|
|
-1.f, -1.f, 0.f, 0.f, 1.f, 1.f, 1.f, 1.f,
|
|
-1.f, 1.f, 0.f, 1.f, 1.f, 1.f, 1.f, 1.f,
|
|
1.f, 1.f, 1.f, 1.f, 1.f, 1.f, 1.f, 1.f,
|
|
|
|
-1.f, -1.f, 0.f, 0.f, 1.f, 1.f, 1.f, 1.f,
|
|
1.f, 1.f, 1.f, 1.f, 1.f, 1.f, 1.f, 1.f,
|
|
1.f, -1.f, 1.f, 0.f, 1.f, 1.f, 1.f, 1.f
|
|
};
|
|
glBufferData(GL_ARRAY_BUFFER, 6 * sizeof(Vertex), data, GL_STATIC_DRAW);
|
|
|
|
glEnableVertexAttribArray(0);
|
|
glVertexAttribPointer(0, 2, GL_FLOAT, GL_FALSE, sizeof(Vertex), nullptr);
|
|
glEnableVertexAttribArray(1);
|
|
glVertexAttribPointer(1, 2, GL_FLOAT, GL_FALSE, sizeof(Vertex),
|
|
reinterpret_cast<GLvoid*>(offsetof(Vertex, uv)));
|
|
glEnableVertexAttribArray(2);
|
|
glVertexAttribPointer(2, 4, GL_FLOAT, GL_FALSE, sizeof(Vertex),
|
|
reinterpret_cast<GLvoid*>(offsetof(Vertex, rgba)));
|
|
glBindVertexArray(0);
|
|
|
|
//
|
|
// Empty vertex array objects
|
|
//
|
|
glGenVertexArrays(1, &vertexObjects.empty.vao);
|
|
|
|
isInitialized = true;
|
|
}
|
|
|
|
void deinitialize() {
|
|
ghoul_assert(isInitialized, "Rendering Helper not initialized");
|
|
|
|
if (!xyuvrgbaVertexFile.empty()) {
|
|
FileSys.deleteFile(xyuvrgbaVertexFile);
|
|
}
|
|
if (!xyuvrgbaFragmentFile.empty()) {
|
|
FileSys.deleteFile(xyuvrgbaFragmentFile);
|
|
}
|
|
shaders.xyuvrgba.program = nullptr;
|
|
|
|
if (!screenFillingVertexFile.empty()) {
|
|
FileSys.deleteFile(screenFillingVertexFile);
|
|
}
|
|
if (!screenFillingFragmentFile.empty()) {
|
|
FileSys.deleteFile(screenFillingVertexFile);
|
|
}
|
|
shaders.screenfilling.program = nullptr;
|
|
|
|
|
|
glDeleteVertexArrays(1, &vertexObjects.square.vao);
|
|
glDeleteBuffers(1, &vertexObjects.square.vbo);
|
|
|
|
glDeleteVertexArrays(1, &vertexObjects.empty.vao);
|
|
|
|
isInitialized = false;
|
|
}
|
|
|
|
glm::mat4 ortho(const glm::vec2& position, const glm::vec2& size, Anchor anchor) {
|
|
const float xSize = size.x;
|
|
const float ySize = size.y;
|
|
float xPos = (position.x - 0.5f) * 2.f;
|
|
float yPos = (1.f - position.y - 0.5f) * 2.f;
|
|
|
|
switch (anchor) {
|
|
case Anchor::Center:
|
|
break;
|
|
case Anchor::NW:
|
|
xPos += xSize;
|
|
yPos -= ySize;
|
|
break;
|
|
case Anchor::NE:
|
|
xPos -= xSize;
|
|
yPos -= ySize;
|
|
break;
|
|
case Anchor::SW:
|
|
xPos += xSize;
|
|
yPos += ySize;
|
|
break;
|
|
case Anchor::SE:
|
|
xPos -= xSize;
|
|
yPos += ySize;
|
|
break;
|
|
}
|
|
|
|
return glm::mat4(
|
|
xSize, 0.f, 0.f, 0.f,
|
|
0.f, ySize, 0.f, 0.f,
|
|
0.f, 0.f, 1.f, 0.f,
|
|
xPos, yPos, 0.f, 1.f
|
|
);
|
|
}
|
|
|
|
|
|
void renderBox(ghoul::opengl::ProgramObject& program, GLint orthoLocation,
|
|
GLint colorLocation, const glm::vec2& position, const glm::vec2& size,
|
|
const glm::vec4& color, Anchor anchor)
|
|
{
|
|
program.setUniform(orthoLocation, ortho(position, size, anchor));
|
|
program.setUniform(colorLocation, color);
|
|
|
|
glBindVertexArray(vertexObjects.square.vao);
|
|
glDrawArrays(GL_TRIANGLES, 0, 6);
|
|
glBindVertexArray(0);
|
|
}
|
|
|
|
void renderBox(const glm::vec2& position, const glm::vec2& size, const glm::vec4& color,
|
|
Anchor anchor)
|
|
{
|
|
auto& shdr = shaders.xyuvrgba;
|
|
shdr.program->activate();
|
|
shdr.program->setUniform(shdr.cache.hasTexture, 0);
|
|
renderBox(
|
|
*shdr.program,
|
|
shdr.cache.ortho,
|
|
shdr.cache.color,
|
|
position, size,
|
|
color,
|
|
anchor
|
|
);
|
|
shdr.program->deactivate();
|
|
}
|
|
|
|
void renderBox(const glm::vec2& position, const glm::vec2& size, const glm::vec4& color,
|
|
const ghoul::opengl::Texture& texture, Anchor anchor)
|
|
{
|
|
auto& shdr = shaders.xyuvrgba;
|
|
shdr.program->activate();
|
|
shdr.program->setUniform(shdr.cache.hasTexture, 1);
|
|
|
|
ghoul::opengl::TextureUnit unit;
|
|
unit.activate();
|
|
texture.bind();
|
|
shdr.program->setUniform(shdr.cache.tex, unit);
|
|
renderBox(
|
|
*shdr.program,
|
|
shdr.cache.ortho,
|
|
shdr.cache.color,
|
|
position,
|
|
size,
|
|
color,
|
|
anchor
|
|
);
|
|
shdr.program->deactivate();
|
|
}
|
|
|
|
|
|
} // namespace openspace::rendering::helper
|