2018-05-09 08:47:04 +00:00
|
|
|
#include "GLCanvas3DManager.hpp"
|
|
|
|
#include "../../slic3r/GUI/GUI.hpp"
|
|
|
|
#include "../../slic3r/GUI/AppConfig.hpp"
|
|
|
|
|
|
|
|
#include <GL/glew.h>
|
|
|
|
|
|
|
|
#include <boost/algorithm/string/split.hpp>
|
|
|
|
#include <boost/algorithm/string/classification.hpp>
|
|
|
|
|
|
|
|
#include <wx/glcanvas.h>
|
2018-05-30 13:18:45 +00:00
|
|
|
#include <wx/timer.h>
|
2018-05-09 08:47:04 +00:00
|
|
|
|
|
|
|
#include <vector>
|
|
|
|
#include <string>
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
namespace Slic3r {
|
|
|
|
namespace GUI {
|
|
|
|
|
2018-06-04 08:14:09 +00:00
|
|
|
GLCanvas3DManager::GLInfo::GLInfo()
|
|
|
|
: version("")
|
|
|
|
, glsl_version("")
|
|
|
|
, vendor("")
|
|
|
|
, renderer("")
|
2018-05-09 08:47:04 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-06-04 08:14:09 +00:00
|
|
|
bool GLCanvas3DManager::GLInfo::detect()
|
2018-05-09 08:47:04 +00:00
|
|
|
{
|
2018-06-04 08:14:09 +00:00
|
|
|
const char* data = (const char*)::glGetString(GL_VERSION);
|
|
|
|
if (data == nullptr)
|
2018-05-09 08:47:04 +00:00
|
|
|
return false;
|
|
|
|
|
2018-06-04 08:14:09 +00:00
|
|
|
version = data;
|
|
|
|
|
|
|
|
data = (const char*)::glGetString(GL_SHADING_LANGUAGE_VERSION);
|
|
|
|
if (data == nullptr)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
glsl_version = data;
|
|
|
|
|
|
|
|
data = (const char*)::glGetString(GL_VENDOR);
|
|
|
|
if (data == nullptr)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
vendor = data;
|
|
|
|
|
|
|
|
data = (const char*)::glGetString(GL_RENDERER);
|
|
|
|
if (data == nullptr)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
renderer = data;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GLCanvas3DManager::GLInfo::is_version_greater_or_equal_to(unsigned int major, unsigned int minor) const
|
|
|
|
{
|
2018-05-09 08:47:04 +00:00
|
|
|
std::vector<std::string> tokens;
|
2018-06-04 08:14:09 +00:00
|
|
|
boost::split(tokens, version, boost::is_any_of(" "), boost::token_compress_on);
|
2018-05-09 08:47:04 +00:00
|
|
|
|
|
|
|
if (tokens.empty())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
std::vector<std::string> numbers;
|
|
|
|
boost::split(numbers, tokens[0], boost::is_any_of("."), boost::token_compress_on);
|
|
|
|
|
2018-06-04 08:14:09 +00:00
|
|
|
unsigned int gl_major = 0;
|
|
|
|
unsigned int gl_minor = 0;
|
|
|
|
|
2018-05-09 08:47:04 +00:00
|
|
|
if (numbers.size() > 0)
|
2018-06-04 08:14:09 +00:00
|
|
|
gl_major = ::atoi(numbers[0].c_str());
|
2018-05-09 08:47:04 +00:00
|
|
|
|
|
|
|
if (numbers.size() > 1)
|
2018-06-04 08:14:09 +00:00
|
|
|
gl_minor = ::atoi(numbers[1].c_str());
|
2018-05-09 08:47:04 +00:00
|
|
|
|
2018-06-04 08:14:09 +00:00
|
|
|
if (gl_major < major)
|
2018-05-09 08:47:04 +00:00
|
|
|
return false;
|
2018-06-04 08:14:09 +00:00
|
|
|
else if (gl_major > major)
|
2018-05-09 08:47:04 +00:00
|
|
|
return true;
|
|
|
|
else
|
2018-06-04 08:14:09 +00:00
|
|
|
return gl_minor >= minor;
|
|
|
|
}
|
|
|
|
|
|
|
|
std::string GLCanvas3DManager::GLInfo::to_string(bool format_as_html, bool extensions) const
|
|
|
|
{
|
|
|
|
std::stringstream out;
|
|
|
|
|
|
|
|
std::string h2_start = format_as_html ? "<b>" : "";
|
|
|
|
std::string h2_end = format_as_html ? "</b>" : "";
|
|
|
|
std::string b_start = format_as_html ? "<b>" : "";
|
|
|
|
std::string b_end = format_as_html ? "</b>" : "";
|
|
|
|
std::string line_end = format_as_html ? "<br>" : "\n";
|
|
|
|
|
|
|
|
out << h2_start << "OpenGL installation" << h2_end << line_end;
|
|
|
|
out << b_start << "GL version: " << b_end << version << line_end;
|
|
|
|
out << b_start << "Vendor: " << b_end << vendor << line_end;
|
|
|
|
out << b_start << "Renderer: " << b_end << renderer << line_end;
|
|
|
|
out << b_start << "GLSL version: " << b_end << glsl_version << line_end;
|
|
|
|
|
|
|
|
if (extensions)
|
|
|
|
{
|
|
|
|
out << h2_start << "Installed extensions:" << h2_end << line_end;
|
|
|
|
|
|
|
|
std::vector<std::string> extensions_list;
|
|
|
|
GLint num_extensions;
|
|
|
|
::glGetIntegerv(GL_NUM_EXTENSIONS, &num_extensions);
|
|
|
|
|
|
|
|
for (unsigned int i = 0; i < num_extensions; ++i)
|
|
|
|
{
|
|
|
|
const char* e = (const char*)::glGetStringi(GL_EXTENSIONS, i);
|
|
|
|
extensions_list.push_back(e);
|
|
|
|
}
|
|
|
|
|
|
|
|
std::sort(extensions_list.begin(), extensions_list.end());
|
|
|
|
for (const std::string& ext : extensions_list)
|
|
|
|
{
|
|
|
|
out << ext << line_end;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return out.str();
|
2018-05-09 08:47:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
GLCanvas3DManager::GLCanvas3DManager()
|
|
|
|
: m_gl_initialized(false)
|
|
|
|
, m_use_legacy_opengl(false)
|
|
|
|
, m_use_VBOs(false)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GLCanvas3DManager::add(wxGLCanvas* canvas, wxGLContext* context)
|
|
|
|
{
|
|
|
|
if (_get_canvas(canvas) != m_canvases.end())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
GLCanvas3D* canvas3D = new GLCanvas3D(canvas, context);
|
|
|
|
if (canvas3D == nullptr)
|
|
|
|
return false;
|
|
|
|
|
|
|
|
canvas->Bind(wxEVT_SIZE, [canvas3D](wxSizeEvent& evt) { canvas3D->on_size(evt); });
|
2018-05-14 12:47:13 +00:00
|
|
|
canvas->Bind(wxEVT_IDLE, [canvas3D](wxIdleEvent& evt) { canvas3D->on_idle(evt); });
|
2018-05-15 14:09:04 +00:00
|
|
|
canvas->Bind(wxEVT_CHAR, [canvas3D](wxKeyEvent& evt) { canvas3D->on_char(evt); });
|
2018-05-28 13:23:01 +00:00
|
|
|
canvas->Bind(wxEVT_MOUSEWHEEL, [canvas3D](wxMouseEvent& evt) { canvas3D->on_mouse_wheel(evt); });
|
2018-05-30 13:18:45 +00:00
|
|
|
canvas->Bind(wxEVT_TIMER, [canvas3D](wxTimerEvent& evt) { canvas3D->on_timer(evt); });
|
2018-05-31 11:51:50 +00:00
|
|
|
canvas->Bind(wxEVT_LEFT_DOWN, [canvas3D](wxMouseEvent& evt) { canvas3D->on_mouse(evt); });
|
|
|
|
canvas->Bind(wxEVT_LEFT_UP, [canvas3D](wxMouseEvent& evt) { canvas3D->on_mouse(evt); });
|
|
|
|
canvas->Bind(wxEVT_MIDDLE_DOWN, [canvas3D](wxMouseEvent& evt) { canvas3D->on_mouse(evt); });
|
|
|
|
canvas->Bind(wxEVT_MIDDLE_UP, [canvas3D](wxMouseEvent& evt) { canvas3D->on_mouse(evt); });
|
|
|
|
canvas->Bind(wxEVT_RIGHT_DOWN, [canvas3D](wxMouseEvent& evt) { canvas3D->on_mouse(evt); });
|
|
|
|
canvas->Bind(wxEVT_RIGHT_UP, [canvas3D](wxMouseEvent& evt) { canvas3D->on_mouse(evt); });
|
|
|
|
canvas->Bind(wxEVT_MOTION, [canvas3D](wxMouseEvent& evt) { canvas3D->on_mouse(evt); });
|
|
|
|
canvas->Bind(wxEVT_ENTER_WINDOW, [canvas3D](wxMouseEvent& evt) { canvas3D->on_mouse(evt); });
|
|
|
|
canvas->Bind(wxEVT_LEAVE_WINDOW, [canvas3D](wxMouseEvent& evt) { canvas3D->on_mouse(evt); });
|
|
|
|
canvas->Bind(wxEVT_LEFT_DCLICK, [canvas3D](wxMouseEvent& evt) { canvas3D->on_mouse(evt); });
|
|
|
|
canvas->Bind(wxEVT_MIDDLE_DCLICK, [canvas3D](wxMouseEvent& evt) { canvas3D->on_mouse(evt); });
|
|
|
|
canvas->Bind(wxEVT_RIGHT_DCLICK, [canvas3D](wxMouseEvent& evt) { canvas3D->on_mouse(evt); });
|
2018-06-04 10:26:39 +00:00
|
|
|
canvas->Bind(wxEVT_PAINT, [canvas3D](wxPaintEvent& evt) { canvas3D->on_paint(evt); });
|
2018-05-09 08:47:04 +00:00
|
|
|
|
|
|
|
m_canvases.insert(CanvasesMap::value_type(canvas, canvas3D));
|
|
|
|
|
|
|
|
std::cout << "canvas added: " << (void*)canvas << " (" << (void*)canvas3D << ")" << std::endl;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool GLCanvas3DManager::remove(wxGLCanvas* canvas)
|
|
|
|
{
|
|
|
|
CanvasesMap::iterator it = _get_canvas(canvas);
|
|
|
|
if (it == m_canvases.end())
|
|
|
|
return false;
|
|
|
|
|
|
|
|
delete it->second;
|
|
|
|
m_canvases.erase(it);
|
|
|
|
|
|
|
|
std::cout << "canvas removed: " << (void*)canvas << std::endl;
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GLCanvas3DManager::remove_all()
|
|
|
|
{
|
|
|
|
for (CanvasesMap::value_type& item : m_canvases)
|
|
|
|
{
|
|
|
|
std::cout << "canvas removed: " << (void*)item.second << std::endl;
|
|
|
|
delete item.second;
|
|
|
|
}
|
|
|
|
m_canvases.clear();
|
|
|
|
}
|
|
|
|
|
|
|
|
unsigned int GLCanvas3DManager::count() const
|
|
|
|
{
|
|
|
|
return (unsigned int)m_canvases.size();
|
|
|
|
}
|
|
|
|
|
|
|
|
void GLCanvas3DManager::init_gl()
|
|
|
|
{
|
|
|
|
if (!m_gl_initialized)
|
|
|
|
{
|
|
|
|
std::cout << "GLCanvas3DManager::init_gl()" << std::endl;
|
|
|
|
|
|
|
|
glewInit();
|
2018-06-04 08:14:09 +00:00
|
|
|
if (m_gl_info.detect())
|
|
|
|
{
|
|
|
|
const AppConfig* config = GUI::get_app_config();
|
|
|
|
m_use_legacy_opengl = (config == nullptr) || (config->get("use_legacy_opengl") == "1");
|
|
|
|
m_use_VBOs = !m_use_legacy_opengl && m_gl_info.is_version_greater_or_equal_to(2, 0);
|
|
|
|
m_gl_initialized = true;
|
|
|
|
|
|
|
|
std::cout << "DETECTED OPENGL: " << m_gl_info.version << std::endl;
|
|
|
|
std::cout << "USE VBOS = " << (m_use_VBOs ? "YES" : "NO") << std::endl;
|
|
|
|
std::cout << "LAYER EDITING ALLOWED = " << (!m_use_legacy_opengl ? "YES" : "NO") << std::endl;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
throw std::runtime_error(std::string("Unable to initialize OpenGL driver\n"));
|
2018-05-09 08:47:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-06-04 08:14:09 +00:00
|
|
|
std::string GLCanvas3DManager::get_gl_info(bool format_as_html, bool extensions) const
|
|
|
|
{
|
|
|
|
return m_gl_info.to_string(format_as_html, extensions);
|
|
|
|
}
|
|
|
|
|
2018-05-09 08:47:04 +00:00
|
|
|
bool GLCanvas3DManager::use_VBOs() const
|
|
|
|
{
|
|
|
|
return m_use_VBOs;
|
|
|
|
}
|
|
|
|
|
2018-06-04 11:15:28 +00:00
|
|
|
bool GLCanvas3DManager::init(wxGLCanvas* canvas)
|
2018-05-23 07:57:44 +00:00
|
|
|
{
|
|
|
|
CanvasesMap::const_iterator it = _get_canvas(canvas);
|
2018-06-04 11:15:28 +00:00
|
|
|
if (it != m_canvases.end())
|
|
|
|
return (it->second != nullptr) ? _init(*it->second) : false;
|
|
|
|
else
|
|
|
|
return false;
|
2018-05-23 07:57:44 +00:00
|
|
|
}
|
|
|
|
|
2018-05-14 12:14:19 +00:00
|
|
|
bool GLCanvas3DManager::is_shown_on_screen(wxGLCanvas* canvas) const
|
2018-05-09 08:47:04 +00:00
|
|
|
{
|
|
|
|
CanvasesMap::const_iterator it = _get_canvas(canvas);
|
2018-05-14 12:14:19 +00:00
|
|
|
return (it != m_canvases.end()) ? it->second->is_shown_on_screen() : false;
|
2018-05-09 08:47:04 +00:00
|
|
|
}
|
|
|
|
|
2018-05-14 12:14:19 +00:00
|
|
|
void GLCanvas3DManager::set_volumes(wxGLCanvas* canvas, GLVolumeCollection* volumes)
|
|
|
|
{
|
|
|
|
CanvasesMap::iterator it = _get_canvas(canvas);
|
|
|
|
if (it != m_canvases.end())
|
|
|
|
it->second->set_volumes(volumes);
|
|
|
|
}
|
|
|
|
|
2018-05-18 12:08:59 +00:00
|
|
|
void GLCanvas3DManager::reset_volumes(wxGLCanvas* canvas)
|
|
|
|
{
|
|
|
|
CanvasesMap::iterator it = _get_canvas(canvas);
|
|
|
|
if (it != m_canvases.end())
|
|
|
|
it->second->reset_volumes();
|
|
|
|
}
|
|
|
|
|
2018-05-25 07:03:55 +00:00
|
|
|
void GLCanvas3DManager::deselect_volumes(wxGLCanvas* canvas)
|
|
|
|
{
|
|
|
|
CanvasesMap::iterator it = _get_canvas(canvas);
|
|
|
|
if (it != m_canvases.end())
|
|
|
|
it->second->deselect_volumes();
|
|
|
|
}
|
|
|
|
|
|
|
|
void GLCanvas3DManager::select_volume(wxGLCanvas* canvas, unsigned int id)
|
|
|
|
{
|
|
|
|
CanvasesMap::iterator it = _get_canvas(canvas);
|
|
|
|
if (it != m_canvases.end())
|
|
|
|
it->second->select_volume(id);
|
|
|
|
}
|
|
|
|
|
2018-05-28 13:23:01 +00:00
|
|
|
void GLCanvas3DManager::set_config(wxGLCanvas* canvas, DynamicPrintConfig* config)
|
2018-05-23 09:14:49 +00:00
|
|
|
{
|
2018-05-28 13:23:01 +00:00
|
|
|
CanvasesMap::iterator it = _get_canvas(canvas);
|
|
|
|
if (it != m_canvases.end())
|
|
|
|
it->second->set_config(config);
|
2018-05-23 09:14:49 +00:00
|
|
|
}
|
|
|
|
|
2018-05-28 13:23:01 +00:00
|
|
|
void GLCanvas3DManager::set_print(wxGLCanvas* canvas, Print* print)
|
2018-05-23 09:14:49 +00:00
|
|
|
{
|
|
|
|
CanvasesMap::iterator it = _get_canvas(canvas);
|
|
|
|
if (it != m_canvases.end())
|
2018-05-28 13:23:01 +00:00
|
|
|
it->second->set_print(print);
|
2018-05-23 09:14:49 +00:00
|
|
|
}
|
|
|
|
|
2018-05-14 12:14:19 +00:00
|
|
|
void GLCanvas3DManager::set_bed_shape(wxGLCanvas* canvas, const Pointfs& shape)
|
|
|
|
{
|
|
|
|
CanvasesMap::iterator it = _get_canvas(canvas);
|
|
|
|
if (it != m_canvases.end())
|
|
|
|
it->second->set_bed_shape(shape);
|
|
|
|
}
|
|
|
|
|
2018-05-15 13:38:25 +00:00
|
|
|
void GLCanvas3DManager::set_auto_bed_shape(wxGLCanvas* canvas)
|
|
|
|
{
|
|
|
|
CanvasesMap::iterator it = _get_canvas(canvas);
|
|
|
|
if (it != m_canvases.end())
|
|
|
|
it->second->set_auto_bed_shape();
|
|
|
|
}
|
|
|
|
|
2018-05-18 11:02:47 +00:00
|
|
|
BoundingBoxf3 GLCanvas3DManager::get_volumes_bounding_box(wxGLCanvas* canvas)
|
2018-05-15 09:07:32 +00:00
|
|
|
{
|
2018-05-18 11:02:47 +00:00
|
|
|
CanvasesMap::const_iterator it = _get_canvas(canvas);
|
|
|
|
return (it != m_canvases.end()) ? it->second->volumes_bounding_box() : BoundingBoxf3();
|
2018-05-15 09:07:32 +00:00
|
|
|
}
|
|
|
|
|
2018-05-18 11:02:47 +00:00
|
|
|
void GLCanvas3DManager::set_axes_length(wxGLCanvas* canvas, float length)
|
|
|
|
{
|
|
|
|
CanvasesMap::iterator it = _get_canvas(canvas);
|
|
|
|
if (it != m_canvases.end())
|
|
|
|
it->second->set_axes_length(length);
|
2018-05-14 12:14:19 +00:00
|
|
|
}
|
|
|
|
|
2018-05-18 09:05:48 +00:00
|
|
|
void GLCanvas3DManager::set_cutting_plane(wxGLCanvas* canvas, float z, const ExPolygons& polygons)
|
|
|
|
{
|
|
|
|
CanvasesMap::iterator it = _get_canvas(canvas);
|
|
|
|
if (it != m_canvases.end())
|
|
|
|
it->second->set_cutting_plane(z, polygons);
|
|
|
|
}
|
|
|
|
|
2018-06-06 10:36:52 +00:00
|
|
|
void GLCanvas3DManager::set_color_by(wxGLCanvas* canvas, const std::string& value)
|
|
|
|
{
|
|
|
|
CanvasesMap::iterator it = _get_canvas(canvas);
|
|
|
|
if (it != m_canvases.end())
|
|
|
|
it->second->set_color_by(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GLCanvas3DManager::set_select_by(wxGLCanvas* canvas, const std::string& value)
|
|
|
|
{
|
|
|
|
CanvasesMap::iterator it = _get_canvas(canvas);
|
|
|
|
if (it != m_canvases.end())
|
|
|
|
it->second->set_select_by(value);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GLCanvas3DManager::set_drag_by(wxGLCanvas* canvas, const std::string& value)
|
|
|
|
{
|
|
|
|
CanvasesMap::iterator it = _get_canvas(canvas);
|
|
|
|
if (it != m_canvases.end())
|
|
|
|
it->second->set_drag_by(value);
|
|
|
|
}
|
|
|
|
|
2018-05-18 12:08:59 +00:00
|
|
|
bool GLCanvas3DManager::is_layers_editing_enabled(wxGLCanvas* canvas) const
|
|
|
|
{
|
|
|
|
CanvasesMap::const_iterator it = _get_canvas(canvas);
|
|
|
|
return (it != m_canvases.end()) ? it->second->is_layers_editing_enabled() : false;
|
|
|
|
}
|
|
|
|
|
2018-05-25 14:28:24 +00:00
|
|
|
bool GLCanvas3DManager::is_layers_editing_allowed(wxGLCanvas* canvas) const
|
|
|
|
{
|
|
|
|
CanvasesMap::const_iterator it = _get_canvas(canvas);
|
|
|
|
return (it != m_canvases.end()) ? it->second->is_layers_editing_allowed() : false;
|
|
|
|
}
|
|
|
|
|
2018-06-04 12:28:59 +00:00
|
|
|
bool GLCanvas3DManager::is_shader_enabled(wxGLCanvas* canvas) const
|
|
|
|
{
|
|
|
|
CanvasesMap::const_iterator it = _get_canvas(canvas);
|
|
|
|
return (it != m_canvases.end()) ? it->second->is_shader_enabled() : false;
|
|
|
|
}
|
|
|
|
|
2018-05-25 12:05:08 +00:00
|
|
|
void GLCanvas3DManager::enable_layers_editing(wxGLCanvas* canvas, bool enable)
|
2018-05-23 13:35:11 +00:00
|
|
|
{
|
2018-05-25 12:05:08 +00:00
|
|
|
CanvasesMap::iterator it = _get_canvas(canvas);
|
|
|
|
if (it != m_canvases.end())
|
|
|
|
it->second->enable_layers_editing(enable);
|
2018-05-23 13:35:11 +00:00
|
|
|
}
|
|
|
|
|
2018-05-21 12:40:09 +00:00
|
|
|
void GLCanvas3DManager::enable_warning_texture(wxGLCanvas* canvas, bool enable)
|
|
|
|
{
|
|
|
|
CanvasesMap::iterator it = _get_canvas(canvas);
|
|
|
|
if (it != m_canvases.end())
|
|
|
|
it->second->enable_warning_texture(enable);
|
|
|
|
}
|
|
|
|
|
2018-05-21 12:57:43 +00:00
|
|
|
void GLCanvas3DManager::enable_legend_texture(wxGLCanvas* canvas, bool enable)
|
|
|
|
{
|
|
|
|
CanvasesMap::iterator it = _get_canvas(canvas);
|
|
|
|
if (it != m_canvases.end())
|
|
|
|
it->second->enable_legend_texture(enable);
|
|
|
|
}
|
|
|
|
|
2018-05-22 07:02:42 +00:00
|
|
|
void GLCanvas3DManager::enable_picking(wxGLCanvas* canvas, bool enable)
|
|
|
|
{
|
|
|
|
CanvasesMap::iterator it = _get_canvas(canvas);
|
|
|
|
if (it != m_canvases.end())
|
|
|
|
it->second->enable_picking(enable);
|
|
|
|
}
|
|
|
|
|
2018-05-31 11:51:50 +00:00
|
|
|
void GLCanvas3DManager::enable_moving(wxGLCanvas* canvas, bool enable)
|
|
|
|
{
|
|
|
|
CanvasesMap::iterator it = _get_canvas(canvas);
|
|
|
|
if (it != m_canvases.end())
|
|
|
|
it->second->enable_moving(enable);
|
|
|
|
}
|
|
|
|
|
2018-05-23 07:57:44 +00:00
|
|
|
void GLCanvas3DManager::enable_shader(wxGLCanvas* canvas, bool enable)
|
|
|
|
{
|
|
|
|
CanvasesMap::iterator it = _get_canvas(canvas);
|
|
|
|
if (it != m_canvases.end())
|
|
|
|
it->second->enable_shader(enable);
|
|
|
|
}
|
|
|
|
|
2018-06-05 08:56:55 +00:00
|
|
|
void GLCanvas3DManager::enable_force_zoom_to_bed(wxGLCanvas* canvas, bool enable)
|
|
|
|
{
|
|
|
|
CanvasesMap::iterator it = _get_canvas(canvas);
|
|
|
|
if (it != m_canvases.end())
|
|
|
|
it->second->enable_force_zoom_to_bed(enable);
|
|
|
|
}
|
|
|
|
|
2018-05-23 13:35:11 +00:00
|
|
|
void GLCanvas3DManager::allow_multisample(wxGLCanvas* canvas, bool allow)
|
|
|
|
{
|
|
|
|
CanvasesMap::iterator it = _get_canvas(canvas);
|
|
|
|
if (it != m_canvases.end())
|
|
|
|
it->second->allow_multisample(allow);
|
|
|
|
}
|
|
|
|
|
2018-05-15 08:32:38 +00:00
|
|
|
void GLCanvas3DManager::zoom_to_bed(wxGLCanvas* canvas)
|
|
|
|
{
|
|
|
|
CanvasesMap::iterator it = _get_canvas(canvas);
|
|
|
|
if (it != m_canvases.end())
|
|
|
|
it->second->zoom_to_bed();
|
|
|
|
}
|
|
|
|
|
|
|
|
void GLCanvas3DManager::zoom_to_volumes(wxGLCanvas* canvas)
|
|
|
|
{
|
|
|
|
CanvasesMap::iterator it = _get_canvas(canvas);
|
|
|
|
if (it != m_canvases.end())
|
|
|
|
it->second->zoom_to_volumes();
|
|
|
|
}
|
|
|
|
|
2018-05-15 09:30:11 +00:00
|
|
|
void GLCanvas3DManager::select_view(wxGLCanvas* canvas, const std::string& direction)
|
|
|
|
{
|
|
|
|
CanvasesMap::iterator it = _get_canvas(canvas);
|
|
|
|
if (it != m_canvases.end())
|
|
|
|
it->second->select_view(direction);
|
|
|
|
}
|
|
|
|
|
2018-05-29 13:36:09 +00:00
|
|
|
void GLCanvas3DManager::set_viewport_from_scene(wxGLCanvas* canvas, wxGLCanvas* other)
|
|
|
|
{
|
|
|
|
CanvasesMap::iterator it = _get_canvas(canvas);
|
|
|
|
if (it != m_canvases.end())
|
|
|
|
{
|
|
|
|
CanvasesMap::iterator other_it = _get_canvas(other);
|
|
|
|
if (other_it != m_canvases.end())
|
|
|
|
it->second->set_viewport_from_scene(*other_it->second);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-05-29 13:07:06 +00:00
|
|
|
void GLCanvas3DManager::update_volumes_colors_by_extruder(wxGLCanvas* canvas)
|
|
|
|
{
|
|
|
|
CanvasesMap::const_iterator it = _get_canvas(canvas);
|
|
|
|
if (it != m_canvases.end())
|
|
|
|
it->second->update_volumes_colors_by_extruder();
|
|
|
|
}
|
|
|
|
|
2018-05-29 11:54:34 +00:00
|
|
|
void GLCanvas3DManager::render(wxGLCanvas* canvas) const
|
2018-05-23 13:35:11 +00:00
|
|
|
{
|
|
|
|
CanvasesMap::const_iterator it = _get_canvas(canvas);
|
|
|
|
if (it != m_canvases.end())
|
2018-06-04 10:26:39 +00:00
|
|
|
it->second->render();
|
2018-05-18 11:02:47 +00:00
|
|
|
}
|
|
|
|
|
2018-06-04 13:42:34 +00:00
|
|
|
std::vector<double> GLCanvas3DManager::get_current_print_zs(wxGLCanvas* canvas, bool active_only) const
|
|
|
|
{
|
|
|
|
CanvasesMap::const_iterator it = _get_canvas(canvas);
|
|
|
|
return (it != m_canvases.end()) ? it->second->get_current_print_zs(active_only) : std::vector<double>();
|
|
|
|
}
|
|
|
|
|
|
|
|
void GLCanvas3DManager::set_toolpaths_range(wxGLCanvas* canvas, double low, double high)
|
|
|
|
{
|
|
|
|
CanvasesMap::iterator it = _get_canvas(canvas);
|
|
|
|
if (it != m_canvases.end())
|
|
|
|
it->second->set_toolpaths_range(low, high);
|
|
|
|
}
|
|
|
|
|
2018-06-06 08:16:58 +00:00
|
|
|
std::vector<int> GLCanvas3DManager::load_object(wxGLCanvas* canvas, const ModelObject* model_object, int obj_idx, std::vector<int> instance_idxs)
|
|
|
|
{
|
|
|
|
if (model_object == nullptr)
|
|
|
|
return std::vector<int>();
|
|
|
|
|
|
|
|
CanvasesMap::const_iterator it = _get_canvas(canvas);
|
|
|
|
return (it != m_canvases.end()) ? it->second->load_object(*model_object, obj_idx, instance_idxs) : std::vector<int>();
|
|
|
|
}
|
|
|
|
|
|
|
|
std::vector<int> GLCanvas3DManager::load_object(wxGLCanvas* canvas, const Model* model, int obj_idx, std::vector<int> instance_idxs)
|
|
|
|
{
|
|
|
|
if (model == nullptr)
|
|
|
|
return std::vector<int>();
|
|
|
|
|
|
|
|
CanvasesMap::const_iterator it = _get_canvas(canvas);
|
|
|
|
return (it != m_canvases.end()) ? it->second->load_object(*model, obj_idx, instance_idxs) : std::vector<int>();
|
|
|
|
}
|
|
|
|
|
2018-06-05 12:09:36 +00:00
|
|
|
void GLCanvas3DManager::load_print_toolpaths(wxGLCanvas* canvas)
|
|
|
|
{
|
|
|
|
CanvasesMap::iterator it = _get_canvas(canvas);
|
|
|
|
if (it != m_canvases.end())
|
|
|
|
it->second->load_print_toolpaths();
|
|
|
|
}
|
|
|
|
|
|
|
|
void GLCanvas3DManager::load_print_object_toolpaths(wxGLCanvas* canvas, const PrintObject* print_object, const std::vector<std::string>& tool_colors)
|
|
|
|
{
|
|
|
|
if (print_object == nullptr)
|
|
|
|
return;
|
|
|
|
|
|
|
|
CanvasesMap::iterator it = _get_canvas(canvas);
|
|
|
|
if (it != m_canvases.end())
|
|
|
|
it->second->load_print_object_toolpaths(*print_object, tool_colors);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GLCanvas3DManager::load_wipe_tower_toolpaths(wxGLCanvas* canvas, const std::vector<std::string>& str_tool_colors)
|
|
|
|
{
|
|
|
|
CanvasesMap::iterator it = _get_canvas(canvas);
|
|
|
|
if (it != m_canvases.end())
|
|
|
|
it->second->load_wipe_tower_toolpaths(str_tool_colors);
|
|
|
|
}
|
|
|
|
|
2018-06-05 08:56:55 +00:00
|
|
|
void GLCanvas3DManager::load_gcode_preview(wxGLCanvas* canvas, const GCodePreviewData* preview_data, const std::vector<std::string>& str_tool_colors)
|
|
|
|
{
|
|
|
|
if (preview_data == nullptr)
|
|
|
|
return;
|
|
|
|
|
|
|
|
CanvasesMap::iterator it = _get_canvas(canvas);
|
|
|
|
if (it != m_canvases.end())
|
|
|
|
it->second->load_gcode_preview(*preview_data, str_tool_colors);
|
|
|
|
}
|
|
|
|
|
2018-05-15 07:50:01 +00:00
|
|
|
void GLCanvas3DManager::register_on_viewport_changed_callback(wxGLCanvas* canvas, void* callback)
|
|
|
|
{
|
|
|
|
CanvasesMap::iterator it = _get_canvas(canvas);
|
|
|
|
if (it != m_canvases.end())
|
|
|
|
it->second->register_on_viewport_changed_callback(callback);
|
|
|
|
}
|
|
|
|
|
2018-05-31 11:51:50 +00:00
|
|
|
void GLCanvas3DManager::register_on_double_click_callback(wxGLCanvas* canvas, void* callback)
|
|
|
|
{
|
|
|
|
CanvasesMap::iterator it = _get_canvas(canvas);
|
|
|
|
if (it != m_canvases.end())
|
|
|
|
it->second->register_on_double_click_callback(callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GLCanvas3DManager::register_on_right_click_callback(wxGLCanvas* canvas, void* callback)
|
|
|
|
{
|
|
|
|
CanvasesMap::iterator it = _get_canvas(canvas);
|
|
|
|
if (it != m_canvases.end())
|
|
|
|
it->second->register_on_right_click_callback(callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GLCanvas3DManager::register_on_select_callback(wxGLCanvas* canvas, void* callback)
|
|
|
|
{
|
|
|
|
CanvasesMap::iterator it = _get_canvas(canvas);
|
|
|
|
if (it != m_canvases.end())
|
|
|
|
it->second->register_on_select_callback(callback);
|
|
|
|
}
|
|
|
|
|
2018-05-31 14:04:59 +00:00
|
|
|
void GLCanvas3DManager::register_on_model_update_callback(wxGLCanvas* canvas, void* callback)
|
|
|
|
{
|
|
|
|
CanvasesMap::iterator it = _get_canvas(canvas);
|
|
|
|
if (it != m_canvases.end())
|
|
|
|
it->second->register_on_model_update_callback(callback);
|
|
|
|
}
|
|
|
|
|
|
|
|
void GLCanvas3DManager::register_on_move_callback(wxGLCanvas* canvas, void* callback)
|
|
|
|
{
|
|
|
|
CanvasesMap::iterator it = _get_canvas(canvas);
|
|
|
|
if (it != m_canvases.end())
|
|
|
|
it->second->register_on_move_callback(callback);
|
|
|
|
}
|
|
|
|
|
2018-05-09 08:47:04 +00:00
|
|
|
GLCanvas3DManager::CanvasesMap::iterator GLCanvas3DManager::_get_canvas(wxGLCanvas* canvas)
|
|
|
|
{
|
|
|
|
return (canvas == nullptr) ? m_canvases.end() : m_canvases.find(canvas);
|
|
|
|
}
|
|
|
|
|
|
|
|
GLCanvas3DManager::CanvasesMap::const_iterator GLCanvas3DManager::_get_canvas(wxGLCanvas* canvas) const
|
|
|
|
{
|
|
|
|
return (canvas == nullptr) ? m_canvases.end() : m_canvases.find(canvas);
|
|
|
|
}
|
|
|
|
|
2018-06-04 11:15:28 +00:00
|
|
|
bool GLCanvas3DManager::_init(GLCanvas3D& canvas)
|
|
|
|
{
|
|
|
|
if (!m_gl_initialized)
|
|
|
|
init_gl();
|
|
|
|
|
|
|
|
return canvas.init(m_use_VBOs, m_use_legacy_opengl);
|
|
|
|
}
|
|
|
|
|
2018-05-09 08:47:04 +00:00
|
|
|
} // namespace GUI
|
|
|
|
} // namespace Slic3r
|