Im using lwjgl with Java to build a block based 3d game, something like Minecraft. I'm currently have a Block class which contains the functions void Update() and void Draw() and I call them in the order Update() and Draw() each cycle of the game loop. The funtion draw contanis a texture.bind() at the begging to apply texture on the block and then have 6 if conditions to check if needed to render 6 sides respectivly. Exmaple:
if(rendertop)
GL11.glVertex3f(position.x, position.y, position.z);
.....
At the moment it works pretty well except when i draw alot of those blocks it slow down the fps so the game is unplayable. After some searching on google I found out that there are better ways to draw 3d objects to the screen other then send to the graphics card each vertex again and again in each draw. I tried to use lists but it only seems to take alot more memory. I made a new list for each side of the block and called it if the side needed to be rendered same as the example above, which means each block have 6 lists. This is how I made the lists:
GL11.glNewList(displayListId, GL11.GL_COMPILE);
GL11.glBegin(GL11.GL_QUADS);
...... (Calling GL11.glVertex3f to draw the side)
GL11.glEnd();
GL11.glEndList();
And I called it like this:
if(rendertop)
GL11.glCallList(displayListId);
But as i said before it only made the game very slow, I know this is probably have somtihing to do with the way I implemented it. Another problem in using that method is then you destroy the block you need to delete the displaylist and i dont know how to do that.
Anyone can suggest a way to increase the performane using the displaylists or other methods?