I've been looking for an extremely fast C++ game library, and I read some forum posts about Irrlicht. It sounded good at the time. However, my more experienced friend was under the impression that Irrlicht is outdated, and will no longer provide the speed other libraries do. Is this true?

If so, what 3D engine do you recommend? Why?

link|improve this question

feedback

closed as off topic by ildjarn, Christian Rau, martin clayton, Ken White, Graviton Dec 7 '11 at 4:20

Questions on Stack Overflow are expected to generally relate to programming or software development in some way, within the scope defined in the faq.

2 Answers

up vote 4 down vote accepted

Irrlicht is extremely fast and supports most of the things you would get on Unreal of the other commercial engines.

My impression is that if you are worrying about getting the last extra cycle out of your engine, you should buy a license for one of the commercial engines. In any case i don't think that the engine is what people spend too much time thinking about, specially because creating great content will consume most of your time. We are in a time where the top game sellers are about voxelated worlds (minecraft) and psychopath birds chasing pigs in 2D fixed backgrounds

link|improve this answer
I think it's psychopathic birds attacking poor (increasingly better defended) little pigs – Martin Beckett Dec 7 '11 at 3:58
I just want to know if Irrlicht will keep running on new operating systems, or if the project is being dropped. – Miles Rufat-Latre Dec 7 '11 at 4:10
@MilesRufat-Latre, you need to ask in the forums/mailing list, if they don't have one and the main author doesn't reply, then its abandonware – lurscher Dec 7 '11 at 4:39
feedback

I use Ogre3D. I find it very easy to use. it has a lot of good addons and utilities.

link|improve this answer
The same "more experienced-than-I programmer" mentioned above accuses Ogre3D of being slow and bulky, relatively to other libraries. Are these statements correct? Is Irrlicht slower or faster? I need something extremely fast, as a result of the ultimate goal I have in mind... – Miles Rufat-Latre Dec 7 '11 at 2:34
@Miles Depends what you need, work out your requirements before choosing a graphics library. Irrlicht is quick and easy to use, has a simple design, is incredibly lightweight and supports a huge number of file formats. There is a trade-off between ease of use and flexibility though, Ogre is more flexible, has a better content pipeline and is more suited to larger projects. How many developers do you have, what are you trying to achieve? Also, Irrlicht is still rather active, just look at the forums and SVN history (I've been inactive for a long time, but Christian is, as always, hard at work) – Gaz Davidson Dec 7 '11 at 15:15
I'm developing a networked first-person shooter with lots of features to improve realism. We're currently just a team of two, but we plan on recruiting more. – Miles Rufat-Latre Dec 9 '11 at 15:37
feedback

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