summaryrefslogtreecommitdiffstats
path: root/src/3rdparty/assimp/contrib/Open3DGC/o3dgcSC3DMCEncodeParams.h
blob: 5f3db969cbc27467573c3f0bc668779dfe02ed0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
/*
Copyright (c) 2013 Khaled Mammou - Advanced Micro Devices, Inc.

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
*/


#pragma once
#ifndef O3DGC_SC3DMC_ENCODE_PARAMS_H
#define O3DGC_SC3DMC_ENCODE_PARAMS_H

#include "o3dgcCommon.h"

namespace o3dgc
{
    class SC3DMCEncodeParams
    {
    public:
        //! Constructor.
                                    SC3DMCEncodeParams(void)
                                    {
                                        memset(this, 0, sizeof(SC3DMCEncodeParams));
                                        m_encodeMode        = O3DGC_SC3DMC_ENCODE_MODE_TFAN;
                                        m_streamTypeMode    = O3DGC_STREAM_TYPE_ASCII;
                                        m_coordQuantBits    = 14;
                                        m_normalQuantBits   = 8;
                                        m_coordPredMode     = O3DGC_SC3DMC_PARALLELOGRAM_PREDICTION;
                                        m_normalPredMode    = O3DGC_SC3DMC_SURF_NORMALS_PREDICTION;
                                        for(unsigned long a = 0; a < O3DGC_SC3DMC_MAX_NUM_FLOAT_ATTRIBUTES; ++a)
                                        {
                                            m_floatAttributePredMode[a] = O3DGC_SC3DMC_DIFFERENTIAL_PREDICTION;
                                        }
                                        for(unsigned long a = 0; a < O3DGC_SC3DMC_MAX_NUM_INT_ATTRIBUTES; ++a)
                                        {
                                            m_intAttributePredMode[a] = O3DGC_SC3DMC_NO_PREDICTION;
                                        }
                                    };
        //! Destructor.
                                    ~SC3DMCEncodeParams(void) {};

        O3DGCStreamType             GetStreamType()    const { return m_streamTypeMode;}
        O3DGCSC3DMCEncodingMode     GetEncodeMode()    const { return m_encodeMode;}

        unsigned long               GetNumFloatAttributes() const { return m_numFloatAttributes;}
        unsigned long               GetNumIntAttributes()   const { return m_numIntAttributes;}
        unsigned long               GetCoordQuantBits()     const { return m_coordQuantBits;}
        unsigned long               GetNormalQuantBits()    const { return m_normalQuantBits;}
        unsigned long               GetFloatAttributeQuantBits(unsigned long a) const
                                    {
                                       assert(a < O3DGC_SC3DMC_MAX_NUM_FLOAT_ATTRIBUTES);
                                       return m_floatAttributeQuantBits[a];
                                    }
        O3DGCSC3DMCPredictionMode   GetCoordPredMode()    const { return m_coordPredMode; }
        O3DGCSC3DMCPredictionMode   GetNormalPredMode()   const { return m_normalPredMode; }
        O3DGCSC3DMCPredictionMode   GetFloatAttributePredMode(unsigned long a) const
                                    {
                                       assert(a < O3DGC_SC3DMC_MAX_NUM_FLOAT_ATTRIBUTES);
                                       return m_floatAttributePredMode[a];
                                    }
        O3DGCSC3DMCPredictionMode   GetIntAttributePredMode(unsigned long a) const
                                    { 
                                        assert(a < O3DGC_SC3DMC_MAX_NUM_INT_ATTRIBUTES);
                                        return m_intAttributePredMode[a];
                                    }
        O3DGCSC3DMCPredictionMode & GetCoordPredMode()    { return m_coordPredMode; }
        O3DGCSC3DMCPredictionMode & GetNormalPredMode()   { return m_normalPredMode; }
        O3DGCSC3DMCPredictionMode & GetFloatAttributePredMode(unsigned long a)
                                    {
                                       assert(a < O3DGC_SC3DMC_MAX_NUM_FLOAT_ATTRIBUTES);
                                       return m_floatAttributePredMode[a];
                                    }
        O3DGCSC3DMCPredictionMode & GetIntAttributePredMode(unsigned long a)
                                    {
                                        assert(a < O3DGC_SC3DMC_MAX_NUM_INT_ATTRIBUTES);
                                        return m_intAttributePredMode[a];
                                    }
        void                        SetStreamType(O3DGCStreamType streamTypeMode)  { m_streamTypeMode = streamTypeMode;}
        void                        SetEncodeMode(O3DGCSC3DMCEncodingMode encodeMode)  { m_encodeMode = encodeMode;}
        void                        SetNumFloatAttributes(unsigned long numFloatAttributes) 
                                    { 
                                        assert(numFloatAttributes < O3DGC_SC3DMC_MAX_NUM_FLOAT_ATTRIBUTES);
                                        m_numFloatAttributes = numFloatAttributes;
                                    }
        void                        SetNumIntAttributes  (unsigned long numIntAttributes)
                                    { 
                                        assert(numIntAttributes < O3DGC_SC3DMC_MAX_NUM_INT_ATTRIBUTES);
                                        m_numIntAttributes   = numIntAttributes;
                                    }
        void                        SetCoordQuantBits   (unsigned int coordQuantBits   ) { m_coordQuantBits    = coordQuantBits   ; }
        void                        SetNormalQuantBits  (unsigned int normalQuantBits  ) { m_normalQuantBits   = normalQuantBits  ; }
        void                        SetFloatAttributeQuantBits(unsigned long a, unsigned long q) 
                                    { 
                                       assert(a < O3DGC_SC3DMC_MAX_NUM_FLOAT_ATTRIBUTES);
                                       m_floatAttributeQuantBits[a] = q;
                                    }
        void                        SetCoordPredMode   (O3DGCSC3DMCPredictionMode coordPredMode   ) { m_coordPredMode    = coordPredMode   ; }
        void                        SetNormalPredMode  (O3DGCSC3DMCPredictionMode normalPredMode  ) { m_normalPredMode   = normalPredMode  ; }
        void                        SetFloatAttributePredMode(unsigned long a, O3DGCSC3DMCPredictionMode p) 
                                    {
                                       assert(a < O3DGC_SC3DMC_MAX_NUM_FLOAT_ATTRIBUTES);
                                       m_floatAttributePredMode[a] = p;
                                    }                       
        void                        SetIntAttributePredMode(unsigned long a, O3DGCSC3DMCPredictionMode p) 
                                    { 
                                        assert(a < O3DGC_SC3DMC_MAX_NUM_INT_ATTRIBUTES);
                                        m_intAttributePredMode[a] = p;
                                    }
    private:
        unsigned long               m_numFloatAttributes;
        unsigned long               m_numIntAttributes;
        unsigned long               m_coordQuantBits;
        unsigned long               m_normalQuantBits;
        unsigned long               m_floatAttributeQuantBits[O3DGC_SC3DMC_MAX_NUM_FLOAT_ATTRIBUTES];
        
        O3DGCSC3DMCPredictionMode   m_coordPredMode;
        O3DGCSC3DMCPredictionMode   m_normalPredMode; 
        O3DGCSC3DMCPredictionMode   m_floatAttributePredMode[O3DGC_SC3DMC_MAX_NUM_FLOAT_ATTRIBUTES];
        O3DGCSC3DMCPredictionMode   m_intAttributePredMode  [O3DGC_SC3DMC_MAX_NUM_INT_ATTRIBUTES];
        O3DGCStreamType             m_streamTypeMode;
        O3DGCSC3DMCEncodingMode     m_encodeMode;
    };
}
#endif // O3DGC_SC3DMC_ENCODE_PARAMS_H