Terrain with v 0.6?

If you are a new Irrlicht Engine user, and have a newbie-question, this is the forum for you. You may also post general programming questions here.
Post Reply
etcaptor
Posts: 871
Joined: Fri Apr 09, 2004 10:32 pm
Location: Valhalla
Contact:

Terrain with v 0.6?

Post by etcaptor »

Is possible with this irrlicht version to make any outdoor games?
Thanks.
Phreak
Posts: 25
Joined: Mon May 10, 2004 2:01 pm

Post by Phreak »

What do you mean 'outdoor'? Irrlicht uses Skyboxes which are just visible 'boundaries' for your world. The skybox could contain cloud textures, which gives the outdoor effect.

Is that what you meant?

Phreak
If you don't succeed, redefine success!
Guest

Post by Guest »

Yes,
but can I use TerrainSceneNode or only AnimatedMeshSceneNode instead?
arras
Posts: 1622
Joined: Mon Apr 05, 2004 8:35 am
Location: Slovakia
Contact:

Post by arras »

You can use whatever you want, two terain scene nodes, you can create your own custom scenenode or just use terain made in modeling prog. in one of the suported formats (x or 3ds for example)

Bye the way, I recomend not to use sky box but instead made yur own sky sphere.
In your modeling prog. create simple sphere, cut it or delete bottom half of it and scale down a little bit on Y axis to made it bit eliptic. UV map it and load in to the Irrlicht like any other model. Than aply texture of your choosing.

If you need reposition it in real time with your camera.
etcaptor
Posts: 871
Joined: Fri Apr 09, 2004 10:32 pm
Location: Valhalla
Contact:

Post by etcaptor »

Thanks arras for the comprehensive answer :)
R00mpel
Posts: 41
Joined: Sun Nov 09, 2003 10:12 am
Location: Russia, Nizhny Novgorod

Post by R00mpel »

I wouldn't recommend using TerrainSceneNode - it isn't optimized yet, so it is awfully slow :( So let's hope that Niko will optimize it soon ;)
The only thing to fear is running out of beer!
bal
Posts: 829
Joined: Fri Jun 18, 2004 5:19 pm
Location: Geluwe, Belgium

Post by bal »

arras wrote:You can use whatever you want, two terain scene nodes, you can create your own custom scenenode or just use terain made in modeling prog. in one of the suported formats (x or 3ds for example)

Bye the way, I recomend not to use sky box but instead made yur own sky sphere.
In your modeling prog. create simple sphere, cut it or delete bottom half of it and scale down a little bit on Y axis to made it bit eliptic. UV map it and load in to the Irrlicht like any other model. Than aply texture of your choosing.

If you need reposition it in real time with your camera.
Why is using that sky sphere better? Don't you have a strange effect then because of the sphere?
General Tools List
General FAQ
System: AMD Barton 2600+, 512MB, 9600XT 256MB, WinXP + FC3
Peter Müller
Posts: 292
Joined: Sun Mar 14, 2004 5:28 pm
Location: Germany
Contact:

Post by Peter Müller »

Don't know, I'm just doing it ;)
http://www.games-forge.de - Die Community für Nachwuchsprogrammierer
thesmileman
Posts: 360
Joined: Tue Feb 10, 2004 2:20 am
Location: Lubbock, TX

Post by thesmileman »

bal wrote:Why is using that sky sphere better? Don't you have a strange effect then because of the sphere?
Sky spheres can often times be a lot better and in many ways worse than skyboxes. You do not have to worry about seams or about the small amount of distortion from textures being on a box not a sphere. There are two main problems with using spheres for your skys. One you have to get them. There seem to be a lot of skyboxes and very few spherical ones for free. The seond is that a skydome can have a large number of polygons to render if you are just using a sphere instead of an optimized algorithm to display the textures. I have worked with a couple of skydomes in two programs and they are much more realistic than standard skyboxes.

Also if you did just a sphere instead of a good display algorithm you would have to resize the sphere and move it unless you made it really big and then you would have to increase the clipping plane a lot and that would realy slow down a large external world. But that is my 10 cents :D
Guest

Post by Guest »

How viable an option would terrain be for an mmo? Would I have to use huge map files for each "zone" or is there another more viable way?
thesmileman
Posts: 360
Joined: Tue Feb 10, 2004 2:20 am
Location: Lubbock, TX

Post by thesmileman »

for an MMO you would need a much better implementaion of a terrain node than Irrlicht currently offers. You need one that can load different zones on the fly. Of course you could do this yourself in Irrlicht and I think someone already started working on one which will. Check the forum for more information :D
Post Reply