]> git.mxchange.org Git - simgear.git/blob - simgear/hla/HLAFixedRecordDataType.hxx
Merge branch 'next' of git://gitorious.org/fg/simgear into next
[simgear.git] / simgear / hla / HLAFixedRecordDataType.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 HLAFixedRecordDataType_hxx
19 #define HLAFixedRecordDataType_hxx
20
21 #include <string>
22 #include <vector>
23 #include <simgear/structure/SGSharedPtr.hxx>
24 #include "HLADataType.hxx"
25
26 namespace simgear {
27
28 class HLAAbstractFixedRecordDataElement;
29
30 class HLAFixedRecordDataType : public HLADataType {
31 public:
32     HLAFixedRecordDataType(const std::string& name = "HLAFixedRecordDataType");
33     virtual ~HLAFixedRecordDataType();
34
35     virtual void accept(HLADataTypeVisitor& visitor) const;
36
37     virtual const HLAFixedRecordDataType* toFixedRecordDataType() const;
38
39     virtual bool decode(HLADecodeStream& stream, HLAAbstractFixedRecordDataElement& value) const;
40     virtual bool encode(HLAEncodeStream& stream, const HLAAbstractFixedRecordDataElement& value) const;
41
42     unsigned getNumFields() const
43     { return _fieldList.size(); }
44
45     std::string getFieldName(unsigned i) const
46     {
47         if (_fieldList.size() <= i)
48             return std::string();
49         return _fieldList[i].getName();
50     }
51     const HLADataType* getFieldDataType(unsigned i) const
52     {
53         if (_fieldList.size() <= i)
54             return 0;
55         return _fieldList[i].getDataType();
56     }
57
58     unsigned getFieldNumber(const std::string& name) const
59     {
60         for (unsigned i = 0; i < _fieldList.size(); ++i) {
61             if (_fieldList[i].getName() != name)
62                 continue;
63             return i;
64         }
65         return ~0u;
66     }
67
68     void addField(const std::string& name, const HLADataType* dataType);
69
70 private:
71     struct Field {
72         Field(const std::string& name, const HLADataType* dataType) :
73             _name(name), _dataType(dataType) {}
74         const std::string& getName() const
75         { return _name; }
76
77         const HLADataType* getDataType() const
78         { return _dataType.get(); }
79
80     private:
81         std::string _name;
82         SGSharedPtr<const HLADataType> _dataType;
83     };
84
85     typedef std::vector<Field> FieldList;
86     FieldList _fieldList;
87 };
88
89 } // namespace simgear
90
91 #endif