]> git.cworth.org Git - vogl/blob - src/voglcommon/vogl_matrix_state.h
Initial vogl checkin
[vogl] / src / voglcommon / vogl_matrix_state.h
1 /**************************************************************************
2  *
3  * Copyright 2013-2014 RAD Game Tools and Valve Software
4  * All Rights Reserved.
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a copy
7  * of this software and associated documentation files (the "Software"), to deal
8  * in the Software without restriction, including without limitation the rights
9  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
10  * copies of the Software, and to permit persons to whom the Software is
11  * furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
19  * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
20  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
21  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
22  * THE SOFTWARE.
23  *
24  **************************************************************************/
25
26 // File: vogl_matrix_state.h
27 #ifndef VOGL_MATRIX_STATE_H
28 #define VOGL_MATRIX_STATE_H
29
30 #include "vogl_core.h"
31 #include "vogl_matrix.h"
32 #include "vogl_context_info.h"
33 #include "vogl_general_context_state.h"
34 #include "vogl_blob_manager.h"
35
36 class vogl_matrix_state
37 {
38 public:
39     vogl_matrix_state();
40     ~vogl_matrix_state();
41
42     bool snapshot(const vogl_context_info &context_info);
43
44     bool restore(const vogl_context_info &context_info) const;
45
46     void clear();
47
48     bool is_valid() const
49     {
50         return m_valid;
51     }
52
53     bool serialize(json_node &node, vogl_blob_manager &blob_manager) const;
54     bool deserialize(const json_node &node, const vogl_blob_manager &blob_manager);
55
56     uint get_matrix_stack_depth(GLenum target, uint index) const;
57
58     const matrix44D *get_matrix(GLenum target, uint index, uint depth) const;
59
60 private:
61     typedef vogl::vector<matrix44D> matrix_vec;
62
63     class matrix_key
64     {
65     public:
66         matrix_key(GLenum target = GL_NONE, uint index = 0)
67             : m_target(target),
68               m_index(index)
69         {
70             VOGL_FUNC_TRACER
71         }
72
73         bool operator==(const matrix_key &other) const
74         {
75             VOGL_FUNC_TRACER
76
77             return (m_target == other.m_target) && (m_index == other.m_index);
78         }
79
80         bool operator<(const matrix_key &other) const
81         {
82             VOGL_FUNC_TRACER
83
84             if (m_target < other.m_target)
85                 return true;
86             if (m_target == other.m_target)
87                 return m_index < other.m_index;
88             return false;
89         }
90
91         GLenum m_target;
92         uint m_index;
93     };
94
95     typedef vogl::map<matrix_key, matrix_vec> matrix_map;
96     matrix_map m_matrices;
97
98     bool m_valid;
99
100     bool restore_matrix_stack(const vogl_context_info &context_info, GLenum matrix, uint index) const;
101     bool save_matrix_stack(const vogl_context_info &context_info, GLenum matrix, uint index, GLenum depth_get, GLenum matrix_get);
102 };
103
104 #endif // VOGL_MATRIX_STATE_H