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
|
/************************************************************************
*
* Copyright (C) 2014-2023 IRCAD France
* Copyright (C) 2014-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 "data/tools/model_series.hpp"
#include <core/com/signal.hxx>
#include <core/spy_log.hpp>
namespace sight::data::tools
{
//------------------------------------------------------------------------------
void model_series::add_mesh(
const data::model_series::sptr& _model_series,
const data::mesh::sptr& _mesh,
const std::string& _organ_name,
const std::string& _structure_type,
const data::color::sptr& _colour,
data::material::representation_t _mode,
bool _visible
)
{
//reconstruction creation
data::reconstruction::sptr reconstruction_quad_mesh =
create_reconstruction_from_mesh(_mesh, _organ_name, _structure_type, _colour, _mode, _visible);
add_reconstruction(_model_series, reconstruction_quad_mesh);
auto sig = _model_series->signal<data::model_series::reconstructions_added_signal_t>(
data::model_series::RECONSTRUCTIONS_ADDED_SIG
);
data::model_series::reconstruction_vector_t reconstructions_vector;
reconstructions_vector.push_back(reconstruction_quad_mesh);
sig->async_emit(reconstructions_vector);
}
//------------------------------------------------------------------------------
data::reconstruction::sptr model_series::create_reconstruction_from_mesh(
const data::mesh::sptr& _mesh,
const std::string& _organ_name,
const std::string& _structure_type,
const data::color::sptr& _color,
data::material::representation_t _mode,
bool _visible
)
{
data::color::sptr diffuse = std::make_shared<data::color>();
diffuse->set_rgba(_color->red(), _color->green(), _color->blue(), _color->alpha());
data::material::sptr p_material = std::make_shared<data::material>();
p_material->set_diffuse(diffuse);
p_material->set_representation_mode(_mode);
data::reconstruction::sptr reconstruction = std::make_shared<data::reconstruction>();
reconstruction->set_mesh(_mesh);
reconstruction->set_is_visible(_visible);
reconstruction->set_organ_name(_organ_name);
reconstruction->set_structure_type(_structure_type);
reconstruction->set_material(p_material);
return reconstruction;
}
//------------------------------------------------------------------------------
void model_series::add_reconstruction(
const data::model_series::sptr& _model_series,
const data::reconstruction::sptr& _rec
)
{
data::model_series::reconstruction_vector_t rec_db = _model_series->get_reconstruction_db();
SIGHT_THROW_IF("Reconstruction is invalid.", _rec == nullptr);
SIGHT_THROW_IF(
"Reconstruction already exists in model_series.",
std::find(rec_db.begin(), rec_db.end(), _rec) != rec_db.end()
);
rec_db.push_back(_rec);
_model_series->set_reconstruction_db(rec_db);
}
//------------------------------------------------------------------------------
} // end namespace sight::data::tools
|