]> git.mxchange.org Git - simgear.git/blob - simgear/hla/HLAArrayDataType.hxx
Merge remote branch 'origin/releases/2.2.0' into next
[simgear.git] / simgear / hla / HLAArrayDataType.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 HLAArrayDataType_hxx
19 #define HLAArrayDataType_hxx
20
21 #include <string>
22 #include <simgear/structure/SGSharedPtr.hxx>
23 #include "HLADataType.hxx"
24
25 namespace simgear {
26
27 class HLAAbstractArrayDataElement;
28
29 class HLAArrayDataType : public HLADataType {
30 public:
31     HLAArrayDataType(const std::string& name = "HLAArrayDataType");
32     virtual ~HLAArrayDataType();
33
34     virtual void accept(HLADataTypeVisitor& visitor) const;
35
36     virtual const HLAArrayDataType* toArrayDataType() const;
37
38     virtual bool decode(HLADecodeStream& stream, HLAAbstractArrayDataElement& value) const = 0;
39     virtual bool encode(HLAEncodeStream& stream, const HLAAbstractArrayDataElement& value) const = 0;
40
41     void setElementDataType(const HLADataType* elementDataType);
42     const HLADataType* getElementDataType() const
43     { return _elementDataType.get(); }
44
45 private:
46     SGSharedPtr<const HLADataType> _elementDataType;
47 };
48
49 class HLAFixedArrayDataType : public HLAArrayDataType {
50 public:
51     HLAFixedArrayDataType(const std::string& name = "HLAFixedArrayDataType");
52     virtual ~HLAFixedArrayDataType();
53
54     virtual void accept(HLADataTypeVisitor& visitor) const;
55
56     virtual bool decode(HLADecodeStream& stream, HLAAbstractArrayDataElement& value) const;
57     virtual bool encode(HLAEncodeStream& stream, const HLAAbstractArrayDataElement& value) const;
58
59     void setNumElements(unsigned numElements)
60     { _numElements = numElements; }
61     unsigned getNumElements() const
62     { return _numElements; }
63
64 private:
65     unsigned _numElements;
66 };
67
68 class HLAVariableArrayDataType : public HLAArrayDataType {
69 public:
70     HLAVariableArrayDataType(const std::string& name = "HLAVariableArrayDataType");
71     virtual ~HLAVariableArrayDataType();
72
73     virtual void accept(HLADataTypeVisitor& visitor) const;
74
75     virtual bool decode(HLADecodeStream& stream, HLAAbstractArrayDataElement& value) const;
76     virtual bool encode(HLAEncodeStream& stream, const HLAAbstractArrayDataElement& value) const;
77
78     void setSizeDataType(const HLADataType* sizeDataType);
79     const HLADataType* getSizeDataType() const
80     { return _sizeDataType.get(); }
81
82 private:
83     SGSharedPtr<const HLADataType> _sizeDataType;
84 };
85
86 } // namespace simgear
87
88 #endif