]> git.mxchange.org Git - simgear.git/blob - simgear/hla/HLAVariantRecordDataElement.hxx
hla: Remove deprecated methods from HLAObjectClass
[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 setAlternativeIndex(unsigned index);
61     virtual bool decodeAlternative(HLADecodeStream& stream);
62     virtual unsigned getAlternativeIndex() const;
63     virtual bool encodeAlternative(HLAEncodeStream& stream) const;
64
65     class DataElementFactory : public SGReferenced {
66     public:
67         virtual ~DataElementFactory();
68         virtual HLADataElement* createElement(const HLAVariantRecordDataElement&, unsigned) = 0;
69     };
70
71     void setDataElementFactory(DataElementFactory* dataElementFactory);
72     DataElementFactory* getDataElementFactory();
73
74 protected:
75     virtual void _setStamp(Stamp* stamp);
76
77 private:
78     HLADataElement* newElement(unsigned index);
79
80     SGSharedPtr<HLADataElement> _dataElement;
81     unsigned _alternativeIndex;
82
83     SGSharedPtr<DataElementFactory> _dataElementFactory;
84 };
85
86 }
87
88 #endif