c++ - OpenGL 中的天空盒

标签 c++ opengl textures skybox

我正在为 OpenGL 中的天空盒制作环境贴图,但遇到了纹理问题。我的代码生成我试图映射的纹理图 block ,而不是一个大纹理。这些图 block 也失去了大部分分辨率并且非常小。

这是我的代码:

#include <windows.h>
#include <stdio.h>
#include <glew.h>
#include <glut.h>
#include "Camera.h"

Camera cam;
GLuint texture [6]; //the array for our texture

GLfloat angle = 0.0;

GLuint LoadTexture( const char * filename, int width, int height) {
    GLuint texture;
    unsigned char * data;
    FILE* file;

    file = fopen( filename, "rb" );
    if ( file == NULL ) return 0;
    data = (unsigned char *)malloc( width * height * 3 );
    fread( data, width * height * 3, 1, file );
    fclose( file );

    glGenTextures( 1, &texture ); 
    glBindTexture( GL_TEXTURE_2D, texture ); 
    glTexEnvf( GL_TEXTURE_ENV, GL_TEXTURE_ENV_MODE, GL_MODULATE ); 

    glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_MIN_FILTER, GL_LINEAR_MIPMAP_LINEAR );
    glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_MAG_FILTER, GL_LINEAR_MIPMAP_LINEAR );

    glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_REPEAT );
    glTexParameterf( GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_REPEAT );

    gluBuild2DMipmaps( GL_TEXTURE_2D, 3, width, height, GL_RGB, GL_UNSIGNED_BYTE, data );    
    free(data);
    return texture; 
}    

void FreeTexture( GLuint texture )
{
    glDeleteTextures( 1, &texture );
}

void skybox (void) {
float x = 0;
float y = 0;
float z = 0;
float width  = 100;
float height = 100;
float length = 100;
// Bind the BACK texture of the sky map to the BACK side of the cube
glBindTexture(GL_TEXTURE_2D, texture[0]);
// Center the skybox
x = x - width  / 2;
y = y - height / 2;
z = z - length / 2;
glBegin(GL_QUADS);      
    glTexCoord2f(1.0f, 0.0f); glVertex3f(x + width, y,  z);
    glTexCoord2f(1.0f, 1.0f); glVertex3f(x + width, y + height, z); 
    glTexCoord2f(0.0f, 1.0f); glVertex3f(x, y + height, z);
    glTexCoord2f(0.0f, 0.0f); glVertex3f(x, y,  z);
glEnd();
glBindTexture(GL_TEXTURE_2D, texture[1]);
glBegin(GL_QUADS);  
    glTexCoord2f(1.0f, 0.0f); glVertex3f(x, y,  z + length);
    glTexCoord2f(1.0f, 1.0f); glVertex3f(x, y + height, z + length);
    glTexCoord2f(0.0f, 1.0f); glVertex3f(x + width, y + height, z + length); 
    glTexCoord2f(0.0f, 0.0f); glVertex3f(x + width, y,  z + length);
glEnd();

glBindTexture(GL_TEXTURE_2D, texture[4]);
glBegin(GL_QUADS);      

    glTexCoord2f(1.0f, 0.0f); glVertex3f(x, y,  z);
    glTexCoord2f(1.0f, 1.0f); glVertex3f(x, y,  z + length);
    glTexCoord2f(0.0f, 1.0f); glVertex3f(x + width, y,  z + length); 
    glTexCoord2f(0.0f, 0.0f); glVertex3f(x + width, y,  z);
glEnd();
glBindTexture(GL_TEXTURE_2D, texture[5]);
glBegin(GL_QUADS);      
    glTexCoord2f(0.0f, 0.0f); glVertex3f(x + width, y + height, z);
    glTexCoord2f(1.0f, 0.0f); glVertex3f(x + width, y + height, z + length); 
    glTexCoord2f(1.0f, 1.0f); glVertex3f(x, y + height, z + length);
    glTexCoord2f(0.0f, 1.0f); glVertex3f(x, y + height, z);
glEnd();
glBindTexture(GL_TEXTURE_2D, texture[2]);
glBegin(GL_QUADS);      
    glTexCoord2f(1.0f, 1.0f); glVertex3f(x, y + height, z); 
    glTexCoord2f(0.0f, 1.0f); glVertex3f(x, y + height, z + length); 
    glTexCoord2f(0.0f, 0.0f); glVertex3f(x, y,  z + length);
    glTexCoord2f(1.0f, 0.0f); glVertex3f(x, y,  z);     

glEnd();
glBindTexture(GL_TEXTURE_2D, texture[3]);
glBegin(GL_QUADS);  
    glTexCoord2f(0.0f, 0.0f); glVertex3f(x + width, y,  z);
    glTexCoord2f(1.0f, 0.0f); glVertex3f(x + width, y,  z + length);
    glTexCoord2f(1.0f, 1.0f); glVertex3f(x + width, y + height, z + length); 
    glTexCoord2f(0.0f, 1.0f); glVertex3f(x + width, y + height, z);
glEnd();
//glBindTexture( GL_TEXTURE_CUBE_MAP, texture[0] ); //bind the texture
//glRotatef( angle, 1.0f, 1.0f, 1.0f );
//glutSolidSphere(2, 40, 40);
}

void display (void) {
glClearColor (0.0,0.0,0.0,1.0);
glClear (GL_COLOR_BUFFER_BIT);
glLoadIdentity();
cam.camera();
//gluLookAt (20.0, 20.0, 20.0, 0.0, 0.0, 0.0, 0.0, 1.0, 0.0);
texture[0] = LoadTexture( "Back.bmp", 256, 256 ); //load the texture
texture[1] = LoadTexture( "Front.bmp", 256, 256 ); //load the texture
texture[2] = LoadTexture( "Left.bmp", 256, 256 ); //load the texture
texture[3] = LoadTexture( "Right.bmp", 256, 256 ); //load the texture
texture[4] = LoadTexture( "Bottom.bmp", 256, 256 ); //load the texture
texture[5] = LoadTexture( "Top.bmp", 256, 256 ); //load the texture
glEnable(GL_TEXTURE_2D); //enable 2D texturing
glEnable(GL_TEXTURE_GEN_S); //enable texture coordinate generation
glEnable(GL_TEXTURE_GEN_T);
skybox();
for (int i = 0; i < 6; i++) {
    FreeTexture( texture[i] );
}
glutSwapBuffers();
angle = angle + 0.5;
cam.incAngle();
}

void keyboard (unsigned char key, int x, int y) {
switch (key) {
case 'q': cam.lookUpwards(); break;
case 'z': cam.lookDownwards(); break;
case 'w': cam.slideForward(); break;
case 's': cam.slideBackward(); break;
case 'a': cam.strafeLeft(); break;
case 'd': cam.strafeRight(); break;
case 'e': exit(0); break;
default: break;
}
}

void reshape(int x, int y) {
cam.reshape(x, y);
}

void mouseMovement(int x, int y) {
cam.mouseMovement(x, y);
}

int main (int argc, char **argv) {
glutInit(&argc, argv);
glutInitDisplayMode(GLUT_DOUBLE);
glutInitWindowSize(500, 500);
glutInitWindowPosition(100, 100);
glutCreateWindow("A basic OpenGL Window");
glutDisplayFunc(display);
glutIdleFunc(display);
glutReshapeFunc(reshape);
glutKeyboardFunc(keyboard);
glutPassiveMotionFunc(mouseMovement);
glutMainLoop();
}

最佳答案

由于您手动指定纹理坐标,您应该删除/禁用以下自动生成:

glEnable(GL_TEXTURE_GEN_S); //enable texture coordinate generation
glEnable(GL_TEXTURE_GEN_T);

此外,您将 .bmp 文件作为原始 RGB 数据加载看起来很可疑。

关于c++ - OpenGL 中的天空盒,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13486581/

相关文章:

c++ - 从 OpenCL 内核修改 VBO 数据

c++ - 如何正确更新几何图形

c++ - 将 D3DFMT_UNKNOWN 传递到 IDirect3DDevice9::CreateTexture()

c++ - 在 Qt5 中使用 sqlite

c++ - 模板中的变量赋值

c++ - 如何使用 C++ 在 OpenGL_POINTS 函数中绘制正弦波

opengl - 在 OpenGL 的片段着色器中获取原始纹理颜色

ios - 离屏渲染 Metal

C++ 使用 Const int 定义数组

c++ - 我应该专攻还是重载?