2001-06-01 17:52:17 +00:00
|
|
|
|
// fg_commands.cxx - internal FGFS commands.
|
|
|
|
|
|
2002-03-20 22:15:22 +00:00
|
|
|
|
#include <string.h> // strcmp()
|
|
|
|
|
|
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>
|
2002-11-07 16:27:47 +00:00
|
|
|
|
#include <GUI/new_gui.hxx>
|
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
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
2002-10-25 22:19:51 +00:00
|
|
|
|
// Static helper functions.
|
2001-07-09 16:17:20 +00:00
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
2002-10-25 22:19:51 +00:00
|
|
|
|
* Template function to wrap a value.
|
2001-07-09 16:17:20 +00:00
|
|
|
|
*/
|
2002-10-25 22:19:51 +00:00
|
|
|
|
template <class T>
|
|
|
|
|
static inline void
|
|
|
|
|
do_wrap (T * value, T min, T max)
|
2001-07-09 16:17:20 +00:00
|
|
|
|
{
|
2002-10-25 22:19:51 +00:00
|
|
|
|
if (min >= max) { // basic sanity check
|
|
|
|
|
*value = min;
|
|
|
|
|
} else {
|
|
|
|
|
T range = max - min;
|
|
|
|
|
while (*value < min)
|
|
|
|
|
*value += range;
|
|
|
|
|
while (*value > max)
|
|
|
|
|
*value -= range;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static inline SGPropertyNode *
|
|
|
|
|
get_prop (const SGPropertyNode * arg)
|
2001-07-09 16:17:20 +00:00
|
|
|
|
{
|
2002-10-25 22:19:51 +00:00
|
|
|
|
return fgGetNode(arg->getStringValue("property[0]", "/null"), true);
|
2001-07-09 16:17:20 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-10-25 22:19:51 +00:00
|
|
|
|
static inline SGPropertyNode *
|
|
|
|
|
get_prop2 (const SGPropertyNode * arg)
|
|
|
|
|
{
|
|
|
|
|
return fgGetNode(arg->getStringValue("property[1]", "/null"), true);
|
|
|
|
|
}
|
2001-07-09 16:17:20 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
// Command implementations.
|
|
|
|
|
////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
2001-06-04 21:38:44 +00:00
|
|
|
|
/**
|
|
|
|
|
* Built-in command: do nothing.
|
|
|
|
|
*/
|
|
|
|
|
static bool
|
2002-10-26 01:19:23 +00:00
|
|
|
|
do_null (const SGPropertyNode * arg)
|
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
|
2002-10-26 01:19:23 +00:00
|
|
|
|
do_exit (const SGPropertyNode * arg)
|
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
|
2002-10-26 01:19:23 +00:00
|
|
|
|
do_load (const SGPropertyNode * arg)
|
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
|
2002-10-26 01:19:23 +00:00
|
|
|
|
do_save (const SGPropertyNode * arg)
|
2001-06-05 22:12:17 +00:00
|
|
|
|
{
|
|
|
|
|
const string &file = arg->getStringValue("file", "fgfs.sav");
|
2002-03-03 22:48:40 +00:00
|
|
|
|
bool write_all = arg->getBoolValue("write-all", false);
|
2001-06-05 22:12:17 +00:00
|
|
|
|
SG_LOG(SG_INPUT, SG_INFO, "Saving flight");
|
|
|
|
|
ofstream output(file.c_str());
|
2002-03-03 22:48:40 +00:00
|
|
|
|
if (output.good() && fgSaveFlight(output, write_all)) {
|
2001-06-05 22:12:17 +00:00
|
|
|
|
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
|
2002-10-26 01:19:23 +00:00
|
|
|
|
do_panel_load (const SGPropertyNode * arg)
|
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;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-03-23 23:16:13 +00:00
|
|
|
|
/**
|
|
|
|
|
* Built-in command: pass a mouse click to the panel.
|
|
|
|
|
*
|
|
|
|
|
* button: the mouse button number, zero-based.
|
|
|
|
|
* is-down: true if the button is down, false if it is up.
|
|
|
|
|
* x-pos: the x position of the mouse click.
|
|
|
|
|
* y-pos: the y position of the mouse click.
|
|
|
|
|
*/
|
|
|
|
|
static bool
|
2002-10-26 01:19:23 +00:00
|
|
|
|
do_panel_mouse_click (const SGPropertyNode * arg)
|
2002-03-23 23:16:13 +00:00
|
|
|
|
{
|
|
|
|
|
if (current_panel != 0)
|
|
|
|
|
return current_panel
|
|
|
|
|
->doMouseAction(arg->getIntValue("button"),
|
|
|
|
|
arg->getBoolValue("is-down") ? PU_DOWN : PU_UP,
|
|
|
|
|
arg->getIntValue("x-pos"),
|
|
|
|
|
arg->getIntValue("y-pos"));
|
|
|
|
|
else
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2001-06-05 22:12:17 +00:00
|
|
|
|
/**
|
|
|
|
|
* 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
|
2002-10-26 01:19:23 +00:00
|
|
|
|
do_preferences_load (const SGPropertyNode * arg)
|
2001-06-05 22:12:17 +00:00
|
|
|
|
{
|
2001-07-19 04:51:05 +00:00
|
|
|
|
try {
|
2002-11-06 18:57:31 +00:00
|
|
|
|
fgLoadProps(arg->getStringValue("path", "preferences.xml"),
|
|
|
|
|
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
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2002-08-25 20:56:16 +00:00
|
|
|
|
static void
|
|
|
|
|
fix_hud_visibility()
|
|
|
|
|
{
|
|
|
|
|
if ( !strcmp(fgGetString("/sim/flight-model"), "ada") ) {
|
|
|
|
|
globals->get_props()->setBoolValue( "/sim/hud/visibility", true );
|
|
|
|
|
if ( globals->get_viewmgr()->get_current() == 1 ) {
|
|
|
|
|
globals->get_props()->setBoolValue( "/sim/hud/visibility", false );
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
do_view_next( bool )
|
|
|
|
|
{
|
|
|
|
|
globals->get_current_view()->setHeadingOffset_deg(0.0);
|
|
|
|
|
globals->get_viewmgr()->next_view();
|
|
|
|
|
fix_hud_visibility();
|
|
|
|
|
global_tile_mgr.refresh_view_timestamps();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
do_view_prev( bool )
|
|
|
|
|
{
|
|
|
|
|
globals->get_current_view()->setHeadingOffset_deg(0.0);
|
|
|
|
|
globals->get_viewmgr()->prev_view();
|
|
|
|
|
fix_hud_visibility();
|
|
|
|
|
global_tile_mgr.refresh_view_timestamps();
|
|
|
|
|
}
|
|
|
|
|
|
2001-06-01 17:52:17 +00:00
|
|
|
|
/**
|
|
|
|
|
* Built-in command: cycle view.
|
|
|
|
|
*/
|
|
|
|
|
static bool
|
2002-10-26 01:19:23 +00:00
|
|
|
|
do_view_cycle (const SGPropertyNode * arg)
|
2001-06-01 17:52:17 +00:00
|
|
|
|
{
|
Major viewer-code overhaul from Jim Wilson:
Description:
This update includes the new viewer interface as proposed by David M. and
a first pass at cleaning up the viewer/view manager code by Jim W.
Note that I have dropped Main/viewer_lookat.?xx and Main/viewer_rph.?xx and
modified the Makefile.am accordingly.
Detail of work:
Overall:
The code reads a little easier. There are still some unnecessary bits in
there and I'd like to supplement the comments in the viewer.hxx with a tiny
bit on each interface group and what the groupings mean (similar but briefer
than what you emailed me the other day). I tried not to mess up the style,
but there is an occasional inconsistency. In general I wouldn't call it done
(especially since there's no tower yet! :)), but I'd like to get this out
there so others can comment, and test.
In Viewer:
The interface as you suggested has been implemented. Basically everything
seems to work as it did visually. There is no difference that I can see in
performance, although some things might be a tiny bit faster.
I've merged the lookat and rph (pilot view) code into the recalc for the
viewer. There is still some redundancy between the two, but a lot has been
removed. In some cases I've taken some code that we'd likely want to inline
anyway and left it in there in duplicate. You'll see that the code for both
looks a little cleaner. I need to take a closer look at the rotations in
particular. I've cleaned up a little there, but I suspect more can be done
to streamline this.
The external declaration to the Quat_mat in mouse.cxx has been removed. IMHO
the quat doesn't serve any intrinsic purpose in mouse.cxx, but I'm not about
to rip it out. It would seem that there more conventional ways to get
spherical data that are just as fast. In any case all the viewer was pulling
from the quat matrix was the pitch value so I modified mouse.cxx to output to
our pitchOffset input and that works fine.
I've changed the native values to degrees from radians where appropriate.
This required a conversion from degrees to radians in a couple modules that
access the interface. Perhaps we should add interface calls that do the
conversion, e.g. a getHeadingOffset_rad() to go along with the
getHeadingOffset_deg().
On the view_offset (now headingOffset) thing there are two entry points
because of the ability to instantly switch views or to scroll to a new view
angle (by hitting the numeric keys for example). This leaves an anomaly in
the interface which should be resolved by adding "goal" settings to the
interface, e.g. a setGoalHeadingOffset_deg(), setGoalPitchOffset_deg(), etc.
Other than these two issues, the next step here will be to look at some
further optimizations, and to write support code for a tower view. That
should be fairly simple at this point. I was considering creating a
"simulated tower view" or "pedestrian view" that defaulted to a position off
to the right of whereever the plane is at the moment you switch to the tower
view. This could be a fall back when we don't have an actual tower location
at hand (as would be the case with rural airports).
ViewManager:
Basically all I did here was neaten things up by ripping out excess crap and
made it compatible as is with the new interface.
The result is that viewmanager is now ready to be developed. The two
preexisting views are still hardcoded into the view manager. The next step
would be to design configuration xml (eg /sim/view[x]/config/blahblah) that
could be used to set up as many views as we want. If we want to take the easy
way out, we might want to insist that view[0] be a pilot-view and have
viewmanager check for that.
2002-03-20 17:43:28 +00:00
|
|
|
|
globals->get_current_view()->setHeadingOffset_deg(0.0);
|
2002-03-14 00:29:20 +00:00
|
|
|
|
globals->get_viewmgr()->next_view();
|
2002-08-25 20:56:16 +00:00
|
|
|
|
fix_hud_visibility();
|
2002-05-20 16:13:37 +00:00
|
|
|
|
global_tile_mgr.refresh_view_timestamps();
|
2001-06-01 17:52:17 +00:00
|
|
|
|
// fgReshape(fgGetInt("/sim/startup/xsize"), fgGetInt("/sim/startup/ysize"));
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Built-in command: capture screen.
|
|
|
|
|
*/
|
|
|
|
|
static bool
|
2002-10-26 01:19:23 +00:00
|
|
|
|
do_screen_capture (const SGPropertyNode * arg)
|
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
|
2002-10-26 01:19:23 +00:00
|
|
|
|
do_tile_cache_reload (const SGPropertyNode * arg)
|
2001-06-26 21:59:49 +00:00
|
|
|
|
{
|
2002-01-20 03:52:36 +00:00
|
|
|
|
static const SGPropertyNode *master_freeze
|
|
|
|
|
= fgGetNode("/sim/freeze/master");
|
|
|
|
|
bool freeze = master_freeze->getBoolValue();
|
|
|
|
|
SG_LOG(SG_INPUT, SG_INFO, "ReIniting TileCache");
|
|
|
|
|
if ( !freeze ) {
|
|
|
|
|
fgSetBool("/sim/freeze/master", true);
|
|
|
|
|
}
|
|
|
|
|
// BusyCursor(0);
|
|
|
|
|
if ( global_tile_mgr.init() ) {
|
|
|
|
|
// Load the local scenery data
|
2002-04-07 15:24:32 +00:00
|
|
|
|
double visibility_meters = fgGetDouble("/environment/visibility-m");
|
2002-11-30 03:05:34 +00:00
|
|
|
|
global_tile_mgr.update( visibility_meters );
|
2002-01-20 03:52:36 +00:00
|
|
|
|
} else {
|
|
|
|
|
SG_LOG( SG_GENERAL, SG_ALERT,
|
|
|
|
|
"Error in Tile Manager initialization!" );
|
|
|
|
|
exit(-1);
|
|
|
|
|
}
|
|
|
|
|
// BusyCursor(1);
|
|
|
|
|
if ( !freeze ) {
|
|
|
|
|
fgSetBool("/sim/freeze/master", false);
|
|
|
|
|
}
|
|
|
|
|
return true;
|
2001-06-26 21:59:49 +00:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Update the lighting manually.
|
|
|
|
|
*/
|
|
|
|
|
static bool
|
2002-10-26 01:19:23 +00:00
|
|
|
|
do_lighting_update (const SGPropertyNode * arg)
|
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
|
2002-10-26 01:19:23 +00:00
|
|
|
|
do_property_toggle (const SGPropertyNode * arg)
|
2001-06-01 17:52:17 +00:00
|
|
|
|
{
|
2002-10-25 22:19:51 +00:00
|
|
|
|
SGPropertyNode * prop = get_prop(arg);
|
2001-07-09 16:17:20 +00:00
|
|
|
|
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
|
2002-10-26 01:19:23 +00:00
|
|
|
|
do_property_assign (const SGPropertyNode * arg)
|
2001-06-01 17:52:17 +00:00
|
|
|
|
{
|
2002-10-25 22:19:51 +00:00
|
|
|
|
SGPropertyNode * prop = get_prop(arg);
|
|
|
|
|
const SGPropertyNode * value = arg->getNode("value");
|
2001-06-01 17:52:17 +00:00
|
|
|
|
|
2001-07-09 16:17:20 +00:00
|
|
|
|
switch (prop->getType()) {
|
2002-10-25 22:19:51 +00:00
|
|
|
|
|
2001-06-12 05:17:33 +00:00
|
|
|
|
case SGPropertyNode::BOOL:
|
2001-07-09 16:17:20 +00:00
|
|
|
|
return prop->setBoolValue(value->getBoolValue());
|
2002-10-25 22:19:51 +00:00
|
|
|
|
|
2001-06-12 05:17:33 +00:00
|
|
|
|
case SGPropertyNode::INT:
|
2001-07-09 16:17:20 +00:00
|
|
|
|
return prop->setIntValue(value->getIntValue());
|
2002-10-25 22:19:51 +00:00
|
|
|
|
|
2001-06-12 05:17:33 +00:00
|
|
|
|
case SGPropertyNode::LONG:
|
2001-07-09 16:17:20 +00:00
|
|
|
|
return prop->setLongValue(value->getLongValue());
|
2002-10-25 22:19:51 +00:00
|
|
|
|
|
2001-06-12 05:17:33 +00:00
|
|
|
|
case SGPropertyNode::FLOAT:
|
2001-07-09 16:17:20 +00:00
|
|
|
|
return prop->setFloatValue(value->getFloatValue());
|
2002-10-25 22:19:51 +00:00
|
|
|
|
|
2001-06-12 05:17:33 +00:00
|
|
|
|
case SGPropertyNode::DOUBLE:
|
2001-07-09 16:17:20 +00:00
|
|
|
|
return prop->setDoubleValue(value->getDoubleValue());
|
2002-10-25 22:19:51 +00:00
|
|
|
|
|
2001-06-12 05:17:33 +00:00
|
|
|
|
case SGPropertyNode::STRING:
|
2001-07-09 16:17:20 +00:00
|
|
|
|
return prop->setStringValue(value->getStringValue());
|
2002-10-25 22:19:51 +00:00
|
|
|
|
|
2001-06-01 17:52:17 +00:00
|
|
|
|
default:
|
2001-07-09 16:17:20 +00:00
|
|
|
|
return prop->setUnspecifiedValue(value->getStringValue());
|
2002-10-25 22:19:51 +00:00
|
|
|
|
|
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).
|
2002-03-26 13:45:44 +00:00
|
|
|
|
* offset: a normalized amount to offset by (if step is not present).
|
|
|
|
|
* factor: the amount by which to multiply the offset (if step is not present).
|
2001-07-27 22:00:35 +00:00
|
|
|
|
* 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
|
2002-10-26 01:19:23 +00:00
|
|
|
|
do_property_adjust (const SGPropertyNode * arg)
|
2001-06-01 17:52:17 +00:00
|
|
|
|
{
|
2002-10-25 22:19:51 +00:00
|
|
|
|
SGPropertyNode * prop = get_prop(arg);
|
|
|
|
|
const SGPropertyNode * step = arg->getChild("step");
|
|
|
|
|
const SGPropertyNode * offset = arg->getChild("offset");
|
|
|
|
|
const SGPropertyNode * factor = arg->getChild("factor");
|
|
|
|
|
const SGPropertyNode * min = arg->getChild("min");
|
|
|
|
|
const SGPropertyNode * max = arg->getChild("max");
|
|
|
|
|
bool wrap = arg->getBoolValue("wrap");
|
|
|
|
|
|
|
|
|
|
if (min == 0 || max == 0)
|
|
|
|
|
wrap = false;
|
2001-06-01 17:52:17 +00:00
|
|
|
|
|
2002-03-26 13:45:44 +00:00
|
|
|
|
double amount = 0;
|
2002-10-25 22:19:51 +00:00
|
|
|
|
if (step == 0)
|
2002-03-26 13:45:44 +00:00
|
|
|
|
amount = offset->getDoubleValue() * factor->getDoubleValue();
|
|
|
|
|
|
2001-07-09 16:17:20 +00:00
|
|
|
|
switch (prop->getType()) {
|
2002-10-25 22:19:51 +00:00
|
|
|
|
|
|
|
|
|
case SGPropertyNode::BOOL: {
|
2002-03-26 13:45:44 +00:00
|
|
|
|
bool value;
|
2002-10-25 22:19:51 +00:00
|
|
|
|
if (step != 0)
|
2002-03-26 13:45:44 +00:00
|
|
|
|
value = step->getBoolValue();
|
|
|
|
|
else
|
2002-05-10 23:35:06 +00:00
|
|
|
|
value = (0.0 != amount);
|
2002-03-26 13:45:44 +00:00
|
|
|
|
if (value)
|
2001-07-09 16:17:20 +00:00
|
|
|
|
return prop->setBoolValue(!prop->getBoolValue());
|
2001-06-01 17:52:17 +00:00
|
|
|
|
else
|
|
|
|
|
return true;
|
2002-10-25 22:19:51 +00:00
|
|
|
|
}
|
|
|
|
|
|
2001-07-27 22:00:35 +00:00
|
|
|
|
case SGPropertyNode::INT: {
|
2002-03-26 13:45:44 +00:00
|
|
|
|
int value;
|
2002-10-25 22:19:51 +00:00
|
|
|
|
if (step != 0)
|
2002-03-26 13:45:44 +00:00
|
|
|
|
value = prop->getIntValue() + step->getIntValue();
|
|
|
|
|
else
|
|
|
|
|
value = prop->getIntValue() + int(amount);
|
2002-10-25 22:19:51 +00:00
|
|
|
|
if (wrap) {
|
|
|
|
|
do_wrap(&value, min->getIntValue(), max->getIntValue());
|
|
|
|
|
} else {
|
|
|
|
|
if (min != 0 && value < min->getIntValue())
|
|
|
|
|
value = min->getIntValue();
|
|
|
|
|
if (max != 0 && value > max->getIntValue())
|
|
|
|
|
value = max->getIntValue();
|
2001-07-27 22:00:35 +00:00
|
|
|
|
}
|
|
|
|
|
return prop->setIntValue(value);
|
|
|
|
|
}
|
2002-10-25 22:19:51 +00:00
|
|
|
|
|
2001-07-27 22:00:35 +00:00
|
|
|
|
case SGPropertyNode::LONG: {
|
2002-03-26 13:45:44 +00:00
|
|
|
|
long value;
|
2002-10-25 22:19:51 +00:00
|
|
|
|
if (step != 0)
|
2002-03-26 13:45:44 +00:00
|
|
|
|
value = prop->getLongValue() + step->getLongValue();
|
|
|
|
|
else
|
|
|
|
|
value = prop->getLongValue() + long(amount);
|
2002-10-25 22:19:51 +00:00
|
|
|
|
if (wrap) {
|
|
|
|
|
do_wrap(&value, min->getLongValue(), max->getLongValue());
|
|
|
|
|
} else {
|
|
|
|
|
if (min != 0 && value < min->getLongValue())
|
|
|
|
|
value = min->getLongValue();
|
|
|
|
|
if (max != 0 && value > max->getLongValue())
|
|
|
|
|
value = max->getLongValue();
|
2001-07-27 22:00:35 +00:00
|
|
|
|
}
|
|
|
|
|
return prop->setLongValue(value);
|
|
|
|
|
}
|
2002-10-25 22:19:51 +00:00
|
|
|
|
|
2001-07-27 22:00:35 +00:00
|
|
|
|
case SGPropertyNode::FLOAT: {
|
2002-03-26 13:45:44 +00:00
|
|
|
|
float value;
|
2002-10-25 22:19:51 +00:00
|
|
|
|
if (step != 0)
|
2002-03-26 13:45:44 +00:00
|
|
|
|
value = prop->getFloatValue() + step->getFloatValue();
|
|
|
|
|
else
|
|
|
|
|
value = prop->getFloatValue() + float(amount);
|
2002-10-25 22:19:51 +00:00
|
|
|
|
if (wrap) {
|
|
|
|
|
do_wrap(&value, min->getFloatValue(), max->getFloatValue());
|
|
|
|
|
} else {
|
|
|
|
|
if (min != 0 && value < min->getFloatValue())
|
|
|
|
|
value = min->getFloatValue();
|
|
|
|
|
if (max != 0 && value > max->getFloatValue())
|
|
|
|
|
value = max->getFloatValue();
|
2001-07-27 22:00:35 +00:00
|
|
|
|
}
|
|
|
|
|
return prop->setFloatValue(value);
|
|
|
|
|
}
|
2002-10-25 22:19:51 +00:00
|
|
|
|
|
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: {
|
2002-03-26 13:45:44 +00:00
|
|
|
|
double value;
|
2002-10-25 22:19:51 +00:00
|
|
|
|
if (step != 0)
|
2002-03-26 13:45:44 +00:00
|
|
|
|
value = prop->getDoubleValue() + step->getDoubleValue();
|
|
|
|
|
else
|
|
|
|
|
value = prop->getDoubleValue() + amount;
|
2002-10-25 22:19:51 +00:00
|
|
|
|
if (wrap) {
|
|
|
|
|
do_wrap(&value, min->getDoubleValue(), max->getDoubleValue());
|
|
|
|
|
} else {
|
|
|
|
|
if (min != 0 && value < min->getDoubleValue())
|
|
|
|
|
value = min->getDoubleValue();
|
|
|
|
|
if (max != 0 && value > max->getDoubleValue())
|
|
|
|
|
value = max->getDoubleValue();
|
2001-07-27 22:00:35 +00:00
|
|
|
|
}
|
|
|
|
|
return prop->setDoubleValue(value);
|
|
|
|
|
}
|
2002-10-25 22:19:51 +00:00
|
|
|
|
|
2001-07-27 22:00:35 +00:00
|
|
|
|
case SGPropertyNode::STRING: // doesn't make sense with strings
|
|
|
|
|
SG_LOG(SG_INPUT, SG_ALERT, "Cannot adjust a string value");
|
|
|
|
|
return false;
|
2002-10-25 22:19:51 +00:00
|
|
|
|
|
2001-07-27 22:00:35 +00:00
|
|
|
|
default:
|
|
|
|
|
SG_LOG(SG_INPUT, SG_ALERT, "Unknown value type");
|
2001-06-01 17:52:17 +00:00
|
|
|
|
return false;
|
2002-10-25 22:19:51 +00:00
|
|
|
|
|
2001-06-01 17:52:17 +00:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
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
|
2002-10-26 01:19:23 +00:00
|
|
|
|
do_property_multiply (const SGPropertyNode * arg)
|
2001-06-29 03:47:39 +00:00
|
|
|
|
{
|
2002-10-25 22:19:51 +00:00
|
|
|
|
SGPropertyNode * prop = get_prop(arg);
|
|
|
|
|
const SGPropertyNode * factor = arg->getChild("factor");
|
|
|
|
|
|
|
|
|
|
if (factor == 0)
|
|
|
|
|
return true;
|
2001-06-26 21:59:49 +00:00
|
|
|
|
|
2001-07-09 16:17:20 +00:00
|
|
|
|
switch (prop->getType()) {
|
2002-10-25 22:19:51 +00:00
|
|
|
|
|
2001-06-26 21:59:49 +00:00
|
|
|
|
case SGPropertyNode::BOOL:
|
2002-10-25 22:19:51 +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()
|
2002-10-25 22:19:51 +00:00
|
|
|
|
* 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()));
|
2002-10-25 22:19:51 +00:00
|
|
|
|
|
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()));
|
2002-10-25 22:19:51 +00:00
|
|
|
|
|
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());
|
2002-10-25 22:19:51 +00:00
|
|
|
|
|
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
|
2002-10-26 01:19:23 +00:00
|
|
|
|
do_property_swap (const SGPropertyNode * arg)
|
2001-06-01 17:52:17 +00:00
|
|
|
|
{
|
2002-10-25 22:19:51 +00:00
|
|
|
|
SGPropertyNode * prop1 = get_prop(arg);
|
|
|
|
|
SGPropertyNode * prop2 = get_prop2(arg);
|
2001-07-09 16:17:20 +00:00
|
|
|
|
|
|
|
|
|
// FIXME: inefficient
|
|
|
|
|
const string & tmp = prop1->getStringValue();
|
|
|
|
|
return (prop1->setUnspecifiedValue(prop2->getStringValue()) &&
|
2002-03-19 17:12:13 +00:00
|
|
|
|
prop2->setUnspecifiedValue(tmp.c_str()));
|
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
|
2002-10-26 01:19:23 +00:00
|
|
|
|
do_property_scale (const SGPropertyNode * arg)
|
2001-06-04 21:38:44 +00:00
|
|
|
|
{
|
2002-10-25 22:19:51 +00:00
|
|
|
|
SGPropertyNode * prop = get_prop(arg);
|
|
|
|
|
double setting = arg->getDoubleValue("setting");
|
|
|
|
|
double offset = arg->getDoubleValue("offset", 0.0);
|
|
|
|
|
double factor = arg->getDoubleValue("factor", 1.0);
|
|
|
|
|
bool squared = arg->getBoolValue("squared", false);
|
2001-07-09 16:17:20 +00:00
|
|
|
|
|
2002-02-19 23:54:47 +00:00
|
|
|
|
if (squared)
|
2002-03-02 19:40:26 +00:00
|
|
|
|
setting = (setting < 0 ? -1 : 1) * setting * setting;
|
2002-02-19 23:54:47 +00:00
|
|
|
|
|
2002-10-25 22:19:51 +00:00
|
|
|
|
return prop->setDoubleValue((setting + offset) * factor);
|
2001-06-04 21:38:44 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-11-07 16:27:47 +00:00
|
|
|
|
static bool
|
|
|
|
|
do_gui (const SGPropertyNode * arg)
|
|
|
|
|
{
|
|
|
|
|
NewGUI * gui = (NewGUI *)globals->get_subsystem_mgr()->get_group(FGSubsystemMgr::INIT)->get_subsystem("gui");
|
|
|
|
|
gui->display(arg->getStringValue("name"));
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
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 },
|
2002-03-23 23:16:13 +00:00
|
|
|
|
{ "panel-mouse-click", do_panel_mouse_click },
|
2001-06-14 22:18:01 +00:00
|
|
|
|
{ "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 },
|
2002-11-07 16:27:47 +00:00
|
|
|
|
{ "gui", do_gui },
|
2001-06-14 22:18:01 +00:00
|
|
|
|
{ 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);
|
|
|
|
|
}
|
2002-08-25 20:56:16 +00:00
|
|
|
|
|
|
|
|
|
typedef bool (*dummy)();
|
|
|
|
|
fgTie( "/command/view/next", dummy(0), do_view_next );
|
|
|
|
|
fgTie( "/command/view/prev", dummy(0), do_view_prev );
|
2001-06-01 17:52:17 +00:00
|
|
|
|
}
|
|
|
|
|
|
2002-05-20 16:13:37 +00:00
|
|
|
|
// end of fg_commands.cxx
|