Dynamic Environments with Asset Streaming

Dynamic Environments with Asset Streaming

AI Driven Animation

AI Driven Animation

Highly Optimized Rendering Engine

Highly Optimized Rendering Engine

Contact Us for Licensing Information

Features

The Poez Inc Engine is a cross-platform high performance realtime 3D game engine written in Assembly/C and C++. It features a powerful high level API for creating complete 3D and 2D applications such as games, business demos or scientific visualizations. Integrates all state-of-the-art 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/C++ interface, accessible and pragmatic.
   Its main features are:

  • High performance realtime 3D rendering using OpenGL
  • Platform independent. Runs on Windows, Linux, OSX, Solaris, and others
  • Huge built-in and extensible material library with vertex, pixel, and geometry shader support
  • Seamless indoor and outdoor mixing through highly customizeable scene management.
  • Character animation system with skeletal and morph target animation.
  • Particle effects, billboards, light maps, environment mapping, stencil buffer shadows, and lots of other special effects.
  • 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)
  • 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)…
  • 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

There are lots of common special effects available in the Poez Inc. 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

  • OpenGL 1.2-4.x

When using the Poez Inc. 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
  • Platform independence. OpenGL is not available either, there are still the Poez Inc. Engine software renderers, which will always operate on any platform. In this way, the user will see something on the screen for sure.

Materials and Shaders

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 Poez Inc. 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
  • GLSL

Platforms

windows logolinux logo The Poez Inc. Engine is platform independent, currently there is official support for:

  • XP, XP64, Vista, CE, Windows 7,Windows 8 and Windows 10
  • Linux
  • OSX
  • Sun Solaris/SPARC
  • All platforms using SDL

For the serious mobile developer there are work-in-progress OpenGL ES drivers, which have enabled the Poez Inc. community to develop iPhone, Android and Nokia Symbian ports. 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 without the need to change one single line of code.

Scene Management

Rendering in the Poez Inc. 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 Poez Inc. 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

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 Poez Inc. engine does it when importing .md2 and .md3 files.
  • Skeletal animation: A skin is manipulated by animated joints. The Poez Inc. 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

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 Poez Inc. Engine, saving development time. The internal ressource management of Poez Inc. 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 Poez Inc. 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:

  • Milkshape (.ms3d, r, skeleton)
  • Quake 3 models (.md3, r, morph)
  • Quake 2 models (.md2, r, morph)

Static objects:

  • 3D Studio meshes (.3ds, r)
  • Alias Wavefront Maya (.obj, r/w)
  • Lightwave Objects (.lwo, r)
  • COLLADA 1.4 (.xml, .dae, r/w)
  • My3DTools 3 (.my3D, r)
  • Pulsar LMTools (.lmts, r)
  • Quake 3 levels (.bsp, r)

Supported Render Features

Poez Inc Engine 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 Poez Inc 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