]> git.mxchange.org Git - simgear.git/blob - simgear/hla/HLAPropertyDataElement.hxx
hla: for rti13 queue all callbacks.
[simgear.git] / simgear / hla / HLAPropertyDataElement.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 HLAPropertyDataElement_hxx
19 #define HLAPropertyDataElement_hxx
20
21 #include <simgear/props/props.hxx>
22 #include "HLADataElement.hxx"
23
24 namespace simgear {
25
26 class HLAPropertyDataElement : public HLADataElement {
27 public:
28     HLAPropertyDataElement();
29     HLAPropertyDataElement(SGPropertyNode* propertyNode);
30     HLAPropertyDataElement(const HLADataType* dataType, SGPropertyNode* propertyNode);
31     HLAPropertyDataElement(const HLADataType* dataType);
32     virtual ~HLAPropertyDataElement();
33
34     virtual bool encode(HLAEncodeStream& stream) const;
35     virtual bool decode(HLADecodeStream& stream);
36
37     virtual const HLADataType* getDataType() const;
38     virtual bool setDataType(const HLADataType* dataType);
39
40     void setPropertyNode(SGPropertyNode* propertyNode);
41     SGPropertyNode* getPropertyNode();
42     const SGPropertyNode* getPropertyNode() const;
43     
44 private:
45     HLADataElement*
46     createDataElement(const SGSharedPtr<const HLADataType>& dataType, const SGSharedPtr<SGPropertyNode>& propertyNode);
47     
48     class ScalarDecodeVisitor;
49     class ScalarEncodeVisitor;
50     class ScalarDataElement;
51     class StringDecodeVisitor;
52     class StringEncodeVisitor;
53     class StringDataElement;
54     class DataElementFactoryVisitor;
55
56     SGSharedPtr<const HLADataType> _dataType;
57     SGSharedPtr<HLADataElement> _dataElement;
58     SGSharedPtr<SGPropertyNode> _propertyNode;
59 };
60
61 } // namespace simgear
62
63 #endif