Developer Documentation
|
OpenFlipper data types consist of several components.
Furthermore some plugins need to be added:
For this documentation we take the Plane data type as an example.
The underlying data type is a simple class representing a plane. It is defined in the files "PlaneType.(hh/cc)". The type could also be defined in an extra lib outside of OpenFlipper if it is more complex (e.g. OpenMesh, CGAL,...). But for smaller types they should be inside the ObjectType directory.
The second set of files is the rendering node. The node usually takes a reference to the data type and renders the data via OpenGL. For the PointNode the implementation can be found in "PlaneNode.(hh/cc)".
The required types are than collected in one types file which is called "PlaneTypes.hh". This file includes the nodes used for rendering and the underlying data type. Here you can add additional typedefs (e.g. if the original type would be called "planeDataType" you can typedef it to a simple "plane") to make the code more readable.
After the rendering and storage are defined, the actual object has to be implemented. This is done in the files "PlaneObject.(hh/cc)". The ObjectType has to be derived from BaseObjectData (if it will be rendered) or if there are no rendering nodes for that type and it is simply a storage it is derived from BaseObject. The ObjectType creates an instances of the data (in this case the plane) and the required rendering nodes. Additionally it has a function to copy the object, and handles the picking translation.
The last block of files are "PluginFunctions.(hh/cc)". In these files the plugin functions for your type are implemented. They typically contain dynamic casts from the BaseObject Type to your type and node. They are used in the plugins to quickly convert between the management base class and the real data objects.
Finally one include file has to be created that Defines the name that is used in OpenFlipper:
and includes the pluginfunctions ,object and type header:
After fully defining the data type, we need to create a plugin that manages the new type inside OpenFlipper. The TypePlugin implements the TypeInterface (Type Interface ). The plugin will register the type in the OpenFlipper core. Additionally the plugin will be used to generate new objects of your type.
File plugins load data from a file into your object (or save from object to file). You can write your own custom file plugins. Please look at the FileInterface for further details (File Interface ).