Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

im currently writing a simple minecraft clone so i can learn more about opengl. Had some issues with lag, and i think that was because i was looping through each rendered face in the main rendering loop. So i have written a function that converts a whole chunk (16^3 cubes) into 3 buffers instead.

Basicly this is it, it exists within the Fragment object.

void Fragment::generateFragment(glm::vec3 fPos, glm::vec3 fAng){

renderAng = fAng;
renderPos = fPos;

    //create a single fragment
for(int x = 0; x <FRAGMENTSIZE; x++) {
    for(int y = 0; y <FRAGMENTSIZE; y++){
        for(int z = 0; z<FRAGMENTSIZE; z++){


        fragment[x][y][z] = 1;

        }
    }

}

int render = 0;

// initate vectors to store the information about the visible faces
std::vector<GLfloat> chunkVertices;
std::vector<GLfloat> chunkNormals;
std::vector<GLfloat> chunkTextures;

//analyze each face to see if its visible
    for(int x = 0; x <FRAGMENTSIZE; x++) {
     for(int y = 0; y<FRAGMENTSIZE; y++){
      for(int z = 0; z<FRAGMENTSIZE; z++){

            if(fragment[x][y][z] != 0) {
                render = 0;                                                         
                if(fragment[x+1][y][z]==0 || x == FRAGMENTSIZE-1) { 
                  renderVisible[renderIndex][0]=1;
                render=1;
                }
                if(fragment[x-1][y][z]==0 || x == 0) {
                  renderVisible[renderIndex][1]=1;
                render=1;
                }
                if(fragment[x][y+1][z]==0 || y == FRAGMENTSIZE-1) {
                    renderVisible[renderIndex][5]=1;
                render=1;
                }
                if(fragment[x][y-1][z]==0 || y == 0) {
                    renderVisible[renderIndex][4]=1;
                render=1;
                }
                if(fragment[x][y][z+1]==0 || z == FRAGMENTSIZE-1) {
                    renderVisible[renderIndex][3]=1;
                render=1;
                }
                if(fragment[x][y][z-1]==0 || z == 0) {
                    renderVisible[renderIndex][2]=1;
                render=1;
                }

int side = 0;
int draw = 0;
int sideadd = 0;

// if one or more faces are visible
    if(render) {
           for(int idx = 0; idx < 6; idx++) {
            draw = renderVisible[renderIndex][idx];

       if(draw) {

        // adding texture points
        for(int i = idx*6; i < idx*6+6; i++) {
        chunkTextures.push_back(texture_data[i]);
        }

        // adding surface normals and vertexes
       // sideadd variable is used to insert the proper coordinates into each face
                    for(int i = idx*12; i < idx*12+12; i++) {

                  switch(side) {
                  case 0:
                      sideadd = x;
                          break;
                  case 1:
                      sideadd = y;
                      break;
                  case 2:
                      sideadd = z;
                      break;
                  }

                  chunkVertices.push_back(vertice_data[i]+sideadd);
                  chunkNormals.push_back(normals[i]);   

                  side++; if(side>2) {side=0;}
                  } 
              } 
            }
        }
      }
    } // z
      } // y
   } // x


   // converting the vectors to buffers that can be drawn in the main rendering loop
glGenBuffers(1, &normalbuf);
glBindBuffer(GL_ARRAY_BUFFER, normalbuf);
glBufferData(GL_ARRAY_BUFFER, chunkNormals.size()*sizeof(chunkNormals[0]), &chunkNormals, GL_STATIC_DRAW);


glGenBuffers(1, &vertexbuf);
glBindBuffer(GL_ARRAY_BUFFER, vertexbuf);
glBufferData(GL_ARRAY_BUFFER, chunkVertices.size()*sizeof(chunkVertices[0]), &chunkVertices, GL_STATIC_DRAW);


glGenBuffers(1, &uvbuf);
glBindBuffer(GL_ARRAY_BUFFER, uvbuf);
glBufferData(GL_ARRAY_BUFFER, chunkTextures.size()*sizeof(chunkTextures[0]), &chunkTextures, GL_STATIC_DRAW);
}

These are the errors im getting, but i guess its not the only thing im doing wrong, as im pretty new to opengl.

First-chance exception at 0x69977420 in minecraft.exe: 0xC0000005: Access violation reading location 0x00300000.
Unhandled exception at 0x77a415de (ntdll.dll) in minecraft.exe: 0xC0000005: Access violation reading location 0x00300000.

This is my cube data:

static const GLfloat texture_data[] = { 
    //right
    0.66f, 1.0f, 
    0.33f, 0.5f, 
    0.33f, 1.0f, 

    //right
    0.33f, 0.5f, 
    0.66f, 1.0f, 
    0.66f, 0.5f, 

    //left
    0.0f,  0.0f, 
    0.33f, 0.0f, 
    0.33f, 0.5f, 

    //left 
    0.0f,  0.0f, 
    0.33f,  0.5f, 
    0.0f, 0.5f, 

    // rear
    0.33f, 0.5f, 
    0.66f, 0.0f, 
    0.66f, 0.5f, 

    //rear 
    0.33f, 0.5f, 
    0.33f, 0.0f, 
    0.66f, 0.0f, 

    //front
    0.33f, 1.0f, 
    0.33f, 0.5f, 
    0.0f, 0.5f, 

    //front
    0.0f, 1.0f, 
    0.33f, 1.0f, 
    0.0f, 0.5f,

    //bottom
    1.0f, 0.5f, 
    0.666f, 0.0f, 
    1.0f, 0.0f, 

    //bottom
    1.0f, 0.5f, 
    0.666f, 0.5f, 
    0.666f, 0.0f, 

    // top
    0.6666f, 0.5f, 
    0.666f, 1.0f, 
    1.0f, 1.0f, 

    // top
    0.6666f, 0.5f, 
    1.00f, 1.0f, 
    1.00f, 0.5f


};
static const GLfloat vertice_data[] = { 
    //right
     1.0f, 1.0f, 1.0f,
     1.0f,-1.0f,-1.0f,
     1.0f, 1.0f,-1.0f,

     //right
     1.0f,-1.0f,-1.0f,
     1.0f, 1.0f, 1.0f,
     1.0f,-1.0f, 1.0f,

    //left
    -1.0f,-1.0f,-1.0f,
    -1.0f,-1.0f, 1.0f,
    -1.0f, 1.0f, 1.0f,

     //left 
    -1.0f,-1.0f,-1.0f,
    -1.0f, 1.0f, 1.0f,
    -1.0f, 1.0f,-1.0f,


    //rear 
     1.0f, 1.0f,-1.0f,
    -1.0f,-1.0f,-1.0f,
    -1.0f, 1.0f,-1.0f,

    //rear
     1.0f, 1.0f,-1.0f,
     1.0f,-1.0f,-1.0f,
    -1.0f,-1.0f,-1.0f,

    //front
    -1.0f, 1.0f, 1.0f,
    -1.0f,-1.0f, 1.0f,
     1.0f,-1.0f, 1.0f,

    //front
     1.0f, 1.0f, 1.0f,
    -1.0f, 1.0f, 1.0f,
     1.0f,-1.0f, 1.0f,

     //bottom
     1.0f,-1.0f, 1.0f,
    -1.0f,-1.0f,-1.0f,
     1.0f,-1.0f,-1.0f,

    //bottom
     1.0f,-1.0f, 1.0f,
    -1.0f,-1.0f, 1.0f,
    -1.0f,-1.0f,-1.0f,

     //top
     1.0f, 1.0f, 1.0f,
     1.0f, 1.0f,-1.0f,
    -1.0f, 1.0f,-1.0f,

    //top
     1.0f, 1.0f, 1.0f,
    -1.0f, 1.0f,-1.0f,
    -1.0f, 1.0f, 1.0f



};
static const GLfloat normals[] = {
 //right
 1.0f, 0.0f, 0.0f,
 1.0f, 0.0f, 0.0f,
 1.0f, 0.0f, 0.0f,
 //right
 1.0f, 0.0f, 0.0f,
 1.0f, 0.0f, 0.0f,
 1.0f, 0.0f, 0.0f,

  //left
 -1.0f, 0.0f, 0.0f,
 -1.0f, 0.0f, 0.0f,
 -1.0f, 0.0f, 0.0f,
 //left
 -1.0f, 0.0f, 0.0f,
 -1.0f, 0.0f, 0.0f,
 -1.0f, 0.0f, 0.0f,

 //rear
 0.0f, 0.0f, -1.0f,
 0.0f, 0.0f, -1.0f,
 0.0f, 0.0f, -1.0f,

  //rear
 0.0f, 0.0f, -1.0f,
 0.0f, 0.0f, -1.0f,
 0.0f, 0.0f, -1.0f,

 //front 
 0.0f, 0.0f, 1.0f,
 0.0f, 0.0f, 1.0f,
 0.0f, 0.0f, 1.0f,
 //front
 0.0f, 0.0f, 1.0f,
 0.0f, 0.0f, 1.0f,
 0.0f, 0.0f, 1.0f,


 //bottom
 0.0f, -1.0f, 0.0f,
 0.0f, -1.0f, 0.0f,
 0.0f, -1.0f, 0.0f,
 //bottom
 0.0f, -1.0f, 0.0f,
 0.0f, -1.0f, 0.0f,
 0.0f, -1.0f, 0.0f,

 //top
 0.0f, 1.0f, 0.0f,
 0.0f, 1.0f, 0.0f,
 0.0f, 1.0f, 0.0f,
 //top
 0.0f, 1.0f, 0.0f,
 0.0f, 1.0f, 0.0f,
 0.0f, 1.0f, 0.0f   

};

So i guess my question is, what am i doing completely wrong, and what can be optimized?

share|improve this question
1  
Your code indentation (or lack thereof) is giving me a headache… also, your array accesses are out of range: fragment[x-1][y][z] is fragment[-1][y][z] for x = 0 etc. – reima Sep 29 '12 at 22:14
Thanks, i know its out of range, but it worked fine on the old version(well, atleast didnt crash me), the problem i have is with the buffers! aka the loops that are starting here: //analyze each face to see if its visible – user1419305 Sep 29 '12 at 22:37
1  
No matter if it seemed to have worked earlier, it is still an error. Please indent your code properly, it's very hard to follow in the current state. – reima Sep 29 '12 at 22:46
Why would you do the triangle visibility yourself? That is what culling and Z-Buffer are for, which are very fast and efficient. – Anton Roth Sep 29 '12 at 23:04
Im trying to make it as efficient as possible, so i guessed that sending only the needed faces to the rendering loop would increase performance? – user1419305 Sep 29 '12 at 23:18
show 2 more comments

closed as too localized by Nicol Bolas, Jav_Rock, Toon Krijthe, Jakob Bowyer, Jonathan Leffler Oct 2 '12 at 8:53

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.