Features – Irrlicht Engine - A free open source 3D engine

Features

The Irrlicht Engine is a cross-platform realtime 3D engine written in C++. It features a powerful high level API for creating complete 3D and 2D applications such as games or scientific visualizations. It comes with an excellent documentation and integrates features for visual representation such as dynamic shadows, particle systems, character animation, indoor and outdoor technology, and collision detection. All this is accessible through a well designed C++ interface, which is extremely easy to use.

 

Suvi - Gekkeiju Online
wing64 - God Tower
Silencer WTW - YASS
Nova - Lava Factory
Its main features are:

  • High performance realtime 3D rendering using Direct3D and OpenGL [more]
  • Platform independent. Runs on Windows, Linux, OSX. Further platforms are in development and already used in projects.[more]
  • Huge built-in and extensible material library with vertex, pixel, and geometry shader support [more].
  • Seamless indoor and outdoor mixing through highly customizeable scene management. [more]
  • Character animation system with skeletal and morph target animation. [more]
  • Particle effects, billboards, light maps, environment mapping, stencil buffer shadows, and lots of other special effects. [more]
  • Several language bindings which make the engine available to other languages such as C#, VisualBasic, Delphi, Java …
  • Two platform and driver independent fast software renderers included. They have different properties (speed vs. quality) and feature everything needed: perspective correct texture mapping, bilinear filtering, sub pixel correctness, z-buffer, gouraud shading, alpha-blending and transparency, fast 2D drawing, and more.
  • Powerful, customizeable, and easy to use 2D GUI System with Buttons, Lists, Edit boxes, …
  • 2D drawing functions like alpha blending, color key based blitting, font drawing, and mixing 3D with 2D graphics.
  • Clean, easy to understand, and well documented API with lots of examples and tutorials.
  • Written in pure C++ and totally object oriented.
  • Direct import of common mesh file formats: Maya (.obj), 3DStudio (.3ds), COLLADA (.dae), Blitz3D (.b3d), Milkshape (.ms3d), Quake 3 levels (.bsp), Quake2 models (.md2), Microsoft DirectX (.X)… [more]
  • Direct import of Textures: Windows Bitmap (.bmp), Portable Network Graphics (.png), Adobe Photoshop (.psd), JPEG File Interchange Format (.jpg), Truevision Targa (.tga), ZSoft Painbrush (.pcx)… [more]
  • Fast and easy collision detection and response.
  • Optimized fast 3D math and container template libraries.
  • Directly reading from (compressed) archives. (.zip, .pak, .pk3, .npk)
  • Integrated fast XML parser.
  • Unicode support for easy localisation.
  • Works with Microsoft VisualStudio, Metrowerks Codewarrior, Bloodshed Dev-C++, Code::Blocks, XCode, and gcc 3.x-4.x.
  • The engine is open source and totally free. You can debug it, fix bugs and even change things you do not like. And you do not have to publish your changes: The engine is licensed under the zlib licence, not the GPL or the LGPL.

Special effects

irrlicht particle effectsirrlicht fire particle system There are lots of common special effects available in the Irrlicht Engine. They are not difficult to use, in most cases the programmer only has to switch them on. The engine is constantly extended with new effects, here is list of effects which are currently implemented:

  • Animated water surfaces
  • Dynamic lights
  • Dynamic shadows using the stencil buffer
  • Geo mip-mapped terrain
  • Billboards
  • Bump mapping
  • Parallax mapping
  • Transparent objects
  • Light maps
  • Customizeable Particle systems for snow, smoke, fire, …
  • Sphere mapping
  • Texture animation
  • Skyboxes and skydomes
  • Fog
  • Volume Light

Drivers

The Irrlicht Engine supports 5 rendering APIs, which are 4 more than most other 3D engines do:

  • Direct3D 9.0
  • OpenGL 1.2-4.x
  • The Irrlicht Engine software renderer.
  • The Burningsvideo Software Renderer
  • A null device.

When using the Irrlicht engine, the programmer needs not know, which API the engine is using, it is totally abstracted. He only needs to tell the engine which API the engine should prefer.
There are three reasons why the engine not only focuses on one API:

  • Performance. Some graphic adapters are optimized for OpenGL, some simply run faster with Direct3D.
  • Platform independence. Direct3D will not be present on a Mac or a Linux Workstation, while maybe OpenGL will. And when OpenGL is not available either, there are still the Irrlicht Engine software renderers, which will always operate on any platform. In this way, the user will see something on the screen for sure.
  • Driver problems, which are a common problem a user encounters when using 3D software. There are thousands of hardware configurations out there, and often games and 3D applications are crashing, because there is an old driver installed. Letting the user switch the driver might solve the problem.

Materials and Shaders

Shadow map shader
irrlicht and parallax mapping
To be able to create realistic environments quickly, there are lots of common built in materials available in the engine. Some materials are based on the fixed function pipeline (light mapped geometry for example) and some are relying on the programmable pipeline (normal mapped/parallax per pixel lighted materials for example) todays 3d hardware is offering. It is possible to mix these types of materials in a scene without problems and when using a material which needs features the hardware is not able to do, the engine provides fall back materials. However, if the built in materials are not enough, it is possible to add new materials to Irrlicht at runtime, without the need of modifying/recompiling the engine. Currently supported shader languages for this are:

  • Pixel and Vertex Shaders 1.1 to 3.0
  • ARB Fragment and Vertex Programs
  • HLSL
  • GLSL

Platforms

windows logolinux logo The Irrlicht Engine is platform independent, currently there is official support for:

  • Windows XP, Vista, Windows 7,Windows 8 and Windows 10
  • Linux
  • OSX
  • All platforms using SDL

For the serious mobile developer there are work-in-progress OpenGL ES drivers, which have enabled the Irrlicht community to develop iPhone, Android and Nokia Symbian ports. WebGL with emscripten is also possible, although not all features are supported yet. There are further ports by 3rd party developers to platforms like AmigaOS and some game consoles. The Engine works with all supported platforms in the same way. The programmer only has to write the game/application code once, and it will run on all supported platforms.

Scene Management

Escen - OverHeat
Yoran - Office rendering
Rendering in the Irrlicht Engine is done using a hierarchical scene graph. Scene nodes are attached to each other and follow each others movements, cull their children to the viewing frustum, and are able to do collision detection. A scene node can for example be a camera, an indoor or outdoor level, a skeletal animated character, animated water, a geomipmap terrain, or something completely different.In this way, the Irrlicht engine can seamlessly mix indoor and outdoor scenes together, gives the programmer full control over anything which is going on in the scene. It is very easily extensible because the programmer is able to add his own scene nodes, meshes, texture loaders, GUI elements, and so on.The geometry creator gives easy access to simple gemetrical bodies, such as cylinder, cube, etc. Objects can be rendered as polygons, wireframe, or points, using triangles, lines, point and point sprite primitives.

Character Animation

irrlicht character animation Currently there are two types of character animation implemented:

  • Morph target animation: Meshes are linearly interpolated from one frame to the next. This is what is done in the Quake game series, and how the Irrlicht engine does it when importing .md2 and .md3 files.
  • Skeletal animation: A skin is manipulated by animated joints. The Irrlicht Engine will do this when loading .ms3d, .x, and .b3d files. It is easily possible to attach objects to parts of the animated model. It is, e.g., possible to attach a weapon to the hand of a model, which will be moved as the hand moves, with only one line of code.

The programmer doesn’t need to know about all this, if he doesn’t want to. All he has to do is to load the files into the engine and let it animate and draw them.

Supported Formats

Quake 3 Map
Lightmapped scenes
PLY mesh from a 3D scanner
MD5 mesh
GTA 3 mesh
Lots of common file formats are supported, and are able to be loaded (and partially also saved) directly from within the engine. In this way, you don’t need to convert your media before using it with the Irrlicht Engine, saving development time. The internal ressource management of Irrlicht provides simple access to all file formats and takes care of fetching already loaded meshes or textures from its own cache instead from disk if the data was already loaded before. The list of all supported formats is constantly growing, and there are many community-made plugins which add new formats without having to recompile the engine.If you need the Irrlicht Engine to be able to load a file format which it cannot currently handle, simply ask for it by raising a feature request on our issue tracker.Currently supported textures file formats:

  • JPEG File Interchange Format (.jpg, r/w)
  • Portable Network Graphics (.png, r/w)
  • Truevision Targa (.tga, r/w)
  • Windows Bitmap (.bmp, r/w)
  • Zsoft Paintbrush (.pcx, r/w)
  • Portable Pixmaps (.ppm, r/w)
  • Adobe Photoshop (.psd, r)
  • Quake 2 textures (.wal, r)
  • SGI truecolor textures (.rgb, r)

Currently supported mesh file formats:

Animated objects:

  • B3D files (.b3d, r, skeleton)
  • Microsoft DirectX (.x, r) (binary & text, skeleton)
  • Milkshape (.ms3d, r, skeleton)
  • Quake 3 models (.md3, r, morph)
  • Quake 2 models (.md2, r, morph)

Static objects:

  • Irrlicht scenes (.irr, r/w)
  • Irrlicht static meshes (.irrmesh, r/w)
  • 3D Studio meshes (.3ds, r)
  • Alias Wavefront Maya (.obj, r/w)
  • Lightwave Objects (.lwo, r)
  • COLLADA 1.4 (.xml, .dae, r/w)
  • OGRE meshes (.mesh, r)
  • My3DTools 3 (.my3D, r)
  • Pulsar LMTools (.lmts, r)
  • Quake 3 levels (.bsp, r)
  • DeleD (.dmf, r)
  • FSRad oct (.oct, r)
  • Cartography shop 4 (.csm, r)
  • STL 3D files (.stl, r/w)
  • PLY 3D files (.ply, r/w)

Supported Render Features


Irrlicht supports all general render features needed for high quality rendering of materials and effects. Besides a few exceptions, all features are supported in all hardware accelerated APIs, and some are supported by the software renderers as well. The following list contains all supported render features of the current version of the Irrlicht Engine. Please ask for extending this set to certain features required.

Currently supported render features:

  • Predefined materials
    • Solid
    • Solid with alpha blending 2nd texture
    • Light maps with configurable pre-multiplication and additional dynamic light support
    • Detail map
    • Sphere map
    • Environment reflection
    • Transparency by adding the texture
    • Transparency by using the texture alpha
    • Transparency by using the texture alpha without blending
    • Transparency by using the vertex alpha
    • Normal maps
    • Parallax maps
    • Flexible blend mode rendering
  • Material Colors (ambient, diffuse, emissive, specular)
  • Shininess
  • Line thickness (only OpenGL)
  • ZBuffer write/test modes
  • Per mesh anti-aliasing settings
  • Alpha to Coverage
  • Color masking
  • Vertex colors with configurable interpretation
  • Wireframe/Point cloud rendering
  • Gouraud/Flat shading
  • Lighting mode configurable
  • Backface/Frontface culling
  • Fog enabling per mesh
  • Automatic normals normalization
  • Texture coordinates repeat/clamp modes
  • Per texture filtering (bilinear, trilinear, anisotropic)
  • Texture LOD Bias
  • Texture matrices
  • Arbitrary number of multi-textures