]> git.mxchange.org Git - flightgear.git/blob - src/FDM/JSBSim/input_output/FGScript.h
remove macintosh (note: not MacOS-X) and MWERKS workarounds.
[flightgear.git] / src / FDM / JSBSim / input_output / FGScript.h
1 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2  Header:       FGScript.h
3  Author:       Jon Berndt
4  Date started: 12/21/2001
5
6  ------------- Copyright (C) 2001  Jon S. Berndt (jsb@hal-pc.org) -------------
7
8  This program is free software; you can redistribute it and/or modify it under
9  the terms of the GNU Lesser General Public License as published by the Free Software
10  Foundation; either version 2 of the License, or (at your option) any later
11  version.
12
13  This program is distributed in the hope that it will be useful, but WITHOUT
14  ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
15  FOR A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
16  details.
17
18  You should have received a copy of the GNU Lesser General Public License along with
19  this program; if not, write to the Free Software Foundation, Inc., 59 Temple
20  Place - Suite 330, Boston, MA  02111-1307, USA.
21
22  Further information about the GNU Lesser General Public License can also be found on
23  the world wide web at http://www.gnu.org.
24
25 HISTORY
26 --------------------------------------------------------------------------------
27 12/21/01   JSB   Created
28
29 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
30 SENTRY
31 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
32
33 #ifndef FGSCRIPT_HEADER_H
34 #define FGSCRIPT_HEADER_H
35
36 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
37 INCLUDES
38 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
39
40 #include "FGJSBBase.h"
41 #include "FGState.h"
42 #include "FGFDMExec.h"
43 #include <math/FGFunction.h>
44 #include <math/FGCondition.h>
45 #include <vector>
46 #include <input_output/FGXMLFileRead.h>
47
48 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
49 DEFINITIONS
50 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
51
52 #define ID_FGSCRIPT "$Id$"
53
54 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
55 FORWARD DECLARATIONS
56 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
57
58 namespace JSBSim {
59
60 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
61 CLASS DOCUMENTATION
62 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
63
64 /** Encapsulates the JSBSim scripting capability.
65     <h4>Scripting support provided via FGScript.</h4>
66
67     <p>There is support for scripting provided in the FGScript
68     class. Commands are specified using the <em>Scripting
69     Directives for JSBSim</em>. The script file is in XML
70     format. A test condition (or conditions) can be set up in an event in a
71     script and when the condition evaluates to true, the specified
72     action[s] is/are taken. An event can be <em>persistent</em>,
73     meaning that at all times when the test condition evaluates to true
74     the specified <em>set</em> actions take place. When the set of
75     tests evaluates to true for a given
76     condition, an item may be set to another value. This value may
77     be a value, or a delta value, and the change from the
78     current value to the new value can be either via a step function,
79     a ramp, or an exponential approach. The speed of a ramp or
80     approach is specified via the time constant. Here is an example
81     illustrating the format of the script file:
82
83     @code
84 <?xml version="1.0"?>
85 <runscript name="C172-01A takeoff run">
86   <!--
87     This run is for testing the C172 altitude hold autopilot
88   -->
89
90   <use aircraft="c172x"/>
91   <use initialize="reset00"/>
92   <run start="0.0" end="3000" dt="0.0083333">
93
94     <event name="engine start">
95       <notify/>
96       <condition>
97         sim-time-sec >= 0.25
98       </condition>
99       <set name="fcs/throttle-cmd-norm" value="1.0" action="FG_RAMP" tc ="0.5"/>
100       <set name="fcs/mixture-cmd-norm" value="0.87" action="FG_RAMP" tc ="0.5"/>
101       <set name="propulsion/magneto_cmd" value="3"/>
102       <set name="propulsion/starter_cmd" value="1"/>
103     </event>
104
105     <event name="set heading hold">
106       <!-- Set Heading when reach 5 ft -->
107       <notify/>
108       <condition>
109         position/h-agl-ft >= 5
110       </condition>
111       <set name="ap/heading_setpoint" value="200"/>
112       <set name="ap/attitude_hold" value="0"/>
113       <set name="ap/heading_hold" value="1"/>
114     </event>
115
116     <event name="set autopilot">
117       <!-- Set Autopilot for 20 ft -->
118       <notify/>
119       <condition>
120         aero/qbar-psf >= 4
121       </condition>
122       <set name="ap/altitude_setpoint" value="100.0" action="FG_EXP" tc ="2.0"/>
123       <set name="ap/altitude_hold" value="1"/>
124       <set name="fcs/flap-cmd-norm" value=".33"/>
125     </event>
126
127     <event name="set autopilot 2" persistent="true">
128       <!-- Set Autopilot for 6000 ft -->
129       <notify/>
130       <condition>
131         aero/qbar-psf > 5
132       </condition>
133       <set name="ap/altitude_setpoint" value="6000.0"/>
134     </event>
135
136     <event name="Time Notify">
137       <notify/>
138       <condition> sim-time-sec >= 500 </condition>
139     </event>
140
141     <event name="Time Notify">
142       <notify/>
143       <condition> sim-time-sec >= 1000 </condition>
144     </event>
145
146   </run>
147
148 </runscript>
149     @endcode
150
151     The first line must always be present - it identifies the file
152     as an XML format file. The second line
153     identifies this file as a script file, and gives a descriptive
154     name to the script file. Comments are next, delineated by the
155     &lt;!-- and --&gt; symbols. The aircraft and initialization files
156     to be used are specified in the &quot;use&quot; lines. Next,
157     comes the &quot;run&quot; section, where the conditions are
158     described in &quot;event&quot; clauses.</p>
159     @author Jon S. Berndt
160     @version "$Id$"
161 */
162
163 /*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
164 CLASS DECLARATION
165 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
166
167 class FGScript : public FGJSBBase, public FGXMLFileRead
168 {
169 public:
170   /// Default constructor
171   FGScript(FGFDMExec* exec);
172
173   /// Default destructor
174   ~FGScript();
175
176   /** Loads a script to drive JSBSim (usually in standalone mode).
177       The language is the Script Directives for JSBSim.
178       @param script the filename (including path name, if any) for the script.
179       @return true if successful */
180   bool LoadScript( string script );
181
182   /** This function is called each pass through the executive Run() method IF
183       scripting is enabled.
184       @return false if script should exit (i.e. if time limits are violated */
185   bool RunScript(void);
186
187   void ResetEvents(void) {
188     for (int i=0; i<Events.size(); i++) Events[i].reset();
189   }
190
191 private:
192   enum eAction {
193     FG_RAMP  = 1,
194     FG_STEP  = 2,
195     FG_EXP   = 3
196   };
197
198   enum eType {
199     FG_VALUE = 1,
200     FG_DELTA = 2,
201     FG_BOOL  = 3
202   };
203
204   struct event {
205     FGCondition     *Condition;
206     bool             Persistent;
207     bool             Triggered;
208     bool             PrevTriggered;
209     bool             Notify;
210     bool             Notified;
211     double           Delay;
212     double           StartTime;
213     double           TimeSpan;
214     string           Name;
215     vector <FGPropertyManager*>  SetParam;
216     vector <FGPropertyManager*>  NotifyProperties;
217     vector <eAction> Action;
218     vector <eType>   Type;
219     vector <double>  SetValue;
220     vector <double>  TC;
221     vector <double>  newValue;
222     vector <double>  OriginalValue;
223     vector <double>  ValueSpan;
224     vector <bool>    Transiting;
225     vector <FGFunction*> Functions;
226
227     event() {
228       Triggered = false;
229       PrevTriggered = false;
230       Persistent = false;
231       Delay = 0.0;
232       Notify = Notified = false;
233       Name = "";
234       StartTime = 0.0;
235       TimeSpan = 0.0;
236     }
237
238     void reset(void) {
239       Triggered = false;
240       PrevTriggered = false;
241       Notified = false;
242       StartTime = 0.0;
243     }
244   };
245
246   struct LocalProps {
247     double *value;
248     string title;
249     LocalProps(double initial_value=0) {
250       value = new double(initial_value);
251       title = "";
252     }
253   };
254
255   string  ScriptName;
256   double  StartTime;
257   double  EndTime;
258   vector <struct event> Events;
259   vector <LocalProps*> local_properties;
260
261   FGFDMExec* FDMExec;
262   FGState* State;
263   FGPropertyManager* PropertyManager;
264   void Debug(int from);
265 };
266 }
267 //%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
268 #endif
269