1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-09-15 06:52:34 +02:00
openrw/rwengine
Anonymous Maarten a40a2706a9 cmake: add support for include-what-you-use to check #include's
The output is currently very verbose and includes many false positives.
Adding a mapping file should solve this.

See
https://github.com/include-what-you-use/include-what-you-use/blob/master/docs/IWYUMappings.md
2017-10-29 20:40:57 +00:00
..
src Improving handling game shaders (#302) 2017-10-29 18:47:52 +00:00
CMakeLists.txt cmake: add support for include-what-you-use to check #include's 2017-10-29 20:40:57 +00:00
README.md Update readme informations 2015-05-10 23:57:13 +01:00

rwengine

Rwengine contains the game data structures, the data loading routines, script virtual machine and generic object logic, as well as a renderer implementation for OpenGL.

Core

Implementations of platform abstraction and file system handling classes are in the core/ directory

Data

Structures that store information about object types, cutscene data, localisation information etc

Objects

The logic for Object types are implemented by the classes in the objects/ directory

Loaders

Classes for loading various file formats

Render

Implementation of a portable OpenGL renderer system lives in the render/ directory

Script

The game script virtual machine, and the function definitions are in the script/ directory