I'm not entirely new to programming, although I'm learning c++ at the moment along with Ogre. I believe I have a good enough understanding of the language right now to be able to write a Voxel based first person shooter.

I started making a "map maker"-sort of application, just to test my current knowledge, and everything seemed to be working smoothly. It parses a .txt file in which coordinates for blocks are read and placed. You can then add/remove and then save.

Only problem is that the frame rates become extremely low when having a lot of blocks on the screen at one time. It is obvious that Ogre does not draw geometry when it is not in the field of view of the camera, however, the frame rates will drop to around 20 when I have about 200 blocks in front of me.

Now I understand that there are a lot of optimization techniques that can be used in order to improve performance, but the frame rates are so low with so few blocks that I feel like this doesn't require advanced optimization this early (please correct me if I'm wrong).

I have tried to see if the problem was resolution of textures but no change of res changed the frame rate. Screen resolution didn't change anything either. It seems like it has something to do with constantly drawing the geometry.

I have read other forums and things where chunks are used in order to have one complete mesh per chunk.

Correct me if I'm wrong but a GTX 470 should be able to handle 200 blocks (all drawn) no problem right?

Now my question is: should I continue using Ogre because the problem is me, or is Ogre not meant for these kinds of things and I start learning OpenGL and take the advanced matters into my own hands?

link|improve this question
1  
Wall of text = bad -> no one wants to read. Pressing enter -> paragraphs = happy readers. – Hassan Syed Feb 2 at 1:51
Ok thanks alot :) i'm new to this. – Joey Pla Feb 2 at 1:53
2  
yw :D after you made the paragraphs it reads well :D +1 from me. – Hassan Syed Feb 2 at 1:56
I wouldn't say Ogre isn't meant for this kind of thing. It's specifically designed to be a 3D graphics engine which is capable of handling your average FPS's polygon count: certainly a lot higher than 1,200 (200 cubes, 6 faces per cube) or even 2,000 polygons. – darvids0n Feb 2 at 2:43
If you're thinking about switching engines though, take a look at Irrlicht. – darvids0n Feb 2 at 2:47
feedback

closed as not constructive by Will Feb 3 at 17:24

This question is not a good fit to our Q&A format. We expect answers to generally involve facts, references, or specific expertise; this question will likely solicit opinion, debate, arguments, polling, or extended discussion. See the FAQ for guidance on how to improve it.

2 Answers

up vote 3 down vote accepted

There is almost an endless number of better (i.e., faster) ways of rendering things in Ogre, or in general, other than to just simply draw a few triangles on the screen. I went through a similar situation as you for more a while ago and wrote about it in detail.

There are orders of magnitude faster renders possible with a few specific tweaks for a voxel type display. For example, in testing I was using a 256x256x256 cube world and my FPS was in the several hundred range with only a few rather simple methods:

  • Create "chunks" of meshes to reduce all the hidden faces in a voxel world.
  • Use a texture atlas (all voxel textures in one file and selected via UV coordinates) instead of individual texture files.

A lot more details are in that link given above...feel free to read and use whatever is useful and keep in mind there are many more advanced ways of doing voxels I don't fully understand (I saw someone do it with a pixel/vertex shader for example).

link|improve this answer
thanks so much, it helped alot! :) – Joey Pla Feb 2 at 3:33
feedback

I have no experience with Ogre or OpenGL in general, just making observations here. Ignoring view culling that ogre may or may not do, (assuming a block equals 12 triangles) 2400 triangles should not be taking that long to draw, especially on that kind of hardware.

In what kind of structure are you storing your blocks? Are you storing the geometry and texture per block? What are you doing each frame? Is it possible you are loading or saving something to your file every frame? How are you drawing your blocks? Are you possibly drawing each triangle individually? If so, either look into vertex+index buffers for geometry, or have a look at what kind of mesh or object classes Ogre might provide.

There are many kinds of optimizations you could apply. You could use instancing and only save the geometry for a single block, and draw it in several positions with different textures. You could consolidate volumes of blocks into a single mesh as you said, and optimize the triangle count of this mesh.

You should check what kind of culling Ogre does on it's own, and how/if you can perhaps improve it / cull more blocks.

I think it's more likely you are not using something in Ogre the way it was intended though, with the block counts you mentioned I don't think any of these optimizations could do much.

link|improve this answer
I have a 3D array of Cube objects (Cube only contains the following members: an int, a pointer to a Entity and a pointer to a SceneNode) the coordinates are represented by the location in the 3D array. I am not storing anything other than this in my cube object. I load up a ManualObject for every entity but this is done before the rendering even starts. As for the writing to a file, I only read the file at the beginning, and then write when a key is pressed so that couldn't be the problem. Thanks for the answer, I'll definately look into the topics you brought up :) – Joey Pla Feb 2 at 3:30
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.