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.h
1/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2 Header: FGScript.h
3 Author: Jon Berndt
4 Date started: 12/21/2001
5
6 ------------- Copyright (C) 2001 Jon S. Berndt (jon@jsbsim.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
25HISTORY
26--------------------------------------------------------------------------------
2712/21/01 JSB Created
28
29%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
30SENTRY
31%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
32
33#ifndef FGSCRIPT_HEADER_H
34#define FGSCRIPT_HEADER_H
35
36/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
37INCLUDES
38%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
39
40#include <vector>
41#include <map>
42#include <memory>
43
44#include "FGJSBBase.h"
45#include "FGPropertyReader.h"
46#include "input_output/FGPropertyManager.h"
47#include "simgear/misc/sg_path.hxx"
48
49/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
50FORWARD DECLARATIONS
51%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
52
53namespace JSBSim {
54
55class FGFDMExec;
56class FGCondition;
57class FGFunction;
58class FGPropertyValue;
59
60/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
61CLASS DOCUMENTATION
62%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
63
163/*%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
164CLASS DECLARATION
165%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%*/
166
167class FGScript : public FGJSBBase
168{
169public:
171 FGScript(FGFDMExec* exec);
172
174 ~FGScript();
175
187 bool LoadScript(const SGPath& script, double default_dT,
188 const SGPath& initfile);
189
193 bool RunScript(void);
194
195 void ResetEvents(void);
196
197private:
198 enum eAction {
199 FG_RAMP = 1,
200 FG_STEP = 2,
201 FG_EXP = 3
202 };
203
204 enum eType {
205 FG_VALUE = 1,
206 FG_DELTA = 2,
207 FG_BOOL = 3
208 };
209
210 struct event {
211 FGCondition *Condition;
212 bool Persistent;
213 bool Continuous;
214 bool Triggered;
215 bool Notify;
216 bool NotifyKML;
217 bool Notified;
218 double Delay;
219 double StartTime;
220 double TimeSpan;
221 std::string Name;
222 std::string Description;
223 std::vector <FGPropertyNode_ptr> SetParam;
224 std::vector <std::string> SetParamName;
225 std::vector <FGPropertyValue*> NotifyProperties;
226 std::vector <std::string> DisplayString;
227 std::vector <eAction> Action;
228 std::vector <eType> Type;
229 std::vector <double> SetValue;
230 std::vector <double> TC;
231 std::vector <double> newValue;
232 std::vector <double> OriginalValue;
233 std::vector <double> ValueSpan;
234 std::vector <bool> Transiting;
235 std::vector <FGFunction*> Functions;
236
237 event() {
238 Triggered = false;
239 Persistent = false;
240 Continuous = false;
241 Delay = 0.0;
242 Notify = Notified = NotifyKML = false;
243 Name = "";
244 StartTime = 0.0;
245 TimeSpan = 0.0;
246 }
247
248 void reset(void) {
249 Triggered = false;
250 Notified = false;
251 StartTime = 0.0;
252 }
253 };
254
255 std::string ScriptName;
256 double StartTime;
257 double EndTime;
258 std::vector <struct event> Events;
259
260 FGPropertyReader LocalProperties;
261
262 FGFDMExec* FDMExec;
263 std::shared_ptr<FGPropertyManager> PropertyManager;
264 void Debug(int from);
265};
266}
267//%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
268#endif
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
JSBSim Base class.
Definition FGJSBBase.h:117
Encapsulates the JSBSim scripting capability.
Definition FGScript.h:168
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
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