]> git.mxchange.org Git - simgear.git/blob - simgear/hla/RTIFederate.hxx
e922eff873bc8b11ae14ff86a9e48e2da229b753
[simgear.git] / simgear / hla / RTIFederate.hxx
1 // Copyright (C) 2009 - 2011  Mathias Froehlich - Mathias.Froehlich@web.de
2 //
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Library General Public
5 // License as published by the Free Software Foundation; either
6 // version 2 of the License, or (at your option) any later version.
7 //
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11 // Library General Public License for more details.
12 //
13 // You should have received a copy of the GNU General Public License
14 // along with this program; if not, write to the Free Software
15 // Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
16 //
17
18 #ifndef RTIFederate_hxx
19 #define RTIFederate_hxx
20
21 #include <string>
22 #include "simgear/structure/SGWeakReferenced.hxx"
23 #include "RTIObjectClass.hxx"
24 #include "RTIObjectInstance.hxx"
25
26 class SGTimeStamp;
27
28 namespace simgear {
29
30 class RTIFederate : public SGWeakReferenced {
31 public:
32     RTIFederate();
33     virtual ~RTIFederate();
34
35     /// Create a federation execution
36     /// Semantically this methods should be static,
37     enum FederationManagementResult {
38         FederationManagementSuccess,
39         FederationManagementFail,
40         FederationManagementFatal
41     };
42
43     virtual FederationManagementResult createFederationExecution(const std::string& federation, const std::string& objectModel) = 0;
44     virtual FederationManagementResult destroyFederationExecution(const std::string& federation) = 0;
45
46     /// Join with federateName the federation execution federation
47     virtual FederationManagementResult join(const std::string& federateType, const std::string& federation) = 0;
48     virtual bool resign() = 0;
49
50     /// Synchronization Point handling
51     virtual bool registerFederationSynchronizationPoint(const std::string& label, const RTIData& tag) = 0;
52     virtual bool getFederationSynchronizationPointAnnounced(const std::string& label) = 0;
53     virtual bool synchronizationPointAchieved(const std::string& label) = 0;
54     virtual bool getFederationSynchronized(const std::string& label) = 0;
55
56     /// Time management
57     virtual bool enableTimeConstrained() = 0;
58     virtual bool disableTimeConstrained() = 0;
59     virtual bool getTimeConstrainedEnabled() = 0;
60
61     virtual bool enableTimeRegulation(const SGTimeStamp& lookahead) = 0;
62     virtual bool disableTimeRegulation() = 0;
63     virtual bool modifyLookahead(const SGTimeStamp& timeStamp) = 0;
64     virtual bool getTimeRegulationEnabled() = 0;
65
66     virtual bool timeAdvanceRequest(const SGTimeStamp& fedTime) = 0;
67     virtual bool timeAdvanceRequestAvailable(const SGTimeStamp& timeStamp) = 0;
68     virtual bool getTimeAdvancePending() = 0;
69
70     virtual bool queryFederateTime(SGTimeStamp& timeStamp) = 0;
71     virtual bool queryLookahead(SGTimeStamp& timeStamp) = 0;
72     virtual bool queryGALT(SGTimeStamp& timeStamp) = 0;
73     virtual bool queryLITS(SGTimeStamp& timeStamp) = 0;
74
75     /// Process messages
76     virtual bool processMessage() = 0;
77     virtual bool processMessages(const double& minimum, const double& maximum) = 0;
78
79     virtual RTIObjectClass* createObjectClass(const std::string& name, HLAObjectClass* hlaObjectClass) = 0;
80     // virtual RTIInteractionClass* createInteractionClass(const std::string& name) = 0;
81
82     virtual RTIObjectInstance* getObjectInstance(const std::string& name) = 0;
83
84 private:
85     RTIFederate(const RTIFederate&);
86     RTIFederate& operator=(const RTIFederate&);
87 };
88
89 }
90
91 #endif