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 RTI13ObjectInstance_hxx
19 #define RTI13ObjectInstance_hxx
24 #ifndef RTI_USES_STD_FSTREAM
25 #define RTI_USES_STD_FSTREAM
30 #include <simgear/structure/SGWeakPtr.hxx>
32 #include "RTIObjectInstance.hxx"
33 #include "RTI13ObjectClass.hxx"
37 class RTI13Ambassador;
38 class RTI13ObjectClass;
40 class RTI13ObjectInstance : public RTIObjectInstance {
42 RTI13ObjectInstance(const RTI::ObjectHandle& handle, HLAObjectInstance* hlaObjectInstance, const RTI13ObjectClass* objectClass, RTI13Ambassador* ambassador, bool owned);
43 virtual ~RTI13ObjectInstance();
45 const RTI::ObjectHandle& getHandle() const
47 void setHandle(const RTI::ObjectHandle& handle)
50 virtual const RTIObjectClass* getObjectClass() const;
51 const RTI13ObjectClass* get13ObjectClass() const;
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); }
62 virtual std::string getName() const;
64 virtual void addToRequestQueue();
66 virtual void deleteObjectInstance(const RTIData& tag);
67 virtual void deleteObjectInstance(const SGTimeStamp& timeStamp, const RTIData& tag);
68 virtual void localDeleteObjectInstance();
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);
75 virtual void updateAttributeValues(const RTIData& tag);
76 virtual void updateAttributeValues(const SGTimeStamp& timeStamp, const RTIData& tag);
78 void attributesInScope(const RTI::AttributeHandleSet& attributes);
79 void attributesOutOfScope(const RTI::AttributeHandleSet& attributes);
81 void turnUpdatesOnForObjectInstance(const RTI::AttributeHandleSet& attributes);
82 void turnUpdatesOffForObjectInstance(const RTI::AttributeHandleSet& attributes);
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);
96 RTI::ObjectHandle _handle;
97 SGSharedPtr<const RTI13ObjectClass> _objectClass;
98 SGWeakPtr<RTI13Ambassador> _ambassador;
100 // cached storage for updates
101 std::auto_ptr<RTI::AttributeHandleValuePairSet> _attributeValuePairSet;