2001-07-12 23:36:04 +00:00
|
|
|
|
// fg_props.hxx - Declarations and inline methods for property handling.
|
|
|
|
|
// Written by David Megginson, started 2000.
|
|
|
|
|
//
|
|
|
|
|
// This file is in the Public Domain, and comes with no warranty.
|
|
|
|
|
|
2001-01-05 17:37:59 +00:00
|
|
|
|
#ifndef __FG_PROPS_HXX
|
|
|
|
|
#define __FG_PROPS_HXX 1
|
|
|
|
|
|
|
|
|
|
#include <simgear/debug/logstream.hxx>
|
|
|
|
|
#include <simgear/misc/props.hxx>
|
|
|
|
|
#include "globals.hxx"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
2001-06-05 22:13:26 +00:00
|
|
|
|
// Property management.
|
2001-01-05 17:37:59 +00:00
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2001-07-12 23:36:04 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Initialize the default FlightGear properties.
|
|
|
|
|
*
|
|
|
|
|
* These are mostly properties that haven't been claimed by a
|
|
|
|
|
* specific module yet. This function should be invoked once,
|
|
|
|
|
* while the program is starting (and after the global property
|
|
|
|
|
* tree has been created).
|
|
|
|
|
*/
|
2001-06-05 22:13:26 +00:00
|
|
|
|
extern void fgInitProps (); // fixme: how are they untied?
|
2001-07-12 23:36:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Update the default FlightGear properties.
|
|
|
|
|
*
|
|
|
|
|
* This function should be invoked once in each loop to update all
|
|
|
|
|
* of the default properties.
|
|
|
|
|
*/
|
2001-06-05 22:13:26 +00:00
|
|
|
|
extern void fgUpdateProps ();
|
2001-07-12 23:36:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Save a flight to disk.
|
|
|
|
|
*
|
|
|
|
|
* This function saves all of the archivable properties to a stream
|
|
|
|
|
* so that the current flight can be restored later.
|
|
|
|
|
*
|
|
|
|
|
* @param output The output stream to write the XML save file to.
|
|
|
|
|
* @return true if the flight was saved successfully.
|
|
|
|
|
*/
|
2001-01-05 17:37:59 +00:00
|
|
|
|
extern bool fgSaveFlight (ostream &output);
|
2001-07-12 23:36:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Load a flight from disk.
|
|
|
|
|
*
|
|
|
|
|
* This function loads an XML save file from a stream to restore
|
|
|
|
|
* a flight.
|
|
|
|
|
*
|
|
|
|
|
* @param input The input stream to read the XML from.
|
|
|
|
|
* @return true if the flight was restored successfully.
|
|
|
|
|
*/
|
2001-01-05 17:37:59 +00:00
|
|
|
|
extern bool fgLoadFlight (istream &input);
|
|
|
|
|
|
|
|
|
|
|
2001-01-13 22:06:39 +00:00
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
// Convenience functions for getting property values.
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
I'm attaching diffs to add a new FGInput module to FlightGear
(src/Input). So far, FGInput replaces most of src/Main/keyboard.cxx
(I've left a tiny stub); in the very near future, it will also take
over control of the joystick, mouse (Norm permitting), and panel
instrument interactions, so that there is a single mechanism for
configuring all input devices.
The new format should be (close to) self-explanatory by looking at the
new base-package file keyboard.xml, which is now included by
preferences.xml (I'll do the same thing for the joystick when I have a
chance). I have not managed to move all keybindings into this file
yet, but I've made a good start. I'm including Tony in the recipient
list so that he can see how bindings can use an external XML file.
This patch also adds support for multiple bindings for a single key,
special keys (i.e. keypad and function keys), and key modifiers
(shift/alt/ctrl); special keys use the PUI convention of adding 256 to
the Glut key code.
Unfortunately, everything comes with a price; in this case, I have not
yet found a general mechanism for the old (hard-coded) modal bindings,
which behaved differently depending on the autopilot state (i.e. left
rudder or move AP heading left); with my patches, this functionality
disappears, but you can still adjust the autopilot using the panel or
the GUI input dialogs.
2001-05-23 23:01:15 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get a property node.
|
|
|
|
|
*
|
|
|
|
|
* @param path The path of the node, relative to root.
|
|
|
|
|
* @param create true to create the node if it doesn't exist.
|
2001-06-12 16:25:36 +00:00
|
|
|
|
* @return The node, or 0 if none exists and none was created.
|
I'm attaching diffs to add a new FGInput module to FlightGear
(src/Input). So far, FGInput replaces most of src/Main/keyboard.cxx
(I've left a tiny stub); in the very near future, it will also take
over control of the joystick, mouse (Norm permitting), and panel
instrument interactions, so that there is a single mechanism for
configuring all input devices.
The new format should be (close to) self-explanatory by looking at the
new base-package file keyboard.xml, which is now included by
preferences.xml (I'll do the same thing for the joystick when I have a
chance). I have not managed to move all keybindings into this file
yet, but I've made a good start. I'm including Tony in the recipient
list so that he can see how bindings can use an external XML file.
This patch also adds support for multiple bindings for a single key,
special keys (i.e. keypad and function keys), and key modifiers
(shift/alt/ctrl); special keys use the PUI convention of adding 256 to
the Glut key code.
Unfortunately, everything comes with a price; in this case, I have not
yet found a general mechanism for the old (hard-coded) modal bindings,
which behaved differently depending on the autopilot state (i.e. left
rudder or move AP heading left); with my patches, this functionality
disappears, but you can still adjust the autopilot using the panel or
the GUI input dialogs.
2001-05-23 23:01:15 +00:00
|
|
|
|
*/
|
|
|
|
|
inline SGPropertyNode *
|
|
|
|
|
fgGetNode (const string &path, bool create = false)
|
|
|
|
|
{
|
|
|
|
|
return globals->get_props()->getNode(path, create);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-01-19 05:34:03 +00:00
|
|
|
|
/**
|
|
|
|
|
* Get a property node with separate index.
|
|
|
|
|
*
|
|
|
|
|
* This method separates the index from the path string, to make it
|
|
|
|
|
* easier to iterate through multiple components without using sprintf
|
|
|
|
|
* to add indices. For example, fgGetNode("foo[1]/bar", 3) will
|
|
|
|
|
* return the same result as fgGetNode("foo[1]/bar[3]").
|
|
|
|
|
*
|
|
|
|
|
* @param path The path of the node, relative to root.
|
|
|
|
|
* @param index The index for the last member of the path (overrides
|
|
|
|
|
* any given in the string).
|
|
|
|
|
* @param create true to create the node if it doesn't exist.
|
|
|
|
|
* @return The node, or 0 if none exists and none was created.
|
|
|
|
|
*/
|
|
|
|
|
inline SGPropertyNode *
|
|
|
|
|
fgGetNode (const string &path, int index, bool create = false)
|
|
|
|
|
{
|
|
|
|
|
return globals->get_props()->getNode(path, index, create);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-01-13 22:06:39 +00:00
|
|
|
|
/**
|
2001-06-12 16:25:36 +00:00
|
|
|
|
* Test whether a given node exists.
|
2001-01-13 22:06:39 +00:00
|
|
|
|
*
|
2001-06-12 16:25:36 +00:00
|
|
|
|
* @param path The path of the node, relative to root.
|
|
|
|
|
* @return true if the node exists, false otherwise.
|
2001-01-13 22:06:39 +00:00
|
|
|
|
*/
|
2001-06-12 16:25:36 +00:00
|
|
|
|
inline bool
|
|
|
|
|
fgHasNode (const string &path)
|
2001-01-13 22:06:39 +00:00
|
|
|
|
{
|
2001-06-12 16:25:36 +00:00
|
|
|
|
return (fgGetNode(path, false) != 0);
|
2001-01-13 22:06:39 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-07-12 23:36:04 +00:00
|
|
|
|
/**
|
|
|
|
|
* Get a bool value for a property.
|
|
|
|
|
*
|
|
|
|
|
* This method is convenient but inefficient. It should be used
|
|
|
|
|
* infrequently (i.e. for initializing, loading, saving, etc.),
|
|
|
|
|
* not in the main loop. If you need to get a value frequently,
|
|
|
|
|
* it is better to look up the node itself using fgGetNode and then
|
|
|
|
|
* use the node's getBoolValue() method, to avoid the lookup overhead.
|
|
|
|
|
*
|
|
|
|
|
* @param name The property name.
|
|
|
|
|
* @param defaultValue The default value to return if the property
|
|
|
|
|
* does not exist.
|
|
|
|
|
* @return The property's value as a bool, or the default value provided.
|
|
|
|
|
*/
|
2001-01-13 22:06:39 +00:00
|
|
|
|
inline bool fgGetBool (const string &name, bool defaultValue = false)
|
|
|
|
|
{
|
|
|
|
|
return globals->get_props()->getBoolValue(name, defaultValue);
|
|
|
|
|
}
|
|
|
|
|
|
2001-07-12 23:36:04 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get an int value for a property.
|
|
|
|
|
*
|
|
|
|
|
* This method is convenient but inefficient. It should be used
|
|
|
|
|
* infrequently (i.e. for initializing, loading, saving, etc.),
|
|
|
|
|
* not in the main loop. If you need to get a value frequently,
|
|
|
|
|
* it is better to look up the node itself using fgGetNode and then
|
|
|
|
|
* use the node's getIntValue() method, to avoid the lookup overhead.
|
|
|
|
|
*
|
|
|
|
|
* @param name The property name.
|
|
|
|
|
* @param defaultValue The default value to return if the property
|
|
|
|
|
* does not exist.
|
|
|
|
|
* @return The property's value as an int, or the default value provided.
|
|
|
|
|
*/
|
2001-01-13 22:06:39 +00:00
|
|
|
|
inline int fgGetInt (const string &name, int defaultValue = 0)
|
|
|
|
|
{
|
|
|
|
|
return globals->get_props()->getIntValue(name, defaultValue);
|
|
|
|
|
}
|
|
|
|
|
|
2001-07-12 23:36:04 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get a long value for a property.
|
|
|
|
|
*
|
|
|
|
|
* This method is convenient but inefficient. It should be used
|
|
|
|
|
* infrequently (i.e. for initializing, loading, saving, etc.),
|
|
|
|
|
* not in the main loop. If you need to get a value frequently,
|
|
|
|
|
* it is better to look up the node itself using fgGetNode and then
|
|
|
|
|
* use the node's getLongValue() method, to avoid the lookup overhead.
|
|
|
|
|
*
|
|
|
|
|
* @param name The property name.
|
|
|
|
|
* @param defaultValue The default value to return if the property
|
|
|
|
|
* does not exist.
|
|
|
|
|
* @return The property's value as a long, or the default value provided.
|
|
|
|
|
*/
|
2001-03-29 03:49:02 +00:00
|
|
|
|
inline int fgGetLong (const string &name, long defaultValue = 0L)
|
|
|
|
|
{
|
|
|
|
|
return globals->get_props()->getLongValue(name, defaultValue);
|
|
|
|
|
}
|
|
|
|
|
|
2001-07-12 23:36:04 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get a float value for a property.
|
|
|
|
|
*
|
|
|
|
|
* This method is convenient but inefficient. It should be used
|
|
|
|
|
* infrequently (i.e. for initializing, loading, saving, etc.),
|
|
|
|
|
* not in the main loop. If you need to get a value frequently,
|
|
|
|
|
* it is better to look up the node itself using fgGetNode and then
|
|
|
|
|
* use the node's getFloatValue() method, to avoid the lookup overhead.
|
|
|
|
|
*
|
|
|
|
|
* @param name The property name.
|
|
|
|
|
* @param defaultValue The default value to return if the property
|
|
|
|
|
* does not exist.
|
|
|
|
|
* @return The property's value as a float, or the default value provided.
|
|
|
|
|
*/
|
2001-01-13 22:06:39 +00:00
|
|
|
|
inline float fgGetFloat (const string &name, float defaultValue = 0.0)
|
|
|
|
|
{
|
|
|
|
|
return globals->get_props()->getFloatValue(name, defaultValue);
|
|
|
|
|
}
|
|
|
|
|
|
2001-07-12 23:36:04 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get a double value for a property.
|
|
|
|
|
*
|
|
|
|
|
* This method is convenient but inefficient. It should be used
|
|
|
|
|
* infrequently (i.e. for initializing, loading, saving, etc.),
|
|
|
|
|
* not in the main loop. If you need to get a value frequently,
|
|
|
|
|
* it is better to look up the node itself using fgGetNode and then
|
|
|
|
|
* use the node's getDoubleValue() method, to avoid the lookup overhead.
|
|
|
|
|
*
|
|
|
|
|
* @param name The property name.
|
|
|
|
|
* @param defaultValue The default value to return if the property
|
|
|
|
|
* does not exist.
|
|
|
|
|
* @return The property's value as a double, or the default value provided.
|
|
|
|
|
*/
|
2001-01-13 22:06:39 +00:00
|
|
|
|
inline double fgGetDouble (const string &name, double defaultValue = 0.0)
|
|
|
|
|
{
|
|
|
|
|
return globals->get_props()->getDoubleValue(name, defaultValue);
|
|
|
|
|
}
|
|
|
|
|
|
2001-07-12 23:36:04 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Get a string value for a property.
|
|
|
|
|
*
|
|
|
|
|
* This method is convenient but inefficient. It should be used
|
|
|
|
|
* infrequently (i.e. for initializing, loading, saving, etc.),
|
|
|
|
|
* not in the main loop. If you need to get a value frequently,
|
|
|
|
|
* it is better to look up the node itself using fgGetNode and then
|
|
|
|
|
* use the node's getStringValue() method, to avoid the lookup overhead.
|
|
|
|
|
*
|
|
|
|
|
* @param name The property name.
|
|
|
|
|
* @param defaultValue The default value to return if the property
|
|
|
|
|
* does not exist.
|
|
|
|
|
* @return The property's value as a string, or the default value provided.
|
|
|
|
|
*/
|
2001-01-13 22:06:39 +00:00
|
|
|
|
inline string fgGetString (const string &name, string defaultValue = "")
|
|
|
|
|
{
|
|
|
|
|
return globals->get_props()->getStringValue(name, defaultValue);
|
|
|
|
|
}
|
|
|
|
|
|
2001-07-12 23:36:04 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set a bool value for a property.
|
|
|
|
|
*
|
|
|
|
|
* Assign a bool value to a property. If the property does not
|
|
|
|
|
* yet exist, it will be created and its type will be set to
|
|
|
|
|
* BOOL; if it has a type of UNKNOWN, the type will also be set to
|
|
|
|
|
* BOOL; otherwise, the bool value will be converted to the property's
|
|
|
|
|
* type.
|
|
|
|
|
*
|
|
|
|
|
* @param name The property name.
|
|
|
|
|
* @param val The new value for the property.
|
|
|
|
|
* @return true if the assignment succeeded, false otherwise.
|
|
|
|
|
*/
|
2001-01-13 22:06:39 +00:00
|
|
|
|
inline bool fgSetBool (const string &name, bool val)
|
|
|
|
|
{
|
|
|
|
|
return globals->get_props()->setBoolValue(name, val);
|
|
|
|
|
}
|
|
|
|
|
|
2001-07-12 23:36:04 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set an int value for a property.
|
|
|
|
|
*
|
|
|
|
|
* Assign an int value to a property. If the property does not
|
|
|
|
|
* yet exist, it will be created and its type will be set to
|
|
|
|
|
* INT; if it has a type of UNKNOWN, the type will also be set to
|
|
|
|
|
* INT; otherwise, the bool value will be converted to the property's
|
|
|
|
|
* type.
|
|
|
|
|
*
|
|
|
|
|
* @param name The property name.
|
|
|
|
|
* @param val The new value for the property.
|
|
|
|
|
* @return true if the assignment succeeded, false otherwise.
|
|
|
|
|
*/
|
2001-01-13 22:06:39 +00:00
|
|
|
|
inline bool fgSetInt (const string &name, int val)
|
|
|
|
|
{
|
|
|
|
|
return globals->get_props()->setIntValue(name, val);
|
|
|
|
|
}
|
|
|
|
|
|
2001-07-12 23:36:04 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set a long value for a property.
|
|
|
|
|
*
|
|
|
|
|
* Assign a long value to a property. If the property does not
|
|
|
|
|
* yet exist, it will be created and its type will be set to
|
|
|
|
|
* LONG; if it has a type of UNKNOWN, the type will also be set to
|
|
|
|
|
* LONG; otherwise, the bool value will be converted to the property's
|
|
|
|
|
* type.
|
|
|
|
|
*
|
|
|
|
|
* @param name The property name.
|
|
|
|
|
* @param val The new value for the property.
|
|
|
|
|
* @return true if the assignment succeeded, false otherwise.
|
|
|
|
|
*/
|
2001-03-29 03:49:02 +00:00
|
|
|
|
inline bool fgSetLong (const string &name, long val)
|
|
|
|
|
{
|
|
|
|
|
return globals->get_props()->setLongValue(name, val);
|
|
|
|
|
}
|
|
|
|
|
|
2001-07-12 23:36:04 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set a float value for a property.
|
|
|
|
|
*
|
|
|
|
|
* Assign a float value to a property. If the property does not
|
|
|
|
|
* yet exist, it will be created and its type will be set to
|
|
|
|
|
* FLOAT; if it has a type of UNKNOWN, the type will also be set to
|
|
|
|
|
* FLOAT; otherwise, the bool value will be converted to the property's
|
|
|
|
|
* type.
|
|
|
|
|
*
|
|
|
|
|
* @param name The property name.
|
|
|
|
|
* @param val The new value for the property.
|
|
|
|
|
* @return true if the assignment succeeded, false otherwise.
|
|
|
|
|
*/
|
2001-01-13 22:06:39 +00:00
|
|
|
|
inline bool fgSetFloat (const string &name, float val)
|
|
|
|
|
{
|
|
|
|
|
return globals->get_props()->setFloatValue(name, val);
|
|
|
|
|
}
|
|
|
|
|
|
2001-07-12 23:36:04 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set a double value for a property.
|
|
|
|
|
*
|
|
|
|
|
* Assign a double value to a property. If the property does not
|
|
|
|
|
* yet exist, it will be created and its type will be set to
|
|
|
|
|
* DOUBLE; if it has a type of UNKNOWN, the type will also be set to
|
|
|
|
|
* DOUBLE; otherwise, the double value will be converted to the property's
|
|
|
|
|
* type.
|
|
|
|
|
*
|
|
|
|
|
* @param name The property name.
|
|
|
|
|
* @param val The new value for the property.
|
|
|
|
|
* @return true if the assignment succeeded, false otherwise.
|
|
|
|
|
*/
|
2001-01-13 22:06:39 +00:00
|
|
|
|
inline bool fgSetDouble (const string &name, double val)
|
|
|
|
|
{
|
|
|
|
|
return globals->get_props()->setDoubleValue(name, val);
|
|
|
|
|
}
|
|
|
|
|
|
2001-07-12 23:36:04 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set a string value for a property.
|
|
|
|
|
*
|
|
|
|
|
* Assign a string value to a property. If the property does not
|
|
|
|
|
* yet exist, it will be created and its type will be set to
|
|
|
|
|
* STRING; if it has a type of UNKNOWN, the type will also be set to
|
|
|
|
|
* STRING; otherwise, the string value will be converted to the property's
|
|
|
|
|
* type.
|
|
|
|
|
*
|
|
|
|
|
* @param name The property name.
|
|
|
|
|
* @param val The new value for the property.
|
|
|
|
|
* @return true if the assignment succeeded, false otherwise.
|
|
|
|
|
*/
|
2001-01-13 22:06:39 +00:00
|
|
|
|
inline bool fgSetString (const string &name, const string &val)
|
|
|
|
|
{
|
|
|
|
|
return globals->get_props()->setStringValue(name, val);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-07-12 23:36:04 +00:00
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
// Convenience functions for setting property attributes.
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set the state of the archive attribute for a property.
|
|
|
|
|
*
|
|
|
|
|
* If the archive attribute is true, the property will be written
|
|
|
|
|
* when a flight is saved; if it is false, the property will be
|
|
|
|
|
* skipped.
|
|
|
|
|
*
|
|
|
|
|
* A warning message will be printed if the property does not exist.
|
|
|
|
|
*
|
|
|
|
|
* @param name The property name.
|
|
|
|
|
* @param state The state of the archive attribute (defaults to true).
|
|
|
|
|
*/
|
|
|
|
|
inline void
|
|
|
|
|
fgSetArchivable (const string &name, bool state = true)
|
|
|
|
|
{
|
|
|
|
|
SGPropertyNode * node = globals->get_props()->getNode(name);
|
|
|
|
|
if (node == 0)
|
|
|
|
|
SG_LOG(SG_GENERAL, SG_ALERT,
|
|
|
|
|
"Attempt to set archive flag for non-existant property "
|
|
|
|
|
<< name);
|
|
|
|
|
else
|
|
|
|
|
node->setAttribute(SGPropertyNode::ARCHIVE, state);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set the state of the read attribute for a property.
|
|
|
|
|
*
|
|
|
|
|
* If the read attribute is true, the property value will be readable;
|
|
|
|
|
* if it is false, the property value will always be the default value
|
|
|
|
|
* for its type.
|
|
|
|
|
*
|
|
|
|
|
* A warning message will be printed if the property does not exist.
|
|
|
|
|
*
|
|
|
|
|
* @param name The property name.
|
|
|
|
|
* @param state The state of the read attribute (defaults to true).
|
|
|
|
|
*/
|
|
|
|
|
inline void
|
|
|
|
|
fgSetReadable (const string &name, bool state = true)
|
|
|
|
|
{
|
|
|
|
|
SGPropertyNode * node = globals->get_props()->getNode(name);
|
|
|
|
|
if (node == 0)
|
|
|
|
|
SG_LOG(SG_GENERAL, SG_ALERT,
|
|
|
|
|
"Attempt to set read flag for non-existant property "
|
|
|
|
|
<< name);
|
|
|
|
|
else
|
|
|
|
|
node->setAttribute(SGPropertyNode::READ, state);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Set the state of the write attribute for a property.
|
|
|
|
|
*
|
|
|
|
|
* If the write attribute is true, the property value may be modified
|
|
|
|
|
* (depending on how it is tied); if the write attribute is false, the
|
|
|
|
|
* property value may not be modified.
|
|
|
|
|
*
|
|
|
|
|
* A warning message will be printed if the property does not exist.
|
|
|
|
|
*
|
|
|
|
|
* @param name The property name.
|
|
|
|
|
* @param state The state of the write attribute (defaults to true).
|
|
|
|
|
*/
|
|
|
|
|
inline void
|
|
|
|
|
fgSetWritable (const string &name, bool state = true)
|
|
|
|
|
{
|
|
|
|
|
SGPropertyNode * node = globals->get_props()->getNode(name);
|
|
|
|
|
if (node == 0)
|
|
|
|
|
SG_LOG(SG_GENERAL, SG_ALERT,
|
|
|
|
|
"Attempt to set write flag for non-existant property "
|
|
|
|
|
<< name);
|
|
|
|
|
else
|
|
|
|
|
node->setAttribute(SGPropertyNode::WRITE, state);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-01-05 17:37:59 +00:00
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
// Convenience functions for tying properties, with logging.
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
2001-07-12 23:36:04 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Untie a property from an external data source.
|
|
|
|
|
*
|
|
|
|
|
* Classes should use this function to release control of any
|
|
|
|
|
* properties they are managing.
|
|
|
|
|
*/
|
2001-01-05 17:37:59 +00:00
|
|
|
|
inline void
|
|
|
|
|
fgUntie (const string &name)
|
|
|
|
|
{
|
|
|
|
|
if (!globals->get_props()->untie(name))
|
2001-03-24 06:03:11 +00:00
|
|
|
|
SG_LOG(SG_GENERAL, SG_WARN, "Failed to untie property " << name);
|
2001-01-05 17:37:59 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Templates cause ambiguity here
|
2001-07-12 23:36:04 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Tie a property to an external bool variable.
|
|
|
|
|
*
|
|
|
|
|
* The property's value will automatically mirror the variable's
|
|
|
|
|
* value, and vice-versa, until the property is untied.
|
|
|
|
|
*
|
|
|
|
|
* @param name The property name to tie (full path).
|
|
|
|
|
* @param pointer A pointer to the variable.
|
|
|
|
|
* @param useDefault true if any existing property value should be
|
|
|
|
|
* copied to the variable; false if the variable should not
|
|
|
|
|
* be modified; defaults to true.
|
|
|
|
|
*/
|
2001-01-05 17:37:59 +00:00
|
|
|
|
inline void
|
2001-01-19 22:57:24 +00:00
|
|
|
|
fgTie (const string &name, bool *pointer, bool useDefault = true)
|
2001-01-05 17:37:59 +00:00
|
|
|
|
{
|
2001-01-19 22:57:24 +00:00
|
|
|
|
if (!globals->get_props()->tie(name, SGRawValuePointer<bool>(pointer),
|
|
|
|
|
useDefault))
|
2001-03-24 06:03:11 +00:00
|
|
|
|
SG_LOG(SG_GENERAL, SG_WARN,
|
2001-01-05 17:37:59 +00:00
|
|
|
|
"Failed to tie property " << name << " to a pointer");
|
|
|
|
|
}
|
|
|
|
|
|
2001-07-12 23:36:04 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Tie a property to an external int variable.
|
|
|
|
|
*
|
|
|
|
|
* The property's value will automatically mirror the variable's
|
|
|
|
|
* value, and vice-versa, until the property is untied.
|
|
|
|
|
*
|
|
|
|
|
* @param name The property name to tie (full path).
|
|
|
|
|
* @param pointer A pointer to the variable.
|
|
|
|
|
* @param useDefault true if any existing property value should be
|
|
|
|
|
* copied to the variable; false if the variable should not
|
|
|
|
|
* be modified; defaults to true.
|
|
|
|
|
*/
|
2001-01-05 17:37:59 +00:00
|
|
|
|
inline void
|
2001-01-19 22:57:24 +00:00
|
|
|
|
fgTie (const string &name, int *pointer, bool useDefault = true)
|
2001-01-05 17:37:59 +00:00
|
|
|
|
{
|
2001-01-19 22:57:24 +00:00
|
|
|
|
if (!globals->get_props()->tie(name, SGRawValuePointer<int>(pointer),
|
|
|
|
|
useDefault))
|
2001-03-24 06:03:11 +00:00
|
|
|
|
SG_LOG(SG_GENERAL, SG_WARN,
|
2001-01-05 17:37:59 +00:00
|
|
|
|
"Failed to tie property " << name << " to a pointer");
|
|
|
|
|
}
|
|
|
|
|
|
2001-07-12 23:36:04 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Tie a property to an external long variable.
|
|
|
|
|
*
|
|
|
|
|
* The property's value will automatically mirror the variable's
|
|
|
|
|
* value, and vice-versa, until the property is untied.
|
|
|
|
|
*
|
|
|
|
|
* @param name The property name to tie (full path).
|
|
|
|
|
* @param pointer A pointer to the variable.
|
|
|
|
|
* @param useDefault true if any existing property value should be
|
|
|
|
|
* copied to the variable; false if the variable should not
|
|
|
|
|
* be modified; defaults to true.
|
|
|
|
|
*/
|
2001-03-29 03:49:02 +00:00
|
|
|
|
inline void
|
|
|
|
|
fgTie (const string &name, long *pointer, bool useDefault = true)
|
|
|
|
|
{
|
|
|
|
|
if (!globals->get_props()->tie(name, SGRawValuePointer<long>(pointer),
|
|
|
|
|
useDefault))
|
|
|
|
|
SG_LOG(SG_GENERAL, SG_WARN,
|
|
|
|
|
"Failed to tie property " << name << " to a pointer");
|
|
|
|
|
}
|
|
|
|
|
|
2001-07-12 23:36:04 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Tie a property to an external float variable.
|
|
|
|
|
*
|
|
|
|
|
* The property's value will automatically mirror the variable's
|
|
|
|
|
* value, and vice-versa, until the property is untied.
|
|
|
|
|
*
|
|
|
|
|
* @param name The property name to tie (full path).
|
|
|
|
|
* @param pointer A pointer to the variable.
|
|
|
|
|
* @param useDefault true if any existing property value should be
|
|
|
|
|
* copied to the variable; false if the variable should not
|
|
|
|
|
* be modified; defaults to true.
|
|
|
|
|
*/
|
2001-01-05 17:37:59 +00:00
|
|
|
|
inline void
|
2001-01-19 22:57:24 +00:00
|
|
|
|
fgTie (const string &name, float *pointer, bool useDefault = true)
|
2001-01-05 17:37:59 +00:00
|
|
|
|
{
|
2001-01-19 22:57:24 +00:00
|
|
|
|
if (!globals->get_props()->tie(name, SGRawValuePointer<float>(pointer),
|
|
|
|
|
useDefault))
|
2001-03-24 06:03:11 +00:00
|
|
|
|
SG_LOG(SG_GENERAL, SG_WARN,
|
2001-01-05 17:37:59 +00:00
|
|
|
|
"Failed to tie property " << name << " to a pointer");
|
|
|
|
|
}
|
|
|
|
|
|
2001-07-12 23:36:04 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Tie a property to an external double variable.
|
|
|
|
|
*
|
|
|
|
|
* The property's value will automatically mirror the variable's
|
|
|
|
|
* value, and vice-versa, until the property is untied.
|
|
|
|
|
*
|
|
|
|
|
* @param name The property name to tie (full path).
|
|
|
|
|
* @param pointer A pointer to the variable.
|
|
|
|
|
* @param useDefault true if any existing property value should be
|
|
|
|
|
* copied to the variable; false if the variable should not
|
|
|
|
|
* be modified; defaults to true.
|
|
|
|
|
*/
|
2001-01-05 17:37:59 +00:00
|
|
|
|
inline void
|
2001-01-19 22:57:24 +00:00
|
|
|
|
fgTie (const string &name, double *pointer, bool useDefault = true)
|
2001-01-05 17:37:59 +00:00
|
|
|
|
{
|
2001-01-19 22:57:24 +00:00
|
|
|
|
if (!globals->get_props()->tie(name, SGRawValuePointer<double>(pointer),
|
|
|
|
|
useDefault))
|
2001-03-24 06:03:11 +00:00
|
|
|
|
SG_LOG(SG_GENERAL, SG_WARN,
|
2001-01-05 17:37:59 +00:00
|
|
|
|
"Failed to tie property " << name << " to a pointer");
|
|
|
|
|
}
|
|
|
|
|
|
2001-07-12 23:36:04 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Tie a property to an external string variable.
|
|
|
|
|
*
|
|
|
|
|
* The property's value will automatically mirror the variable's
|
|
|
|
|
* value, and vice-versa, until the property is untied.
|
|
|
|
|
*
|
|
|
|
|
* @param name The property name to tie (full path).
|
|
|
|
|
* @param pointer A pointer to the variable.
|
|
|
|
|
* @param useDefault true if any existing property value should be
|
|
|
|
|
* copied to the variable; false if the variable should not
|
|
|
|
|
* be modified; defaults to true.
|
|
|
|
|
*/
|
2001-01-05 17:37:59 +00:00
|
|
|
|
inline void
|
2001-01-19 22:57:24 +00:00
|
|
|
|
fgTie (const string &name, string *pointer, bool useDefault = true)
|
2001-01-05 17:37:59 +00:00
|
|
|
|
{
|
2001-01-19 22:57:24 +00:00
|
|
|
|
if (!globals->get_props()->tie(name, SGRawValuePointer<string>(pointer),
|
|
|
|
|
useDefault))
|
2001-03-24 06:03:11 +00:00
|
|
|
|
SG_LOG(SG_GENERAL, SG_WARN,
|
2001-01-05 17:37:59 +00:00
|
|
|
|
"Failed to tie property " << name << " to a pointer");
|
|
|
|
|
}
|
|
|
|
|
|
2001-07-12 23:36:04 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Tie a property to a pair of simple functions.
|
|
|
|
|
*
|
|
|
|
|
* Every time the property value is queried, the getter (if any) will
|
|
|
|
|
* be invoked; every time the property value is modified, the setter
|
|
|
|
|
* (if any) will be invoked. The getter can be 0 to make the property
|
|
|
|
|
* unreadable, and the setter can be 0 to make the property
|
|
|
|
|
* unmodifiable.
|
|
|
|
|
*
|
|
|
|
|
* @param name The property name to tie (full path).
|
|
|
|
|
* @param getter The getter function, or 0 if the value is unreadable.
|
|
|
|
|
* @param setter The setter function, or 0 if the value is unmodifiable.
|
|
|
|
|
* @param useDefault true if the setter should be invoked with any existing
|
|
|
|
|
* property value should be; false if the old value should be
|
|
|
|
|
* discarded; defaults to true.
|
|
|
|
|
*/
|
2001-01-05 17:37:59 +00:00
|
|
|
|
template <class V>
|
|
|
|
|
inline void
|
2001-01-19 22:57:24 +00:00
|
|
|
|
fgTie (const string &name, V (*getter)(), void (*setter)(V) = 0,
|
|
|
|
|
bool useDefault = true)
|
2001-01-05 17:37:59 +00:00
|
|
|
|
{
|
2001-01-19 22:57:24 +00:00
|
|
|
|
if (!globals->get_props()->tie(name, SGRawValueFunctions<V>(getter, setter),
|
|
|
|
|
useDefault))
|
2001-03-24 06:03:11 +00:00
|
|
|
|
SG_LOG(SG_GENERAL, SG_WARN,
|
2001-01-05 17:37:59 +00:00
|
|
|
|
"Failed to tie property " << name << " to functions");
|
|
|
|
|
}
|
|
|
|
|
|
2001-07-12 23:36:04 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Tie a property to a pair of indexed functions.
|
|
|
|
|
*
|
|
|
|
|
* Every time the property value is queried, the getter (if any) will
|
|
|
|
|
* be invoked with the index provided; every time the property value
|
|
|
|
|
* is modified, the setter (if any) will be invoked with the index
|
|
|
|
|
* provided. The getter can be 0 to make the property unreadable, and
|
|
|
|
|
* the setter can be 0 to make the property unmodifiable.
|
|
|
|
|
*
|
|
|
|
|
* @param name The property name to tie (full path).
|
|
|
|
|
* @param index The integer argument to pass to the getter and
|
|
|
|
|
* setter functions.
|
|
|
|
|
* @param getter The getter function, or 0 if the value is unreadable.
|
|
|
|
|
* @param setter The setter function, or 0 if the value is unmodifiable.
|
|
|
|
|
* @param useDefault true if the setter should be invoked with any existing
|
|
|
|
|
* property value should be; false if the old value should be
|
|
|
|
|
* discarded; defaults to true.
|
|
|
|
|
*/
|
2001-01-05 17:37:59 +00:00
|
|
|
|
template <class V>
|
|
|
|
|
inline void
|
|
|
|
|
fgTie (const string &name, int index, V (*getter)(int),
|
2001-01-19 22:57:24 +00:00
|
|
|
|
void (*setter)(int, V) = 0, bool useDefault = true)
|
2001-01-05 17:37:59 +00:00
|
|
|
|
{
|
|
|
|
|
if (!globals->get_props()->tie(name,
|
|
|
|
|
SGRawValueFunctionsIndexed<V>(index,
|
|
|
|
|
getter,
|
2001-01-19 22:57:24 +00:00
|
|
|
|
setter),
|
|
|
|
|
useDefault))
|
2001-03-24 06:03:11 +00:00
|
|
|
|
SG_LOG(SG_GENERAL, SG_WARN,
|
2001-01-05 17:37:59 +00:00
|
|
|
|
"Failed to tie property " << name << " to indexed functions");
|
|
|
|
|
}
|
|
|
|
|
|
2001-07-12 23:36:04 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Tie a property to a pair of object methods.
|
|
|
|
|
*
|
|
|
|
|
* Every time the property value is queried, the getter (if any) will
|
|
|
|
|
* be invoked; every time the property value is modified, the setter
|
|
|
|
|
* (if any) will be invoked. The getter can be 0 to make the property
|
|
|
|
|
* unreadable, and the setter can be 0 to make the property
|
|
|
|
|
* unmodifiable.
|
|
|
|
|
*
|
|
|
|
|
* @param name The property name to tie (full path).
|
|
|
|
|
* @param obj The object whose methods should be invoked.
|
|
|
|
|
* @param getter The object's getter method, or 0 if the value is
|
|
|
|
|
* unreadable.
|
|
|
|
|
* @param setter The object's setter method, or 0 if the value is
|
|
|
|
|
* unmodifiable.
|
|
|
|
|
* @param useDefault true if the setter should be invoked with any existing
|
|
|
|
|
* property value should be; false if the old value should be
|
|
|
|
|
* discarded; defaults to true.
|
|
|
|
|
*/
|
2001-01-05 17:37:59 +00:00
|
|
|
|
template <class T, class V>
|
|
|
|
|
inline void
|
|
|
|
|
fgTie (const string &name, T * obj, V (T::*getter)() const,
|
2001-01-19 22:57:24 +00:00
|
|
|
|
void (T::*setter)(V) = 0, bool useDefault = true)
|
2001-01-05 17:37:59 +00:00
|
|
|
|
{
|
|
|
|
|
if (!globals->get_props()->tie(name,
|
2001-01-19 22:57:24 +00:00
|
|
|
|
SGRawValueMethods<T,V>(*obj, getter, setter),
|
|
|
|
|
useDefault))
|
2001-03-24 06:03:11 +00:00
|
|
|
|
SG_LOG(SG_GENERAL, SG_WARN,
|
2001-01-05 17:37:59 +00:00
|
|
|
|
"Failed to tie property " << name << " to object methods");
|
|
|
|
|
}
|
|
|
|
|
|
2001-07-12 23:36:04 +00:00
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Tie a property to a pair of indexed object methods.
|
|
|
|
|
*
|
|
|
|
|
* Every time the property value is queried, the getter (if any) will
|
|
|
|
|
* be invoked with the index provided; every time the property value
|
|
|
|
|
* is modified, the setter (if any) will be invoked with the index
|
|
|
|
|
* provided. The getter can be 0 to make the property unreadable, and
|
|
|
|
|
* the setter can be 0 to make the property unmodifiable.
|
|
|
|
|
*
|
|
|
|
|
* @param name The property name to tie (full path).
|
|
|
|
|
* @param obj The object whose methods should be invoked.
|
|
|
|
|
* @param index The integer argument to pass to the getter and
|
|
|
|
|
* setter methods.
|
|
|
|
|
* @param getter The getter method, or 0 if the value is unreadable.
|
|
|
|
|
* @param setter The setter method, or 0 if the value is unmodifiable.
|
|
|
|
|
* @param useDefault true if the setter should be invoked with any existing
|
|
|
|
|
* property value should be; false if the old value should be
|
|
|
|
|
* discarded; defaults to true.
|
|
|
|
|
*/
|
2001-01-05 17:37:59 +00:00
|
|
|
|
template <class T, class V>
|
|
|
|
|
inline void
|
|
|
|
|
fgTie (const string &name, T * obj, int index,
|
2001-01-19 22:57:24 +00:00
|
|
|
|
V (T::*getter)(int) const, void (T::*setter)(int, V) = 0,
|
|
|
|
|
bool useDefault = true)
|
2001-01-05 17:37:59 +00:00
|
|
|
|
{
|
|
|
|
|
if (!globals->get_props()->tie(name,
|
|
|
|
|
SGRawValueMethodsIndexed<T,V>(*obj,
|
|
|
|
|
index,
|
|
|
|
|
getter,
|
2001-01-19 22:57:24 +00:00
|
|
|
|
setter),
|
|
|
|
|
useDefault))
|
2001-03-24 06:03:11 +00:00
|
|
|
|
SG_LOG(SG_GENERAL, SG_WARN,
|
2001-01-05 17:37:59 +00:00
|
|
|
|
"Failed to tie property " << name << " to indexed object methods");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-08-03 00:19:59 +00:00
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
// Conditions.
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* An encoded condition.
|
|
|
|
|
*
|
|
|
|
|
* This class encodes a single condition of some sort, possibly
|
|
|
|
|
* connected with properties.
|
|
|
|
|
*
|
|
|
|
|
* This class should migrate to somewhere more general.
|
|
|
|
|
*/
|
|
|
|
|
class FGCondition
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
FGCondition ();
|
|
|
|
|
virtual ~FGCondition ();
|
|
|
|
|
virtual bool test () const = 0;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Condition for a single property.
|
|
|
|
|
*
|
|
|
|
|
* This condition is true only if the property returns a boolean
|
|
|
|
|
* true value.
|
|
|
|
|
*/
|
|
|
|
|
class FGPropertyCondition : public FGCondition
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
FGPropertyCondition (const string &propname);
|
|
|
|
|
virtual ~FGPropertyCondition ();
|
|
|
|
|
virtual bool test () const { return _node->getBoolValue(); }
|
|
|
|
|
private:
|
|
|
|
|
const SGPropertyNode * _node;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Condition for a 'not' operator.
|
|
|
|
|
*
|
|
|
|
|
* This condition is true only if the child condition is false.
|
|
|
|
|
*/
|
|
|
|
|
class FGNotCondition : public FGCondition
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
// transfer pointer ownership
|
|
|
|
|
FGNotCondition (FGCondition * condition);
|
|
|
|
|
virtual ~FGNotCondition ();
|
|
|
|
|
virtual bool test () const;
|
|
|
|
|
private:
|
|
|
|
|
FGCondition * _condition;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Condition for an 'and' group.
|
|
|
|
|
*
|
|
|
|
|
* This condition is true only if all of the conditions
|
|
|
|
|
* in the group are true.
|
|
|
|
|
*/
|
|
|
|
|
class FGAndCondition : public FGCondition
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
FGAndCondition ();
|
|
|
|
|
virtual ~FGAndCondition ();
|
|
|
|
|
virtual bool test () const;
|
|
|
|
|
// transfer pointer ownership
|
|
|
|
|
virtual void addCondition (FGCondition * condition);
|
|
|
|
|
private:
|
|
|
|
|
vector<FGCondition *> _conditions;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Condition for an 'or' group.
|
|
|
|
|
*
|
|
|
|
|
* This condition is true if at least one of the conditions in the
|
|
|
|
|
* group is true.
|
|
|
|
|
*/
|
|
|
|
|
class FGOrCondition : public FGCondition
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
FGOrCondition ();
|
|
|
|
|
virtual ~FGOrCondition ();
|
|
|
|
|
virtual bool test () const;
|
|
|
|
|
// transfer pointer ownership
|
|
|
|
|
virtual void addCondition (FGCondition * condition);
|
|
|
|
|
private:
|
|
|
|
|
vector<FGCondition *> _conditions;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Abstract base class for property comparison conditions.
|
|
|
|
|
*/
|
|
|
|
|
class FGComparisonCondition : public FGCondition
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
enum Type {
|
|
|
|
|
LESS_THAN,
|
|
|
|
|
GREATER_THAN,
|
|
|
|
|
EQUALS
|
|
|
|
|
};
|
|
|
|
|
FGComparisonCondition (Type type, bool reverse = false);
|
|
|
|
|
virtual ~FGComparisonCondition ();
|
|
|
|
|
virtual bool test () const;
|
|
|
|
|
virtual void setLeftProperty (const string &propname);
|
|
|
|
|
virtual void setRightProperty (const string &propname);
|
|
|
|
|
// will make a local copy
|
|
|
|
|
virtual void setRightValue (const SGPropertyNode * value);
|
|
|
|
|
private:
|
|
|
|
|
Type _type;
|
|
|
|
|
bool _reverse;
|
|
|
|
|
const SGPropertyNode * _left_property;
|
|
|
|
|
const SGPropertyNode * _right_property;
|
|
|
|
|
const SGPropertyNode * _right_value;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Base class for a conditional components.
|
|
|
|
|
*
|
|
|
|
|
* This class manages the conditions and tests; the component should
|
|
|
|
|
* invoke the test() method whenever it needs to decide whether to
|
|
|
|
|
* active itself, draw itself, and so on.
|
|
|
|
|
*/
|
|
|
|
|
class FGConditional
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
FGConditional ();
|
|
|
|
|
virtual ~FGConditional ();
|
|
|
|
|
// transfer pointer ownership
|
|
|
|
|
virtual void setCondition (FGCondition * condition);
|
|
|
|
|
virtual const FGCondition * getCondition () const { return _condition; }
|
|
|
|
|
virtual bool test () const;
|
|
|
|
|
private:
|
|
|
|
|
FGCondition * _condition;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Global function to make a condition out of properties.
|
|
|
|
|
*
|
|
|
|
|
* The top-level is always an implicit 'and' group, whatever the
|
|
|
|
|
* node's name (it should usually be "condition").
|
|
|
|
|
*
|
|
|
|
|
* @param node The top-level condition node (usually named "condition").
|
|
|
|
|
* @return A pointer to a newly-allocated condition; it is the
|
|
|
|
|
* responsibility of the caller to delete the condition when
|
|
|
|
|
* it is no longer needed.
|
|
|
|
|
*/
|
|
|
|
|
FGCondition * fgReadCondition (const SGPropertyNode * node);
|
|
|
|
|
|
|
|
|
|
|
2001-01-05 17:37:59 +00:00
|
|
|
|
#endif // __FG_PROPS_HXX
|
|
|
|
|
|