c++ - 如何使用顶点位置坐标进行纹理处理? OpenGL,C++

标签 c++ opengl textures fragment-shader texture2d

我想在没有预先确定的纹理坐标的情况下对我的地形进行纹理处理。我想使用顶点位置坐标确定顶点或片段着色器中的坐标。我现在使用位置 'xz' 坐标 (up=(0,1,0)),但是如果我有一个与地面成 90 度角的墙,纹理将是这样的:

enter image description here

我怎样才能将这些坐标转换为有效的位置?

这是我的顶点着色器:

#version 430

in layout(location=0) vec3 position;
in layout(location=1) vec2 textCoord;
in layout(location=2) vec3 normal;

out vec3 pos;
out vec2 text;
out vec3 norm;


uniform mat4 transformation;

void main()
{   
    gl_Position = transformation * vec4(position, 1.0);
    norm = normal;
    pos = position;
    text = position.xz;

}

这是我的 fragmant 着色器:

#version 430

in vec3 pos;
in vec2 text;
in vec3 norm;

//uniform sampler2D textures[3];

layout(binding=3) uniform sampler2D texture_1;
layout(binding=4) uniform sampler2D texture_2;
layout(binding=5) uniform sampler2D texture_3;

vec3 lightPosition = vec3(-200, 700, 50);
vec3 lightAmbient = vec3(0,0,0);
vec3 lightDiffuse = vec3(1,1,1);
vec3 lightSpecular = vec3(1,1,1);

out vec4 fragColor;
vec4 theColor;



void main()
{
    vec3 unNormPos = pos;
    vec3 lightVector = normalize(lightPosition) - normalize(pos);
    //lightVector = normalize(lightVector);

    float cosTheta = clamp(dot(normalize(lightVector), normalize(norm)), 0.5, 1.0);

    if(pos.y <= 120){
        fragColor = texture2D(texture_2, text*0.05) * cosTheta;
    }
    if(pos.y > 120 && pos.y  <  150){
        fragColor = (texture2D(texture_2, text*0.05) * (1 - (pos.y-120)/29) +  texture2D(texture_3, text*0.05) * ((pos.y-120)/29))*cosTheta;
    }
    if(pos.y >= 150)
    {
        fragColor = texture2D(texture_3, text*0.05) * cosTheta;
    }   
}

编辑:(Fons)

text = 0.05 * (position.xz + vec2(0,position.y)); 

enter image description here

text = 0.05 * (position.xz + vec2(position.y,position.y)); 

现在墙可以用了,但地形不行。 enter image description here

最佳答案

这个问题实际上是一个非常困难的问题,因为您无法仅使用 xyz 坐标设计出正确显示垂直墙的纹理坐标公式。

为了形象化这一点,想象一下在一 block 平坦的土地旁边有一座小山。由于越过山丘的路径比越过平坦土地的路径更长,因此纹理在山丘上的包裹次数应该比在平坦土地上的包裹次数更多。在下图中,纹理在山上包裹了 5 次,在平坦的部分包裹了 4 次。

Hill visualization

如果纹理坐标在左边是(0,0),那么应该是(4,0)还是(5,0)在右边?由于这两个答案都是有效的,这证明没有函数可以纯粹根据 xyz 坐标计算出正确的纹理坐标。 :(

但是,您的问题可能会通过不同的方法得到解决:

  • 可以通过独立于地形生成墙壁并为其分配正确的纹理坐标来校正墙壁。实际上,不将它们纳入您的地形更有意义。
  • 您可以使用法线贴图、更高分辨率的纹理或不同纹理的组合为陡峭山坡的侧面添加更多细节。可能有更好的解决方案,我不知道。

编辑: Triplanar mapping将解决您的问题!

关于c++ - 如何使用顶点位置坐标进行纹理处理? OpenGL,C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37360280/

相关文章:

c++ - 调试错误 R6010 - 已调用 abort()

c++ - 内存分配中的魔数(Magic Number)

c++ - 当我的着色器文件的所有信息都被正确读入字符串并且语法正确时,为什么 OpenGL 会给出语法错误

c++ - 来自 glxinfo 的 opengl 版本

c++ - 按键时更改 GLFWwindow 的背景

c++ - 如何加载纹理Opengl?

java - 我将如何阅读 LWJGL 中的 Sprite 表?

c++ - 保存为二进制文件的灰度图像上的 LoG 滤波器

three.js - 如何使用 Three.js 预加载纹理?

c++ - 避免调用 floor()