JSBSim Flight Dynamics Model 1.2.2 (22 Mar 2025)
An Open Source Flight Dynamics and Control Software Library in C++
Loading...
Searching...
No Matches
FGScript.cpp
1/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2
3 Module: FGScript.cpp
4 Author: Jon S. Berndt
5 Date started: 12/21/01
6 Purpose: Loads and runs JSBSim scripts.
7
8 ------------- Copyright (C) 1999 Jon S. Berndt (jon@jsbsim.org) -------------
9
10 This program is free software; you can redistribute it and/or modify it under
11 the terms of the GNU Lesser General Public License as published by the Free
12 Software Foundation; either version 2 of the License, or (at your option) any
13 later version.
14
15 This program is distributed in the hope that it will be useful, but WITHOUT
16 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
17 FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
18 details.
19
20 You should have received a copy of the GNU Lesser General Public License along
21 with this program; if not, write to the Free Software Foundation, Inc., 59
22 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
23
24 Further information about the GNU Lesser General Public License can also be
25 found on the world wide web at http://www.gnu.org.
26
27FUNCTIONAL DESCRIPTION
28--------------------------------------------------------------------------------
29
30This class wraps up the simulation scripting routines.
31
32HISTORY
33--------------------------------------------------------------------------------
3412/21/01 JSB Created
35
36%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
37COMMENTS, REFERENCES, and NOTES
38%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
39
40%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
41INCLUDES
42%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
43
44#include <iomanip>
45
46#include "FGScript.h"
47#include "FGFDMExec.h"
48#include "input_output/FGXMLFileRead.h"
49#include "initialization/FGInitialCondition.h"
50#include "models/FGInput.h"
51#include "math/FGCondition.h"
52#include "math/FGFunctionValue.h"
53#include "input_output/string_utilities.h"
54
55using namespace std;
56
57namespace JSBSim {
58
59/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
60CLASS IMPLEMENTATION
61%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
62
63// Constructor
64
65FGScript::FGScript(FGFDMExec* fgex) : FDMExec(fgex)
66{
67 PropertyManager=FDMExec->GetPropertyManager();
68
69 Debug(0);
70}
71
72//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
73
75{
76 unsigned int i, j;
77
78 for (i=0; i<Events.size(); i++) {
79 delete Events[i].Condition;
80 for (j=0; j<Events[i].Functions.size(); j++)
81 delete Events[i].Functions[j];
82 for (j=0; j<Events[i].NotifyProperties.size(); j++)
83 delete Events[i].NotifyProperties[j];
84 }
85 Events.clear();
86
87 Debug(1);
88}
89
90//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
91
92bool FGScript::LoadScript(const SGPath& script, double default_dT,
93 const SGPath& initfile)
94{
95 SGPath initialize;
96 string aircraft="", prop_name="";
97 string notifyPropertyName="";
98 Element *element=0, *run_element=0, *event_element=0;
99 Element *set_element=0;
100 Element *notify_element = 0L, *notify_property_element = 0L;
101 double dt = 0.0, value = 0.0;
102 FGCondition *newCondition;
103
104 FGXMLFileRead XMLFileRead;
105 Element* document = XMLFileRead.LoadXMLDocument(script);
106
107 if (!document) {
108 cerr << "File: " << script << " could not be loaded." << endl;
109 return false;
110 }
111
112 if (document->GetName() != string("runscript")) {
113 cerr << "File: " << script << " is not a script file" << endl;
114 return false;
115 }
116
117 ScriptName = document->GetAttributeValue("name");
118
119 // First, find "run" element and set delta T
120
121 run_element = document->FindElement("run");
122
123 if (!run_element) {
124 cerr << "No \"run\" element found in script." << endl;
125 return false;
126 }
127
128 // Set sim timing
129
130 if (run_element->HasAttribute("start"))
131 StartTime = run_element->GetAttributeValueAsNumber("start");
132 else
133 StartTime = 0.0;
134 FDMExec->Setsim_time(StartTime);
135 if (run_element->HasAttribute("end")) {
136 EndTime = run_element->GetAttributeValueAsNumber("end");
137 } else {
138 cerr << "An end time (duration) for the script must be specified in the script <run> element." << endl;
139 return false;
140 }
141
142 if (default_dT == 0.0)
143 dt = run_element->GetAttributeValueAsNumber("dt");
144 else {
145 dt = default_dT;
146 cout << endl << "Overriding simulation step size from the command line. New step size is: "
147 << default_dT << " seconds (" << 1/default_dT << " Hz)" << endl << endl;
148 }
149
150 FDMExec->Setdt(dt);
151
152 // Make sure that the desired time is reached and executed.
153 EndTime += 0.99*FDMExec->GetDeltaT();
154
155 // read aircraft and initialization files
156
157 element = document->FindElement("use");
158 if (element) {
159 aircraft = element->GetAttributeValue("aircraft");
160 if (!aircraft.empty()) {
161 if (!FDMExec->LoadModel(aircraft))
162 return false;
163 } else {
164 cerr << "Aircraft must be specified in use element." << endl;
165 return false;
166 }
167
168 initialize = SGPath::fromLocal8Bit(element->GetAttributeValue("initialize").c_str());
169 if (initfile.isNull()) {
170 if (initialize.isNull()) {
171 cerr << "Initialization file must be specified in use element." << endl;
172 return false;
173 }
174 } else {
175 cout << endl << "The initialization file specified in the script file ("
176 << initialize << ") has been overridden with a specified file ("
177 << initfile << ")." << endl;
178 initialize = initfile;
179 }
180
181 } else {
182 cerr << "No \"use\" directives in the script file." << endl;
183 return false;
184 }
185
186 auto IC = FDMExec->GetIC();
187 if ( ! IC->Load( initialize )) {
188 cerr << "Initialization unsuccessful" << endl;
189 return false;
190 }
191
192 // Now, read input spec if given.
193 element = document->FindElement("input");
194 while (element) {
195 if (!FDMExec->GetInput()->Load(element))
196 return false;
197
198 element = document->FindNextElement("input");
199 }
200
201 // Now, read output spec if given.
202 element = document->FindElement("output");
203 SGPath scriptDir = SGPath(script.dir());
204 if (scriptDir.isNull())
205 scriptDir = SGPath(".");
206
207 while (element) {
208 if (!FDMExec->GetOutput()->Load(element, scriptDir))
209 return false;
210
211 element = document->FindNextElement("output");
212 }
213
214 // Read local property/value declarations
215 int saved_debug_lvl = debug_lvl;
216 debug_lvl = 0; // Disable messages
217 LocalProperties.Load(run_element, PropertyManager.get(), true);
218 debug_lvl = saved_debug_lvl;
219
220 // Read "events" from script
221
222 event_element = run_element->FindElement("event");
223 while (event_element) { // event processing
224
225 // Create the event structure
226 struct event *newEvent = new struct event();
227
228 // Retrieve the event name if given
229 newEvent->Name = event_element->GetAttributeValue("name");
230
231 // Is this event persistent? That is, does it execute every time the
232 // condition triggers to true, or does it execute as a one-shot event, only?
233 if (event_element->GetAttributeValue("persistent") == string("true")) {
234 newEvent->Persistent = true;
235 }
236
237 // Does this event execute continuously when triggered to true?
238 if (event_element->GetAttributeValue("continuous") == string("true")) {
239 newEvent->Continuous = true;
240 }
241
242 // Process the conditions
243 Element* condition_element = event_element->FindElement("condition");
244 if (condition_element) {
245 try {
246 newCondition = new FGCondition(condition_element, PropertyManager);
247 } catch(BaseException& e) {
248 cerr << condition_element->ReadFrom()
249 << fgred << e.what() << reset << endl << endl;
250 delete newEvent;
251 return false;
252 }
253 newEvent->Condition = newCondition;
254 } else {
255 cerr << "No condition specified in script event " << newEvent->Name
256 << endl;
257 delete newEvent;
258 return false;
259 }
260
261 // Is there a delay between the time this event is triggered, and when the
262 // event actions are executed?
263
264 Element* delay_element = event_element->FindElement("delay");
265 if (delay_element)
266 newEvent->Delay = event_element->FindElementValueAsNumber("delay");
267 else
268 newEvent->Delay = 0.0;
269
270 // Notify about when this event is triggered?
271 if ((notify_element = event_element->FindElement("notify")) != 0) {
272 if (notify_element->HasAttribute("format")) {
273 if (notify_element->GetAttributeValue("format") == "kml") newEvent->NotifyKML = true;
274 }
275 newEvent->Notify = true;
276 // Check here for new <description> tag that gets echoed
277 string notify_description = notify_element->FindElementValue("description");
278 if (!notify_description.empty()) {
279 newEvent->Description = notify_description;
280 }
281 notify_property_element = notify_element->FindElement("property");
282 while (notify_property_element) {
283 notifyPropertyName = notify_property_element->GetDataLine();
284
285 if (notify_property_element->HasAttribute("apply")) {
286 string function_str = notify_property_element->GetAttributeValue("apply");
287 auto f = FDMExec->GetTemplateFunc(function_str);
288 if (f)
289 newEvent->NotifyProperties.push_back(new FGFunctionValue(notifyPropertyName, PropertyManager, f,
290 notify_property_element));
291 else {
292 cerr << notify_property_element->ReadFrom()
293 << fgred << highint << " No function by the name "
294 << function_str << " has been defined. This property will "
295 << "not be logged. You should check your configuration file."
296 << reset << endl;
297 }
298 }
299 else
300 newEvent->NotifyProperties.push_back(new FGPropertyValue(notifyPropertyName, PropertyManager,
301 notify_property_element));
302
303 string caption_attribute = notify_property_element->GetAttributeValue("caption");
304 if (caption_attribute.empty()) {
305 newEvent->DisplayString.push_back(notifyPropertyName);
306 } else {
307 newEvent->DisplayString.push_back(caption_attribute);
308 }
309
310 notify_property_element = notify_element->FindNextElement("property");
311 }
312 }
313
314 // Read set definitions (these define the actions to be taken when the event
315 // is triggered).
316 set_element = event_element->FindElement("set");
317 while (set_element) {
318 prop_name = set_element->GetAttributeValue("name");
319 if (PropertyManager->HasNode(prop_name)) {
320 newEvent->SetParam.push_back( PropertyManager->GetNode(prop_name) );
321 } else {
322 newEvent->SetParam.push_back( 0L );
323 }
324 newEvent->SetParamName.push_back( prop_name );
325
326 // Todo - should probably do some safety checking here to make sure one or
327 // the other of value or function is specified.
328 if (!set_element->GetAttributeValue("value").empty()) {
329 value = set_element->GetAttributeValueAsNumber("value");
330 newEvent->Functions.push_back(nullptr);
331 } else if (set_element->FindElement("function")) {
332 value = 0.0;
333 newEvent->Functions.push_back(new FGFunction(FDMExec, set_element->FindElement("function")));
334 }
335 newEvent->SetValue.push_back(value);
336 newEvent->OriginalValue.push_back(0.0);
337 newEvent->newValue.push_back(0.0);
338 newEvent->ValueSpan.push_back(0.0);
339 string tempCompare = set_element->GetAttributeValue("type");
340 if (to_lower(tempCompare).find("delta") != string::npos) newEvent->Type.push_back(FG_DELTA);
341 else if (to_lower(tempCompare).find("bool") != string::npos) newEvent->Type.push_back(FG_BOOL);
342 else if (to_lower(tempCompare).find("value") != string::npos) newEvent->Type.push_back(FG_VALUE);
343 else newEvent->Type.push_back(FG_VALUE); // DEFAULT
344 tempCompare = set_element->GetAttributeValue("action");
345 if (to_lower(tempCompare).find("ramp") != string::npos) newEvent->Action.push_back(FG_RAMP);
346 else if (to_lower(tempCompare).find("step") != string::npos) newEvent->Action.push_back(FG_STEP);
347 else if (to_lower(tempCompare).find("exp") != string::npos) newEvent->Action.push_back(FG_EXP);
348 else newEvent->Action.push_back(FG_STEP); // DEFAULT
349
350 if (!set_element->GetAttributeValue("tc").empty())
351 newEvent->TC.push_back(set_element->GetAttributeValueAsNumber("tc"));
352 else
353 newEvent->TC.push_back(1.0); // DEFAULT
354
355 newEvent->Transiting.push_back(false);
356
357 set_element = event_element->FindNextElement("set");
358 }
359 Events.push_back(*newEvent);
360 delete newEvent;
361
362 event_element = run_element->FindNextElement("event");
363 }
364
365 Debug(4);
366
367 return true;
368}
369
370//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
371
372void FGScript::ResetEvents(void)
373{
374 LocalProperties.ResetToIC();
375 FDMExec->Setsim_time(StartTime);
376
377 for (unsigned int i=0; i<Events.size(); i++)
378 Events[i].reset();
379}
380
381//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
382
384{
385 unsigned i, j;
386 unsigned event_ctr = 0;
387
388 double currentTime = FDMExec->GetSimTime();
389 double newSetValue = 0;
390
391 if (currentTime > EndTime) return false;
392
393 // Iterate over all events.
394 for (unsigned int ev_ctr=0; ev_ctr < Events.size(); ev_ctr++) {
395
396 struct event &thisEvent = Events[ev_ctr];
397
398 // Determine whether the set of conditional tests for this condition equate
399 // to true and should cause the event to execute. If the conditions evaluate
400 // to true, then the event is triggered. If the event is not persistent,
401 // then this trigger will remain set true. If the event is persistent, the
402 // trigger will reset to false when the condition evaluates to false.
403 if (thisEvent.Condition->Evaluate()) {
404 if (!thisEvent.Triggered) {
405
406 // The conditions are true, do the setting of the desired Event
407 // parameters
408 for (i=0; i<thisEvent.SetValue.size(); i++) {
409 if (thisEvent.SetParam[i] == 0L) { // Late bind property if necessary
410 if (PropertyManager->HasNode(thisEvent.SetParamName[i])) {
411 thisEvent.SetParam[i] = PropertyManager->GetNode(thisEvent.SetParamName[i]);
412 } else {
413 throw("No property, \""+thisEvent.SetParamName[i]+"\" is defined.");
414 }
415 }
416 thisEvent.OriginalValue[i] = thisEvent.SetParam[i]->getDoubleValue();
417 if (thisEvent.Functions[i] != 0) { // Parameter should be set to a function value
418 try {
419 thisEvent.SetValue[i] = thisEvent.Functions[i]->GetValue();
420 } catch (string& msg) {
421 std::cerr << std::endl << "A problem occurred in the execution of the script. " << msg << endl;
422 throw;
423 }
424 }
425 switch (thisEvent.Type[i]) {
426 case FG_VALUE:
427 case FG_BOOL:
428 thisEvent.newValue[i] = thisEvent.SetValue[i];
429 break;
430 case FG_DELTA:
431 thisEvent.newValue[i] = thisEvent.OriginalValue[i] + thisEvent.SetValue[i];
432 break;
433 default:
434 cerr << "Invalid Type specified" << endl;
435 break;
436 }
437 thisEvent.StartTime = currentTime + thisEvent.Delay;
438 thisEvent.ValueSpan[i] = thisEvent.newValue[i] - thisEvent.OriginalValue[i];
439 thisEvent.Transiting[i] = true;
440 }
441 }
442 thisEvent.Triggered = true;
443
444 } else if (thisEvent.Persistent) { // If the event is persistent, reset the trigger.
445 thisEvent.Triggered = false; // Reset the trigger for persistent events
446 thisEvent.Notified = false; // Also reset the notification flag
447 } else if (thisEvent.Continuous) { // If the event is continuous, reset the trigger.
448 thisEvent.Triggered = false; // Reset the trigger for persistent events
449 thisEvent.Notified = false; // Also reset the notification flag
450 }
451
452 if ((currentTime >= thisEvent.StartTime) && thisEvent.Triggered) {
453
454 for (i=0; i<thisEvent.SetValue.size(); i++) {
455 if (thisEvent.Transiting[i]) {
456 thisEvent.TimeSpan = currentTime - thisEvent.StartTime;
457 switch (thisEvent.Action[i]) {
458 case FG_RAMP:
459 if (thisEvent.TimeSpan <= thisEvent.TC[i]) {
460 newSetValue = thisEvent.TimeSpan/thisEvent.TC[i] * thisEvent.ValueSpan[i] + thisEvent.OriginalValue[i];
461 } else {
462 newSetValue = thisEvent.newValue[i];
463 if (thisEvent.Continuous != true) thisEvent.Transiting[i] = false;
464 }
465 break;
466 case FG_STEP:
467 newSetValue = thisEvent.newValue[i];
468
469 // If this is not a continuous event, reset the transiting flag.
470 // Otherwise, it is known that the event is a continuous event.
471 // Furthermore, if the event is to be determined by a function,
472 // then the function will be continuously calculated.
473 if (thisEvent.Continuous != true)
474 thisEvent.Transiting[i] = false;
475 else if (thisEvent.Functions[i] != 0)
476 newSetValue = thisEvent.Functions[i]->GetValue();
477
478 break;
479 case FG_EXP:
480 newSetValue = (1 - exp( -thisEvent.TimeSpan/thisEvent.TC[i] )) * thisEvent.ValueSpan[i] + thisEvent.OriginalValue[i];
481 break;
482 default:
483 cerr << "Invalid Action specified" << endl;
484 break;
485 }
486 thisEvent.SetParam[i]->setDoubleValue(newSetValue);
487 }
488 }
489
490 // Print notification values after setting them
491 if (thisEvent.Notify && !thisEvent.Notified) {
492 if (thisEvent.NotifyKML) {
493 cout << endl << "<Placemark>" << endl;
494 cout << " <name> " << currentTime << " seconds" << " </name>"
495 << endl;
496 cout << " <description>" << endl;
497 cout << " <![CDATA[" << endl;
498 cout << " <b>" << thisEvent.Name << " (Event " << event_ctr << ")"
499 << " executed at time: " << currentTime << "</b><br/>" << endl;
500 } else {
501 cout << endl << underon
502 << highint << thisEvent.Name << normint << underoff
503 << " (Event " << event_ctr << ")"
504 << " executed at time: " << highint << currentTime << normint
505 << endl;
506 }
507 if (!thisEvent.Description.empty()) {
508 cout << " " << thisEvent.Description << endl;
509 }
510 for (j=0; j<thisEvent.NotifyProperties.size();j++) {
511 cout << " " << thisEvent.DisplayString[j] << " = "
512 << thisEvent.NotifyProperties[j]->getDoubleValue();
513 if (thisEvent.NotifyKML) cout << " <br/>";
514 cout << endl;
515 }
516 if (thisEvent.NotifyKML) {
517 cout << " ]]>" << endl;
518 cout << " </description>" << endl;
519 cout << " <Point>" << endl;
520 cout << " <altitudeMode> absolute </altitudeMode>" << endl;
521 cout << " <extrude> 1 </extrude>" << endl;
522 cout << " <coordinates>"
523 << FDMExec->GetPropagate()->GetLongitudeDeg() << ","
524 << FDMExec->GetPropagate()->GetGeodLatitudeDeg() << ","
525 << FDMExec->GetPropagate()->GetAltitudeASLmeters()
526 << "</coordinates>" << endl;
527 cout << " </Point>" << endl;
528 cout << "</Placemark>" << endl;
529 }
530 cout << endl;
531 thisEvent.Notified = true;
532 }
533
534 }
535
536 event_ctr++;
537 }
538 return true;
539}
540
541//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
542// The bitmasked value choices are as follows:
543// unset: In this case (the default) JSBSim would only print
544// out the normally expected messages, essentially echoing
545// the config files as they are read. If the environment
546// variable is not set, debug_lvl is set to 1 internally
547// 0: This requests JSBSim not to output any messages
548// whatsoever.
549// 1: This value explicity requests the normal JSBSim
550// startup messages
551// 2: This value asks for a message to be printed out when
552// a class is instantiated
553// 4: When this value is set, a message is displayed when a
554// FGModel object executes its Run() method
555// 8: When this value is set, various runtime state variables
556// are printed out periodically
557// 16: When set various parameters are sanity checked and
558// a message is printed out when they go out of bounds
559
560void FGScript::Debug(int from)
561{
562 if (debug_lvl <= 0) return;
563
564 if (debug_lvl & 1) { // Standard console startup message output
565 if (from == 0) { // Constructor
566 } else if (from == 3) {
567 } else if (from == 4) { // print out script data
568 cout << endl;
569 cout << "Script: \"" << ScriptName << "\"" << endl;
570 cout << " begins at " << StartTime << " seconds and runs to " << EndTime
571 << " seconds with dt = " << setprecision(6) << FDMExec->GetDeltaT()
572 << " (" << ceil(1.0/FDMExec->GetDeltaT()) << " Hz)" << endl;
573 cout << endl;
574
575 for (auto node: LocalProperties) {
576 cout << "Local property: " << node->GetName()
577 << " = " << node->getDoubleValue()
578 << endl;
579 }
580
581 if (LocalProperties.empty()) cout << endl;
582
583 for (unsigned i=0; i<Events.size(); i++) {
584 cout << "Event " << i;
585 if (!Events[i].Name.empty()) cout << " (" << Events[i].Name << ")";
586 cout << ":" << endl;
587
588 if (Events[i].Persistent)
589 cout << " " << "Whenever triggered, executes once";
590 else if (Events[i].Continuous)
591 cout << " " << "While true, always executes";
592 else
593 cout << " " << "When first triggered, executes once";
594
595 Events[i].Condition->PrintCondition();
596
597 cout << endl << " Actions taken";
598 if (Events[i].Delay > 0.0)
599 cout << " (after a delay of " << Events[i].Delay << " secs)";
600 cout << ":" << endl << " {";
601 for (unsigned j=0; j<Events[i].SetValue.size(); j++) {
602 if (Events[i].SetValue[j] == 0.0 && Events[i].Functions[j] != 0L) {
603 if (Events[i].SetParam[j] == 0) {
604 if (Events[i].SetParamName[j].empty()) {
605 stringstream s;
606 s << " An attempt has been made to access a non-existent property" << endl
607 << " in this event. Please check the property names used, spelling, etc.";
608 cerr << fgred << highint << endl << s.str() << reset << endl;
609 throw BaseException(s.str());
610 } else {
611 cout << endl << " set " << Events[i].SetParamName[j]
612 << " to function value (Late Bound)";
613 }
614 } else {
615 cout << endl << " set "
616 << Events[i].SetParam[j]->GetRelativeName("/fdm/jsbsim/")
617 << " to function value";
618 }
619 } else {
620 if (Events[i].SetParam[j] == 0) {
621 if (Events[i].SetParamName[j].empty()) {
622 stringstream s;
623 s << " An attempt has been made to access a non-existent property" << endl
624 << " in this event. Please check the property names used, spelling, etc.";
625 cerr << fgred << highint << endl << s.str() << reset << endl;
626 throw BaseException(s.str());
627 } else {
628 cout << endl << " set " << Events[i].SetParamName[j]
629 << " to function value (Late Bound)";
630 }
631 } else {
632 cout << endl << " set "
633 << Events[i].SetParam[j]->GetRelativeName("/fdm/jsbsim/")
634 << " to " << Events[i].SetValue[j];
635 }
636 }
637
638 switch (Events[i].Type[j]) {
639 case FG_VALUE:
640 case FG_BOOL:
641 cout << " (constant";
642 break;
643 case FG_DELTA:
644 cout << " (delta";
645 break;
646 default:
647 cout << " (unspecified type";
648 }
649
650 switch (Events[i].Action[j]) {
651 case FG_RAMP:
652 cout << " via ramp";
653 break;
654 case FG_STEP:
655 cout << " via step)";
656 break;
657 case FG_EXP:
658 cout << " via exponential approach";
659 break;
660 default:
661 cout << " via unspecified action)";
662 }
663
664 if (Events[i].Action[j] == FG_RAMP || Events[i].Action[j] == FG_EXP)
665 cout << " with time constant " << Events[i].TC[j] << ")";
666 }
667 cout << endl << " }" << endl;
668
669 // Print notifications
670 if (Events[i].Notify) {
671 if (!Events[i].NotifyProperties.empty()) {
672 if (Events[i].NotifyKML) {
673 cout << " Notifications (KML Format):" << endl << " {"
674 << endl;
675 } else {
676 cout << " Notifications:" << endl << " {" << endl;
677 }
678 for (unsigned j=0; j<Events[i].NotifyProperties.size();j++) {
679 cout << " "
680 << Events[i].NotifyProperties[j]->GetPrintableName()
681 << endl;
682 }
683 cout << " }" << endl;
684 }
685 }
686 cout << endl;
687 }
688 }
689 }
690 if (debug_lvl & 2 ) { // Instantiation/Destruction notification
691 if (from == 0) cout << "Instantiated: FGScript" << endl;
692 if (from == 1) cout << "Destroyed: FGScript" << endl;
693 }
694 if (debug_lvl & 4 ) { // Run() method entry print for FGModel-derived objects
695 }
696 if (debug_lvl & 8 ) { // Runtime state variables
697 }
698 if (debug_lvl & 16) { // Sanity checking
699 }
700 if (debug_lvl & 64) {
701 if (from == 0) { // Constructor
702 }
703 }
704}
705}
Element * FindElement(const std::string &el="")
Searches for a specified element.
const std::string & GetName(void) const
Retrieves the element name.
double GetAttributeValueAsNumber(const std::string &key)
Retrieves an attribute value as a double precision real number.
std::string GetAttributeValue(const std::string &key)
Retrieves an attribute.
std::string GetDataLine(unsigned int i=0)
Gets a line of data belonging to an element.
std::string ReadFrom(void) const
Return a string that contains a description of the location where the current XML element was read fr...
std::string FindElementValue(const std::string &el="")
Searches for the named element and returns the string data belonging to it.
Element * FindNextElement(const std::string &el="")
Searches for the next element as specified.
bool HasAttribute(const std::string &key)
Determines if an element has the supplied attribute.
double FindElementValueAsNumber(const std::string &el="")
Searches for the named element and returns the data belonging to it as a number.
Encapsulates a condition, which is used in parts of JSBSim including switches.
Definition FGCondition.h:65
Encapsulates the JSBSim simulation executive.
Definition FGFDMExec.h:184
std::shared_ptr< FGInitialCondition > GetIC(void) const
Returns a pointer to the FGInitialCondition object.
Definition FGFDMExec.h:389
std::shared_ptr< FGOutput > GetOutput(void) const
Returns the FGOutput pointer.
double GetDeltaT(void) const
Returns the simulation delta T.
Definition FGFDMExec.h:552
double Setsim_time(double cur_time)
Sets the current sim time.
std::shared_ptr< FGPropagate > GetPropagate(void) const
Returns the FGPropagate pointer.
bool LoadModel(const SGPath &AircraftPath, const SGPath &EnginePath, const SGPath &SystemsPath, const std::string &model, bool addModelToPath=true)
Loads an aircraft model.
double GetSimTime(void) const
Returns the cumulative simulation time in seconds.
Definition FGFDMExec.h:549
void Setdt(double delta_t)
Sets the integration time step for the simulation executive.
Definition FGFDMExec.h:571
std::shared_ptr< FGPropertyManager > GetPropertyManager(void) const
Returns a pointer to the property manager object.
Definition FGFDMExec.h:421
std::shared_ptr< FGInput > GetInput(void) const
Returns the FGInput pointer.
Represents a property value on which a function is applied.
Represents a mathematical function.
Definition FGFunction.h:765
static char normint[6]
normal intensity text
Definition FGJSBBase.h:154
static char fgred[6]
red text
Definition FGJSBBase.h:166
static char underon[5]
underlines text
Definition FGJSBBase.h:158
static char reset[5]
resets text properties
Definition FGJSBBase.h:156
static char underoff[6]
underline off
Definition FGJSBBase.h:160
static char highint[5]
highlights text
Definition FGJSBBase.h:150
Represents a property value which can use late binding.
bool RunScript(void)
This function is called each pass through the executive Run() method IF scripting is enabled.
Definition FGScript.cpp:383
~FGScript()
Default destructor.
Definition FGScript.cpp:74
FGScript(FGFDMExec *exec)
Default constructor.
Definition FGScript.cpp:65
bool LoadScript(const SGPath &script, double default_dT, const SGPath &initfile)
Loads a script to drive JSBSim (usually in standalone mode).
Definition FGScript.cpp:92