简体   繁体   English

OpenGL地形纹理底纹

[英]Opengl terrain texture shading

I am currently working on an OpenGL (JOGL) project in java. 我目前正在用Java开发OpenGL(JOGL)项目。 The goal is to create a terrain with textures and shading. 目标是创建具有纹理和阴影的地形。

I'm creating a random simplex noise, using these values as a heightmap. 我正在使用这些值作为高度图来创建随机单纯形噪声。 The heights are mapped to a 1D texture to simulate coloring based on height. 高度映射到一维纹理以基于高度模拟着色。 A material (ambient/diffuse/specular/shininess) is then used to simulate shading. 然后使用一种材质(环境/漫反射/镜面反射/光泽度)来模拟阴影。

However; 然而; after adding shading to the terrain, 'stripes' appear on each 'column' (Y direction) of the terrain. 在为地形添加阴影后,“条纹”出现在地形的每个“列”(Y方向)上。

The following material is then applied: 然后应用以下材料:

TERRAIN(
        new float[]{0.5f, 0.5f, 0.5f, 1.0f},
        new float[]{0.7f, 0.7f, 0.7f, 1.0f},
        new float[]{0.2f, 0.2f, 0.2f, 1.0f},
        new float[]{100f})

The material enum constructor: 材质枚举构造函数:

Material(float[] ambient, float[] diffuse, float[] specular, float[] shininess) {
    this.ambient = ambient;
    this.diffuse = diffuse;
    this.specular = specular;
    this.shininess = shininess;
}

I apply the material using the following method: 我使用以下方法应用材料:

public void use(GL2 gl) {
    // set the material properties
    gl.glMaterialfv(GL.GL_FRONT_AND_BACK, GLLightingFunc.GL_AMBIENT, ambient, 0);
    gl.glMaterialfv(GL.GL_FRONT_AND_BACK, GLLightingFunc.GL_DIFFUSE, diffuse, 0);
    gl.glMaterialfv(GL.GL_FRONT_AND_BACK, GLLightingFunc.GL_SPECULAR, specular, 0);
    gl.glMaterialfv(GL.GL_FRONT_AND_BACK, GLLightingFunc.GL_SHININESS, shininess, 0);
}

After creating a 2D 'noisearray' consistent of 0-1 values, an 2D vectorarray is created, consiting of X*Y vectors, where each vector represents a point in the plane/terrain. 创建2个0-1值一致的“噪声数组”后,将创建一个2D向量数组,包含X * Y个向量,其中每个向量代表平面/地形中的一个点。

Here is the method that draws triangles in between those points, where you can see I draw the plane per column (Y direction): 这是在这些点之间绘制三角形的方法,您可以看到我每列(Y方向)绘制平面:

public void draw(GL2 gl, GLU glu, GLUT glut, Drawer drawer) {
    Material.TERRAIN.use(gl);
    texture.bind(gl);
    if (showGrid)
        gl.glPolygonMode( gl.GL_FRONT_AND_BACK, gl.GL_LINE );
    ArrayList<Vector[]> normals = new ArrayList<>();
    for(int i=1;i<vectors.length;i++) {
        gl.glBegin(gl.GL_TRIANGLE_STRIP);
        for (int j = 0; j < vectors[i].length; j++) {
            Vector normalTopRight, normalBottomLeft;

            //Calculate normals top right
            Vector v1, v2, triangleCenterTR;
            if (j < vectors[i].length - 1)
            {
                v1 = vectors[i-1][j].subtract(vectors[i][j]);
                v2 = vectors[i][j+1].subtract(vectors[i][j]);
                normalTopRight = v2.cross(v1).normalized();
                // Get center (a+b+c)*(1/3)
                triangleCenterTR = (vectors[i][j].add(vectors[i - 1][j]).add(vectors[i][j + 1])).scale(1.0 / 3);
            } else {
                v1 = vectors[i-1][j].subtract(vectors[i][j]);
                v2 = vectors[i][j-1].subtract(vectors[i][j]);
                normalTopRight = v1.cross(v2).normalized();
                // Get center (a+b+c)*(1/3)
                triangleCenterTR = (vectors[i][j].add(vectors[i-1][j]).add(vectors[i][j-1])).scale(1.0/3);
            }
            normals.add(new Vector[] {triangleCenterTR, triangleCenterTR.add(normalTopRight)});

            if (j != 0)
            {
                v1 = vectors[i][j].subtract(vectors[i-1][j]);
                v2 = vectors[i-1][j-1].subtract(vectors[i-1][j]);
                normalBottomLeft = v2.cross(v1).normalized();
                // Get center (a+b+c)*(1/3)
                Vector triangleCenterBL = (vectors[i - 1][j].add(vectors[i][j]).add(vectors[i - 1][j - 1])).scale(1.0 / 3);
                normals.add(new Vector[]{triangleCenterBL, triangleCenterBL.add(normalBottomLeft)});
            } else {
                normalBottomLeft = null; // If j==0, there is no bottom left triangle above
            }

            /**
             * We have everything to start drawing
             */
            // Set some color
            if (j == 0) {
                // Initialization vector
                gl.glTexCoord1d(mapTextureToHeight(vectors[i][j].z));
                drawer.glVertexV(vectors[i][j]);
            } else {
                drawer.glNormalV(normalBottomLeft);
            }

            // Shift left
            gl.glTexCoord1d(mapTextureToHeight(vectors[i - 1][j].z));
            drawer.glVertexV(vectors[i - 1][j]);

            // Right down diagonally
            if (j < vectors[i].length - 1) { // Skip if we are reached the end
                gl.glTexCoord1d(mapTextureToHeight(vectors[i][j + 1].z));
                drawer.glNormalV(normalTopRight);
                drawer.glVertexV(vectors[i][j + 1]);
            }
        }
        gl.glEnd();
    }
    if (showGrid)
        gl.glPolygonMode( gl.GL_FRONT_AND_BACK, gl.GL_FILL );
    if (drawNormals) {
        for (Vector[] arrow : normals) {
            if (yellowNormals)
                Material.YELLOW.use(gl);
            else
                gl.glTexCoord1d(mapTextureToHeight(arrow[0].z));
            drawer.drawArrow(arrow[0], arrow[1], 0.05);
        }
    }

    texture.unbind(gl);
}

The most obvious reason for the stripes is the fact I draw the triangles per column, causing OpenGL to not be able to smoothen the shading on the polygons (GL_SMOOTH). 出现条纹的最明显原因是我每列绘制了三角形,导致OpenGL无法平滑多边形(GL_SMOOTH)上的阴影。 Is there any way to fix this? 有没有什么办法解决这一问题?

出现在地形上的条纹图像

使用更高的分辨率(更多多边形)

[Edit1] Copied from your comment by Spektre [Edit1]摘自Spektre的评论

I just finished calculating the average normals, I indeed have a smooth terrain now, but the lighting looks kind of dull (no depth) 我刚刚完成了平均法线的计算,现在确实地势平坦,但是光照看起来有些暗淡(没有深度)

例

Here is the new code that draws the terrain: 这是绘制地形的新代码:

public void draw() {
    if (showGrid)
        gl.glPolygonMode( gl.GL_FRONT_AND_BACK, gl.GL_LINE);
    texture.bind(gl);
    Material.TERRAIN.use(gl);
    for(int i=1;i<vectors.length;i++) {
        gl.glBegin(gl.GL_TRIANGLE_STRIP);
        for (int j = 0; j < vectors[i].length; j++) {
            // Initialization vector
            gl.glTexCoord1d(mapTextureToHeight(vectors[i][j].z));
            drawer.glNormalV(normals.get(vectors[i][j]));
            drawer.glVertexV(vectors[i][j]);

            // Shift left
            gl.glTexCoord1d(mapTextureToHeight(vectors[i - 1][j].z));
            drawer.glNormalV(normals.get(vectors[i - 1][j]));
            drawer.glVertexV(vectors[i - 1][j]);
        }
        gl.glEnd();
    }
    if (showGrid)
        gl.glPolygonMode( gl.GL_FRONT_AND_BACK, gl.GL_FILL );
    if (drawNormals)
        drawFaceNormals();
    texture.unbind(gl);
}

I cleaned it up, I am sure the normals are pointing the correct way using the drawnormals function and made sure OpenGL is seeing the top of the terrain as FRONT using (gl.GL_FRONT -> draws only above terrain, not below). 我将其清理干净,我确定法线使用drawnormals函数指向正确的方式,并确保OpenGL使用FRONT来将地形的顶部视为FRONT(gl.GL_FRONT->仅在地形上方绘制,而不在下方绘制)。

Here is the complete class: PasteBin 这是完整的类: PasteBin

Thanks to @Spektre for helping me out. 感谢@Spektre帮助我。

After properly calculating the average normal of all surrounding faces on a vertex and using this normal for glNormal , the shading was correct. 正确计算顶点上所有周围平面的平均法线并将此法线用于glNormal ,阴影是正确的。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM