2001-06-01 17:52:17 +00:00
|
|
|
|
// fg_commands.cxx - internal FGFS commands.
|
|
|
|
|
|
2001-06-05 22:12:17 +00:00
|
|
|
|
#include <simgear/compiler.h>
|
2001-07-19 04:51:05 +00:00
|
|
|
|
#include <simgear/misc/exception.hxx>
|
2001-06-05 22:12:17 +00:00
|
|
|
|
|
|
|
|
|
#include STL_STRING
|
|
|
|
|
#include STL_FSTREAM
|
2001-06-01 17:52:17 +00:00
|
|
|
|
|
|
|
|
|
#include <simgear/debug/logstream.hxx>
|
|
|
|
|
#include <simgear/misc/commands.hxx>
|
|
|
|
|
#include <simgear/misc/props.hxx>
|
|
|
|
|
|
|
|
|
|
#include <GUI/gui.h>
|
2001-06-05 22:12:17 +00:00
|
|
|
|
#include <Cockpit/panel.hxx>
|
|
|
|
|
#include <Cockpit/panel_io.hxx>
|
2001-06-26 21:59:49 +00:00
|
|
|
|
#include <Scenery/tilemgr.hxx>
|
|
|
|
|
#include <Time/tmp.hxx>
|
2001-06-05 22:12:17 +00:00
|
|
|
|
|
|
|
|
|
#include "fg_commands.hxx"
|
|
|
|
|
|
|
|
|
|
SG_USING_STD(string);
|
2001-06-06 23:31:48 +00:00
|
|
|
|
#if !defined(SG_HAVE_NATIVE_SGI_COMPILERS)
|
2001-06-05 22:12:17 +00:00
|
|
|
|
SG_USING_STD(ifstream);
|
|
|
|
|
SG_USING_STD(ofstream);
|
2001-06-06 23:31:48 +00:00
|
|
|
|
#endif
|
2001-06-01 17:52:17 +00:00
|
|
|
|
|
|
|
|
|
#include "fg_props.hxx"
|
|
|
|
|
#include "fg_io.hxx"
|
|
|
|
|
#include "globals.hxx"
|
2001-07-22 19:51:16 +00:00
|
|
|
|
#include "viewmgr.hxx"
|
2001-06-01 17:52:17 +00:00
|
|
|
|
|
|
|
|
|
|
2001-07-09 16:17:20 +00:00
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
// Saved command states.
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Base saved state for property commands.
|
|
|
|
|
*
|
|
|
|
|
* Since this class isn't publicly visible, it is simply an aggregate
|
|
|
|
|
* of all the stuff any property command needs.
|
|
|
|
|
*/
|
|
|
|
|
class PropertyCommandState : public SGCommandState
|
|
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
PropertyCommandState (const SGPropertyNode * arg);
|
|
|
|
|
virtual SGPropertyNode * getProp () const { return _prop; }
|
|
|
|
|
virtual SGPropertyNode * getProp2 () const { return _prop2; }
|
|
|
|
|
virtual const SGPropertyNode * getValue () const
|
|
|
|
|
{ return _value ? _value : &_dummy_0; }
|
|
|
|
|
virtual const SGPropertyNode * getStep () const
|
|
|
|
|
{ return _step ? _step : &_dummy_0; }
|
2001-07-27 22:00:35 +00:00
|
|
|
|
virtual const SGPropertyNode * getMin () const { return _min; }
|
|
|
|
|
virtual const SGPropertyNode * getMax () const { return _max; }
|
|
|
|
|
virtual const SGPropertyNode * getWrap () const
|
|
|
|
|
{ return _wrap ? _wrap : &_dummy_0; }
|
2001-07-09 16:17:20 +00:00
|
|
|
|
virtual const SGPropertyNode * getFactor () const
|
|
|
|
|
{ return _factor ? _factor : &_dummy_1; }
|
|
|
|
|
virtual const SGPropertyNode * getSetting () const
|
|
|
|
|
{ return _setting ? _setting : &_dummy_0; }
|
|
|
|
|
virtual const SGPropertyNode * getOffset () const
|
|
|
|
|
{ return _offset ? _offset : &_dummy_0; }
|
|
|
|
|
private:
|
|
|
|
|
static SGPropertyNode _dummy_0;
|
|
|
|
|
static SGPropertyNode _dummy_1;
|
|
|
|
|
mutable SGPropertyNode * _prop;
|
|
|
|
|
mutable SGPropertyNode * _prop2;
|
|
|
|
|
const SGPropertyNode * _value;
|
|
|
|
|
const SGPropertyNode * _step;
|
2001-07-27 22:00:35 +00:00
|
|
|
|
const SGPropertyNode * _min;
|
|
|
|
|
const SGPropertyNode * _max;
|
|
|
|
|
const SGPropertyNode * _wrap;
|
2001-07-09 16:17:20 +00:00
|
|
|
|
const SGPropertyNode * _factor;
|
|
|
|
|
const SGPropertyNode * _setting;
|
|
|
|
|
const SGPropertyNode * _offset;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
SGPropertyNode PropertyCommandState::_dummy_0;
|
|
|
|
|
SGPropertyNode PropertyCommandState::_dummy_1;
|
|
|
|
|
|
|
|
|
|
PropertyCommandState::PropertyCommandState (const SGPropertyNode * arg)
|
|
|
|
|
: SGCommandState(arg),
|
|
|
|
|
_prop(fgGetNode(arg->getStringValue("property[0]", "/null"), true)),
|
|
|
|
|
_prop2(fgGetNode(arg->getStringValue("property[1]", "/null"), true)),
|
|
|
|
|
_value(arg->getNode("value")),
|
|
|
|
|
_step(arg->getNode("step")),
|
2001-07-27 22:00:35 +00:00
|
|
|
|
_min(arg->getNode("min")),
|
|
|
|
|
_max(arg->getNode("max")),
|
|
|
|
|
_wrap(arg->getNode("wrap")),
|
2001-07-09 16:17:20 +00:00
|
|
|
|
_factor(arg->getNode("factor")),
|
|
|
|
|
_setting(arg->getNode("setting")),
|
|
|
|
|
_offset(arg->getNode("offset"))
|
|
|
|
|
{
|
|
|
|
|
// It would be better not to do this
|
|
|
|
|
// every time, but it's not that big
|
|
|
|
|
// a deal. I don't know enough about
|
|
|
|
|
// C++ static initialization to fix it.
|
|
|
|
|
_dummy_1.setDoubleValue(1.0);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
// Command implementations.
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
2001-06-04 21:38:44 +00:00
|
|
|
|
/**
|
|
|
|
|
* Built-in command: do nothing.
|
|
|
|
|
*/
|
|
|
|
|
static bool
|
2001-06-29 03:47:39 +00:00
|
|
|
|
do_null (const SGPropertyNode * arg, SGCommandState ** state)
|
2001-06-04 21:38:44 +00:00
|
|
|
|
{
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-06-01 17:52:17 +00:00
|
|
|
|
/**
|
|
|
|
|
* Built-in command: exit FlightGear.
|
|
|
|
|
*
|
|
|
|
|
* TODO: show a confirm dialog.
|
|
|
|
|
*/
|
|
|
|
|
static bool
|
2001-06-29 03:47:39 +00:00
|
|
|
|
do_exit (const SGPropertyNode * arg, SGCommandState ** state)
|
2001-06-01 17:52:17 +00:00
|
|
|
|
{
|
2001-06-26 21:59:49 +00:00
|
|
|
|
SG_LOG(SG_INPUT, SG_ALERT, "Program exit requested.");
|
|
|
|
|
ConfirmExitDialog();
|
2001-06-01 17:52:17 +00:00
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-06-05 22:12:17 +00:00
|
|
|
|
/**
|
|
|
|
|
* Built-in command: load flight.
|
|
|
|
|
*
|
|
|
|
|
* file (optional): the name of the file to load (relative to current
|
|
|
|
|
* directory). Defaults to "fgfs.sav".
|
|
|
|
|
*/
|
|
|
|
|
static bool
|
2001-06-29 03:47:39 +00:00
|
|
|
|
do_load (const SGPropertyNode * arg, SGCommandState ** state)
|
2001-06-05 22:12:17 +00:00
|
|
|
|
{
|
|
|
|
|
const string &file = arg->getStringValue("file", "fgfs.sav");
|
|
|
|
|
ifstream input(file.c_str());
|
|
|
|
|
if (input.good() && fgLoadFlight(input)) {
|
|
|
|
|
input.close();
|
|
|
|
|
SG_LOG(SG_INPUT, SG_INFO, "Restored flight from " << file);
|
|
|
|
|
return true;
|
|
|
|
|
} else {
|
|
|
|
|
SG_LOG(SG_INPUT, SG_ALERT, "Cannot load flight from " << file);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Built-in command: save flight.
|
|
|
|
|
*
|
|
|
|
|
* file (optional): the name of the file to save (relative to the
|
|
|
|
|
* current directory). Defaults to "fgfs.sav".
|
|
|
|
|
*/
|
|
|
|
|
static bool
|
2001-06-29 03:47:39 +00:00
|
|
|
|
do_save (const SGPropertyNode * arg, SGCommandState ** state)
|
2001-06-05 22:12:17 +00:00
|
|
|
|
{
|
|
|
|
|
const string &file = arg->getStringValue("file", "fgfs.sav");
|
|
|
|
|
SG_LOG(SG_INPUT, SG_INFO, "Saving flight");
|
|
|
|
|
ofstream output(file.c_str());
|
|
|
|
|
if (output.good() && fgSaveFlight(output)) {
|
|
|
|
|
output.close();
|
|
|
|
|
SG_LOG(SG_INPUT, SG_INFO, "Saved flight to " << file);
|
|
|
|
|
return true;
|
|
|
|
|
} else {
|
|
|
|
|
SG_LOG(SG_INPUT, SG_ALERT, "Cannot save flight to " << file);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Built-in command: (re)load the panel.
|
|
|
|
|
*
|
|
|
|
|
* path (optional): the file name to load the panel from
|
|
|
|
|
* (relative to FG_ROOT). Defaults to the value of /sim/panel/path,
|
|
|
|
|
* and if that's unspecified, to "Panels/Default/default.xml".
|
|
|
|
|
*/
|
|
|
|
|
static bool
|
2001-06-29 03:47:39 +00:00
|
|
|
|
do_panel_load (const SGPropertyNode * arg, SGCommandState ** state)
|
2001-06-05 22:12:17 +00:00
|
|
|
|
{
|
|
|
|
|
string panel_path =
|
|
|
|
|
arg->getStringValue("path",
|
|
|
|
|
fgGetString("/sim/panel/path",
|
|
|
|
|
"Panels/Default/default.xml"));
|
|
|
|
|
FGPanel * new_panel = fgReadPanel(panel_path);
|
|
|
|
|
if (new_panel == 0) {
|
|
|
|
|
SG_LOG(SG_INPUT, SG_ALERT,
|
|
|
|
|
"Error reading new panel from " << panel_path);
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
SG_LOG(SG_INPUT, SG_INFO, "Loaded new panel from " << panel_path);
|
|
|
|
|
current_panel->unbind();
|
|
|
|
|
delete current_panel;
|
|
|
|
|
current_panel = new_panel;
|
|
|
|
|
current_panel->bind();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Built-in command: (re)load preferences.
|
|
|
|
|
*
|
|
|
|
|
* path (optional): the file name to load the panel from (relative
|
|
|
|
|
* to FG_ROOT). Defaults to "preferences.xml".
|
|
|
|
|
*/
|
|
|
|
|
static bool
|
2001-06-29 03:47:39 +00:00
|
|
|
|
do_preferences_load (const SGPropertyNode * arg, SGCommandState ** state)
|
2001-06-05 22:12:17 +00:00
|
|
|
|
{
|
|
|
|
|
const string &path = arg->getStringValue("path", "preferences.xml");
|
|
|
|
|
SGPath props_path(globals->get_fg_root());
|
|
|
|
|
props_path.append(path);
|
|
|
|
|
SG_LOG(SG_INPUT, SG_INFO, "Reading global preferences from "
|
|
|
|
|
<< props_path.str());
|
2001-07-19 04:51:05 +00:00
|
|
|
|
try {
|
|
|
|
|
readProperties(props_path.str(), globals->get_props());
|
2001-07-24 23:50:08 +00:00
|
|
|
|
} catch (const sg_exception &e) {
|
|
|
|
|
guiErrorMessage("Error reading global preferences: ", e);
|
2001-06-05 22:12:17 +00:00
|
|
|
|
return false;
|
|
|
|
|
}
|
2001-07-19 04:51:05 +00:00
|
|
|
|
SG_LOG(SG_INPUT, SG_INFO, "Successfully read global preferences.");
|
|
|
|
|
return true;
|
2001-06-05 22:12:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-06-01 17:52:17 +00:00
|
|
|
|
/**
|
|
|
|
|
* Built-in command: cycle view.
|
|
|
|
|
*/
|
|
|
|
|
static bool
|
2001-06-29 03:47:39 +00:00
|
|
|
|
do_view_cycle (const SGPropertyNode * arg, SGCommandState ** state)
|
2001-06-01 17:52:17 +00:00
|
|
|
|
{
|
|
|
|
|
globals->get_current_view()->set_view_offset(0.0);
|
|
|
|
|
globals->set_current_view(globals->get_viewmgr()->next_view());
|
|
|
|
|
// fgReshape(fgGetInt("/sim/startup/xsize"), fgGetInt("/sim/startup/ysize"));
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Built-in command: capture screen.
|
|
|
|
|
*/
|
|
|
|
|
static bool
|
2001-06-29 03:47:39 +00:00
|
|
|
|
do_screen_capture (const SGPropertyNode * arg, SGCommandState ** state)
|
2001-06-01 17:52:17 +00:00
|
|
|
|
{
|
|
|
|
|
fgDumpSnapShot();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-06-26 21:59:49 +00:00
|
|
|
|
/**
|
|
|
|
|
* Reload the tile cache.
|
|
|
|
|
*/
|
|
|
|
|
static bool
|
2001-06-29 03:47:39 +00:00
|
|
|
|
do_tile_cache_reload (const SGPropertyNode * arg, SGCommandState ** state)
|
2001-06-26 21:59:49 +00:00
|
|
|
|
{
|
|
|
|
|
bool freeze = globals->get_freeze();
|
|
|
|
|
SG_LOG(SG_INPUT, SG_INFO, "ReIniting TileCache");
|
|
|
|
|
if ( !freeze )
|
|
|
|
|
globals->set_freeze( true );
|
|
|
|
|
BusyCursor(0);
|
|
|
|
|
if ( global_tile_mgr.init() ) {
|
|
|
|
|
// Load the local scenery data
|
2001-07-02 22:27:24 +00:00
|
|
|
|
global_tile_mgr.update(fgGetDouble("/position/longitude-deg"),
|
|
|
|
|
fgGetDouble("/position/latitude-deg"));
|
2001-06-26 21:59:49 +00:00
|
|
|
|
} else {
|
|
|
|
|
SG_LOG( SG_GENERAL, SG_ALERT,
|
|
|
|
|
"Error in Tile Manager initialization!" );
|
|
|
|
|
exit(-1);
|
|
|
|
|
}
|
|
|
|
|
BusyCursor(1);
|
|
|
|
|
if ( !freeze )
|
|
|
|
|
globals->set_freeze( false );
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Update the lighting manually.
|
|
|
|
|
*/
|
|
|
|
|
static bool
|
2001-06-29 03:47:39 +00:00
|
|
|
|
do_lighting_update (const SGPropertyNode * arg, SGCommandState ** state)
|
2001-06-26 21:59:49 +00:00
|
|
|
|
{
|
|
|
|
|
fgUpdateSkyAndLightingParams();
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-06-01 17:52:17 +00:00
|
|
|
|
/**
|
|
|
|
|
* Built-in command: toggle a bool property value.
|
|
|
|
|
*
|
|
|
|
|
* property: The name of the property to toggle.
|
|
|
|
|
*/
|
|
|
|
|
static bool
|
2001-06-29 03:47:39 +00:00
|
|
|
|
do_property_toggle (const SGPropertyNode * arg, SGCommandState ** state)
|
2001-06-01 17:52:17 +00:00
|
|
|
|
{
|
2001-07-09 16:17:20 +00:00
|
|
|
|
if (*state == 0)
|
|
|
|
|
*state = new PropertyCommandState(arg);
|
|
|
|
|
SGPropertyNode * prop = ((PropertyCommandState *)(*state))->getProp();
|
|
|
|
|
return prop->setBoolValue(!prop->getBoolValue());
|
2001-06-01 17:52:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Built-in command: assign a value to a property.
|
|
|
|
|
*
|
|
|
|
|
* property: the name of the property to assign.
|
|
|
|
|
* value: the value to assign.
|
|
|
|
|
*/
|
|
|
|
|
static bool
|
2001-06-29 03:47:39 +00:00
|
|
|
|
do_property_assign (const SGPropertyNode * arg, SGCommandState ** state)
|
2001-06-01 17:52:17 +00:00
|
|
|
|
{
|
2001-07-09 16:17:20 +00:00
|
|
|
|
if (*state == 0)
|
|
|
|
|
*state = new PropertyCommandState(arg);
|
|
|
|
|
SGPropertyNode * prop = ((PropertyCommandState *)(*state))->getProp();
|
|
|
|
|
const SGPropertyNode * value =
|
|
|
|
|
((PropertyCommandState *)(*state))->getValue();
|
2001-06-01 17:52:17 +00:00
|
|
|
|
|
2001-07-09 16:17:20 +00:00
|
|
|
|
switch (prop->getType()) {
|
2001-06-12 05:17:33 +00:00
|
|
|
|
case SGPropertyNode::BOOL:
|
2001-07-09 16:17:20 +00:00
|
|
|
|
return prop->setBoolValue(value->getBoolValue());
|
2001-06-12 05:17:33 +00:00
|
|
|
|
case SGPropertyNode::INT:
|
2001-07-09 16:17:20 +00:00
|
|
|
|
return prop->setIntValue(value->getIntValue());
|
2001-06-12 05:17:33 +00:00
|
|
|
|
case SGPropertyNode::LONG:
|
2001-07-09 16:17:20 +00:00
|
|
|
|
return prop->setLongValue(value->getLongValue());
|
2001-06-12 05:17:33 +00:00
|
|
|
|
case SGPropertyNode::FLOAT:
|
2001-07-09 16:17:20 +00:00
|
|
|
|
return prop->setFloatValue(value->getFloatValue());
|
2001-06-12 05:17:33 +00:00
|
|
|
|
case SGPropertyNode::DOUBLE:
|
2001-07-09 16:17:20 +00:00
|
|
|
|
return prop->setDoubleValue(value->getDoubleValue());
|
2001-06-12 05:17:33 +00:00
|
|
|
|
case SGPropertyNode::STRING:
|
2001-07-09 16:17:20 +00:00
|
|
|
|
return prop->setStringValue(value->getStringValue());
|
2001-06-01 17:52:17 +00:00
|
|
|
|
default:
|
2001-07-09 16:17:20 +00:00
|
|
|
|
return prop->setUnspecifiedValue(value->getStringValue());
|
2001-06-01 17:52:17 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Built-in command: increment or decrement a property value.
|
|
|
|
|
*
|
|
|
|
|
* property: the name of the property to increment or decrement.
|
2001-07-27 22:00:35 +00:00
|
|
|
|
* step: the amount of the increment or decrement (default: 0).
|
|
|
|
|
* min: the minimum allowed value (default: no minimum).
|
|
|
|
|
* max: the maximum allowed value (default: no maximum).
|
|
|
|
|
* wrap: true if the value should be wrapped when it passes min or max;
|
|
|
|
|
* both min and max must be present for this to work (default:
|
|
|
|
|
* false).
|
2001-06-01 17:52:17 +00:00
|
|
|
|
*/
|
|
|
|
|
static bool
|
2001-06-29 03:47:39 +00:00
|
|
|
|
do_property_adjust (const SGPropertyNode * arg, SGCommandState ** state)
|
2001-06-01 17:52:17 +00:00
|
|
|
|
{
|
2001-07-09 16:17:20 +00:00
|
|
|
|
if (*state == 0)
|
|
|
|
|
*state = new PropertyCommandState(arg);
|
|
|
|
|
SGPropertyNode * prop = ((PropertyCommandState *)(*state))->getProp();
|
|
|
|
|
const SGPropertyNode * step = ((PropertyCommandState *)(*state))->getStep();
|
2001-07-27 22:00:35 +00:00
|
|
|
|
const SGPropertyNode * min = ((PropertyCommandState *)(*state))->getMin();
|
|
|
|
|
const SGPropertyNode * max = ((PropertyCommandState *)(*state))->getMax();
|
|
|
|
|
bool wrap = ((PropertyCommandState *)(*state))->getWrap()->getBoolValue();
|
2001-06-01 17:52:17 +00:00
|
|
|
|
|
2001-07-09 16:17:20 +00:00
|
|
|
|
switch (prop->getType()) {
|
2001-06-12 05:17:33 +00:00
|
|
|
|
case SGPropertyNode::BOOL:
|
2001-07-09 16:17:20 +00:00
|
|
|
|
if (step->getBoolValue())
|
|
|
|
|
return prop->setBoolValue(!prop->getBoolValue());
|
2001-06-01 17:52:17 +00:00
|
|
|
|
else
|
|
|
|
|
return true;
|
2001-07-27 22:00:35 +00:00
|
|
|
|
case SGPropertyNode::INT: {
|
|
|
|
|
int value = prop->getIntValue() + step->getIntValue();
|
|
|
|
|
if (min && (value < min->getIntValue())) {
|
|
|
|
|
if (wrap && max)
|
|
|
|
|
value = max->getIntValue();
|
|
|
|
|
else
|
|
|
|
|
value = min->getIntValue();
|
|
|
|
|
}
|
|
|
|
|
if (max && value > max->getIntValue()) {
|
|
|
|
|
if (wrap && min)
|
|
|
|
|
value = min->getIntValue();
|
|
|
|
|
else
|
|
|
|
|
value = max->getIntValue();
|
|
|
|
|
}
|
|
|
|
|
return prop->setIntValue(value);
|
|
|
|
|
}
|
|
|
|
|
case SGPropertyNode::LONG: {
|
|
|
|
|
long value = prop->getLongValue() + step->getLongValue();
|
|
|
|
|
if (min && (value < min->getLongValue())) {
|
|
|
|
|
if (wrap && max)
|
|
|
|
|
value = max->getLongValue();
|
|
|
|
|
else
|
|
|
|
|
value = min->getLongValue();
|
|
|
|
|
}
|
|
|
|
|
if (max && value > max->getLongValue()) {
|
|
|
|
|
if (wrap && min)
|
|
|
|
|
value = min->getLongValue();
|
|
|
|
|
else
|
|
|
|
|
value = max->getLongValue();
|
|
|
|
|
}
|
|
|
|
|
return prop->setLongValue(value);
|
|
|
|
|
}
|
|
|
|
|
case SGPropertyNode::FLOAT: {
|
|
|
|
|
float value = prop->getFloatValue() + step->getFloatValue();
|
|
|
|
|
if (min && (value < min->getFloatValue())) {
|
|
|
|
|
if (wrap && max)
|
|
|
|
|
value = max->getFloatValue();
|
|
|
|
|
else
|
|
|
|
|
value = min->getFloatValue();
|
|
|
|
|
}
|
|
|
|
|
if (max && value > max->getFloatValue()) {
|
|
|
|
|
if (wrap && min)
|
|
|
|
|
value = min->getFloatValue();
|
|
|
|
|
else
|
|
|
|
|
value = max->getFloatValue();
|
|
|
|
|
}
|
|
|
|
|
return prop->setFloatValue(value);
|
|
|
|
|
}
|
2001-06-12 05:17:33 +00:00
|
|
|
|
case SGPropertyNode::DOUBLE:
|
2001-06-29 03:47:39 +00:00
|
|
|
|
case SGPropertyNode::UNSPECIFIED:
|
2001-07-27 22:00:35 +00:00
|
|
|
|
case SGPropertyNode::NONE: {
|
|
|
|
|
double value = prop->getDoubleValue() + step->getDoubleValue();
|
|
|
|
|
if (min && (value < min->getDoubleValue())) {
|
|
|
|
|
if (wrap && max)
|
|
|
|
|
value = max->getDoubleValue();
|
|
|
|
|
else
|
|
|
|
|
value = min->getDoubleValue();
|
|
|
|
|
}
|
|
|
|
|
if (max && value > max->getDoubleValue()) {
|
|
|
|
|
if (wrap && min)
|
|
|
|
|
value = min->getDoubleValue();
|
|
|
|
|
else
|
|
|
|
|
value = max->getDoubleValue();
|
|
|
|
|
}
|
|
|
|
|
return prop->setDoubleValue(value);
|
|
|
|
|
}
|
|
|
|
|
case SGPropertyNode::STRING: // doesn't make sense with strings
|
|
|
|
|
SG_LOG(SG_INPUT, SG_ALERT, "Cannot adjust a string value");
|
|
|
|
|
return false;
|
|
|
|
|
default:
|
|
|
|
|
SG_LOG(SG_INPUT, SG_ALERT, "Unknown value type");
|
2001-06-01 17:52:17 +00:00
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-06-26 21:59:49 +00:00
|
|
|
|
/**
|
2001-06-29 03:47:39 +00:00
|
|
|
|
* Built-in command: multiply a property value.
|
|
|
|
|
*
|
|
|
|
|
* property: the name of the property to multiply.
|
|
|
|
|
* factor: the amount by which to multiply.
|
|
|
|
|
*/
|
|
|
|
|
static bool
|
|
|
|
|
do_property_multiply (const SGPropertyNode * arg, SGCommandState ** state)
|
|
|
|
|
{
|
2001-07-09 16:17:20 +00:00
|
|
|
|
if (*state == 0)
|
|
|
|
|
*state = new PropertyCommandState(arg);
|
|
|
|
|
SGPropertyNode * prop = ((PropertyCommandState *)(*state))->getProp();
|
|
|
|
|
const SGPropertyNode * factor =
|
|
|
|
|
((PropertyCommandState *)(*state))->getFactor();
|
2001-06-26 21:59:49 +00:00
|
|
|
|
|
2001-07-09 16:17:20 +00:00
|
|
|
|
switch (prop->getType()) {
|
2001-06-26 21:59:49 +00:00
|
|
|
|
case SGPropertyNode::BOOL:
|
2001-07-09 16:17:20 +00:00
|
|
|
|
return prop->setBoolValue(prop->getBoolValue() &&
|
|
|
|
|
factor->getBoolValue());
|
2001-06-26 21:59:49 +00:00
|
|
|
|
case SGPropertyNode::INT:
|
2001-07-09 16:17:20 +00:00
|
|
|
|
return prop->setIntValue(int(prop->getIntValue()
|
|
|
|
|
* factor->getDoubleValue()));
|
2001-06-26 21:59:49 +00:00
|
|
|
|
case SGPropertyNode::LONG:
|
2001-07-09 16:17:20 +00:00
|
|
|
|
return prop->setLongValue(long(prop->getLongValue()
|
|
|
|
|
* factor->getDoubleValue()));
|
2001-06-26 21:59:49 +00:00
|
|
|
|
case SGPropertyNode::FLOAT:
|
2001-07-09 16:17:20 +00:00
|
|
|
|
return prop->setFloatValue(float(prop->getFloatValue()
|
|
|
|
|
* factor->getDoubleValue()));
|
2001-06-26 21:59:49 +00:00
|
|
|
|
case SGPropertyNode::DOUBLE:
|
2001-06-29 03:47:39 +00:00
|
|
|
|
case SGPropertyNode::UNSPECIFIED:
|
2001-07-27 22:00:35 +00:00
|
|
|
|
case SGPropertyNode::NONE:
|
2001-07-09 16:17:20 +00:00
|
|
|
|
return prop->setDoubleValue(prop->getDoubleValue()
|
|
|
|
|
* factor->getDoubleValue());
|
2001-06-26 21:59:49 +00:00
|
|
|
|
default: // doesn't make sense with strings
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-06-01 17:52:17 +00:00
|
|
|
|
/**
|
|
|
|
|
* Built-in command: swap two property values.
|
|
|
|
|
*
|
|
|
|
|
* property[0]: the name of the first property.
|
|
|
|
|
* property[1]: the name of the second property.
|
|
|
|
|
*/
|
|
|
|
|
static bool
|
2001-06-29 03:47:39 +00:00
|
|
|
|
do_property_swap (const SGPropertyNode * arg, SGCommandState ** state)
|
2001-06-01 17:52:17 +00:00
|
|
|
|
{
|
2001-07-09 16:17:20 +00:00
|
|
|
|
if (*state == 0)
|
|
|
|
|
*state = new PropertyCommandState(arg);
|
|
|
|
|
SGPropertyNode * prop1 = ((PropertyCommandState *)(*state))->getProp();
|
|
|
|
|
SGPropertyNode * prop2 = ((PropertyCommandState *)(*state))->getProp2();
|
|
|
|
|
|
|
|
|
|
// FIXME: inefficient
|
|
|
|
|
const string & tmp = prop1->getStringValue();
|
|
|
|
|
return (prop1->setUnspecifiedValue(prop2->getStringValue()) &&
|
|
|
|
|
prop2->setUnspecifiedValue(tmp));
|
2001-06-01 17:52:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-06-04 21:38:44 +00:00
|
|
|
|
/**
|
|
|
|
|
* Set a property to an axis or other moving input.
|
|
|
|
|
*
|
|
|
|
|
* property: the name of the property to set.
|
|
|
|
|
* setting: the current input setting, usually between -1.0 and 1.0.
|
|
|
|
|
* offset: the offset to shift by, before applying the factor.
|
|
|
|
|
* factor: the factor to multiply by (use negative to reverse).
|
|
|
|
|
*/
|
|
|
|
|
static bool
|
2001-06-29 03:47:39 +00:00
|
|
|
|
do_property_scale (const SGPropertyNode * arg, SGCommandState ** state)
|
2001-06-04 21:38:44 +00:00
|
|
|
|
{
|
2001-07-09 16:17:20 +00:00
|
|
|
|
if (*state == 0)
|
|
|
|
|
*state = new PropertyCommandState(arg);
|
|
|
|
|
SGPropertyNode * prop = ((PropertyCommandState *)(*state))->getProp();
|
|
|
|
|
double setting =
|
|
|
|
|
((PropertyCommandState *)(*state))->getSetting()->getDoubleValue();
|
|
|
|
|
double offset =
|
|
|
|
|
((PropertyCommandState *)(*state))->getOffset()->getDoubleValue();
|
|
|
|
|
double factor =
|
|
|
|
|
((PropertyCommandState *)(*state))->getFactor()->getDoubleValue();
|
|
|
|
|
|
|
|
|
|
return prop->setDoubleValue((setting + offset) * factor);
|
2001-06-04 21:38:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-06-01 17:52:17 +00:00
|
|
|
|
|
2001-07-09 16:17:20 +00:00
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
// Command setup.
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
2001-06-01 17:52:17 +00:00
|
|
|
|
/**
|
|
|
|
|
* Table of built-in commands.
|
|
|
|
|
*
|
|
|
|
|
* New commands do not have to be added here; any module in the application
|
|
|
|
|
* can add a new command using globals->get_commands()->addCommand(...).
|
|
|
|
|
*/
|
|
|
|
|
static struct {
|
|
|
|
|
const char * name;
|
|
|
|
|
SGCommandMgr::command_t command;
|
|
|
|
|
} built_ins [] = {
|
2001-06-14 22:18:01 +00:00
|
|
|
|
{ "null", do_null },
|
|
|
|
|
{ "exit", do_exit },
|
|
|
|
|
{ "load", do_load },
|
|
|
|
|
{ "save", do_save },
|
|
|
|
|
{ "panel-load", do_panel_load },
|
|
|
|
|
{ "preferences-load", do_preferences_load },
|
|
|
|
|
{ "view-cycle", do_view_cycle },
|
|
|
|
|
{ "screen-capture", do_screen_capture },
|
2001-06-26 21:59:49 +00:00
|
|
|
|
{ "tile-cache-reload", do_tile_cache_reload },
|
|
|
|
|
{ "lighting-update", do_lighting_update },
|
2001-06-14 22:18:01 +00:00
|
|
|
|
{ "property-toggle", do_property_toggle },
|
|
|
|
|
{ "property-assign", do_property_assign },
|
|
|
|
|
{ "property-adjust", do_property_adjust },
|
2001-06-26 21:59:49 +00:00
|
|
|
|
{ "property-multiply", do_property_multiply },
|
2001-06-14 22:18:01 +00:00
|
|
|
|
{ "property-swap", do_property_swap },
|
|
|
|
|
{ "property-scale", do_property_scale },
|
|
|
|
|
{ 0, 0 } // zero-terminated
|
2001-06-01 17:52:17 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Initialize the default built-in commands.
|
|
|
|
|
*
|
|
|
|
|
* Other commands may be added by other parts of the application.
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
fgInitCommands ()
|
|
|
|
|
{
|
|
|
|
|
SG_LOG(SG_GENERAL, SG_INFO, "Initializing basic built-in commands:");
|
|
|
|
|
for (int i = 0; built_ins[i].name != 0; i++) {
|
|
|
|
|
SG_LOG(SG_GENERAL, SG_INFO, " " << built_ins[i].name);
|
|
|
|
|
globals->get_commands()->addCommand(built_ins[i].name,
|
|
|
|
|
built_ins[i].command);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// end of fg_commands.hxx
|