
I have finaly finished new version of my Tiled Terrain Scene Node along with new demo. I call it Shifting Tiled Terrain Scene Node now. I was basicaly recoding it from scratch so there may appear some problems some of you were reporting with old one. Please be patient with me, this terrain have a lot of new features. Report back any bugs or problems you encounter. Of course some fresh ideas of howe to make it better are wellcomed too.
So whats new in comparison with old one?
Good news is that its MUCH MUCH fasther than old one. While old demo run at around 100 fps with OpenGl on my machine, this new baby gets at about 600 at about equal condidions.
Basic principle remains the same. Most important changes are that now mesh is split in to sectors. Depending on size there may be up to 25 sectors. Each is individualy culled and updated to save time. And it seems to pay of.
Another new thing is way it handle texture. I use S3DVertex2TCoords instead of old S3DVertex and EMT_DETAIL_MAP. Node creates one texture internaly, which I call color texture. This texture is stretch over whole mesh and gets updated from data array on run time. It basicly allow to set color for individual tiles. One pixel for one tile.
This color texture is blended in to another texture which acts as detail texture and have to be loaded from file by user. This detail texture can be manipulated the same way old terrain node manipulated texture. You can set its UV coordinates the way you want. You may build it from seweral diferent textures and then apply each individualy over tiles.
Resulting efect is that terrain keeps nice detail look close by plus gets some variability over distance.
[Bad thing is that there is some bug in Irrlicht which prevents me to use detail texture the standart way EMT_DETAIL_MAP material should work. I had to set detail texture as firsth texture and color texture as second. Ist not the best but at last it works.
http://irrlicht.sourceforge.net/phpBB2/ ... hp?t=20709]
-seems to be solved.
Also I have spend quit lot of time polishing getIntersectionWithLine function which is now much fasther than the old version.
And last I added new functions which give possibility to load data from height maps and color maps.
Downloads (thanks a lot Spintz for offering me hosting of files

Demo [ 2.3 Mb ] http://www.spintz.com/arras/Files/ShTlT ... 042008.zip
Source files for Irrlicht 1.4 http://www.spintz.com/arras/Files/ShTlT ... 052009.zip
Please look inside ShTlTerrainSceneNode.h for more detailed description about ShTlTerrain node.
[Update 07.04.2008]
Updated for Irrlicht 1.4. New demo, screenshot and sources uploaded. Demo runs only under OpenGl. I did not have patience to compile Irrlicht.dll with DX support with C::B and I did not find working one quickly.
Bug I was reporting seems to be solved and I changed texture order to proper one so textures should be rendered bit better. I was not testing it extensively however so please report here if you have some problems under OpenGL.
I did change most of u32s to s32s to get rid of compiler warnings quickly.
Use terrain->getMaterial(0).FogEnable = true to enable fog. Setting material flag does not seems to work.
Also use terrain->getMaterial(0).setTexture(1, driver->getTexture("texture")) since setMaterialTexture also does not seems to work for reason unknown to me.
I do not know what cause this. I recommend to use material directly to set properties if you encounter some problems.
[Update 17.04.2008]
Corrected memory leak in array2d which was reintroduced by last update.
getMaterialCount() made constant. This solves problem with setting material attributes and texture via ISceneNode interface in Irrlicht 1.4.
[Update 29.05.2009]
Found bug in array2d again by Darktib. Corrected. Was reported to work with Irrlicht 1.5. I was not trying myself.