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?