1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175
|
/* This file is part of the Spring engine (GPL v2 or later), see LICENSE.html */
#include "Height.h"
#include "Map/HeightLinePalette.h"
#include "Map/HeightMapTexture.h"
#include "Map/ReadMap.h"
#include "Rendering/GlobalRendering.h"
#include "Rendering/Shaders/ShaderHandler.h"
#include "Rendering/Shaders/Shader.h"
#include "System/Color.h"
#include "System/Exceptions.h"
#include "System/Config/ConfigHandler.h"
#include "System/Log/ILog.h"
// currently defined in HeightLinePalette.cpp
//CONFIG(bool, ColorElev).defaultValue(true).description("If heightmap (default hotkey [F1]) should be colored or not.");
CHeightTexture::CHeightTexture()
: CPboInfoTexture("height")
, CEventClient("[CHeightTexture]", 271990, false)
, needUpdate(true)
{
eventHandler.AddClient(this);
texSize = int2(mapDims.mapxp1, mapDims.mapyp1);
texChannels = 4;
glGenTextures(1, &texture);
glBindTexture(GL_TEXTURE_2D, texture);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
glSpringTexStorage2D(GL_TEXTURE_2D, 1, GL_RGBA8, texSize.x, texSize.y);
glGenTextures(1, &paletteTex);
glBindTexture(GL_TEXTURE_2D, paletteTex);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_NEAREST);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT);
glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE);
glSpringTexStorage2D(GL_TEXTURE_2D, 1, GL_RGBA8, 256, 2);
glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, 256, 1, GL_RGBA, GL_UNSIGNED_BYTE, &CHeightLinePalette::paletteColored[0].r);
glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 1, 256, 1, GL_RGBA, GL_UNSIGNED_BYTE, &CHeightLinePalette::paletteBlackAndWhite[0].r);
if (FBO::IsSupported()) {
fbo.Bind();
fbo.AttachTexture(texture);
/*bool status =*/ fbo.CheckStatus("CHeightTexture");
FBO::Unbind();
}
const std::string vertexCode = R"(
#version 120
varying vec2 texCoord;
void main() {
gl_Position = vec4(0.0, 0.0, 0.0, 1.0);
gl_Position.xy = gl_Vertex.xy * 2.0 - 1.0;
texCoord = gl_Vertex.st;
}
)";
const std::string fragmentCode = R"(
#version 120
uniform sampler2D texHeight;
uniform sampler2D texPalette;
uniform float paletteOffset;
varying vec2 texCoord;
void main() {
float h = texture2D(texHeight, texCoord).r;
vec2 tc = vec2(h * (8. / 256.), paletteOffset);
gl_FragColor = texture2D(texPalette, tc);
}
)";
shader = shaderHandler->CreateProgramObject("[CHeightTexture]", "CHeightTexture", false);
shader->AttachShaderObject(shaderHandler->CreateShaderObject(vertexCode, "", GL_VERTEX_SHADER));
shader->AttachShaderObject(shaderHandler->CreateShaderObject(fragmentCode, "", GL_FRAGMENT_SHADER));
shader->Link();
if (!shader->IsValid()) {
const char* fmt = "%s-shader compilation error: %s";
LOG_L(L_ERROR, fmt, shader->GetName().c_str(), shader->GetLog().c_str());
} else {
shader->Enable();
shader->SetUniform("texHeight", 0);
shader->SetUniform("texPalette", 1);
shader->SetUniform("paletteOffset", configHandler->GetBool("ColorElev") ? 0.0f : 1.0f);
shader->Disable();
shader->Validate();
if (!shader->IsValid()) {
const char* fmt = "%s-shader validation error: %s";
LOG_L(L_ERROR, fmt, shader->GetName().c_str(), shader->GetLog().c_str());
}
}
if (!fbo.IsValid() || !shader->IsValid()) {
throw opengl_error("");
}
}
void CHeightTexture::UpdateCPU()
{
const SColor* extraTexPal = CHeightLinePalette::GetData();
const float* heightMap = readMap->GetCornerHeightMapUnsynced();
infoTexPBO.Bind();
infoTexPBO.New(texSize.x * texSize.y * texChannels, GL_STREAM_DRAW);
auto infoTexMem = reinterpret_cast<SColor*>(infoTexPBO.MapBuffer());
for (int y = 0; y < texSize.y; ++y) {
for (int x = 0; x < texSize.x; ++x) {
const int idx = y * texSize.x + x;
const float height = heightMap[idx];
const unsigned int value = ((unsigned int)(height * 8.0f)) % 255;
infoTexMem[idx] = extraTexPal[value];
}
}
infoTexPBO.UnmapBuffer();
glBindTexture(GL_TEXTURE_2D, texture);
glTexSubImage2D(GL_TEXTURE_2D, 0, 0, 0, texSize.x, texSize.y, GL_RGBA, GL_UNSIGNED_BYTE, infoTexPBO.GetPtr());
infoTexPBO.Invalidate();
infoTexPBO.Unbind();
}
CHeightTexture::~CHeightTexture()
{
glDeleteTextures(1, &paletteTex);
}
void CHeightTexture::Update()
{
needUpdate = false;
if (!fbo.IsValid() || !shader->IsValid() || (heightMapTexture->GetTextureID() == 0))
return UpdateCPU();
fbo.Bind();
glViewport(0,0, texSize.x, texSize.y);
shader->Enable();
glDisable(GL_BLEND);
glActiveTexture(GL_TEXTURE1);
glBindTexture(GL_TEXTURE_2D, paletteTex);
glActiveTexture(GL_TEXTURE0);
glBindTexture(GL_TEXTURE_2D, heightMapTexture->GetTextureID());
glBegin(GL_QUADS);
glVertex2f(0.f, 0.f);
glVertex2f(0.f, 1.f);
glVertex2f(1.f, 1.f);
glVertex2f(1.f, 0.f);
glEnd();
shader->Disable();
glViewport(globalRendering->viewPosX,0,globalRendering->viewSizeX,globalRendering->viewSizeY);
FBO::Unbind();
}
void CHeightTexture::UnsyncedHeightMapUpdate(const SRectangle& rect)
{
needUpdate = true;
}
bool CHeightTexture::IsUpdateNeeded()
{
return needUpdate;
}
|