User:Corporateshark/sandbox: Difference between revisions
No edit summary |
repair disambig pages with links and other minor tasks using AWB |
||
(6 intermediate revisions by 4 users not shown) | |||
Line 8: | Line 8: | ||
| developer = Sergey Kosarevsky, Viktor Latypov |
| developer = Sergey Kosarevsky, Viktor Latypov |
||
| released = 2003 |
| released = 2003 |
||
| latest release version = 0. |
| latest release version = 0.6.08 |
||
| latest release date = {{Start date and age| |
| latest release date = {{Start date and age|2012|02|27}} |
||
| latest preview version = |
| latest preview version = |
||
| latest preview date = |
| latest preview date = |
||
| frequently updated = |
| frequently updated = |
||
| programming language = [[C++]], LinderScript |
| programming language = [[C++]], [[Python]], LinderScript |
||
| operating system = [[ |
| operating system = [[Windows]], [[Android (operating system)|Android]], [[BlackBerry OS 10]] |
||
| platform = [[Win32]], [[Win64]] |
| platform = [[Win32]], [[Win64]], [[ARM]] |
||
| size = |
| size = |
||
| language = English |
| language = English |
||
Line 39: | Line 39: | ||
* 0.4.x - well thought-out object-oriented reimplementation of the project from scratch (2002-2003), a demo from this branch was released and still is available for download (though written in [[Free Pascal]]) |
* 0.4.x - well thought-out object-oriented reimplementation of the project from scratch (2002-2003), a demo from this branch was released and still is available for download (though written in [[Free Pascal]]) |
||
* 0.5.x - reimplementation of the project from scratch in [[C++]] (since 2004 and maintained now) |
* 0.5.x - reimplementation of the project from scratch in [[C++]] (since 2004 and maintained now) |
||
* 0.5. |
* 0.5.99c - added volume rendering functionality |
||
* 0.6.x - [[Android (operating system)|Android]] support added |
|||
== Supported platforms == |
== Supported platforms == |
||
Line 49: | Line 50: | ||
The framework is compatible with the following compilers: |
The framework is compatible with the following compilers: |
||
* [[Visual C++]] |
* [[Visual C++]] 2008/2010/2011 |
||
* [[Intel C++ Compiler]] 10 |
* [[Intel C++ Compiler]] 10+ |
||
* [[GCC]] 4 |
* [[GCC]] 4.3+ |
||
The following platforms are supported: |
The following platforms are supported: |
||
* [[Microsoft Windows]] (32-bit and 64-bit) |
* [[Microsoft Windows]] (32-bit and 64-bit) |
||
* [[Android (operating system)|Android]] (Android NDK r6) |
|||
* [[Linux]] port is on the way |
* [[Linux]] port is on the way |
||
Line 81: | Line 84: | ||
== Used third party libraries == |
== Used third party libraries == |
||
'''Linderdaum Engine''' is based on the following APIs and |
'''Linderdaum Engine''' is based on the following APIs and libraries: |
||
* [[OpenGL]] |
* [[OpenGL]] |
||
Line 87: | Line 90: | ||
* [[FMOD]] (optional usage) |
* [[FMOD]] (optional usage) |
||
* [[FreeImage]] |
* [[FreeImage]] |
||
* [[NVPM]] |
|||
* [[NvTriStrip]] |
|||
* [[PugiXML]] by Arseny Kapoulkin (optional usage) |
* [[PugiXML]] by Arseny Kapoulkin (optional usage) |
||
* '''RealScriptCompiler''' by Viktor Latypov |
* '''RealScriptCompiler''' by Viktor Latypov |
Latest revision as of 17:11, 27 August 2017
Developer(s) | Sergey Kosarevsky, Viktor Latypov |
---|---|
Initial release | 2003 |
Stable release | 0.6.08
/ February 27, 2012 |
Written in | C++, Python, LinderScript |
Operating system | Windows, Android, BlackBerry OS 10 |
Platform | Win32, Win64, ARM |
Available in | English |
Type | Middleware |
License | Open source and proprietary |
Website | http://www.linderdaum.com |
Linderdaum Engine is an object-oriented middleware written in C++ meant for rendering of interactive 3D environments. It consists of two major components:
- open source Linderdaum Engine framework, meant to be a corner stone for development of 3D applications
- proprietary state of the art GPU-accelerated direct volume rendering library which is built on top of the framework
Main fields of application are games, interactive rendering systems, industrial and scientific volume data visualization i.e. from computed tomography.
Versions history
[edit]The project was started in late 2001 by Sergey Kosarevsky with first 3D engine implemented in Free Pascal. The date February 11, 2002 can be called the beginning of the project, that is then Viktor Latypov joined development. The versions history can be summarized as follows:
- 0.1.x - one person hobby project, just a bunch of code (until 2002)
- 0.2.x - refactored framework, initial concepts of the future architecture
- 0.4.x - well thought-out object-oriented reimplementation of the project from scratch (2002-2003), a demo from this branch was released and still is available for download (though written in Free Pascal)
- 0.5.x - reimplementation of the project from scratch in C++ (since 2004 and maintained now)
- 0.5.99c - added volume rendering functionality
- 0.6.x - Android support added
Supported platforms
[edit]Supported compilers and platforms
[edit]The framework is compatible with the following compilers:
- Visual C++ 2008/2010/2011
- Intel C++ Compiler 10+
- GCC 4.3+
The following platforms are supported:
- Microsoft Windows (32-bit and 64-bit)
- Android (Android NDK r6)
- Linux port is on the way
Industrial and scientific volume rendering
[edit]Linderdaum Engine generates images from 3D and 4D computed tomography datasets using the method known as GPU accelerated volume ray casting. It is a straightforward method that utilizes capabilities of modern video cards and is ready for next-generation hardware. With the possibilities offered by this technology, there is a lot of room for new techniques that do not simply convert existing algorithms to the GPU, but use the very strengths of this architecture to create more realistic images at interactive frame rates. Recent research papers show that GPU accelerated raycasting is far more flexible than traditional volume rendering approaches and has the specific advantages, namely:
- An exploitation of massively parallel GPU architecture
- Trilinear interpolation is automatically (and extremely fast) implemented via hardware 3D textures
- Implicit support for perspective (or any other) projection
- Possibility to intersect volume with any renderable geometry
- Efficient empty-space-leaping
- Potential better image quality than common slices-based techniques
Features
[edit]- OpenGL-based renderer with GLSL vertex, fragment and geometry programs support
- Scene graph for automatic multipass rendering and frustum culling
- Internal GUI with common controls library and high DPI aware rendering capabilities
- Audio subsystem with 3D positional sounds and streaming playback
- Virtual file system based on memory-mapped files
- Scripting subsystem via object-oriented LinderScript scripting language with a C++ like syntax
- Resources manager with transparent caching of all shared resources
Used third party libraries
[edit]Linderdaum Engine is based on the following APIs and libraries:
- OpenGL
- OpenAL
- FMOD (optional usage)
- FreeImage
- PugiXML by Arseny Kapoulkin (optional usage)
- RealScriptCompiler by Viktor Latypov
- TreeLib by Stefan Elsen
- VolumeProc by Viktor Latypov
- OggVorbis