CEGUI


Crazy Eddie's GUI is a graphical user interface library for the programming language C++. It was designed for the needs of video games, but is usable for non-game tasks, such as applications and tools. It is designed for user flexibility in look-and-feel, and to be adaptable to the user's choice in tools and operating systems.

Configurability

The strengths CEGUI are its robustness and its configurability. The system does not directly load files, render windows, directly display text, or even fetch input from the system. CEGUI interfaces with these through user-defined code, though its source code package comes with a number of modules for using certain components and libraries.
This freedom allows using CEGUI in any kind of resource management system or operating environment. Input is expected to be gathered by the user's code, possibly filtered as the user sees fit, and then passed to CEGUI for window processing.
CEGUI comes with a reasonable set of widgets, comparable to those of the average widget toolkit.

Tools

CEGUI can be fully customized using standard image, xml, and/or code editing tools. However, CEGUI also provides tools designed to aid in designing and developing CEGUI based interfaces.
Older CEGUI versions, before 0.8, provided separate tools to edit different aspects of the interface. The most notable of those being the Imageset and Layout editors.
Since CEGUI 0.8, there exists a new unified editing tool called CEGUI unified editor which is being actively developed. It incorporates all aspects of GUI development into one tool.

Rendering

Rendering is performed by a back-end Rendering Module. CEGUI provides modules for Direct3D, OpenGL, the OGRE 3D engine, and the Irrlicht Engine. Other modules can be written for custom engines.
CEGUI's GUI components are organized in a tree and are rendered in the order of the tree traversal.

Resource management

File loading and resource management are handled through a back-end "Resource Provider Module". Users can create custom modules to define how resources are accessed. This allows the library to be used in virtually any operating environment. The default resource provider is cross-platform and provides standard file-access mechanics for loading resources. An optional minizip module enables resource-loading from zip-archives.

Memory management

CEGUI has a flexible Memory Management system. This system was based on OGRE and allows clients to map different types of allocators to different types of objects. By default all objects use the operating system's default allocator. CEGUI provides support for OGRE and nedmalloc allocators.

Scripting

CEGUI has an optional back-end Scripting Module. Lua and Python scripting modules are provided by CEGUI. The full CEGUI application programming interface is available via script so that clients can create windows, define relationships, and handle events all within a scripted environment.

Look and feel

CEGUI has a powerful system for defining the look and feel of various widgets. The system, named Falagard, allows defining the look of a widget via XML files, or C++ code, if the user prefers. It can also change the layout behavior of any widgets.

Animation

CEGUI has a built-in animation system. This system allows many standard transitional effects from moving and resizing windows to color transforms and image sequencing. Animations can be defined in XML and triggered by any event. The client can specify window-properties as key-frames, how to transition between frames, and the transition-time between frames.

Unicode

CEGUI is Unicode-aware and has support for bi-directional languages via an optional back-end Bidi Module. This support is provided by MiniBidi or FriBidi.

Library dependencies

CEGUI can be built with no dependencies to outside libraries. However, typical configurations require FreeType, a rendering module, an XML parser module, and an image codec module. CEGUI already provides support for several external libraries thanks to its modular design:
TypeNameAdditional information
Rendering ModuleOpenGL 3.2+ Core ProfileUses the programmable rendering pipeline and only non-deprecated functionality and is therefore compatible with OpenGL Core Profile contexts. It can also be used with older OpenGL versions and/or Compatibility Profile, as long as the needed functions are available.
Rendering ModuleOpenGLUses the fixed-function rendering pipeline. It is designed to be compatible with very early OpenGL versions, as early as OpenGL 1.2, using some OpenGL extensions.
Rendering ModuleMicrosoft Direct3DMicrosoft Direct3D 9, 10, and 11 are supported using separate modules.
Rendering ModuleOGREThe latest stable Ogre version is supported in the releases.
Rendering ModuleIrrlicht EngineThe latest stable Irrlicht version is supported in the releases.
Image Codec ModuleSimple Image Loading LibrarY Default image codec, which is based on the SILLY library. Supports many formats.
Image Codec ModuleDevILImage codec based on the DevIL library.
Image Codec ModuleFreeImageImage codec based on the FreeImage library.
Image Codec ModuleOGREImage codec that loads data via image loading facilities of OGRE.
Resource Provider ModuleDefaultThe internal resource provider of CEGUI can be used without requiring an extra module. It uses standard cross-platform file-access.
Resource Provider ModuleOGREOgre users can use CEGUI's Ogre ResourceManager. This way the resource locations of CEGUI can be specified in the same way as it is done for the Ogre resources already.
Resource Provider ModuleminizipCEGUI's MinizipResourceProvider allows providing the ability to load resource files from locations within.zip files.
XML Parser ModuleExpatDefault XML parser of CEGUI. Uses the Expat library for XML parsing.
XML Parser ModuleLibXML2Uses the LibXML2 library for XML parsing.
XML Parser ModuleRapidXmlUses the RapidXml library for XML parsing.
XML Parser ModuleTinyXMLUses the TinyXML library for XML parsing.
XML Parser ModuleXerces-C++Uses the Xerces-C++ library for XML parsing. It can validate schemas using the.xsd files provided in CEGUI's resources.
Font ModuleFreeTypeFreeType is the default font library of CEGUI and currently the only officially supported one.
Regular Expression ModulePerl Compatible Regular Expressions Default regular expression library and currently the only officially supported one. Uses PCRE.
Scripting ModuleLuaProvides lua bindings using tolua++.
Scripting ModulePythonOfficial Python bindings are available using PyCEGUI
Memory ManagementOGREOgre's memory allocator can optionally be used for CEGUI's memory management.
Memory Managementnedmallocnedmalloc can optionally be used as memory allocator.
Bi-Directional Language ModuleMiniBIDIMiniBIDI based implementation of CEGUI's Bidi visual mapping.
Bi-Directional Language ModuleFriBIDIFriBIDI based implementation of CEGUI's Bidi visual mapping.

The Ogre3D library used to depend on the CEGUI library for its UI but Ogre3D has since changed to include its own UI solution, which is slimmer but also provides less functionality.

Release history