![]() |
VR-Forces 4.2 Class Documentation
|
The root IG for VR-Forces. Inherits from makVrv::DtVrfApplication. More...

Public Types | |
| enum | ObserverMode { PvdAndStealthMode = 0, PvdMode, StealthMode } |
| typedef std::map< std::string, std::string > | ObserverModeBindings |
Public Member Functions | |
| DtVrfGuiApplication (makVrv::DtVrvApplicationConfiguration &config) | |
| Constructor to the VRFGUI application. | |
| virtual | ~DtVrfGuiApplication () |
| Destructor to the VRFGUI application. | |
| virtual void | initialize (int argc, char **argv) |
| Initializes the application with the given command line options. | |
| virtual void | assemble () |
| Assembles the application and signals the pre and post of the assembly process. | |
| virtual void | run () |
| Runs the application. Signals deInitialized if application has started successfully. | |
| void | setPluginApplication (const std::string &) |
| Sets the plugin application name. | |
| const std::string & | pluginApplication () const |
| Gets the plugin application name. | |
| virtual void | setLoadSystemPlugins (bool) |
| If set to false does not load any plugins from the plugins directory. Default is true. | |
| virtual bool | loadSystemPlugins () const |
Static Public Member Functions | |
| static DtVrfGuiApplication * | app (makVrv::DtDe &) |
| static void | setGuiConfiguration (const std::string &) |
| Sets the gui configuration file to use. | |
| static void | setObserverModeBindings (const ObserverModeBindings &modes) |
| Sets the observer mode bindings to a different set of bindings. | |
| static const ObserverModeBindings & | observerModeBindings () |
| Gets the current observer mode bindings that are set. | |
| static const std::vector < std::string > & | additionalPluginsToLoad () |
| Gets a list of additional plugins to be loaded or were loaded by loadPluginModules() | |
| static void | setAdditionalPluginsToLoad (const std::vector< std::string > &) |
| Sets the list of additional plugins to be loaded by loadPluginModules() | |
| static bool | loadDefaultPlugins () |
| Gets whether the default plugins should be loaded or not. | |
| static void | setLoadDefaultPlugins (bool) |
| Sets whether the default plugins were loaded or not. | |
| static bool | checkPluginVersions () |
| Gets whether to check the plugin versions or not. | |
| static void | setCheckPluginVersions (bool) |
| Sets whether to check the plugin versions or not. | |
| static const std::string & | transport () |
| Gets the transport string. | |
| static void | setTransport (const std::string &) |
| Sets the transport string. | |
| static const std::string & | loadScenario () |
| Gets the currently loaded scenario name. | |
| static void | setLoadScenario (const std::string &) |
| Sets the currently loaded scenario name. | |
| static ObserverMode | observerMode () |
| Gets the current observer mode. | |
| static void | setObserverMode (ObserverMode) |
| Sets the current observer mode. | |
Public Attributes | |
| boost::signal< void(makVrv::DtDe &, makVrv::DtMenuConfiguration &)> | signal_preAssemble |
| boost::signal< void(makVrv::DtDe &, makVrv::DtMenuConfiguration &)> | signal_postAssemble |
| boost::signal< void(makVrv::DtDe &)> | signal_deInitialized |
| boost::signal< void()> | signal_preLoadPlugins |
| boost::signal< void()> | signal_postLoadPlugins |
| boost::signal< void(std::string)> | signal_terrainSaved |
Protected Member Functions | |
| virtual void | loadPluginModules () |
| Override to set up additional plugins to load. | |
| virtual void | loadPluginModulesExt () |
| Reimplement this method to load additional plugin modules (read from the .xml files) after all core plugin modules. | |
| virtual void | bindObserverModes (const ObserverModeBindings &modes) |
| Given the list, binds the observers (if they exist) to the visual mode. | |
| virtual DtVrfGuiPluginManager * | createPluginManager () |
| Creates and returns the plugin manager for VRF plugins. | |
| virtual void | dePostInitialize () |
| Called during the post initialize process of the de, initialize some things before drivers get initialized. | |
| virtual void | setupForObserverMode () |
| Called to set up Gui configuration and settings based on current observer mode selection. | |
| virtual void | setupForPvdMode () |
| Sets up GUI for PVD mode only. Experimental as of 4.0. | |
| virtual void | setupForStealthMode () |
| Sets up for Stealth only. Experimental as of 4.0. | |
| virtual void | setupAdditionalVisualizers () |
| Set up any additional visualizers VR-Forces needs, for example, Range rings. | |
| virtual void | setupBoundingVolumes () |
| Sets up bounding volumes for entities. | |
| virtual void | setupObjectConsoleWarngForTacticalGraphics () |
| Sets up object console warning visualizer for tactical graphics. | |
| virtual void | setupBoundingVolumes (const std::string &root) |
| Sets up the bounding volumes to be under a particular root node. | |
| virtual void | setupRangeRings () |
| Sets up range ring items. | |
| virtual void | setupAdditionalAggregateVisualizers () |
| virtual void | loadSavedGuiState () |
| Keep toolbar and page configurations from gui configuration. | |
Protected Attributes | |
| DtVrfGuiPluginManager * | myVrfGuiPluginManager |
| std::string | myPluginApplication |
| std::map < makVrv::DtElementDefinitionManager *, bool > | myModifiedManagers |
| Managers that are modified as part of the start-up process that need to be saved out. | |
| bool | myLoadSystemPlugins |
Static Protected Attributes | |
| static ObserverModeBindings | theObserverModeBindings |
| static std::vector< std::string > | theAdditionalPluginsToLoad |
| static bool | theLoadDefaultPlugins |
| static bool | theCheckPluginVersions |
| static std::string | theTransport |
| static std::string | theLoadScenario |
| static std::string | theGuiConfiguration |
| static ObserverMode | theObserverMode |
The root IG for VR-Forces. Inherits from makVrv::DtVrfApplication.
| typedef std::map<std::string, std::string> makVrf::DtVrfGuiApplication::ObserverModeBindings |
| makVrf::DtVrfGuiApplication::DtVrfGuiApplication | ( | makVrv::DtVrvApplicationConfiguration & | config | ) |
Constructor to the VRFGUI application.
| config | Configuration to load |
|
virtual |
Destructor to the VRFGUI application.
|
virtual |
Initializes the application with the given command line options.
| argc | command line args |
| argv | command line args |
Reimplemented in DtEntityEditorApplication, and DtParameterAlteringApplication.
|
virtual |
Assembles the application and signals the pre and post of the assembly process.
Reimplemented in DtParameterAlteringApplication.
|
virtual |
Runs the application. Signals deInitialized if application has started successfully.
Reimplemented in DtParameterAlteringApplication.
|
static |
Reimplemented in DtEntityEditorApplication, and DtParameterAlteringApplication.
|
static |
Sets the gui configuration file to use.
If the file does not exist then the default built in configuration will be used. Assumed to be in the settings directory unless a directory is specified
|
static |
Sets the observer mode bindings to a different set of bindings.
| modes | Modes to set the observer to |
|
static |
Gets the current observer mode bindings that are set.
|
static |
Gets a list of additional plugins to be loaded or were loaded by loadPluginModules()
|
static |
Sets the list of additional plugins to be loaded by loadPluginModules()
| aVector | a std::vector of std::string with the name of the plugins |
|
static |
Gets whether the default plugins should be loaded or not.
|
static |
Sets whether the default plugins were loaded or not.
| value | of true or false |
|
static |
Gets whether to check the plugin versions or not.
|
static |
Sets whether to check the plugin versions or not.
| value | true or false |
|
static |
Gets the transport string.
|
static |
Sets the transport string.
| value | the transport |
|
static |
Gets the currently loaded scenario name.
Will return an empty string if no scenario is loaded.
|
static |
Sets the currently loaded scenario name.
| value | the name of the scenario loaded |
|
static |
Gets the current observer mode.
|
static |
Sets the current observer mode.
| value | The observer mode |
| void makVrf::DtVrfGuiApplication::setPluginApplication | ( | const std::string & | ) |
Sets the plugin application name.
| value | string name |
| const std::string& makVrf::DtVrfGuiApplication::pluginApplication | ( | ) | const |
Gets the plugin application name.
|
virtual |
If set to false does not load any plugins from the plugins directory. Default is true.
|
virtual |
|
protectedvirtual |
Override to set up additional plugins to load.
Based on what is returned if one were to call additionalPluginsToLoad() to see what would be loaded.
|
protectedvirtual |
Reimplement this method to load additional plugin modules (read from the .xml files) after all core plugin modules.
This way the plugins do not have to call individual init() methods in core plugin modules to make sure they get initialized first
Reimplemented in DtParameterAlteringApplication.
|
protectedvirtual |
Given the list, binds the observers (if they exist) to the visual mode.
| modes | ObserverModeBindings list |
|
protectedvirtual |
Creates and returns the plugin manager for VRF plugins.
Will work with the configuration to determine which additional plugins to load. Will use the plugins directory as the source for reading in .xml files that will determine which additional plugins to load
|
protectedvirtual |
Called during the post initialize process of the de, initialize some things before drivers get initialized.
Reimplemented in DtParameterAlteringApplication.
|
protectedvirtual |
Called to set up Gui configuration and settings based on current observer mode selection.
Experimental as of 4.0
|
protectedvirtual |
Sets up GUI for PVD mode only. Experimental as of 4.0.
|
protectedvirtual |
Sets up for Stealth only. Experimental as of 4.0.
|
protectedvirtual |
Set up any additional visualizers VR-Forces needs, for example, Range rings.
|
protectedvirtual |
Sets up bounding volumes for entities.
|
protectedvirtual |
Sets up object console warning visualizer for tactical graphics.
|
protectedvirtual |
Sets up the bounding volumes to be under a particular root node.
|
protectedvirtual |
Sets up range ring items.
|
protectedvirtual |
|
protectedvirtual |
Keep toolbar and page configurations from gui configuration.
| boost::signal<void (makVrv::DtDe&, makVrv::DtMenuConfiguration&)> makVrf::DtVrfGuiApplication::signal_preAssemble |
| boost::signal<void (makVrv::DtDe&, makVrv::DtMenuConfiguration&)> makVrf::DtVrfGuiApplication::signal_postAssemble |
| boost::signal<void (makVrv::DtDe&)> makVrf::DtVrfGuiApplication::signal_deInitialized |
| boost::signal<void ()> makVrf::DtVrfGuiApplication::signal_preLoadPlugins |
| boost::signal<void ()> makVrf::DtVrfGuiApplication::signal_postLoadPlugins |
| boost::signal<void (std::string)> makVrf::DtVrfGuiApplication::signal_terrainSaved |
|
staticprotected |
|
staticprotected |
|
staticprotected |
|
staticprotected |
|
staticprotected |
|
staticprotected |
|
staticprotected |
|
staticprotected |
|
protected |
|
protected |
|
protected |
Managers that are modified as part of the start-up process that need to be saved out.
|
protected |