]> git.mxchange.org Git - simgear.git/blob - simgear/hla/HLAVariantRecordDataElement.hxx
hla: Use HLADataElementIndices for HLAInteractionClass.
[simgear.git] / simgear / hla / HLAVariantRecordDataElement.hxx
1 // Copyright (C) 2009 - 2012  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 HLAVariantRecordDataElement_hxx
19 #define HLAVariantRecordDataElement_hxx
20
21 #include <string>
22 #include <simgear/structure/SGSharedPtr.hxx>
23 #include "HLADataElement.hxx"
24 #include "HLAVariantRecordDataType.hxx"
25
26 namespace simgear {
27
28 class HLAAbstractVariantRecordDataElement : public HLADataElement {
29 public:
30     HLAAbstractVariantRecordDataElement(const HLAVariantRecordDataType* dataType);
31     virtual ~HLAAbstractVariantRecordDataElement();
32
33     virtual void accept(HLADataElementVisitor& visitor);
34     virtual void accept(HLAConstDataElementVisitor& visitor) const;
35
36     virtual bool decode(HLADecodeStream& stream);
37     virtual bool encode(HLAEncodeStream& stream) const;
38
39     virtual const HLAVariantRecordDataType* getDataType() const;
40     virtual bool setDataType(const HLADataType* dataType);
41     void setDataType(const HLAVariantRecordDataType* dataType);
42
43     std::string getAlternativeName() const;
44     const HLADataType* getAlternativeDataType() const;
45
46     virtual bool setAlternativeIndex(unsigned index) = 0;
47     virtual bool decodeAlternative(HLADecodeStream& stream) = 0;
48     virtual unsigned getAlternativeIndex() const = 0;
49     virtual bool encodeAlternative(HLAEncodeStream& stream) const = 0;
50
51 private:
52     SGSharedPtr<const HLAVariantRecordDataType> _dataType;
53 };
54
55 class HLAVariantRecordDataElement : public HLAAbstractVariantRecordDataElement {
56 public:
57     HLAVariantRecordDataElement(const HLAVariantRecordDataType* dataType);
58     virtual ~HLAVariantRecordDataElement();
59
60     virtual bool setDataElement(HLADataElementIndex::const_iterator begin, HLADataElementIndex::const_iterator end, HLADataElement* dataElement);
61     virtual HLADataElement* getDataElement(HLADataElementIndex::const_iterator begin, HLADataElementIndex::const_iterator end);
62     virtual const HLADataElement* getDataElement(HLADataElementIndex::const_iterator begin, HLADataElementIndex::const_iterator end) const;
63
64     virtual bool setAlternativeIndex(unsigned index);
65     virtual bool decodeAlternative(HLADecodeStream& stream);
66     virtual unsigned getAlternativeIndex() const;
67     virtual bool encodeAlternative(HLAEncodeStream& stream) const;
68
69     class DataElementFactory : public SGReferenced {
70     public:
71         virtual ~DataElementFactory();
72         virtual HLADataElement* createElement(const HLAVariantRecordDataElement&, unsigned) = 0;
73     };
74
75     void setDataElementFactory(DataElementFactory* dataElementFactory);
76     DataElementFactory* getDataElementFactory();
77
78 protected:
79     virtual void _setStamp(Stamp* stamp);
80
81 private:
82     HLADataElement* newElement(unsigned index);
83
84     SGSharedPtr<HLADataElement> _dataElement;
85     unsigned _alternativeIndex;
86
87     SGSharedPtr<DataElementFactory> _dataElementFactory;
88 };
89
90 }
91
92 #endif