/*===========================================================================*\ * * * OpenFlipper * * Copyright (c) 2001-2015, RWTH-Aachen University * * Department of Computer Graphics and Multimedia * * All rights reserved. * * www.openflipper.org * * * *---------------------------------------------------------------------------* * This file is part of OpenFlipper. * *---------------------------------------------------------------------------* * * * Redistribution and use in source and binary forms, with or without * * modification, are permitted provided that the following conditions * * are met: * * * * 1. Redistributions of source code must retain the above copyright notice, * * this list of conditions and the following disclaimer. * * * * 2. Redistributions in binary form must reproduce the above copyright * * notice, this list of conditions and the following disclaimer in the * * documentation and/or other materials provided with the distribution. * * * * 3. Neither the name of the copyright holder nor the names of its * * contributors may be used to endorse or promote products derived from * * this software without specific prior written permission. * * * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS * * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED * * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A * * PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER * * OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF * * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING * * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS * * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. * * * \*===========================================================================*/ #pragma once #include /** \file BaseInterface.hh * * OpenFlippers main plugin Interface \ref baseInterfacePage. */ /** \brief Interface class from which all plugins have to be created. * * You have to implement at least name and description for your plugin. * All other functions and signals are optional. If you want to implement or use * them just add them to your plugin header. A detailed description of this interface * can be found in the \ref baseInterfacePage . * * See \ref pluginProgramming for a tutorial on plugin programming. * * Also see \ref dataFlow diagrams for a detailed overview of * OpenFlipper's data flow and interface function calls. */ class BaseInterface { //=========================================================================== /** @name Initialization * @{ * \anchor BaseInterfaceInitialization * */ //=========================================================================== private slots: /** \brief Initialize Plugin * * This slot is called if the plugin is loaded and has to be initialized. All initialization stuff * in this slot has to stay inside the plugin, no external signals are allowed here (and will be ignored). * Don't create any objects via PluginFunctions here. Use the pluginsInitialized() slot for external * initialization. After execution of this slot your plugin should be fully functional. * Only gui elements may be uninitialized and should be created in pluginsInitialized(). */ virtual void initializePlugin() {}; /** \brief Initialize Plugin step 2 * * This slot is called if all plugins are loaded and the core is ready. Afterwards you can already send * signals to other plugins and the core (e.g. adding global textures). \note Do not create objects via addEmpty * or load objects in this slot, as the rendering system is not ready yet. */ virtual void pluginsInitialized() {}; /** \brief Initialize Plugin step 2 alternative * * This slot is similar to the vanilla version without parameters but additionally passes plugin command line options * as key-value pairs. For passing command line options, use e.g.: * OpenFlipper -o key1=value1 -p key2=value2 * or * OpenFlipper --pluginoptions key1=value1;key2=value2 */ virtual void pluginsInitialized(QVector> const& _pluginOptions) {}; /** @} */ //=========================================================================== /** @name Object/View updates * @{ * \anchor BaseInterfaceUpdateSlots * */ //=========================================================================== signals : /** \brief Update current view in Main Application * * Emit this Signal if the viewer widget in the main application should update the current view. * If you do an updatedObject the core will trigger an update itself and you don't have to care * about it.\n * This signal can be called from any thread.\n */ virtual void updateView() {}; /** \brief Tell the core to prevent scenegraph updates. * * Emit this Signal if you want to skip scenegraph updates. E.g. if you add a large number of objects * or modify them it's much more efficient to block scenegraph updates until you finished and then * do only one update run. * * The function itself is counting the number of blocks internally to allow multiple plugins for concurrent * blocks. The function is queued to ensure that it is processed in line with load save operations. */ virtual void blockScenegraphUpdates(bool _block) {}; /** \brief An object has been changed or added by this plugin * * Emit this Signal, if you updated any part of an object.\n * If you changed the element itself (geometry, topology,..) you also have to emit this signal.\n * Don't emit this Signal in BaseInterface::slotObjectUpdated() as this causes an endless Loop!! * Give the id of the new object as parameter or -1 if you updated all objects or deleted an object. * For performance reasons try to always give the id and not -1!\n * This signal can be called from any thread.\n * * @param _objectId Id of the object or -1 if referring to all or deleted objects. */ virtual void updatedObject(int _objectId) {}; /** \brief An object has been changed or added by this plugin * * Emit this Signal, if you updated any part of an object.\n * If you changed the element itself (geometry, topology,..) you also have to emit this signal.\n * Don't emit this Signal in BaseInterface::slotObjectUpdated() as this causes an endless Loop!! * Give the id of the new object as parameter or -1 if you updated all objects or deleted an object. * For performance reasons try to always give the id and not -1!\n * This signal can be called from any thread.\n * * @param _identifier id of the object or -1 if referring to all or deleted objects. * @param _type the type states which part of the object (topology, selection, ..) has to be updated */ virtual void updatedObject(int _identifier, const UpdateType& _type) {}; /** \brief A scenegraph node has been shown or hidden * * Emit this Signal, if you changed the visibility of a scenegraph node directly (not via object->show/hide). * This is required to reset the near and far plane for the viewers to provide * an optimal view. Use the id of the object the node is attached to or -1 if it is not connected to an object. * */ virtual void nodeVisibilityChanged( int _identifier ) {}; private slots: /** \brief An object has been updated by another plugin * * This slot is called by the main application if the number or status of existing objects changed or if * an existing object has been changed. This could mean, that objects are added or deleted * or that an existing object with the given id has been modified. * If you store local information about one of these Objects, you should check if its still valid!\n * Don't emit BaseInterface::updatedObject(int) in this slot as this causes an endless Loop!! * You don't need to call updateView as the core triggers a redraw itself.\n * This slot will be executed on the main thread.\n * * @param _identifier Identifier of the updated/new object or -1 if one is deleted. */ virtual void slotObjectUpdated( int _identifier ) {}; /** \brief An object has been updated by another plugin * * This slot is called by the main application if the number or status of existing objects changed or if * an existing object has been changed. This could mean, that objects are added or deleted * or that an existing object with the given id has been modified. * If you store local information about one of these Objects, you should check if its still valid!\n * Don't emit BaseInterface::updatedObject(int) in this slot as this causes an endless Loop!! * You don't need to call updateView as the core triggers a redraw itself.\n * This slot will be executed on the main thread.\n * * @param _identifier Identifier of the updated/new object or -1 if one is deleted. * @param _type the type states which part of the object (topology, selection, ..) had been updated */ virtual void slotObjectUpdated( int _identifier, const UpdateType& _type ) {}; /** \brief Called if the whole scene is cleared * * This slot is called if the main application cleared the whole scene. No objects will remain in memory * and all destructors of the objects are called before this signal is emitted. * */ virtual void slotAllCleared( ) {}; /** \brief The active object has changed * * This slot is called by the main application if the current selection of an object has changed.\n * This means that the selection of source / target objects has changed. * Additionally you get the id of the object that has been changed or -1 if all objects * have been modified. */ virtual void slotObjectSelectionChanged( int _identifier ) {}; /** \brief An object has been shown or hidden * * This slot is called if an object is shown or hidden. * The id of the object is given as a parameter. * If multiple or all objects have changed, the id will be -1. * */ virtual void slotVisibilityChanged( int _identifier ) {}; /** \brief Object properties have been changed * * This slot is called if the object properties (e.g. name ) have changed * The id of the object is given as a parameter. * If multiple or all objects have changed, the id will be -1. * */ virtual void slotObjectPropertiesChanged( int _identifier ) {}; /** \brief View has changed * * This slot is called when the view in one of the viewers changed * ( Viewing direction/viewer position ) * !! Be careful to not change the view in this slot !! * !! This will of course lead to an endless loop !! */ virtual void slotViewChanged() {}; /** \brief triggered after a scene has been drawn * * This slot will be triggered every time, the OpenGl draw of one frame is completed. * Every time you emit an updateView, a scene redraw will be triggered (except, if * the minimal time between two frames is not yet reached). After drawing the scene, the * core will call this slot to inform the plugins, that a new view is visible. * * You can use this slot, if you need to control special updates in your plugin, that * react on the fps. */ virtual void slotSceneDrawn() {}; /** \brief A viewer changed its draw mode * * @param _viewerId Id of the viewer that changed its draw mode */ virtual void slotDrawModeChanged(int _viewerId) {}; /** @} */ //=========================================================================== /** @name Plugin identification * @{ */ //=========================================================================== public : /** \brief Return a name for the plugin * * This Function has to return the name of the plugin. */ virtual QString name() = 0; /** \brief Return a description of what the plugin is doing * * This function has to return a basic description of the plugin */ virtual QString description() = 0; public slots: /** \brief Return a version string for your plugin * * This function will be used to determine the current version of your plugin. * Should have the form x.x.x ( you do not need to give that many subversions ) * * @return The version string of the plugin */ virtual QString version() { return QString("-1"); }; signals: /** \brief Set a description for a public slot * * public slots of each plugin are automatically available for scripting. \n * Use this Signal to add a description for your slot so that everyone knows what it is used for. \n * * @param _slotName the name of the slot * @param _slotDescription a description for the slot * @param _parameters list of parameters * @param _descriptions list of descriptions for the parameters (_descriptions[i] corresponds to _parameters[i]) */ virtual void setSlotDescription(QString _slotName , QString _slotDescription, QStringList _parameters , QStringList _descriptions) {}; /** @} */ //=========================================================================== /** @name Renderer control * @{ */ //=========================================================================== signals: /** \brief Set a renderer for the given viewer * * @param _viewer Id of the viewer to set the renderer for * @param _rendererName Name of the renderer to be used */ virtual void setRenderer(unsigned int _viewer, QString _rendererName) {}; /** \brief Get the current renderer for the given viewer * * @param _viewer Id of the viewer to set the renderer for * @param _rendererName Name of the renderer that is currently active */ virtual void getCurrentRenderer(unsigned int _viewer, QString& _rendererName) {}; /** @} */ public slots : /** This function is called when the application exits or when your plugin is about to be unloaded. * Here you can clean up your plugin, delete local variables... */ virtual void exit(){}; /** Using this function you can inform the core that your plugin can run without creating a widget. * If your plugin does not implement this function, it will not be loaded in scripting mode without gui. * You don't have to do anything in this function. */ virtual void noguiSupported( ) {} ; public : /// Destructor virtual ~BaseInterface() {}; }; /** \page baseInterfacePage Base Interface The BaseInterface has to be used by every plugin in OpenFlipper. As the minimum a plugin has to implement the BaseInterface::name() and BaseInterface::description() functions from this interface. To use the BaseInterface: \section baseInterfacePluginInitialization Plugin Initialization The OpenFlipper startup process consists of several steps, which are shown in this image: \image html OpenFlipperStartup.png OpenFlipper first starts its core system. Therefore it loads the settings, parses command line options and initializes the QT library. Afterwards the object and scenegraph management are initialized. The next step creates the core user interface and the logging system. Now the plugins are loaded in the following way: -# All the plugins are loaded into memory. -# For each plugin, the interfaces get connected to the plugin and afterwards the BaseInterface::initializePlugin() function is called. (Here you can setup your internal variables). After execution of this slot your plugin should be fully functional. Only gui elements may be uninitialized and should be created in BaseInterface::pluginsInitialized(). The order how plugins are loaded is not fixed. So you should not rely or communicate with other plugins in this slot. -# For each plugin the BaseInterface::pluginsInitialized() function is called. Here you can setup your gui elements and start sending signals to the core. -# For each plugin the INIInterface::loadIniFileOptions() slot is called (if the interface is implemented). This slot can be used to load additional options from INI files. (DEPRECATED! Use the OpenFlipperSettings() class instead) \note - Do not create objects via addEmpty or load objects during OpenFlipper startup, as the rendering system is not ready yet! \note - The ini interface is deprecated for loading or storing plugin options. Please use OpenFlipperSettings() instead. Afterwards the plugin initialization is complete and the core sets up the final gui. \section baseInterfaceObjectUpdateNotification Object Update Notification The objects in OpenFlippers scene are stored and managed in OpenFlippers core. If a plugin changes one of the objects, it has to notify the core about that change. In turn OpenFlipper will then notify all other plugins about this change. This functionality is provided by the signals and slots for \ref BaseInterfaceUpdateSlots "update handling" . \subsection baseInterfacegeneralObjectUpdates General update notifications \image html ObjectUpdateNotification.png If you change data you have to emit one of BaseInterface::updatedObject(int) or BaseInterface::updatedObject(int,const UpdateType&).\n BaseInterface::updatedObject(int) forces an update of the whole object while BaseInterface::updatedObject(int,const UpdateType&) can be restricted to a part of the object ( Geometry,Selection, ... ; see UpdateType ) and is therefore faster and should be preferred. Both signals get the id of the object that has been updated or -1 if all should be updated( you should not use -1 if you know what object changed!). If the signal is emitted, the core calls BaseInterface::slotObjectUpdated( int , const UpdateType& ) of every plugin. You can implement this slot if you need to react on object changes. \note Don't emit updatedObject from within slotObjectUpdated as this will cause an endless loop! \note If the object id passed to the functions is -1 all objects should be treated as updated. After all plugins have been informed, the node itself gets updated. This means that for the corresponding object the update function is called (BaseObjectData::update() ). This function is implemented by every object type in OpenFlipper and has to take care of reacting to modifications of the object. E.g. the TriMeshObject, this could mean, that the OpenMesh data has changed (UPDATE_GEOMETRY). The object would than trigger an update of the rendering buffers which are used to draw the mesh. \note You should not call the update functions of an object directly as this means unnecessary overhead (As the core will call the function anyway on an update). For more details about the UpdateType read the documentation about UpdateType and \ref DefaultUpdateTypes "predefined update types". A description for adding custom update types at runtime is available \ref UpdateTypeFunctions "here". \note If you do not specify an UpdateType, it will fall back to the default value UPDATE_ALL for compatibility reasons which actually updates each of the types. Unless it is really necessary this should generally be avoided since it consumes a lot of computation time. So try to narrow the updated properties as uch as possible! \subsection baseInterfaceNodeUpdates Node updates It is also possible to insert custom nodes into the scenegraph. If you changed these nodes, you also have to inform the core. This is achieved by the BaseInterface::nodeVisibilityChanged() function. As nodes are usually attached to objects in the scene, you should pass the id of the object to the function or -1 if its a global node. \subsection baseInterfaceObjectRemoval Object Removal notifications If the complete scene gets cleared, the slot BaseInterface::slotAllCleared() will be executed after all objects have been removed from the scene. A more fine grained information about objects added or removed from the scene is available via the \ref loadSaveInterfacePage . \subsection baseInterfaceSpecialNotifications Special Notifications There are three additional slots that are called by the core, if the object selection(source/target BaseInterface::slotObjectSelectionChanged() ), the object visibility(Show/Hide BaseInterface::slotVisibilityChanged()) or other properties changed (e.g. name BaseInterface::slotObjectPropertiesChanged() ) \section baseInterfaceSceneUpdateNotification Scene Update Notifications OpenFlipper manages the scene updates in its core. If objects get updated the scene will be automatically redrawn. Nevertheless, you can force an update of the scene by emitting the signal BaseInterface::updateView(). OpenFlipper restricts the number of redraws to avoid useless updates. In the Options you can set a maximal frame rate or disable the restriction. The following image shows how the updates process is managed: \image html SceneViewUpdate.png If the view (viewer position /viewing direction) has been changed, the slot BaseInterface::slotViewChanged() will be called, before anything gets rendered. If you need to modify renderings or anything else depending on the current view, you can use this slot and adapt to the new view (e.g. modifying a shader). \note Be careful, not to change the view in this function or you get an endless loop! After the complete scene has been drawn, the core will inform the plugins via the BaseINterface::slotSceneRedrawn(). \section baseInterfaceManagementFunctions Management Functions There are some basic functions for managing plugins. The BaseInterface::description() function can be used to provide a description for the plugin which will be printed along with the plugin name. The BaseInterface::name() function has to return the name of the plugin. This name will also be used inside the scripting system. Additionally it is possible to provide a plugin version number with BaseInterface::version(). OpenFlippers scripting system can use all public slots defined in your plugin. If it should also provide a small text description for your functions, you could set them with BaseInterface::setSlotDescription(). Even if you do not implement scripting functions in your plugin, the core will then be able to provide this information to the user. Along with the scripting, OpenFlipper provides a batch mode, running without any user interface. If your plugin will work without an user interface (e.g. only scripting functions), you can define a slot BaseInterface::noguiSupported(). This empty slot is used to tell the core, that the plugin can work in batch mode. Otherwise it will not be loaded when running a batch file. */ Q_DECLARE_INTERFACE(BaseInterface,"OpenFlipper.BaseInterface/1.0")