| Graphics Engine |
| Scripting |
| Audio |
| Physics |
| Shaders |
| SysInfo |
| Input |
| Programming Languages |
![]() The heart of Xors3d is a proprietary graphics engine based on DirectX 9. Despite the majority of other engines which are focused on hi-end video cards, our engine is oriented on a wide range of GPUs: integrated cards, cards without shader support (fixed function pipeline), cards with support of Shader Model 1.0-3.0. The use of FFP is suitable for you if you want to be 100% sure your casual games will run on any machine. However, we recommend to use shaders which are more flexible. Xors3d supports two separate lighting models - forward rendered lighting and deferred lighting. Forward rendered lighting is a classic lighting technique which can be used in games with any level of graphics complexity. But you should know that this lighting model is not suitable for scenes with a lot of dynamic lights which should be displayed on screen simultaneously. Deferred lighting is a technique right for such situations when you need to render dozens or even hundreds of lights at the same time. The video below shows a scene with 100 dynamic lights rendered at the same time. Note: currently deferred lighting is disabled for refactoring. Xors3d provides a realtime shadow system based on PSSM technique. This technique allows to render optimized good-looking soft shadows which are cast from any light source on any entity in the scene. Optimization of shadows consists in splitting of the view frustum into parts using planes parallel to the view plane, and then generating a shadow map for each part. For instance, PSSM which uses 3 shadow maps with the size of 1Kx1K will give much smoother shadows and occupy less memory than a standard shadow mapping which uses 1 shadow map with the size of 2Kx2K.
|