]> git.mxchange.org Git - flightgear.git/blob - src/Main/fg_commands.cxx
b6830d09572494aad74148e670881d8e7b6fd1bd
[flightgear.git] / src / Main / fg_commands.cxx
1 // fg_commands.cxx - internal FGFS commands.
2
3 #include <string.h>             // strcmp()
4
5 #include <simgear/compiler.h>
6 #include <simgear/misc/exception.hxx>
7
8 #include STL_STRING
9 #include STL_FSTREAM
10
11 #include <simgear/debug/logstream.hxx>
12 #include <simgear/misc/commands.hxx>
13 #include <simgear/misc/props.hxx>
14
15 #include <Cockpit/panel.hxx>
16 #include <Cockpit/panel_io.hxx>
17 #include <FDM/flight.hxx>
18 #include <GUI/gui.h>
19 #include <GUI/new_gui.hxx>
20 #include <Scenery/tilemgr.hxx>
21 #include <Time/tmp.hxx>
22
23 #include "fg_init.hxx"
24 #include "fg_commands.hxx"
25
26 SG_USING_STD(string);
27 #if !defined(SG_HAVE_NATIVE_SGI_COMPILERS)
28 SG_USING_STD(ifstream);
29 SG_USING_STD(ofstream);
30 #endif
31
32 #include "fg_props.hxx"
33 #include "fg_io.hxx"
34 #include "globals.hxx"
35 #include "viewmgr.hxx"
36
37
38 \f
39 ////////////////////////////////////////////////////////////////////////
40 // Static helper functions.
41 ////////////////////////////////////////////////////////////////////////
42
43
44 /**
45  * Template function to wrap a value.
46  */
47 template <class T>
48 static inline void
49 do_wrap (T * value, T min, T max)
50 {
51     if (min >= max) {           // basic sanity check
52         *value = min;
53     } else if (*value > max) {
54         *value = min;
55     } else if (*value < min) {
56         *value = max;
57     }
58 }
59
60 static inline SGPropertyNode *
61 get_prop (const SGPropertyNode * arg)
62 {
63     return fgGetNode(arg->getStringValue("property[0]", "/null"), true);
64 }
65
66 static inline SGPropertyNode *
67 get_prop2 (const SGPropertyNode * arg)
68 {
69     return fgGetNode(arg->getStringValue("property[1]", "/null"), true);
70 }
71
72
73 /**
74  * Get a double value and split it as required.
75  */
76 static void
77 split_value (double full_value, const char * mask,
78              double * unmodifiable, double * modifiable)
79 {
80     if (!strcmp("integer", mask)) {
81         *modifiable = (full_value < 0 ? ceil(full_value) : floor (full_value));
82         *unmodifiable = full_value - *modifiable;
83     } else if (!strcmp("decimal", mask)) {
84         *unmodifiable = (full_value < 0 ? ceil(full_value) : floor(full_value));
85         *modifiable = full_value - *unmodifiable;
86     } else {
87         if (strcmp("all", mask))
88             SG_LOG(SG_GENERAL, SG_ALERT, "Bad value " << mask << " for mask;"
89                    << " assuming 'all'");
90         *unmodifiable = 0;
91         *modifiable = full_value;
92     }
93 }
94
95
96 /**
97  * Clamp or wrap a value as specified.
98  */
99 static void
100 limit_value (double * value, const SGPropertyNode * arg)
101 {
102     const SGPropertyNode * min_node = arg->getChild("min");
103     const SGPropertyNode * max_node = arg->getChild("max");
104
105     bool wrap = arg->getBoolValue("wrap");
106
107     if (min_node == 0 || max_node == 0)
108         wrap = false;
109   
110     if (wrap) {                 // wrap
111         if (*value < min_node->getDoubleValue())
112             *value = max_node->getDoubleValue();
113         else if (*value > max_node->getDoubleValue())
114             *value = min_node->getDoubleValue();
115     } else {                    // clamp
116         if ((min_node != 0) && (*value < min_node->getDoubleValue()))
117             *value = min_node->getDoubleValue();
118         else if ((max_node != 0) && (*value > max_node->getDoubleValue()))
119             *value = max_node->getDoubleValue();
120     }
121 }
122
123
124 \f
125 ////////////////////////////////////////////////////////////////////////
126 // Command implementations.
127 ////////////////////////////////////////////////////////////////////////
128
129
130 /**
131  * Built-in command: do nothing.
132  */
133 static bool
134 do_null (const SGPropertyNode * arg)
135 {
136   return true;
137 }
138
139
140 /**
141  * Built-in command: exit FlightGear.
142  *
143  * TODO: show a confirm dialog.
144  */
145 static bool
146 do_exit (const SGPropertyNode * arg)
147 {
148   SG_LOG(SG_INPUT, SG_ALERT, "Program exit requested.");
149   ConfirmExitDialog();
150   return true;
151 }
152
153
154 /**
155  * Built-in command: load flight.
156  *
157  * file (optional): the name of the file to load (relative to current
158  * directory).  Defaults to "fgfs.sav".
159  */
160 static bool
161 do_load (const SGPropertyNode * arg)
162 {
163   const string &file = arg->getStringValue("file", "fgfs.sav");
164   ifstream input(file.c_str());
165   if (input.good() && fgLoadFlight(input)) {
166     input.close();
167     SG_LOG(SG_INPUT, SG_INFO, "Restored flight from " << file);
168     return true;
169   } else {
170     SG_LOG(SG_INPUT, SG_ALERT, "Cannot load flight from " << file);
171     return false;
172   }
173 }
174
175
176 /**
177  * Built-in command: save flight.
178  *
179  * file (optional): the name of the file to save (relative to the
180  * current directory).  Defaults to "fgfs.sav".
181  */
182 static bool
183 do_save (const SGPropertyNode * arg)
184 {
185   const string &file = arg->getStringValue("file", "fgfs.sav");
186   bool write_all = arg->getBoolValue("write-all", false);
187   SG_LOG(SG_INPUT, SG_INFO, "Saving flight");
188   ofstream output(file.c_str());
189   if (output.good() && fgSaveFlight(output, write_all)) {
190     output.close();
191     SG_LOG(SG_INPUT, SG_INFO, "Saved flight to " << file);
192     return true;
193   } else {
194     SG_LOG(SG_INPUT, SG_ALERT, "Cannot save flight to " << file);
195     return false;
196   }
197 }
198
199
200 /**
201  * Built-in command: (re)load the panel.
202  *
203  * path (optional): the file name to load the panel from 
204  * (relative to FG_ROOT).  Defaults to the value of /sim/panel/path,
205  * and if that's unspecified, to "Panels/Default/default.xml".
206  */
207 static bool
208 do_panel_load (const SGPropertyNode * arg)
209 {
210   string panel_path =
211     arg->getStringValue("path",
212                         fgGetString("/sim/panel/path",
213                                     "Panels/Default/default.xml"));
214   FGPanel * new_panel = fgReadPanel(panel_path);
215   if (new_panel == 0) {
216     SG_LOG(SG_INPUT, SG_ALERT,
217            "Error reading new panel from " << panel_path);
218     return false;
219   }
220   SG_LOG(SG_INPUT, SG_INFO, "Loaded new panel from " << panel_path);
221   current_panel->unbind();
222   delete current_panel;
223   current_panel = new_panel;
224   current_panel->bind();
225   return true;
226 }
227
228
229 /**
230  * Built-in command: pass a mouse click to the panel.
231  *
232  * button: the mouse button number, zero-based.
233  * is-down: true if the button is down, false if it is up.
234  * x-pos: the x position of the mouse click.
235  * y-pos: the y position of the mouse click.
236  */
237 static bool
238 do_panel_mouse_click (const SGPropertyNode * arg)
239 {
240   if (current_panel != 0)
241     return current_panel
242       ->doMouseAction(arg->getIntValue("button"),
243                       arg->getBoolValue("is-down") ? PU_DOWN : PU_UP,
244                       arg->getIntValue("x-pos"),
245                       arg->getIntValue("y-pos"));
246   else
247     return false;
248 }
249
250
251 /**
252  * Built-in command: (re)load preferences.
253  *
254  * path (optional): the file name to load the panel from (relative
255  * to FG_ROOT). Defaults to "preferences.xml".
256  */
257 static bool
258 do_preferences_load (const SGPropertyNode * arg)
259 {
260   try {
261     fgLoadProps(arg->getStringValue("path", "preferences.xml"),
262                 globals->get_props());
263   } catch (const sg_exception &e) {
264     guiErrorMessage("Error reading global preferences: ", e);
265     return false;
266   }
267   SG_LOG(SG_INPUT, SG_INFO, "Successfully read global preferences.");
268   return true;
269 }
270
271
272 static void
273 fix_hud_visibility()
274 {
275   if ( !strcmp(fgGetString("/sim/flight-model"), "ada") ) {
276       globals->get_props()->setBoolValue( "/sim/hud/visibility", true );
277       if ( globals->get_viewmgr()->get_current() == 1 ) {
278           globals->get_props()->setBoolValue( "/sim/hud/visibility", false );
279       }
280   }
281 }
282
283 void
284 do_view_next( bool )
285 {
286     globals->get_current_view()->setHeadingOffset_deg(0.0);
287     globals->get_viewmgr()->next_view();
288     fix_hud_visibility();
289     globals->get_tile_mgr()->refresh_view_timestamps();
290 }
291
292 void
293 do_view_prev( bool )
294 {
295     globals->get_current_view()->setHeadingOffset_deg(0.0);
296     globals->get_viewmgr()->prev_view();
297     fix_hud_visibility();
298     globals->get_tile_mgr()->refresh_view_timestamps();
299 }
300
301 /**
302  * Built-in command: cycle view.
303  */
304 static bool
305 do_view_cycle (const SGPropertyNode * arg)
306 {
307   globals->get_current_view()->setHeadingOffset_deg(0.0);
308   globals->get_viewmgr()->next_view();
309   fix_hud_visibility();
310   globals->get_tile_mgr()->refresh_view_timestamps();
311 //   fgReshape(fgGetInt("/sim/startup/xsize"), fgGetInt("/sim/startup/ysize"));
312   return true;
313 }
314
315 /**
316  * Built-in command: capture screen.
317  */
318 static bool
319 do_screen_capture (const SGPropertyNode * arg)
320 {
321   fgDumpSnapShot();
322   return true;
323 }
324
325
326 /**
327  * Reload the tile cache.
328  */
329 static bool
330 do_tile_cache_reload (const SGPropertyNode * arg)
331 {
332     static const SGPropertyNode *master_freeze
333         = fgGetNode("/sim/freeze/master");
334     bool freeze = master_freeze->getBoolValue();
335     SG_LOG(SG_INPUT, SG_INFO, "ReIniting TileCache");
336     if ( !freeze ) {
337         fgSetBool("/sim/freeze/master", true);
338     }
339     // BusyCursor(0);
340     if ( globals->get_tile_mgr()->init() ) {
341         // Load the local scenery data
342         double visibility_meters = fgGetDouble("/environment/visibility-m");
343         globals->get_tile_mgr()->update( visibility_meters );
344     } else {
345         SG_LOG( SG_GENERAL, SG_ALERT, 
346                 "Error in Tile Manager initialization!" );
347         exit(-1);
348     }
349     // BusyCursor(1);
350     if ( !freeze ) {
351         fgSetBool("/sim/freeze/master", false);
352     }
353     return true;
354 }
355
356
357 /**
358  * Update the lighting manually.
359  */
360 static bool
361 do_lighting_update (const SGPropertyNode * arg)
362 {
363   fgUpdateSkyAndLightingParams();
364   return true;
365 }
366
367
368 /**
369  * Built-in command: toggle a bool property value.
370  *
371  * property: The name of the property to toggle.
372  */
373 static bool
374 do_property_toggle (const SGPropertyNode * arg)
375 {
376   SGPropertyNode * prop = get_prop(arg);
377   return prop->setBoolValue(!prop->getBoolValue());
378 }
379
380
381 /**
382  * Built-in command: assign a value to a property.
383  *
384  * property: the name of the property to assign.
385  * value: the value to assign; or
386  * property[1]: the property to copy from.
387  */
388 static bool
389 do_property_assign (const SGPropertyNode * arg)
390 {
391   SGPropertyNode * prop = get_prop(arg);
392   const SGPropertyNode * prop2 = get_prop2(arg);
393   const SGPropertyNode * value = arg->getNode("value");
394
395   if (value != 0)
396       return prop->setUnspecifiedValue(value->getStringValue());
397   else if (prop2)
398       return prop->setUnspecifiedValue(prop2->getStringValue());
399   else
400       return false;
401 }
402
403
404 /**
405  * Built-in command: increment or decrement a property value.
406  *
407  * property: the name of the property to increment or decrement.
408  * step: the amount of the increment or decrement (default: 0).
409  * min: the minimum allowed value (default: no minimum).
410  * max: the maximum allowed value (default: no maximum).
411  * mask: 'integer' to apply only to the left of the decimal point, 
412  *       'decimal' to apply only to the right of the decimal point,
413  *       or 'all' to apply to the whole number (the default).
414  * wrap: true if the value should be wrapped when it passes min or max;
415  *       both min and max must be present for this to work (default:
416  *       false).
417  */
418 static bool
419 do_property_adjust (const SGPropertyNode * arg)
420 {
421   SGPropertyNode * prop = get_prop(arg);
422   double step = arg->getDoubleValue("step");
423
424   double unmodifiable, modifiable;
425   split_value(prop->getDoubleValue(), arg->getStringValue("mask", "all"),
426               &unmodifiable, &modifiable);
427   modifiable += step;
428   limit_value(&modifiable, arg);
429
430   prop->setDoubleValue(unmodifiable + modifiable);
431 }
432
433
434 /**
435  * Built-in command: multiply a property value.
436  *
437  * property: the name of the property to multiply.
438  * factor: the amount by which to multiply.
439  * min: the minimum allowed value (default: no minimum).
440  * max: the maximum allowed value (default: no maximum).
441  * mask: 'integer' to apply only to the left of the decimal point, 
442  *       'decimal' to apply only to the right of the decimal point,
443  *       or 'all' to apply to the whole number (the default).
444  * wrap: true if the value should be wrapped when it passes min or max;
445  *       both min and max must be present for this to work (default:
446  *       false).
447  */
448 static bool
449 do_property_multiply (const SGPropertyNode * arg)
450 {
451   SGPropertyNode * prop = get_prop(arg);
452   double factor = arg->getDoubleValue("factor", 1);
453
454   double unmodifiable, modifiable;
455   split_value(prop->getDoubleValue(), arg->getStringValue("mask", "all"),
456               &unmodifiable, &modifiable);
457   modifiable *= factor;
458   limit_value(&modifiable, arg);
459
460   prop->setDoubleValue(unmodifiable + modifiable);
461 }
462
463
464 /**
465  * Built-in command: swap two property values.
466  *
467  * property[0]: the name of the first property.
468  * property[1]: the name of the second property.
469  */
470 static bool
471 do_property_swap (const SGPropertyNode * arg)
472 {
473   SGPropertyNode * prop1 = get_prop(arg);
474   SGPropertyNode * prop2 = get_prop2(arg);
475
476                                 // FIXME: inefficient
477   const string & tmp = prop1->getStringValue();
478   return (prop1->setUnspecifiedValue(prop2->getStringValue()) &&
479           prop2->setUnspecifiedValue(tmp.c_str()));
480 }
481
482
483 /**
484  * Built-in command: Set a property to an axis or other moving input.
485  *
486  * property: the name of the property to set.
487  * setting: the current input setting, usually between -1.0 and 1.0.
488  * offset: the offset to shift by, before applying the factor.
489  * factor: the factor to multiply by (use negative to reverse).
490  */
491 static bool
492 do_property_scale (const SGPropertyNode * arg)
493 {
494   SGPropertyNode * prop = get_prop(arg);
495   double setting = arg->getDoubleValue("setting");
496   double offset = arg->getDoubleValue("offset", 0.0);
497   double factor = arg->getDoubleValue("factor", 1.0);
498   bool squared = arg->getBoolValue("squared", false);
499
500   if (squared)
501     setting = (setting < 0 ? -1 : 1) * setting * setting;
502
503   return prop->setDoubleValue((setting + offset) * factor);
504 }
505
506
507 /**
508  * Built-in command: Show an XML-configured dialog.
509  *
510  * dialog-name: the name of the GUI dialog to display.
511  */
512 static bool
513 do_dialog_show (const SGPropertyNode * arg)
514 {
515     NewGUI * gui = (NewGUI *)globals->get_subsystem_mgr()
516         ->get_group(FGSubsystemMgr::INIT)->get_subsystem("gui");
517     gui->display(arg->getStringValue("dialog-name"));
518     return true;
519 }
520
521
522 /**
523  * Hide the active XML-configured dialog.
524  */
525 static bool
526 do_dialog_close (const SGPropertyNode * arg)
527 {
528     NewGUI * gui = (NewGUI *)globals->get_subsystem_mgr()
529         ->get_group(FGSubsystemMgr::INIT)->get_subsystem("gui");
530     GUIWidget * widget = gui->getCurrentWidget();
531     if (widget != 0) {
532         delete widget;
533         gui->setCurrentWidget(0);
534         return true;
535     } else {
536         return false;
537     }
538 }
539
540
541 /**
542  * Update a value in the active XML-configured dialog.
543  *
544  * object-name: The name of the GUI object(s) (all GUI objects if omitted).
545  */
546 static bool
547 do_dialog_update (const SGPropertyNode * arg)
548 {
549     NewGUI * gui = (NewGUI *)globals->get_subsystem_mgr()
550         ->get_group(FGSubsystemMgr::INIT)->get_subsystem("gui");
551     GUIWidget * widget = gui->getCurrentWidget();
552     if (widget != 0) {
553         if (arg->hasValue("object-name")) {
554             gui->getCurrentWidget()
555                 ->updateValue(arg->getStringValue("object-name"));
556         } else {
557             gui->getCurrentWidget()->updateValues();
558         }
559         return true;
560     } else {
561         return false;
562     }
563 }
564
565
566 /**
567  * Apply a value in the active XML-configured dialog.
568  *
569  * object-name: The name of the GUI object(s) (all GUI objects if omitted).
570  */
571 static bool
572 do_dialog_apply (const SGPropertyNode * arg)
573 {
574     NewGUI * gui = (NewGUI *)globals->get_subsystem_mgr()
575         ->get_group(FGSubsystemMgr::INIT)->get_subsystem("gui");
576     GUIWidget * widget = gui->getCurrentWidget();
577     if (widget != 0) {
578         if (arg->hasValue("object-name")) {
579             gui->getCurrentWidget()
580                 ->applyValue(arg->getStringValue("object-name"));
581         } else {
582             gui->getCurrentWidget()->applyValues();
583         }
584         return true;
585     } else {
586         return false;
587     }
588 }
589
590
591 /**
592  * Built-in command: commit presets (read from in /sim/presets/)
593  */
594 static bool
595 do_presets_commit (const SGPropertyNode * arg)
596 {
597     // unbind the current fdm state so property changes
598     // don't get lost when we subsequently delete this fdm
599     // and create a new one.
600     cur_fdm_state->unbind();
601         
602     // set position from presets
603     fgInitPosition();
604
605     // BusyCursor(0);
606     fgReInitSubsystems();
607
608     globals->get_tile_mgr()->update( fgGetDouble("/environment/visibility-m") );
609
610     if ( ! fgGetBool("/sim/presets/onground") ) {
611         fgSetBool( "/sim/freeze/master", true );
612         fgSetBool( "/sim/freeze/clock", true );
613     }
614
615     return true;
616 }
617
618
619 \f
620 ////////////////////////////////////////////////////////////////////////
621 // Command setup.
622 ////////////////////////////////////////////////////////////////////////
623
624
625 /**
626  * Table of built-in commands.
627  *
628  * New commands do not have to be added here; any module in the application
629  * can add a new command using globals->get_commands()->addCommand(...).
630  */
631 static struct {
632   const char * name;
633   SGCommandMgr::command_t command;
634 } built_ins [] = {
635     { "null", do_null },
636     { "exit", do_exit },
637     { "load", do_load },
638     { "save", do_save },
639     { "panel-load", do_panel_load },
640     { "panel-mouse-click", do_panel_mouse_click },
641     { "preferences-load", do_preferences_load },
642     { "view-cycle", do_view_cycle },
643     { "screen-capture", do_screen_capture },
644     { "tile-cache-reload", do_tile_cache_reload },
645     { "lighting-update", do_lighting_update },
646     { "property-toggle", do_property_toggle },
647     { "property-assign", do_property_assign },
648     { "property-adjust", do_property_adjust },
649     { "property-multiply", do_property_multiply },
650     { "property-swap", do_property_swap },
651     { "property-scale", do_property_scale },
652     { "dialog-show", do_dialog_show },
653     { "dialog-close", do_dialog_close },
654     { "dialog-show", do_dialog_show },
655     { "dialog-update", do_dialog_update },
656     { "dialog-apply", do_dialog_apply },
657     { 0, 0 }                    // zero-terminated
658 };
659
660
661 /**
662  * Initialize the default built-in commands.
663  *
664  * Other commands may be added by other parts of the application.
665  */
666 void
667 fgInitCommands ()
668 {
669   SG_LOG(SG_GENERAL, SG_INFO, "Initializing basic built-in commands:");
670   for (int i = 0; built_ins[i].name != 0; i++) {
671     SG_LOG(SG_GENERAL, SG_INFO, "  " << built_ins[i].name);
672     globals->get_commands()->addCommand(built_ins[i].name,
673                                         built_ins[i].command);
674   }
675
676   typedef bool (*dummy)();
677   fgTie( "/command/view/next", dummy(0), do_view_next );
678   fgTie( "/command/view/prev", dummy(0), do_view_prev );
679 }
680
681 // end of fg_commands.cxx