File: decompose_matrix.cpp

package info (click to toggle)
sight 25.1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 43,252 kB
  • sloc: cpp: 310,629; xml: 17,622; ansic: 9,960; python: 1,379; sh: 144; makefile: 33
file content (138 lines) | stat: -rw-r--r-- 4,173 bytes parent folder | download
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
/************************************************************************
 *
 * Copyright (C) 2020-2024 IRCAD France
 * Copyright (C) 2019 IHU Strasbourg
 *
 * This file is part of Sight.
 *
 * Sight is free software: you can redistribute it and/or modify it under
 * the terms of the GNU Lesser General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * Sight is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with Sight. If not, see <https://www.gnu.org/licenses/>.
 *
 ***********************************************************************/

#include "module/geometry/__/decompose_matrix.hpp"

#include <core/com/signal.hpp>
#include <core/com/signal.hxx>

#define GLM_ENABLE_EXPERIMENTAL
#include <glm/gtx/matrix_decompose.hpp>
#include <glm/gtx/quaternion.hpp>

namespace sight::module::geometry
{

// ----------------------------------------------------------------------------

decompose_matrix::decompose_matrix() noexcept :
    filter(m_signals)
{
}

// ----------------------------------------------------------------------------

void decompose_matrix::configuring()
{
}

// ----------------------------------------------------------------------------

void decompose_matrix::starting()
{
}

// ----------------------------------------------------------------------------

void decompose_matrix::stopping()
{
}

// ----------------------------------------------------------------------------

service::connections_t decompose_matrix::auto_connections() const
{
    return {{SOURCE_INPUT, data::object::MODIFIED_SIG, service::slots::UPDATE}};
}

// ----------------------------------------------------------------------------

void decompose_matrix::updating()
{
    auto matrix = m_source.lock();
    SIGHT_ASSERT("input matrix '" << SOURCE_INPUT << "' is not defined", matrix);

    glm::dmat4 glm_matrix = sight::geometry::data::to_glm_mat(*matrix);
    glm::dvec3 glm_scale {};
    glm::dquat orientation {};
    glm::dvec3 glm_translation {};
    glm::dvec3 skew;
    glm::dvec4 perspective;

    /// Matrix decomposition
    glm::decompose(glm_matrix, glm_scale, orientation, glm_translation, skew, perspective);
    glm::dmat4 orientation_mat = glm::toMat4(orientation);

    {
        auto rotation = m_rotation.lock();
        if(rotation)
        {
            sight::geometry::data::identity(*rotation);
            sight::geometry::data::from_glm_mat(*rotation, orientation_mat);

            auto rot_sig = rotation->signal<data::object::modified_signal_t>(data::object::MODIFIED_SIG);
            rot_sig->async_emit();
        }
    }
    {
        auto translation = m_translation.lock();
        if(translation)
        {
            sight::geometry::data::identity(*translation);
            for(std::size_t i = 0 ; i < 3 ; ++i)
            {
                (*translation)(i, 3) = glm_translation[int(i)];
            }

            auto trans_sig =
                translation->signal<data::object::modified_signal_t>(data::object::MODIFIED_SIG);
            trans_sig->async_emit();
        }
    }

    auto scale = m_scale.lock();
    if(scale)
    {
        {
            sight::geometry::data::identity(*scale);
            for(std::size_t i = 0 ; i < 3 ; ++i)
            {
                for(std::size_t j = 0 ; j < 3 ; j++)
                {
                    if(i == j)
                    {
                        (*scale)(i, j) = glm_scale[int(i)];
                    }
                }
            }

            auto scale_sig = scale->signal<data::object::modified_signal_t>(data::object::MODIFIED_SIG);
            scale_sig->async_emit();
        }
    }

    this->signal<signals::computed_t>(signals::COMPUTED)->async_emit();
}

// ----------------------------------------------------------------------------

} // namespace sight::module::geometry