]> git.mxchange.org Git - simgear.git/blob - simgear/hla/RTI13ObjectInstance.hxx
Merge remote branch 'origin/releases/2.2.0' into next
[simgear.git] / simgear / hla / RTI13ObjectInstance.hxx
1 // Copyright (C) 2009 - 2010  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 RTI13ObjectInstance_hxx
19 #define RTI13ObjectInstance_hxx
20
21 #include <map>
22 #include <memory>
23
24 #ifndef RTI_USES_STD_FSTREAM
25 #define RTI_USES_STD_FSTREAM
26 #endif
27
28 #include <RTI.hh>
29
30 #include <simgear/structure/SGWeakPtr.hxx>
31
32 #include "RTIObjectInstance.hxx"
33 #include "RTI13ObjectClass.hxx"
34
35 namespace simgear {
36
37 class RTI13Ambassador;
38 class RTI13ObjectClass;
39
40 class RTI13ObjectInstance : public RTIObjectInstance {
41 public:
42     RTI13ObjectInstance(const RTI::ObjectHandle& handle, HLAObjectInstance* hlaObjectInstance, const RTI13ObjectClass* objectClass, RTI13Ambassador* ambassador, bool owned);
43     virtual ~RTI13ObjectInstance();
44
45     const RTI::ObjectHandle& getHandle() const
46     { return _handle; }
47     void setHandle(const RTI::ObjectHandle& handle)
48     { _handle = handle; }
49
50     virtual const RTIObjectClass* getObjectClass() const;
51     const RTI13ObjectClass* get13ObjectClass() const;
52
53     unsigned getNumAttributes() const
54     { return get13ObjectClass()->getNumAttributes(); }
55     unsigned getAttributeIndex(const std::string& name) const
56     { return get13ObjectClass()->getAttributeIndex(name); }
57     unsigned getAttributeIndex(const RTI::AttributeHandle& handle) const
58     { return get13ObjectClass()->getAttributeIndex(handle); }
59     RTI::AttributeHandle getAttributeHandle(unsigned index) const
60     { return get13ObjectClass()->getAttributeHandle(index); }
61
62     virtual std::string getName() const;
63
64     virtual void addToRequestQueue();
65
66     virtual void deleteObjectInstance(const RTIData& tag);
67     virtual void deleteObjectInstance(const SGTimeStamp& timeStamp, const RTIData& tag);
68     virtual void localDeleteObjectInstance();
69
70     void reflectAttributeValues(const RTI::AttributeHandleValuePairSet& attributeValuePairSet, const RTIData& tag);
71     void reflectAttributeValues(const RTI::AttributeHandleValuePairSet& attributeValuePairSet, const SGTimeStamp& timeStamp, const RTIData& tag);
72     virtual void requestObjectAttributeValueUpdate();
73     void provideAttributeValueUpdate(const RTI::AttributeHandleSet& attributes);
74
75     virtual void updateAttributeValues(const RTIData& tag);
76     virtual void updateAttributeValues(const SGTimeStamp& timeStamp, const RTIData& tag);
77
78     void attributesInScope(const RTI::AttributeHandleSet& attributes);
79     void attributesOutOfScope(const RTI::AttributeHandleSet& attributes);
80
81     void turnUpdatesOnForObjectInstance(const RTI::AttributeHandleSet& attributes);
82     void turnUpdatesOffForObjectInstance(const RTI::AttributeHandleSet& attributes);
83
84     // Not yet sure what to do here. But the dispatch functions are already there
85     void requestAttributeOwnershipAssumption(const RTI::AttributeHandleSet& attributes, const RTIData& tag);
86     void attributeOwnershipDivestitureNotification(const RTI::AttributeHandleSet& attributes);
87     void attributeOwnershipAcquisitionNotification(const RTI::AttributeHandleSet& attributes);
88     void attributeOwnershipUnavailable(const RTI::AttributeHandleSet& attributes);
89     void requestAttributeOwnershipRelease(const RTI::AttributeHandleSet& attributes, const RTIData& tag);
90     void confirmAttributeOwnershipAcquisitionCancellation(const RTI::AttributeHandleSet& attributes);
91     void informAttributeOwnership(RTI::AttributeHandle attributeHandle, RTI::FederateHandle federateHandle);
92     void attributeIsNotOwned(RTI::AttributeHandle attributeHandle);
93     void attributeOwnedByRTI(RTI::AttributeHandle attributeHandle);
94
95 private:
96     RTI::ObjectHandle _handle;
97     SGSharedPtr<const RTI13ObjectClass> _objectClass;
98     SGWeakPtr<RTI13Ambassador> _ambassador;
99
100     // cached storage for updates
101     std::auto_ptr<RTI::AttributeHandleValuePairSet> _attributeValuePairSet;
102 };
103
104 }
105
106 #endif