WSF
FiresMover.hpp
Go to the documentation of this file.
1// ****************************************************************************
2// CUI//REL TO USA ONLY
3//
4// The Advanced Framework for Simulation, Integration, and Modeling (AFSIM)
5//
6// Copyright 2003-2015 The Boeing Company. All rights reserved.
7//
8// The use, dissemination or disclosure of data in this file is subject to
9// limitation or restriction. See accompanying README and LICENSE for details.
10// ****************************************************************************
11
12#ifndef FIRES_MOVER_HPP
13#define FIRES_MOVER_HPP
14
15#include <map>
16
17#include "FiresPath.hpp"
18#include "FiresTable.hpp"
19#include "UtEntity.hpp"
20class UtInput;
21#include "WsfDraw.hpp"
22#include "WsfGeoPoint.hpp"
23#include "WsfMover.hpp"
24
25namespace Fires
26{
31class FiresMover : public WsfMover, public FiresPath
32{
33public:
34 explicit FiresMover(WsfScenario& aScenario);
35 FiresMover(const FiresMover& aSrc);
36 ~FiresMover() override;
37
38 FiresMover& operator=(const FiresMover& aSrc) = delete;
39
40 WsfMover* Clone() const override;
41
42 bool Initialize2(double aSimTime) override;
43 bool ProcessInput(UtInput& aInput) override;
44 void Update(double aSimTime) override;
45
47
48private:
49 double mAzimuthErrorExpected;
50 double mElevationErrorExpected;
51
53};
54}; // namespace Fires
55
56#endif
WsfSpatialDomain
A collection of enumerations and type definitions that are used across a number of components.
Definition WsfTypes.hpp:32
@ WSF_SPATIAL_DOMAIN_AIR
Cars, trucks, buildings, etc.
Definition WsfTypes.hpp:35
bool Initialize2(double aSimTime) override
Definition FiresMover.cpp:123
void Update(double aSimTime) override
Definition FiresMover.cpp:145
bool ProcessInput(UtInput &aInput) override
Definition FiresMover.cpp:53
FiresMover & operator=(const FiresMover &aSrc)=delete
WsfSpatialDomain GetSpatialDomain() const override
Definition FiresMover.hpp:46
FiresMover(WsfScenario &aScenario)
Definition FiresMover.cpp:28
~FiresMover() override
Definition FiresMover.cpp:45
WsfMover * Clone() const override
Definition FiresMover.cpp:47
void ComputeTargetRangeBearingDeltaAlt()
FiresPath(WsfSimulation &aSimulation, UtStringId aType, WsfGeoPoint &aInitialLocation, double &aTargetRange, double &aTargetBearing, double aAzimuthError=0.0, double aElevationError=0.0)
Constructor to be used independently of the FiresMover.
Definition FiresPath.cpp:71
WsfMover()=delete
Contains the data required to create a simulation, and acts as the entry point for input file process...
Definition WsfScenario.hpp:111
Provide a top-level interface for including the fires library's types.
Definition BallisticPath.cpp:34
Copyrights Multiple, All Rights Reserved