1 // Copyright (C) 2009 - 2010 Mathias Froehlich - Mathias.Froehlich@web.de
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.
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.
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.
18 #ifndef RTIFederate_hxx
19 #define RTIFederate_hxx
22 #include "simgear/structure/SGWeakReferenced.hxx"
23 #include "RTIObjectClass.hxx"
24 #include "RTIObjectInstance.hxx"
30 class RTIFederate : public SGWeakReferenced {
33 virtual ~RTIFederate();
35 /// Get the name of the joined federate/federation
36 const std::string& getFederateType() const
37 { return _federateType; }
38 const std::string& getFederationName() const
39 { return _federationName; }
41 /// Create a federation execution
42 /// Semantically this methods should be static,
43 /// but the nonstatic case could reuse the connection to the server
44 /// FIXME: cannot determine from the return value if we created the execution
45 virtual bool createFederationExecution(const std::string& federation, const std::string& objectModel) = 0;
46 virtual bool destroyFederationExecution(const std::string& federation) = 0;
48 /// Join with federateName the federation execution federation
49 virtual bool join(const std::string& federateType, const std::string& federation) = 0;
50 virtual bool resign() = 0;
52 /// Synchronization Point handling
53 virtual bool registerFederationSynchronizationPoint(const std::string& label, const RTIData& tag) = 0;
54 virtual bool waitForFederationSynchronizationPointAnnounced(const std::string& label) = 0;
55 virtual bool synchronizationPointAchieved(const std::string& label) = 0;
56 virtual bool waitForFederationSynchronized(const std::string& label) = 0;
59 virtual bool enableTimeConstrained() = 0;
60 virtual bool disableTimeConstrained() = 0;
62 virtual bool enableTimeRegulation(const SGTimeStamp& lookahead) = 0;
63 virtual bool disableTimeRegulation() = 0;
65 virtual bool timeAdvanceRequestBy(const SGTimeStamp& dt) = 0;
66 virtual bool timeAdvanceRequest(const SGTimeStamp& fedTime) = 0;
69 virtual bool tick() = 0;
70 virtual bool tick(const double& minimum, const double& maximum) = 0;
72 virtual RTIObjectClass* createObjectClass(const std::string& name, HLAObjectClass* hlaObjectClass) = 0;
73 // virtual RTIInteractionClass* createInteractionClass(const std::string& name) = 0;
75 virtual RTIObjectInstance* getObjectInstance(const std::string& name) = 0;
78 void setFederateType(const std::string& federateType)
79 { _federateType = federateType; }
80 void setFederationName(const std::string& federationName)
81 { _federationName = federationName; }
84 RTIFederate(const RTIFederate&);
85 RTIFederate& operator=(const RTIFederate&);
87 /// The federates name
88 std::string _federateType;
90 /// The federation execution name
91 std::string _federationName;