]> git.mxchange.org Git - simgear.git/blob - simgear/hla/HLAFixedRecordDataType.cxx
hla: add missing file fir the last commit.
[simgear.git] / simgear / hla / HLAFixedRecordDataType.cxx
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 #include "HLAFixedRecordDataType.hxx"
19
20 #include "HLADataTypeVisitor.hxx"
21 #include "HLAFixedRecordDataElement.hxx"
22
23 namespace simgear {
24
25 HLAFixedRecordDataType::HLAFixedRecordDataType(const std::string& name) :
26     HLADataType(name)
27 {
28 }
29
30 HLAFixedRecordDataType::~HLAFixedRecordDataType()
31 {
32 }
33
34 void
35 HLAFixedRecordDataType::accept(HLADataTypeVisitor& visitor) const
36 {
37     visitor.apply(*this);
38 }
39
40 const HLAFixedRecordDataType*
41 HLAFixedRecordDataType::toFixedRecordDataType() const
42 {
43     return this;
44 }
45
46 bool
47 HLAFixedRecordDataType::decode(HLADecodeStream& stream, HLAAbstractFixedRecordDataElement& value) const
48 {
49     stream.alignOffsetForSize(getAlignment());
50     unsigned numFields = getNumFields();
51     for (unsigned i = 0; i < numFields; ++i)
52         if (!value.decodeField(stream, i))
53             return false;
54     return true;
55 }
56
57 bool
58 HLAFixedRecordDataType::encode(HLAEncodeStream& stream, const HLAAbstractFixedRecordDataElement& value) const
59 {
60     stream.alignOffsetForSize(getAlignment());
61     unsigned numFields = getNumFields();
62     for (unsigned i = 0; i < numFields; ++i)
63         if (!value.encodeField(stream, i))
64             return false;
65     return true;
66 }
67
68 void
69 HLAFixedRecordDataType::addField(const std::string& name, const HLADataType* dataType)
70 {
71     // FIXME this only works if we do not reset the alignment to something smaller
72     if (getAlignment() < dataType->getAlignment())
73         setAlignment(dataType->getAlignment());
74     _fieldList.push_back(Field(name, dataType));
75 }
76
77 } // namespace simgear