using ObjectID instead of ModelVolume pointer and CompositID

This commit is contained in:
Filip Sykala 2021-11-22 15:45:57 +01:00
parent f4ad435ec5
commit 471ebe5c83
2 changed files with 163 additions and 128 deletions

View File

@ -35,54 +35,72 @@ static void call_after_if_active(std::function<void()> fn, GUI_App* app = &wxGet
}); });
} }
static Slic3r::ModelVolumes get_model_volumes(const Selection &selection) static std::set<ObjectID> get_volume_ids(const Selection &selection)
{ {
Model &model = *selection.get_model();
const Selection::IndicesList &volume_ids = selection.get_volume_idxs(); const Selection::IndicesList &volume_ids = selection.get_volume_idxs();
ModelVolumes result; const ModelObjectPtrs &model_objects = selection.get_model()->objects;
result.reserve(volume_ids.size()); std::set<ObjectID> result;
for (auto volume_id : volume_ids) { for (auto volume_id : volume_ids) {
const GLVolume *selected_volume = selection.get_volume(volume_id); const GLVolume *selected_volume = selection.get_volume(volume_id);
assert(selected_volume != nullptr); assert(selected_volume != nullptr);
if (selected_volume == nullptr) continue;
const GLVolume::CompositeID &cid = selected_volume->composite_id; const GLVolume::CompositeID &cid = selected_volume->composite_id;
const ModelObjectPtrs & objs = model.objects;
// should not appear
assert(cid.object_id >= 0); assert(cid.object_id >= 0);
if (cid.object_id < 0) continue; assert(model_objects.size() > static_cast<size_t>(cid.object_id));
assert(objs.size() > static_cast<size_t>(cid.object_id));
if (objs.size() <= static_cast<size_t>(cid.object_id)) continue;
const ModelObject *obj = objs[cid.object_id]; const ModelObject *obj = model_objects[cid.object_id];
const ModelVolume *volume = obj->volumes[cid.volume_id]; const ModelVolume *volume = obj->volumes[cid.volume_id];
const ObjectID & id = volume->id();
// prevent selection of volume without inidces // prevent selection of volume without inidces
if (volume->mesh().its.indices.empty()) continue; if (volume->mesh().its.indices.empty()) continue;
result.emplace_back(volume);
assert(result.find(id) == result.end());
result.insert(id);
} }
return result; return result;
} }
static std::string create_volumes_name(const ModelVolumes &volumes) { // return ModelVolume from selection by object id
assert(!volumes.empty()); static ModelVolume *get_volume(const ObjectID &id, const Selection &selection) {
const Selection::IndicesList &volume_ids = selection.get_volume_idxs();
const ModelObjectPtrs &model_objects = selection.get_model()->objects;
for (auto volume_id : volume_ids) {
const GLVolume *selected_volume = selection.get_volume(volume_id);
const GLVolume::CompositeID &cid = selected_volume->composite_id;
ModelObject *obj = model_objects[cid.object_id];
ModelVolume *volume = obj->volumes[cid.volume_id];
if (id == volume->id()) return volume;
}
return nullptr;
}
static std::string create_volumes_name(const std::set<ObjectID>& ids, const Selection &selection){
assert(!ids.empty());
std::string name; std::string name;
bool is_first = true; bool is_first = true;
for (const auto &volume : volumes) { for (const ObjectID &id : ids) {
if (is_first) if (is_first)
is_first = false; is_first = false;
else else
name += " + "; name += " + ";
const ModelVolume *volume = get_volume(id, selection);
assert(volume != nullptr);
name += volume->name; name += volume->name;
} }
return name; return name;
} }
static uint32_t get_triangle_count(std::vector<const Slic3r::ModelVolume *> volumes)
static uint32_t get_triangle_count(const std::set<ObjectID>& ids, const Selection &selection)
{ {
uint32_t count = 0; uint32_t count = 0;
for (const auto &volume : volumes) for (const ObjectID &id : ids) {
const ModelVolume *volume = get_volume(id, selection);
assert(volume != nullptr);
count += volume->mesh().its.indices.size(); count += volume->mesh().its.indices.size();
}
return count; return count;
} }
@ -92,6 +110,8 @@ GLGizmoSimplify::GLGizmoSimplify(GLCanvas3D & parent,
: GLGizmoBase(parent, icon_filename, -1) : GLGizmoBase(parent, icon_filename, -1)
, m_show_wireframe(false) , m_show_wireframe(false)
, m_move_to_center(false) , m_move_to_center(false)
, m_original_triangle_count(0)
, m_triangle_count(0)
// translation for GUI size // translation for GUI size
, tr_mesh_name(_u8L("Mesh name")) , tr_mesh_name(_u8L("Mesh name"))
, tr_triangles(_u8L("Triangles")) , tr_triangles(_u8L("Triangles"))
@ -174,8 +194,9 @@ std::string GLGizmoSimplify::on_get_name() const
void GLGizmoSimplify::on_render_input_window(float x, float y, float bottom_limit) void GLGizmoSimplify::on_render_input_window(float x, float y, float bottom_limit)
{ {
create_gui_cfg(); create_gui_cfg();
auto act_volumes = get_model_volumes(m_parent.get_selection()); const Selection &selection = m_parent.get_selection();
if (act_volumes.empty()) { auto act_volume_ids = get_volume_ids(selection);
if (act_volume_ids.empty()) {
stop_worker_thread_request(); stop_worker_thread_request();
close(); close();
return; return;
@ -198,21 +219,32 @@ void GLGizmoSimplify::on_render_input_window(float x, float y, float bottom_limi
// Check selection of new volume (or change) // Check selection of new volume (or change)
// Do not reselect object when processing // Do not reselect object when processing
if (m_volumes != act_volumes) { if (m_volume_ids != act_volume_ids) {
bool change_window_position = m_volumes.empty(); bool change_window_position = m_volume_ids.empty();
// select different model // select different model
// close suggestion notification // close suggestion notification
auto notification_manager = wxGetApp().plater()->get_notification_manager(); auto notification_manager = wxGetApp().plater()->get_notification_manager();
for (const auto &volume : act_volumes) for (const auto &id : act_volume_ids)
notification_manager->remove_simplify_suggestion_with_id(volume->get_object()->id()); notification_manager->remove_simplify_suggestion_with_id(id);
m_volumes = std::move(act_volumes); m_volume_ids = std::move(act_volume_ids);
m_configuration.decimate_ratio = 50.; // default value
m_configuration.fix_count_by_ratio(get_triangle_count(m_volumes));
init_model(); init_model();
// triangle count is calculated in init model
m_original_triangle_count = m_triangle_count;
// Default value of configuration
m_configuration.decimate_ratio = 50.; // default value
m_configuration.fix_count_by_ratio(m_original_triangle_count);
m_configuration.use_count = false;
// Create volumes name to describe what will be simplified
std::string name = create_volumes_name(m_volume_ids, selection);
if (name.length() > m_gui_cfg->max_char_in_name)
name = name.substr(0, m_gui_cfg->max_char_in_name - 3) + "...";
m_volumes_name = name;
// Start processing. If we switched from another object, process will // Start processing. If we switched from another object, process will
// stop the background thread and it will restart itself later. // stop the background thread and it will restart itself later.
start_process = true; start_process = true;
@ -245,24 +277,21 @@ void GLGizmoSimplify::on_render_input_window(float x, float y, float bottom_limi
} }
} }
bool is_multipart = (m_volume_ids.size() > 1);
int flag = ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_NoResize | int flag = ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_NoResize |
ImGuiWindowFlags_NoCollapse; ImGuiWindowFlags_NoCollapse;
m_imgui->begin(on_get_name(), flag); m_imgui->begin(on_get_name(), flag);
m_imgui->text_colored(ImGuiWrapper::COL_ORANGE_LIGHT, tr_mesh_name + ":"); m_imgui->text_colored(ImGuiWrapper::COL_ORANGE_LIGHT, tr_mesh_name + ":");
ImGui::SameLine(m_gui_cfg->top_left_width); ImGui::SameLine(m_gui_cfg->top_left_width);
std::string name = create_volumes_name(m_volumes); m_imgui->text(m_volumes_name);
if (name.length() > m_gui_cfg->max_char_in_name)
name = name.substr(0, m_gui_cfg->max_char_in_name - 3) + "...";
m_imgui->text(name);
m_imgui->text_colored(ImGuiWrapper::COL_ORANGE_LIGHT, tr_triangles + ":"); m_imgui->text_colored(ImGuiWrapper::COL_ORANGE_LIGHT, tr_triangles + ":");
ImGui::SameLine(m_gui_cfg->top_left_width); ImGui::SameLine(m_gui_cfg->top_left_width);
size_t orig_triangle_count = get_triangle_count(m_volumes); m_imgui->text(std::to_string(m_original_triangle_count));
m_imgui->text(std::to_string(orig_triangle_count));
ImGui::Separator(); ImGui::Separator();
if(ImGui::RadioButton("##use_error", !m_configuration.use_count)) { if(ImGui::RadioButton("##use_error", !m_configuration.use_count) && !is_multipart) {
m_configuration.use_count = !m_configuration.use_count; m_configuration.use_count = !m_configuration.use_count;
start_process = true; start_process = true;
} }
@ -293,17 +322,21 @@ void GLGizmoSimplify::on_render_input_window(float x, float y, float bottom_limi
} }
m_imgui->disabled_end(); // !use_count m_imgui->disabled_end(); // !use_count
if (ImGui::RadioButton("##use_count", m_configuration.use_count)) { if (ImGui::RadioButton("##use_count", m_configuration.use_count) && !is_multipart) {
m_configuration.use_count = !m_configuration.use_count; m_configuration.use_count = !m_configuration.use_count;
start_process = true; start_process = true;
} } else if (ImGui::IsItemHovered(ImGuiHoveredFlags_AllowWhenDisabled) && is_multipart)
ImGui::SetTooltip("%s", GUI::format(_L(
"Multipart object can be simplified only by %1%. "
"If you want specify %2% process it separately."),
tr_detail_level, tr_decimate_ratio).c_str());
ImGui::SameLine(); ImGui::SameLine();
// show preview result triangle count (percent) // show preview result triangle count (percent)
if (!m_configuration.use_count) { if (!m_configuration.use_count) {
m_configuration.wanted_count = static_cast<uint32_t>(m_triangle_count); m_configuration.wanted_count = static_cast<uint32_t>(m_triangle_count);
m_configuration.decimate_ratio = m_configuration.decimate_ratio =
(1.0f - (m_configuration.wanted_count / (float) orig_triangle_count)) * 100.f; (1.0f - (m_configuration.wanted_count / (float) m_original_triangle_count)) * 100.f;
} }
m_imgui->disabled_begin(!m_configuration.use_count); m_imgui->disabled_begin(!m_configuration.use_count);
@ -318,7 +351,7 @@ void GLGizmoSimplify::on_render_input_window(float x, float y, float bottom_limi
m_configuration.decimate_ratio = 0.01f; m_configuration.decimate_ratio = 0.01f;
if (m_configuration.decimate_ratio > 100.f) if (m_configuration.decimate_ratio > 100.f)
m_configuration.decimate_ratio = 100.f; m_configuration.decimate_ratio = 100.f;
m_configuration.fix_count_by_ratio(orig_triangle_count); m_configuration.fix_count_by_ratio(m_original_triangle_count);
start_process = true; start_process = true;
} }
@ -389,9 +422,11 @@ void GLGizmoSimplify::worker_finished()
m_worker.join(); m_worker.join();
if (GLGizmoBase::m_state == Off) if (GLGizmoBase::m_state == Off)
return; return;
if (!m_state.result.empty()) const auto &result = m_state.result;
update_model(m_state.result); if (!result.empty())
if (m_state.config != m_configuration || m_state.mvs != m_volumes) { update_model(result);
if (m_state.config != m_configuration || m_state.volume_ids != m_volume_ids) {
// Settings were changed, restart the worker immediately. // Settings were changed, restart the worker immediately.
process(); process();
} }
@ -400,7 +435,7 @@ void GLGizmoSimplify::worker_finished()
void GLGizmoSimplify::process() void GLGizmoSimplify::process()
{ {
if (m_volumes.empty()) return; if (m_volume_ids.empty()) return;
// m_volume->mesh().its.indices.empty() // m_volume->mesh().its.indices.empty()
bool configs_match = false; bool configs_match = false;
@ -408,7 +443,7 @@ void GLGizmoSimplify::process()
bool is_worker_running = false; bool is_worker_running = false;
{ {
std::lock_guard lk(m_state_mutex); std::lock_guard lk(m_state_mutex);
configs_match = (m_volumes == m_state.mvs && m_state.config == m_configuration); configs_match = (m_volume_ids == m_state.volume_ids && m_state.config == m_configuration);
result_valid = !m_state.result.empty(); result_valid = !m_state.result.empty();
is_worker_running = m_state.status == State::running; is_worker_running = m_state.status == State::running;
} }
@ -434,16 +469,18 @@ void GLGizmoSimplify::process()
// Copy configuration that will be used. // Copy configuration that will be used.
m_state.config = m_configuration; m_state.config = m_configuration;
m_state.mvs = m_volumes; m_state.volume_ids = m_volume_ids;
m_state.status = State::running; m_state.status = State::running;
// Create a copy of current meshes to pass to the worker thread. // Create a copy of current meshes to pass to the worker thread.
// Using unique_ptr instead of pass-by-value to avoid an extra // Using unique_ptr instead of pass-by-value to avoid an extra
// copy (which would happen when passing to std::thread). // copy (which would happen when passing to std::thread).
const Selection& selection = m_parent.get_selection();
State::Data its; State::Data its;
its.reserve(m_volumes.size()); for (const auto &id : m_volume_ids) {
for (const auto &volume : m_volumes) const ModelVolume *volume = get_volume(id, selection);
its.emplace_back(std::make_unique<indexed_triangle_set>(volume->mesh().its)); its[id] = std::make_unique<indexed_triangle_set>(volume->mesh().its); // copy
}
m_worker = std::thread([this](State::Data its) { m_worker = std::thread([this](State::Data its) {
@ -480,7 +517,7 @@ void GLGizmoSimplify::process()
try { try {
for (const auto& it : its) { for (const auto& it : its) {
float me = max_error; float me = max_error;
its_quadric_edge_collapse(*it, triangle_count, &me, throw_on_cancel, statusfn); its_quadric_edge_collapse(*it.second, triangle_count, &me, throw_on_cancel, statusfn);
} }
} catch (SimplifyCanceledException &) { } catch (SimplifyCanceledException &) {
std::lock_guard lk(m_state_mutex); std::lock_guard lk(m_state_mutex);
@ -501,32 +538,27 @@ void GLGizmoSimplify::process()
void GLGizmoSimplify::apply_simplify() { void GLGizmoSimplify::apply_simplify() {
// worker must be stopped // worker must be stopped
assert(m_state.status == State::Status::idle);
// check that there is NO change of volume
assert(m_state.volume_ids == m_volume_ids);
const Selection& selection = m_parent.get_selection(); const Selection& selection = m_parent.get_selection();
auto volumes = get_model_volumes(selection);
if(m_state.mvs != volumes) return;
int object_idx = selection.get_object_idx();
auto plater = wxGetApp().plater(); auto plater = wxGetApp().plater();
plater->take_snapshot(_u8L("Simplify ") + create_volumes_name(m_volumes)); plater->take_snapshot(_u8L("Simplify ") + create_volumes_name(m_volume_ids, selection));
plater->clear_before_change_mesh(object_idx); // TODO: fix for all plater->clear_before_change_mesh(selection.get_object_idx());
const Selection::IndicesList &volume_ids = selection.get_volume_idxs(); const Selection::IndicesList &volume_ids = selection.get_volume_idxs();
Model* model = selection.get_model(); const ModelObjectPtrs &model_objects = selection.get_model()->objects;
for (auto& volume_id : volume_ids) { for (const auto &item: m_state.result) {
const GLVolume *selected_volume = selection.get_volume(volume_id); const ObjectID &id = item.first;
const GLVolume::CompositeID &cid = selected_volume->composite_id; const indexed_triangle_set &its = *item.second;
ModelVolume *volume = get_volume(id, selection);
assert(volume != nullptr);
ModelObject *obj = volume->get_object();
auto is_cid = [cid](const std::pair<GLVolume::CompositeID, GLModel> &item) -> bool{ return item.first == cid; }; volume->set_mesh(std::move(its));
auto it = std::find_if(m_glmodels.begin(), m_glmodels.end(), is_cid);
assert(it != m_glmodels.end());
size_t result_index = it - m_glmodels.begin();
const ModelObjectPtrs & objs = model->objects;
ModelObject * obj = objs[cid.object_id];
ModelVolume * volume = obj->volumes[cid.volume_id];
volume->set_mesh(std::move(*m_state.result[result_index]));
volume->calculate_convex_hull(); volume->calculate_convex_hull();
volume->set_new_unique_id(); volume->set_new_unique_id();
obj->invalidate_bounding_box(); obj->invalidate_bounding_box();
@ -534,6 +566,7 @@ void GLGizmoSimplify::apply_simplify() {
} }
m_state.result.clear(); m_state.result.clear();
// fix hollowing, sla support points, modifiers, ... // fix hollowing, sla support points, modifiers, ...
int object_idx = selection.get_object_idx();
plater->changed_mesh(object_idx); plater->changed_mesh(object_idx);
// Fix warning icon in object list // Fix warning icon in object list
wxGetApp().obj_list()->update_item_error_icon(object_idx, -1); wxGetApp().obj_list()->update_item_error_icon(object_idx, -1);
@ -552,8 +585,8 @@ void GLGizmoSimplify::on_set_state()
m_parent.toggle_model_objects_visibility(true); m_parent.toggle_model_objects_visibility(true);
stop_worker_thread_request(); stop_worker_thread_request();
m_volumes.clear(); // invalidate selected model m_volume_ids.clear(); // invalidate selected model
m_glmodels.clear(); m_glmodels.clear(); // free gpu memory
} else if (GLGizmoBase::m_state == GLGizmoBase::On) { } else if (GLGizmoBase::m_state == GLGizmoBase::On) {
// when open by hyperlink it needs to show up // when open by hyperlink it needs to show up
request_rerender(); request_rerender();
@ -596,45 +629,43 @@ void GLGizmoSimplify::set_center_position() {
void GLGizmoSimplify::init_model() void GLGizmoSimplify::init_model()
{ {
// volume ids must be set before init model
assert(!m_volume_ids.empty());
m_parent.toggle_model_objects_visibility(true); // selected volume may have changed m_parent.toggle_model_objects_visibility(true); // selected volume may have changed
const auto info = m_c->selection_info(); const auto info = m_c->selection_info();
const Selection &selection = m_parent.get_selection(); const Selection &selection = m_parent.get_selection();
Model & model = *selection.get_model(); Model & model = *selection.get_model();
const Selection::IndicesList &volume_ids = selection.get_volume_idxs(); const Selection::IndicesList &volume_ids = selection.get_volume_idxs();
const ModelObjectPtrs &model_objects = model.objects;
m_glmodels.clear(); m_glmodels.clear();
m_glmodels.reserve(volume_ids.size()); //m_glmodels.reserve(volume_ids.size());
m_triangle_count = 0; m_triangle_count = 0;
for (const ObjectID& id: m_volume_ids) {
const GLVolume *selected_volume;
const ModelVolume *volume = nullptr;
for (auto volume_id : volume_ids) { for (auto volume_id : volume_ids) {
const GLVolume *selected_volume = selection.get_volume(volume_id); selected_volume = selection.get_volume(volume_id);
assert(selected_volume != nullptr);
if (selected_volume == nullptr) continue;
const GLVolume::CompositeID &cid = selected_volume->composite_id; const GLVolume::CompositeID &cid = selected_volume->composite_id;
const ModelObjectPtrs & objs = model.objects; ModelObject * obj = model_objects[cid.object_id];
ModelVolume * act_volume = obj->volumes[cid.volume_id];
if (id == act_volume->id()) {
volume = act_volume;
break;
}
}
assert(volume != nullptr);
// should not appear
assert(cid.object_id >= 0);
if (cid.object_id < 0) continue;
assert(objs.size() > static_cast<size_t>(cid.object_id));
if (objs.size() <= static_cast<size_t>(cid.object_id)) continue;
const ModelObject *obj = objs[cid.object_id];
const ModelVolume *volume = obj->volumes[cid.volume_id];
// prevent selection of volume without inidces
const indexed_triangle_set &its = volume->mesh().its; const indexed_triangle_set &its = volume->mesh().its;
if (its.indices.empty()) continue;
// set actual triangle count // set actual triangle count
m_triangle_count += its.indices.size(); m_triangle_count += its.indices.size();
m_glmodels.emplace_back( assert(m_glmodels.find(id) == m_glmodels.end());
GLVolume::CompositeID(cid.object_id, cid.volume_id, cid.instance_id), // copy GLModel &glmodel = m_glmodels[id]; // create new glmodel
GLModel());
GLModel &glmodel = m_glmodels.back().second;
//glmodel.reset();
glmodel.init_from(its); glmodel.init_from(its);
glmodel.set_color(-1,selected_volume->color); glmodel.set_color(-1,selected_volume->color);
@ -653,28 +684,21 @@ void GLGizmoSimplify::update_model(const State::Data &data)
size_t model_count = m_glmodels.size(); size_t model_count = m_glmodels.size();
if (data.size() != model_count) return; if (data.size() != model_count) return;
const Selection &sel = m_parent.get_selection();
auto model_volumes = get_model_volumes(sel);
if (m_state.mvs != model_volumes) return;
m_parent.toggle_model_objects_visibility(true); // selected volume may have changed
const auto info = m_c->selection_info(); const auto info = m_c->selection_info();
m_triangle_count = 0; m_triangle_count = 0;
for (size_t i = 0; i < model_count; ++i) { for (const auto &item : data) {
auto &item = m_glmodels[i]; const indexed_triangle_set &its = *item.second;
GLModel& glmodel = item.second;
const indexed_triangle_set &its = *data[i];
auto it = m_glmodels.find(item.first);
assert(it != m_glmodels.end());
GLModel &glmodel = it->second;
// when not reset it keeps old shape // when not reset it keeps old shape
glmodel.reset(); glmodel.reset();
glmodel.init_from(its); glmodel.init_from(its);
m_triangle_count += its.indices.size();
auto volume = model_volumes[i]; m_triangle_count += its.indices.size();
m_parent.toggle_model_objects_visibility(false, info->model_object(),
info->get_active_instance(),
volume);
} }
} }
@ -682,20 +706,30 @@ void GLGizmoSimplify::on_render()
{ {
if (m_glmodels.empty()) return; if (m_glmodels.empty()) return;
const auto &selection = m_parent.get_selection(); const Selection & selection = m_parent.get_selection();
// Check that the GLVolume still belongs to the ModelObject we work on.
if (m_volume_ids != get_volume_ids(selection)) return;
const Selection::IndicesList &volume_ids = selection.get_volume_idxs();
const ModelObjectPtrs &model_objects = selection.get_model()->objects;
const auto &volume_idxs = selection.get_volume_idxs(); const auto &volume_idxs = selection.get_volume_idxs();
// no need to render nothing // no need to render nothing
if (volume_idxs.empty()) return; if (volume_idxs.empty()) return;
// Check that the GLVolume still belongs to the ModelObject we work on. // Iteration over selection because of worl transformation matrix of object
if (m_volumes != get_model_volumes(selection)) return;
for (auto volume_id : volume_idxs) { for (auto volume_id : volume_idxs) {
const GLVolume *selected_volume = selection.get_volume(volume_id); const GLVolume *selected_volume = selection.get_volume(volume_id);
const GLVolume::CompositeID &cid = selected_volume->composite_id; const GLVolume::CompositeID &cid = selected_volume->composite_id;
auto is_cid = [cid](const std::pair<GLVolume::CompositeID, GLModel> &item) -> bool{ return item.first == cid; }; ModelObject *obj = model_objects[cid.object_id];
auto it = std::find_if(m_glmodels.begin(), m_glmodels.end(), is_cid); ModelVolume *volume = obj->volumes[cid.volume_id];
if (it == m_glmodels.end()) continue;
auto it = m_glmodels.find(volume->id());
assert(it != m_glmodels.end());
GLModel &glmodel = it->second; GLModel &glmodel = it->second;
const Transform3d trafo_matrix = selected_volume->world_matrix(); const Transform3d trafo_matrix = selected_volume->world_matrix();

View File

@ -10,12 +10,9 @@
#include <thread> #include <thread>
namespace Slic3r { namespace Slic3r {
class ModelVolume;
class GLVolume::CompositeID;
class ModelObject; class ModelObject;
class Model; class Model;
class ObjectID;
using ModelVolumes = std::vector<const ModelVolume*>;
namespace GUI { namespace GUI {
class NotificationManager; // for simplify suggestion class NotificationManager; // for simplify suggestion
@ -79,10 +76,13 @@ private:
bool m_move_to_center; // opening gizmo bool m_move_to_center; // opening gizmo
ModelVolumes m_volumes; // keep pointers to actual working volumes std::set<ObjectID> m_volume_ids; // keep pointers to actual working volumes
std::string m_volumes_name;
size_t m_original_triangle_count;
bool m_show_wireframe; bool m_show_wireframe;
std::vector<std::pair<GLVolume::CompositeID, GLModel>> m_glmodels; std::map<ObjectID, GLModel> m_glmodels;
size_t m_triangle_count; // triangle count of the model currently shown size_t m_triangle_count; // triangle count of the model currently shown
@ -92,7 +92,8 @@ private:
// Following struct is accessed by both UI and worker thread. // Following struct is accessed by both UI and worker thread.
// Accesses protected by a mutex. // Accesses protected by a mutex.
struct State { struct State {
using Data = std::vector<std::unique_ptr<indexed_triangle_set>>; //using Data = std::vector<std::unique_ptr<indexed_triangle_set> >;
using Data = std::map<ObjectID, std::unique_ptr<indexed_triangle_set> >;
enum Status { enum Status {
idle, idle,
running, running,
@ -104,8 +105,8 @@ private:
Configuration config; // Configuration we started with. Configuration config; // Configuration we started with.
const ModelObject* mo = nullptr; const ModelObject* mo = nullptr;
std::vector<const ModelVolume *> mvs; // (M)odel (V)olume(S)
Data result; Data result;
std::set<ObjectID> volume_ids; // is same as result keys - store separate for faster check
}; };
void init_model(); // initialize glModels from selection void init_model(); // initialize glModels from selection