]> git.mxchange.org Git - flightgear.git/blobdiff - src/Main/fg_commands.cxx
Moved random ground cover object management code (userdata.[ch]xx) over
[flightgear.git] / src / Main / fg_commands.cxx
index 0679b4b0d5d9c34b74d48c6df4046ccf201bba34..6e14ee67428f99c192452f8775786930cefd5881 100644 (file)
@@ -8,16 +8,22 @@
 #include STL_STRING
 #include STL_FSTREAM
 
+#include <simgear/sg_inlines.h>
 #include <simgear/debug/logstream.hxx>
+#include <simgear/math/sg_random.h>
 #include <simgear/misc/commands.hxx>
-#include <simgear/misc/props.hxx>
+#include <simgear/props/props.hxx>
 
 #include <Cockpit/panel.hxx>
 #include <Cockpit/panel_io.hxx>
 #include <FDM/flight.hxx>
 #include <GUI/gui.h>
 #include <GUI/new_gui.hxx>
+#include <GUI/dialog.hxx>
 #include <Scenery/tilemgr.hxx>
+#if defined(HAVE_PLIB_PSL)
+#  include <Scripting/scriptmgr.hxx>
+#endif
 #include <Time/tmp.hxx>
 
 #include "fg_init.hxx"
@@ -30,6 +36,7 @@ SG_USING_STD(ofstream);
 #include "fg_props.hxx"
 #include "fg_io.hxx"
 #include "globals.hxx"
+#include "util.hxx"
 #include "viewmgr.hxx"
 
 
@@ -39,22 +46,6 @@ SG_USING_STD(ofstream);
 ////////////////////////////////////////////////////////////////////////
 
 
-/**
- * Template function to wrap a value.
- */
-template <class T>
-static inline void
-do_wrap (T * value, T min, T max)
-{
-    if (min >= max) {           // basic sanity check
-        *value = min;
-    } else if (*value > max) {
-        *value = min;
-    } else if (*value < min) {
-        *value = max;
-    }
-}
-
 static inline SGPropertyNode *
 get_prop (const SGPropertyNode * arg)
 {
@@ -105,12 +96,21 @@ limit_value (double * value, const SGPropertyNode * arg)
     if (min_node == 0 || max_node == 0)
         wrap = false;
   
-    if (wrap) {                 // wrap
-        if (*value < min_node->getDoubleValue())
-            *value = max_node->getDoubleValue();
-        else if (*value > max_node->getDoubleValue())
-            *value = min_node->getDoubleValue();
-    } else {                    // clamp
+    if (wrap) {                 // wrap such that min <= x < max
+        double min_val = min_node->getDoubleValue();
+        double max_val = max_node->getDoubleValue();
+        double resolution = arg->getDoubleValue("resolution");
+        if (resolution > 0.0) {
+            // snap to (min + N*resolution), taking special care to handle imprecision
+            int n = (int)floor((*value - min_val) / resolution + 0.5);
+            int steps = (int)floor((max_val - min_val) / resolution + 0.5);
+            SG_NORMALIZE_RANGE(n, 0, steps);
+            *value = min_val + resolution * n;
+        } else {
+            // plain circular wrapping
+            SG_NORMALIZE_RANGE(*value, min_val, max_val);
+        }
+    } else {                    // clamp such that min <= x <= max
         if ((min_node != 0) && (*value < min_node->getDoubleValue()))
             *value = min_node->getDoubleValue();
         else if ((max_node != 0) && (*value > max_node->getDoubleValue()))
@@ -118,6 +118,25 @@ limit_value (double * value, const SGPropertyNode * arg)
     }
 }
 
+static bool
+compare_values (SGPropertyNode * value1, SGPropertyNode * value2)
+{
+    switch (value1->getType()) {
+    case SGPropertyNode::BOOL:
+        return (value1->getBoolValue() == value2->getBoolValue());
+    case SGPropertyNode::INT:
+        return (value1->getIntValue() == value2->getIntValue());
+    case SGPropertyNode::LONG:
+        return (value1->getLongValue() == value2->getLongValue());
+    case SGPropertyNode::FLOAT:
+        return (value1->getFloatValue() == value2->getFloatValue());
+    case SGPropertyNode::DOUBLE:
+        return (value1->getDoubleValue() == value2->getDoubleValue());
+    default:
+        return !strcmp(value1->getStringValue(), value2->getStringValue());
+    }
+}
+
 
 \f
 ////////////////////////////////////////////////////////////////////////
@@ -134,26 +153,116 @@ do_null (const SGPropertyNode * arg)
   return true;
 }
 
+#if defined(HAVE_PLIB_PSL)
+/**
+ * Built-in command: run a PSL script.
+ *
+ * script: the PSL script to execute
+ */
+static bool
+do_script (const SGPropertyNode * arg)
+{
+    FGScriptMgr * mgr = (FGScriptMgr *)globals->get_subsystem("scripting");
+    return mgr->run(arg->getStringValue("script"));
+}
+#endif // HAVE_PLIB_PSL
+
 
 /**
  * Built-in command: exit FlightGear.
  *
- * TODO: show a confirm dialog.
+ * status: the exit status to return to the operating system (defaults to 0)
  */
 static bool
 do_exit (const SGPropertyNode * arg)
 {
-  SG_LOG(SG_INPUT, SG_ALERT, "Program exit requested.");
-  ConfirmExitDialog();
+  SG_LOG(SG_INPUT, SG_INFO, "Program exit requested.");
+  fgExit(arg->getIntValue("status", 0));
   return true;
 }
 
 
+/**
+ * Built-in command: reinitialize one or more subsystems.
+ *
+ * subsystem[*]: the name(s) of the subsystem(s) to reinitialize; if
+ * none is specified, reinitialize all of them.
+ */
+static bool
+do_reinit (const SGPropertyNode * arg)
+{
+    bool result = true;
+
+    vector<SGPropertyNode_ptr> subsystems = arg->getChildren("subsystem");
+    if (subsystems.size() == 0)
+        globals->get_subsystem_mgr()->reinit();
+    else for ( unsigned int i = 0; i < subsystems.size(); i++ ) {
+        const char * name = subsystems[i]->getStringValue();
+        FGSubsystem * subsystem = globals->get_subsystem(name);
+        if (subsystem == 0) {
+            result = false;
+            SG_LOG(SG_GENERAL, SG_ALERT, "Subsystem " << name << "not found");
+        } else {
+            subsystem->reinit();
+        }
+    }
+    return result;
+}
+
+/**
+ * Built-in command: suspend one or more subsystems.
+ *
+ * subsystem[*] - the name(s) of the subsystem(s) to suspend.
+ */
+static bool
+do_suspend (const SGPropertyNode * arg)
+{
+    bool result = true;
+
+    vector<SGPropertyNode_ptr> subsystems = arg->getChildren("subsystem");
+    for ( unsigned int i = 0; i < subsystems.size(); i++ ) {
+        const char * name = subsystems[i]->getStringValue();
+        FGSubsystem * subsystem = globals->get_subsystem(name);
+        if (subsystem == 0) {
+            result = false;
+            SG_LOG(SG_GENERAL, SG_ALERT, "Subsystem " << name << "not found");
+        } else {
+            subsystem->suspend();
+        }
+    }
+    return result;
+}
+
+/**
+ * Built-in command: suspend one or more subsystems.
+ *
+ * subsystem[*] - the name(s) of the subsystem(s) to suspend.
+ */
+static bool
+do_resume (const SGPropertyNode * arg)
+{
+    bool result = true;
+
+    vector<SGPropertyNode_ptr> subsystems = arg->getChildren("subsystem");
+    for ( unsigned int i = 0; i < subsystems.size(); i++ ) {
+        const char * name = subsystems[i]->getStringValue();
+        FGSubsystem * subsystem = globals->get_subsystem(name);
+        if (subsystem == 0) {
+            result = false;
+            SG_LOG(SG_GENERAL, SG_ALERT, "Subsystem " << name << "not found");
+        } else {
+            subsystem->resume();
+        }
+    }
+    return result;
+}
+
+
 /**
  * Built-in command: load flight.
  *
  * file (optional): the name of the file to load (relative to current
- * directory).  Defaults to "fgfs.sav".
+ *   directory).  Defaults to "fgfs.sav"
  */
 static bool
 do_load (const SGPropertyNode * arg)
@@ -216,10 +325,10 @@ do_panel_load (const SGPropertyNode * arg)
     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();
+  globals->get_current_panel()->unbind();
+  delete globals->get_current_panel();
+  globals->set_current_panel( new_panel );
+  globals->get_current_panel()->bind();
   return true;
 }
 
@@ -235,8 +344,8 @@ do_panel_load (const SGPropertyNode * arg)
 static bool
 do_panel_mouse_click (const SGPropertyNode * arg)
 {
-  if (current_panel != 0)
-    return current_panel
+  if (globals->get_current_panel() != 0)
+    return globals->get_current_panel()
       ->doMouseAction(arg->getIntValue("button"),
                      arg->getBoolValue("is-down") ? PU_DOWN : PU_UP,
                      arg->getIntValue("x-pos"),
@@ -278,7 +387,7 @@ fix_hud_visibility()
   }
 }
 
-void
+static void
 do_view_next( bool )
 {
     globals->get_current_view()->setHeadingOffset_deg(0.0);
@@ -287,7 +396,7 @@ do_view_next( bool )
     globals->get_tile_mgr()->refresh_view_timestamps();
 }
 
-void
+static void
 do_view_prev( bool )
 {
     globals->get_current_view()->setHeadingOffset_deg(0.0);
@@ -438,6 +547,8 @@ do_property_adjust (const SGPropertyNode * arg)
   limit_value(&modifiable, arg);
 
   prop->setDoubleValue(unmodifiable + modifiable);
+
+  return true;
 }
 
 
@@ -468,6 +579,8 @@ do_property_multiply (const SGPropertyNode * arg)
   limit_value(&modifiable, arg);
 
   prop->setDoubleValue(unmodifiable + modifiable);
+
+  return true;
 }
 
 
@@ -506,14 +619,90 @@ do_property_scale (const SGPropertyNode * arg)
   double offset = arg->getDoubleValue("offset", 0.0);
   double factor = arg->getDoubleValue("factor", 1.0);
   bool squared = arg->getBoolValue("squared", false);
-
-  if (squared)
-    setting = (setting < 0 ? -1 : 1) * setting * setting;
+  int power = arg->getIntValue("power", (squared ? 2 : 1));
+
+  int sign = (setting < 0 ? -1 : 1);
+
+  switch (power) {
+  case 1:
+      break;
+  case 2:
+      setting = setting * setting * sign;
+      break;
+  case 3:
+      setting = setting * setting * setting;
+      break;
+  case 4:
+      setting = setting * setting * setting * setting * sign;
+      break;
+  default:
+      setting =  pow(setting, power);
+      if ((power % 2) == 0)
+          setting *= sign;
+      break;
+  }
 
   return prop->setDoubleValue((setting + offset) * factor);
 }
 
 
+/**
+ * Built-in command: cycle a property through a set of values.
+ *
+ * If the current value isn't in the list, the cycle will
+ * (re)start from the beginning.
+ *
+ * property: the name of the property to cycle.
+ * value[*]: the list of values to cycle through.
+ */
+static bool
+do_property_cycle (const SGPropertyNode * arg)
+{
+    SGPropertyNode * prop = get_prop(arg);
+    vector<SGPropertyNode_ptr> values = arg->getChildren("value");
+    int selection = -1;
+    int nSelections = values.size();
+
+    if (nSelections < 1) {
+        SG_LOG(SG_GENERAL, SG_ALERT, "No values for property-cycle");
+        return false;
+    }
+
+                                // Try to find the current selection
+    for (int i = 0; i < nSelections; i++) {
+        if (compare_values(prop, values[i])) {
+            selection = i + 1;
+            break;
+        }
+    }
+
+                                // Default or wrap to the first selection
+    if (selection < 0 || selection >= nSelections)
+        selection = 0;
+
+    prop->setUnspecifiedValue(values[selection]->getStringValue());
+    return true;
+}
+
+
+/**
+ * Built-in command: randomize a numeric property value.
+ *
+ * property: the name of the property value to randomize.
+ * min: the minimum allowed value.
+ * max: the maximum allowed value.
+ */
+static bool
+do_property_randomize (const SGPropertyNode * arg)
+{
+    SGPropertyNode * prop = get_prop(arg);
+    double min = arg->getDoubleValue("min", DBL_MIN);
+    double max = arg->getDoubleValue("max", DBL_MAX);
+    prop->setDoubleValue(sg_random() * (max - min) + min);
+    return true;
+}
+
+
 /**
  * Built-in command: Show an XML-configured dialog.
  *
@@ -522,29 +711,20 @@ do_property_scale (const SGPropertyNode * arg)
 static bool
 do_dialog_show (const SGPropertyNode * arg)
 {
-    NewGUI * gui = (NewGUI *)globals->get_subsystem_mgr()
-        ->get_group(FGSubsystemMgr::INIT)->get_subsystem("gui");
-    gui->display(arg->getStringValue("dialog-name"));
+    NewGUI * gui = (NewGUI *)globals->get_subsystem("gui");
+    gui->showDialog(arg->getStringValue("dialog-name"));
     return true;
 }
 
 
 /**
- * Hide the active XML-configured dialog.
+ * Built-in Command: Hide the active XML-configured dialog.
  */
 static bool
 do_dialog_close (const SGPropertyNode * arg)
 {
-    NewGUI * gui = (NewGUI *)globals->get_subsystem_mgr()
-        ->get_group(FGSubsystemMgr::INIT)->get_subsystem("gui");
-    GUIWidget * widget = gui->getCurrentWidget();
-    if (widget != 0) {
-        delete widget;
-        gui->setCurrentWidget(0);
-        return true;
-    } else {
-        return false;
-    }
+    NewGUI * gui = (NewGUI *)globals->get_subsystem("gui");
+    return gui->closeActiveDialog();
 }
 
 
@@ -556,15 +736,13 @@ do_dialog_close (const SGPropertyNode * arg)
 static bool
 do_dialog_update (const SGPropertyNode * arg)
 {
-    NewGUI * gui = (NewGUI *)globals->get_subsystem_mgr()
-        ->get_group(FGSubsystemMgr::INIT)->get_subsystem("gui");
-    GUIWidget * widget = gui->getCurrentWidget();
-    if (widget != 0) {
+    NewGUI * gui = (NewGUI *)globals->get_subsystem("gui");
+    FGDialog * dialog = gui->getActiveDialog();
+    if (dialog != 0) {
         if (arg->hasValue("object-name")) {
-            gui->getCurrentWidget()
-                ->updateValue(arg->getStringValue("object-name"));
+            dialog->updateValue(arg->getStringValue("object-name"));
         } else {
-            gui->getCurrentWidget()->updateValues();
+            dialog->updateValues();
         }
         return true;
     } else {
@@ -581,15 +759,16 @@ do_dialog_update (const SGPropertyNode * arg)
 static bool
 do_dialog_apply (const SGPropertyNode * arg)
 {
-    NewGUI * gui = (NewGUI *)globals->get_subsystem_mgr()
-        ->get_group(FGSubsystemMgr::INIT)->get_subsystem("gui");
-    GUIWidget * widget = gui->getCurrentWidget();
-    if (widget != 0) {
+    NewGUI * gui = (NewGUI *)globals->get_subsystem("gui");
+    FGDialog * dialog = gui->getActiveDialog();
+    if (dialog != 0) {
         if (arg->hasValue("object-name")) {
-            gui->getCurrentWidget()
-                ->applyValue(arg->getStringValue("object-name"));
+            const char * name = arg->getStringValue("object-name");
+            dialog->applyValue(name);
+            dialog->updateValue(name);
         } else {
-            gui->getCurrentWidget()->applyValues();
+            dialog->applyValues();
+            dialog->updateValues();
         }
         return true;
     } else {
@@ -617,14 +796,28 @@ do_presets_commit (const SGPropertyNode * arg)
 
     globals->get_tile_mgr()->update( fgGetDouble("/environment/visibility-m") );
 
+#if 0
     if ( ! fgGetBool("/sim/presets/onground") ) {
         fgSetBool( "/sim/freeze/master", true );
         fgSetBool( "/sim/freeze/clock", true );
     }
+#endif
 
     return true;
 }
 
+/**
+ * Built-in command: set log level (0 ... 7)
+ */
+static bool
+do_log_level (const SGPropertyNode * arg)
+{
+   sglog().setLogLevels( SG_ALL, (sgDebugPriority)arg->getIntValue() );
+
+   return true;
+}
+
+
 
 \f
 ////////////////////////////////////////////////////////////////////////
@@ -643,7 +836,13 @@ static struct {
   SGCommandMgr::command_t command;
 } built_ins [] = {
     { "null", do_null },
+#if defined(HAVE_PLIB_PSL)
+    { "script", do_script },
+#endif // HAVE_PLIB_PSL
     { "exit", do_exit },
+    { "reinit", do_reinit },
+    { "suspend", do_reinit },
+    { "resume", do_reinit },
     { "load", do_load },
     { "save", do_save },
     { "panel-load", do_panel_load },
@@ -659,11 +858,15 @@ static struct {
     { "property-multiply", do_property_multiply },
     { "property-swap", do_property_swap },
     { "property-scale", do_property_scale },
+    { "property-cycle", do_property_cycle },
+    { "property-randomize", do_property_randomize },
     { "dialog-show", do_dialog_show },
     { "dialog-close", do_dialog_close },
     { "dialog-show", do_dialog_show },
     { "dialog-update", do_dialog_update },
     { "dialog-apply", do_dialog_apply },
+    { "presets-commit", do_presets_commit },
+    { "log-level", do_log_level },
     { 0, 0 }                   // zero-terminated
 };