2018-05-09 08:47:04 +00:00
|
|
|
#ifndef slic3r_GLCanvas3D_hpp_
|
|
|
|
#define slic3r_GLCanvas3D_hpp_
|
|
|
|
|
2018-10-03 09:34:39 +00:00
|
|
|
#include <stddef.h>
|
2019-01-24 10:30:29 +00:00
|
|
|
#include <memory>
|
2018-05-09 08:47:04 +00:00
|
|
|
|
2019-04-29 12:32:02 +00:00
|
|
|
#include "libslic3r/ModelArrange.hpp"
|
2018-09-17 10:15:11 +00:00
|
|
|
#include "3DScene.hpp"
|
|
|
|
#include "GLToolbar.hpp"
|
2018-10-03 09:34:39 +00:00
|
|
|
#include "Event.hpp"
|
2019-02-19 14:15:27 +00:00
|
|
|
#include "3DBed.hpp"
|
2019-03-06 14:46:19 +00:00
|
|
|
#include "Camera.hpp"
|
2019-03-19 12:30:21 +00:00
|
|
|
#include "Selection.hpp"
|
2019-03-20 12:51:25 +00:00
|
|
|
#include "Gizmos/GLGizmosManager.hpp"
|
2018-05-09 08:47:04 +00:00
|
|
|
|
2018-11-29 14:10:11 +00:00
|
|
|
#include <float.h>
|
|
|
|
|
2018-10-25 07:35:08 +00:00
|
|
|
#include <wx/timer.h>
|
|
|
|
|
2018-10-01 14:48:08 +00:00
|
|
|
class wxWindow;
|
2018-05-09 08:47:04 +00:00
|
|
|
class wxSizeEvent;
|
2018-05-14 12:47:13 +00:00
|
|
|
class wxIdleEvent;
|
2018-05-15 14:09:04 +00:00
|
|
|
class wxKeyEvent;
|
2018-05-28 13:23:01 +00:00
|
|
|
class wxMouseEvent;
|
2018-05-30 13:18:45 +00:00
|
|
|
class wxTimerEvent;
|
2018-06-04 10:26:39 +00:00
|
|
|
class wxPaintEvent;
|
2018-10-18 13:13:38 +00:00
|
|
|
class wxGLCanvas;
|
2018-05-09 08:47:04 +00:00
|
|
|
|
2019-01-24 10:30:29 +00:00
|
|
|
// Support for Retina OpenGL on Mac OS
|
|
|
|
#define ENABLE_RETINA_GL __APPLE__
|
|
|
|
|
2018-05-09 08:47:04 +00:00
|
|
|
namespace Slic3r {
|
2018-05-14 12:14:19 +00:00
|
|
|
|
2018-05-23 07:57:44 +00:00
|
|
|
class GLShader;
|
2018-05-15 13:38:25 +00:00
|
|
|
class ExPolygon;
|
2018-11-22 14:29:59 +00:00
|
|
|
class BackgroundSlicingProcess;
|
2018-12-19 13:47:16 +00:00
|
|
|
class GCodePreviewData;
|
2019-01-21 09:06:51 +00:00
|
|
|
struct SlicingParameters;
|
|
|
|
enum LayerHeightEditActionType : unsigned int;
|
2018-05-14 12:14:19 +00:00
|
|
|
|
2018-05-09 08:47:04 +00:00
|
|
|
namespace GUI {
|
|
|
|
|
2018-06-13 07:12:16 +00:00
|
|
|
class GLGizmoBase;
|
|
|
|
|
2019-01-24 10:30:29 +00:00
|
|
|
#if ENABLE_RETINA_GL
|
|
|
|
class RetinaHelper;
|
|
|
|
#endif
|
|
|
|
|
2018-05-24 11:46:17 +00:00
|
|
|
class Size
|
|
|
|
{
|
|
|
|
int m_width;
|
|
|
|
int m_height;
|
2019-01-24 10:30:29 +00:00
|
|
|
float m_scale_factor;
|
2018-05-24 11:46:17 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
Size();
|
2019-01-24 10:30:29 +00:00
|
|
|
Size(int width, int height, float scale_factor = 1.0);
|
2018-05-24 11:46:17 +00:00
|
|
|
|
|
|
|
int get_width() const;
|
|
|
|
void set_width(int width);
|
|
|
|
|
|
|
|
int get_height() const;
|
|
|
|
void set_height(int height);
|
2019-01-24 10:30:29 +00:00
|
|
|
|
|
|
|
int get_scale_factor() const;
|
|
|
|
void set_scale_factor(int height);
|
2018-05-24 11:46:17 +00:00
|
|
|
};
|
|
|
|
|
2019-04-08 08:50:10 +00:00
|
|
|
|
|
|
|
class ClippingPlane
|
2018-05-24 11:46:17 +00:00
|
|
|
{
|
2019-04-08 08:50:10 +00:00
|
|
|
double m_data[4];
|
2018-05-24 11:46:17 +00:00
|
|
|
|
|
|
|
public:
|
2019-04-08 08:50:10 +00:00
|
|
|
ClippingPlane()
|
|
|
|
{
|
|
|
|
m_data[0] = 0.0;
|
|
|
|
m_data[1] = 0.0;
|
|
|
|
m_data[2] = 1.0;
|
|
|
|
m_data[3] = 0.0;
|
|
|
|
}
|
2018-05-24 11:46:17 +00:00
|
|
|
|
2019-04-08 08:50:10 +00:00
|
|
|
ClippingPlane(const Vec3d& direction, double offset)
|
|
|
|
{
|
|
|
|
Vec3d norm_dir = direction.normalized();
|
|
|
|
m_data[0] = norm_dir(0);
|
|
|
|
m_data[1] = norm_dir(1);
|
|
|
|
m_data[2] = norm_dir(2);
|
|
|
|
m_data[3] = offset;
|
|
|
|
}
|
2018-05-24 11:46:17 +00:00
|
|
|
|
2019-04-12 14:08:40 +00:00
|
|
|
bool is_active() const { return m_data[3] != DBL_MAX; }
|
|
|
|
|
2019-04-08 08:50:10 +00:00
|
|
|
static ClippingPlane ClipsNothing() { return ClippingPlane(Vec3d(0., 0., 1.), DBL_MAX); }
|
2019-01-21 16:02:16 +00:00
|
|
|
|
2019-04-08 08:50:10 +00:00
|
|
|
const double* get_data() const { return m_data; }
|
2018-05-24 11:46:17 +00:00
|
|
|
};
|
|
|
|
|
2019-04-08 08:50:10 +00:00
|
|
|
|
2018-10-16 14:04:19 +00:00
|
|
|
wxDECLARE_EVENT(EVT_GLCANVAS_OBJECT_SELECT, SimpleEvent);
|
2018-10-03 09:34:39 +00:00
|
|
|
|
|
|
|
using Vec2dEvent = Event<Vec2d>;
|
|
|
|
template <size_t N> using Vec2dsEvent = ArrayEvent<Vec2d, N>;
|
|
|
|
|
|
|
|
using Vec3dEvent = Event<Vec3d>;
|
|
|
|
template <size_t N> using Vec3dsEvent = ArrayEvent<Vec3d, N>;
|
|
|
|
|
2018-12-06 09:38:19 +00:00
|
|
|
wxDECLARE_EVENT(EVT_GLCANVAS_INIT, SimpleEvent);
|
2018-10-25 10:10:35 +00:00
|
|
|
wxDECLARE_EVENT(EVT_GLCANVAS_SCHEDULE_BACKGROUND_PROCESS, SimpleEvent);
|
2018-10-03 09:34:39 +00:00
|
|
|
wxDECLARE_EVENT(EVT_GLCANVAS_RIGHT_CLICK, Vec2dEvent);
|
|
|
|
wxDECLARE_EVENT(EVT_GLCANVAS_REMOVE_OBJECT, SimpleEvent);
|
|
|
|
wxDECLARE_EVENT(EVT_GLCANVAS_ARRANGE, SimpleEvent);
|
2019-02-03 13:06:13 +00:00
|
|
|
wxDECLARE_EVENT(EVT_GLCANVAS_SELECT_ALL, SimpleEvent);
|
2018-12-19 13:01:13 +00:00
|
|
|
wxDECLARE_EVENT(EVT_GLCANVAS_QUESTION_MARK, SimpleEvent);
|
2018-10-18 13:09:41 +00:00
|
|
|
wxDECLARE_EVENT(EVT_GLCANVAS_INCREASE_INSTANCES, Event<int>); // data: +1 => increase, -1 => decrease
|
2018-10-09 15:14:59 +00:00
|
|
|
wxDECLARE_EVENT(EVT_GLCANVAS_INSTANCE_MOVED, SimpleEvent);
|
2018-10-03 09:34:39 +00:00
|
|
|
wxDECLARE_EVENT(EVT_GLCANVAS_WIPETOWER_MOVED, Vec3dEvent);
|
2019-01-03 10:24:03 +00:00
|
|
|
wxDECLARE_EVENT(EVT_GLCANVAS_INSTANCE_ROTATED, SimpleEvent);
|
|
|
|
wxDECLARE_EVENT(EVT_GLCANVAS_INSTANCE_SCALED, SimpleEvent);
|
2019-04-26 13:34:26 +00:00
|
|
|
wxDECLARE_EVENT(EVT_GLCANVAS_WIPETOWER_ROTATED, Vec3dEvent);
|
2018-10-03 09:34:39 +00:00
|
|
|
wxDECLARE_EVENT(EVT_GLCANVAS_ENABLE_ACTION_BUTTONS, Event<bool>);
|
|
|
|
wxDECLARE_EVENT(EVT_GLCANVAS_UPDATE_GEOMETRY, Vec3dsEvent<2>);
|
2018-11-23 11:47:32 +00:00
|
|
|
wxDECLARE_EVENT(EVT_GLCANVAS_MOUSE_DRAGGING_FINISHED, SimpleEvent);
|
2019-02-19 14:15:27 +00:00
|
|
|
wxDECLARE_EVENT(EVT_GLCANVAS_UPDATE_BED_SHAPE, SimpleEvent);
|
2019-02-21 10:54:18 +00:00
|
|
|
wxDECLARE_EVENT(EVT_GLCANVAS_TAB, SimpleEvent);
|
2019-03-27 13:16:38 +00:00
|
|
|
wxDECLARE_EVENT(EVT_GLCANVAS_RESETGIZMOS, SimpleEvent);
|
2019-06-13 14:10:33 +00:00
|
|
|
wxDECLARE_EVENT(EVT_GLCANVAS_MOVE_DOUBLE_SLIDER, wxKeyEvent);
|
2019-06-18 09:40:26 +00:00
|
|
|
wxDECLARE_EVENT(EVT_GLCANVAS_EDIT_COLOR_CHANGE, wxKeyEvent);
|
2018-10-03 09:34:39 +00:00
|
|
|
|
2018-05-09 08:47:04 +00:00
|
|
|
class GLCanvas3D
|
|
|
|
{
|
2018-06-05 08:56:55 +00:00
|
|
|
struct GCodePreviewVolumeIndex
|
|
|
|
{
|
|
|
|
enum EType
|
|
|
|
{
|
|
|
|
Extrusion,
|
|
|
|
Travel,
|
|
|
|
Retraction,
|
|
|
|
Unretraction,
|
|
|
|
Shell,
|
|
|
|
Num_Geometry_Types
|
|
|
|
};
|
|
|
|
|
|
|
|
struct FirstVolume
|
|
|
|
{
|
|
|
|
EType type;
|
|
|
|
unsigned int flag;
|
|
|
|
// Index of the first volume in a GLVolumeCollection.
|
|
|
|
unsigned int id;
|
|
|
|
|
|
|
|
FirstVolume(EType type, unsigned int flag, unsigned int id) : type(type), flag(flag), id(id) {}
|
|
|
|
};
|
|
|
|
|
|
|
|
std::vector<FirstVolume> first_volumes;
|
|
|
|
|
|
|
|
void reset() { first_volumes.clear(); }
|
|
|
|
};
|
|
|
|
|
2019-02-20 14:23:23 +00:00
|
|
|
#if !ENABLE_TEXTURES_FROM_SVG
|
2018-05-25 12:05:08 +00:00
|
|
|
class Shader
|
|
|
|
{
|
|
|
|
GLShader* m_shader;
|
|
|
|
|
|
|
|
public:
|
|
|
|
Shader();
|
|
|
|
~Shader();
|
|
|
|
|
|
|
|
bool init(const std::string& vertex_shader_filename, const std::string& fragment_shader_filename);
|
|
|
|
|
|
|
|
bool is_initialized() const;
|
|
|
|
|
|
|
|
bool start_using() const;
|
|
|
|
void stop_using() const;
|
|
|
|
|
2018-05-25 13:56:14 +00:00
|
|
|
void set_uniform(const std::string& name, float value) const;
|
2018-06-21 06:37:04 +00:00
|
|
|
void set_uniform(const std::string& name, const float* matrix) const;
|
2018-05-25 13:56:14 +00:00
|
|
|
|
2018-05-29 12:34:45 +00:00
|
|
|
const GLShader* get_shader() const;
|
2018-05-25 12:05:08 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
void _reset();
|
|
|
|
};
|
2019-02-20 14:23:23 +00:00
|
|
|
#endif // !ENABLE_TEXTURES_FROM_SVG
|
2018-05-25 12:05:08 +00:00
|
|
|
|
2018-05-18 12:08:59 +00:00
|
|
|
class LayersEditing
|
|
|
|
{
|
2018-05-30 13:18:45 +00:00
|
|
|
public:
|
|
|
|
enum EState : unsigned char
|
|
|
|
{
|
|
|
|
Unknown,
|
|
|
|
Editing,
|
|
|
|
Completed,
|
|
|
|
Num_States
|
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
2019-01-24 10:30:29 +00:00
|
|
|
static const float THICKNESS_BAR_WIDTH;
|
|
|
|
static const float THICKNESS_RESET_BUTTON_HEIGHT;
|
|
|
|
|
2019-01-21 09:06:51 +00:00
|
|
|
bool m_use_legacy_opengl;
|
|
|
|
bool m_enabled;
|
|
|
|
Shader m_shader;
|
|
|
|
unsigned int m_z_texture_id;
|
|
|
|
mutable GLTexture m_tooltip_texture;
|
|
|
|
mutable GLTexture m_reset_texture;
|
|
|
|
// Not owned by LayersEditing.
|
|
|
|
const DynamicPrintConfig *m_config;
|
|
|
|
// ModelObject for the currently selected object (Model::objects[last_object_id]).
|
|
|
|
const ModelObject *m_model_object;
|
|
|
|
// Maximum z of the currently selected object (Model::objects[last_object_id]).
|
|
|
|
float m_object_max_z;
|
|
|
|
// Owned by LayersEditing.
|
|
|
|
SlicingParameters *m_slicing_parameters;
|
|
|
|
std::vector<coordf_t> m_layer_height_profile;
|
|
|
|
bool m_layer_height_profile_modified;
|
|
|
|
|
|
|
|
class LayersTexture
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
LayersTexture() : width(0), height(0), levels(0), cells(0), valid(false) {}
|
|
|
|
|
|
|
|
// Texture data
|
|
|
|
std::vector<char> data;
|
|
|
|
// Width of the texture, top level.
|
|
|
|
size_t width;
|
|
|
|
// Height of the texture, top level.
|
|
|
|
size_t height;
|
|
|
|
// For how many levels of detail is the data allocated?
|
|
|
|
size_t levels;
|
|
|
|
// Number of texture cells allocated for the height texture.
|
|
|
|
size_t cells;
|
|
|
|
// Does it need to be refreshed?
|
|
|
|
bool valid;
|
|
|
|
};
|
|
|
|
LayersTexture m_layers_texture;
|
2018-05-18 12:08:59 +00:00
|
|
|
|
|
|
|
public:
|
2018-06-01 13:54:41 +00:00
|
|
|
EState state;
|
|
|
|
float band_width;
|
|
|
|
float strength;
|
|
|
|
int last_object_id;
|
|
|
|
float last_z;
|
2019-01-21 09:06:51 +00:00
|
|
|
LayerHeightEditActionType last_action;
|
2018-06-01 13:54:41 +00:00
|
|
|
|
2018-05-18 12:08:59 +00:00
|
|
|
LayersEditing();
|
2018-05-24 11:46:17 +00:00
|
|
|
~LayersEditing();
|
2018-05-18 12:08:59 +00:00
|
|
|
|
2018-05-25 12:05:08 +00:00
|
|
|
bool init(const std::string& vertex_shader_filename, const std::string& fragment_shader_filename);
|
2019-01-22 11:14:26 +00:00
|
|
|
void set_config(const DynamicPrintConfig* config);
|
2019-01-21 09:06:51 +00:00
|
|
|
void select_object(const Model &model, int object_id);
|
2018-05-25 12:05:08 +00:00
|
|
|
|
|
|
|
bool is_allowed() const;
|
2018-05-25 14:28:24 +00:00
|
|
|
void set_use_legacy_opengl(bool use_legacy_opengl);
|
2018-05-25 12:05:08 +00:00
|
|
|
|
2018-05-18 12:08:59 +00:00
|
|
|
bool is_enabled() const;
|
2018-05-25 12:05:08 +00:00
|
|
|
void set_enabled(bool enabled);
|
|
|
|
|
2019-01-21 09:06:51 +00:00
|
|
|
void render_overlay(const GLCanvas3D& canvas) const;
|
|
|
|
void render_volumes(const GLCanvas3D& canvas, const GLVolumeCollection& volumes) const;
|
2018-05-24 11:46:17 +00:00
|
|
|
|
2019-01-21 09:06:51 +00:00
|
|
|
void adjust_layer_height_profile();
|
|
|
|
void accept_changes(GLCanvas3D& canvas);
|
2019-01-23 13:00:03 +00:00
|
|
|
void reset_layer_height_profile(GLCanvas3D& canvas);
|
2018-05-25 12:05:08 +00:00
|
|
|
|
2018-05-28 12:10:02 +00:00
|
|
|
static float get_cursor_z_relative(const GLCanvas3D& canvas);
|
2018-05-28 12:39:59 +00:00
|
|
|
static bool bar_rect_contains(const GLCanvas3D& canvas, float x, float y);
|
|
|
|
static bool reset_rect_contains(const GLCanvas3D& canvas, float x, float y);
|
2018-05-30 13:18:45 +00:00
|
|
|
static Rect get_bar_rect_screen(const GLCanvas3D& canvas);
|
|
|
|
static Rect get_reset_rect_screen(const GLCanvas3D& canvas);
|
|
|
|
static Rect get_bar_rect_viewport(const GLCanvas3D& canvas);
|
|
|
|
static Rect get_reset_rect_viewport(const GLCanvas3D& canvas);
|
2018-05-28 11:43:29 +00:00
|
|
|
|
2019-01-21 09:06:51 +00:00
|
|
|
float object_max_z() const { return m_object_max_z; }
|
|
|
|
|
2018-05-24 11:46:17 +00:00
|
|
|
private:
|
2018-05-25 12:05:08 +00:00
|
|
|
bool _is_initialized() const;
|
2019-01-22 11:14:26 +00:00
|
|
|
void generate_layer_height_texture();
|
2018-05-24 11:46:17 +00:00
|
|
|
void _render_tooltip_texture(const GLCanvas3D& canvas, const Rect& bar_rect, const Rect& reset_rect) const;
|
2018-06-13 07:12:16 +00:00
|
|
|
void _render_reset_texture(const Rect& reset_rect) const;
|
2019-01-21 09:06:51 +00:00
|
|
|
void _render_active_object_annotations(const GLCanvas3D& canvas, const Rect& bar_rect) const;
|
|
|
|
void _render_profile(const Rect& bar_rect) const;
|
2019-01-21 16:02:16 +00:00
|
|
|
void update_slicing_parameters();
|
2019-01-24 10:30:29 +00:00
|
|
|
|
|
|
|
static float thickness_bar_width(const GLCanvas3D &canvas);
|
|
|
|
static float reset_button_height(const GLCanvas3D &canvas);
|
2018-05-18 12:08:59 +00:00
|
|
|
};
|
|
|
|
|
2018-06-01 13:54:41 +00:00
|
|
|
struct Mouse
|
2018-05-23 11:56:54 +00:00
|
|
|
{
|
2018-06-01 13:54:41 +00:00
|
|
|
struct Drag
|
|
|
|
{
|
|
|
|
static const Point Invalid_2D_Point;
|
2018-08-21 15:43:05 +00:00
|
|
|
static const Vec3d Invalid_3D_Point;
|
2019-01-14 08:29:17 +00:00
|
|
|
static const int MoveThresholdPx;
|
2018-05-23 11:56:54 +00:00
|
|
|
|
2018-06-01 13:54:41 +00:00
|
|
|
Point start_position_2D;
|
2018-08-21 15:43:05 +00:00
|
|
|
Vec3d start_position_3D;
|
2018-06-21 06:37:04 +00:00
|
|
|
int move_volume_idx;
|
2019-01-14 08:29:17 +00:00
|
|
|
bool move_requires_threshold;
|
|
|
|
Point move_start_threshold_position_2D;
|
2018-05-23 11:56:54 +00:00
|
|
|
|
2018-06-01 13:54:41 +00:00
|
|
|
public:
|
|
|
|
Drag();
|
|
|
|
};
|
2018-05-23 11:56:54 +00:00
|
|
|
|
2018-06-01 13:54:41 +00:00
|
|
|
bool dragging;
|
2018-08-21 19:05:24 +00:00
|
|
|
Vec2d position;
|
2018-11-15 10:38:40 +00:00
|
|
|
Vec3d scene_position;
|
2018-06-01 13:54:41 +00:00
|
|
|
Drag drag;
|
2019-04-26 12:07:46 +00:00
|
|
|
bool ignore_left_up;
|
2018-05-31 11:51:50 +00:00
|
|
|
|
2018-06-01 13:54:41 +00:00
|
|
|
Mouse();
|
2018-05-31 11:51:50 +00:00
|
|
|
|
2019-01-14 08:29:17 +00:00
|
|
|
void set_start_position_2D_as_invalid() { drag.start_position_2D = Drag::Invalid_2D_Point; }
|
|
|
|
void set_start_position_3D_as_invalid() { drag.start_position_3D = Drag::Invalid_3D_Point; }
|
|
|
|
void set_move_start_threshold_position_2D_as_invalid() { drag.move_start_threshold_position_2D = Drag::Invalid_2D_Point; }
|
|
|
|
|
|
|
|
bool is_start_position_2D_defined() const { return (drag.start_position_2D != Drag::Invalid_2D_Point); }
|
|
|
|
bool is_start_position_3D_defined() const { return (drag.start_position_3D != Drag::Invalid_3D_Point); }
|
|
|
|
bool is_move_start_threshold_position_2D_defined() const { return (drag.move_start_threshold_position_2D != Drag::Invalid_2D_Point); }
|
|
|
|
bool is_move_threshold_met(const Point& mouse_pos) const {
|
|
|
|
return (std::abs(mouse_pos(0) - drag.move_start_threshold_position_2D(0)) > Drag::MoveThresholdPx)
|
|
|
|
|| (std::abs(mouse_pos(1) - drag.move_start_threshold_position_2D(1)) > Drag::MoveThresholdPx);
|
|
|
|
}
|
2018-05-31 11:51:50 +00:00
|
|
|
};
|
|
|
|
|
2018-11-29 10:11:39 +00:00
|
|
|
struct SlaCap
|
|
|
|
{
|
2018-12-10 11:59:49 +00:00
|
|
|
struct Triangles
|
|
|
|
{
|
|
|
|
Pointf3s object;
|
2019-01-24 18:08:58 +00:00
|
|
|
Pointf3s supports;
|
2018-12-10 11:59:49 +00:00
|
|
|
};
|
|
|
|
typedef std::map<unsigned int, Triangles> ObjectIdToTrianglesMap;
|
2018-11-29 10:11:39 +00:00
|
|
|
double z;
|
2018-12-10 11:59:49 +00:00
|
|
|
ObjectIdToTrianglesMap triangles;
|
2018-11-29 10:11:39 +00:00
|
|
|
|
|
|
|
SlaCap() { reset(); }
|
|
|
|
void reset() { z = DBL_MAX; triangles.clear(); }
|
|
|
|
bool matches(double z) const { return this->z == z; }
|
|
|
|
};
|
|
|
|
|
2018-07-19 11:18:19 +00:00
|
|
|
class WarningTexture : public GUI::GLTexture
|
|
|
|
{
|
2019-02-20 11:09:45 +00:00
|
|
|
public:
|
|
|
|
WarningTexture();
|
|
|
|
|
|
|
|
enum Warning {
|
|
|
|
ObjectOutside,
|
|
|
|
ToolpathOutside,
|
2019-05-07 10:29:48 +00:00
|
|
|
SlaSupportsOutside,
|
2019-03-01 10:00:34 +00:00
|
|
|
SomethingNotShown,
|
|
|
|
ObjectClashed
|
2019-02-20 11:09:45 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
// Sets a warning of the given type to be active/inactive. If several warnings are active simultaneously,
|
|
|
|
// only the last one is shown (decided by the order in the enum above).
|
|
|
|
void activate(WarningTexture::Warning warning, bool state, const GLCanvas3D& canvas);
|
|
|
|
void render(const GLCanvas3D& canvas) const;
|
|
|
|
|
2019-04-16 10:11:48 +00:00
|
|
|
// function used to get an information for rescaling of the warning
|
2019-04-26 11:07:31 +00:00
|
|
|
void msw_rescale(const GLCanvas3D& canvas);
|
2019-04-16 10:11:48 +00:00
|
|
|
|
2019-02-20 11:09:45 +00:00
|
|
|
private:
|
2018-07-19 11:18:19 +00:00
|
|
|
static const unsigned char Background_Color[3];
|
|
|
|
static const unsigned char Opacity;
|
|
|
|
|
2018-07-31 12:20:16 +00:00
|
|
|
int m_original_width;
|
|
|
|
int m_original_height;
|
|
|
|
|
2019-04-16 10:11:48 +00:00
|
|
|
// information for rescaling of the warning legend
|
|
|
|
std::string m_msg_text = "";
|
|
|
|
bool m_is_colored_red{false};
|
|
|
|
|
2019-02-20 11:09:45 +00:00
|
|
|
// Information about which warnings are currently active.
|
|
|
|
std::vector<Warning> m_warnings;
|
2018-07-31 12:20:16 +00:00
|
|
|
|
2019-02-20 11:09:45 +00:00
|
|
|
// Generates the texture with given text.
|
2019-05-28 10:53:16 +00:00
|
|
|
bool generate(const std::string& msg, const GLCanvas3D& canvas, bool compress, bool red_colored = false);
|
2018-07-19 11:18:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class LegendTexture : public GUI::GLTexture
|
|
|
|
{
|
|
|
|
static const int Px_Title_Offset = 5;
|
|
|
|
static const int Px_Text_Offset = 5;
|
|
|
|
static const int Px_Square = 20;
|
|
|
|
static const int Px_Square_Contour = 1;
|
|
|
|
static const int Px_Border = Px_Square / 2;
|
|
|
|
static const unsigned char Squares_Border_Color[3];
|
2018-12-13 10:13:58 +00:00
|
|
|
static const unsigned char Default_Background_Color[3];
|
|
|
|
static const unsigned char Error_Background_Color[3];
|
2018-07-19 11:18:19 +00:00
|
|
|
static const unsigned char Opacity;
|
|
|
|
|
2018-07-31 12:32:59 +00:00
|
|
|
int m_original_width;
|
|
|
|
int m_original_height;
|
|
|
|
|
2018-07-19 11:18:19 +00:00
|
|
|
public:
|
2018-07-31 12:32:59 +00:00
|
|
|
LegendTexture();
|
2019-01-29 14:11:29 +00:00
|
|
|
void fill_color_print_legend_values(const GCodePreviewData& preview_data, const GLCanvas3D& canvas,
|
|
|
|
std::vector<std::pair<double, double>>& cp_legend_values);
|
2018-07-31 12:32:59 +00:00
|
|
|
|
2019-05-28 10:53:16 +00:00
|
|
|
bool generate(const GCodePreviewData& preview_data, const std::vector<float>& tool_colors, const GLCanvas3D& canvas, bool compress);
|
2018-07-31 12:32:59 +00:00
|
|
|
|
|
|
|
void render(const GLCanvas3D& canvas) const;
|
2018-07-19 11:18:19 +00:00
|
|
|
};
|
|
|
|
|
2019-04-25 09:10:01 +00:00
|
|
|
#if ENABLE_RENDER_STATISTICS
|
|
|
|
struct RenderStats
|
|
|
|
{
|
|
|
|
long long last_frame;
|
|
|
|
|
|
|
|
RenderStats() : last_frame(0) {}
|
|
|
|
};
|
|
|
|
#endif // ENABLE_RENDER_STATISTICS
|
|
|
|
|
2019-04-24 13:43:52 +00:00
|
|
|
public:
|
|
|
|
enum ECursorType : unsigned char
|
|
|
|
{
|
|
|
|
Standard,
|
|
|
|
Cross
|
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
2018-05-09 08:47:04 +00:00
|
|
|
wxGLCanvas* m_canvas;
|
|
|
|
wxGLContext* m_context;
|
2019-01-24 10:30:29 +00:00
|
|
|
#if ENABLE_RETINA_GL
|
|
|
|
std::unique_ptr<RetinaHelper> m_retina_helper;
|
|
|
|
#endif
|
2018-11-27 15:55:54 +00:00
|
|
|
bool m_in_render;
|
2018-07-19 11:18:19 +00:00
|
|
|
LegendTexture m_legend_texture;
|
|
|
|
WarningTexture m_warning_texture;
|
2018-10-25 07:35:08 +00:00
|
|
|
wxTimer m_timer;
|
2019-03-07 10:49:00 +00:00
|
|
|
Bed3D& m_bed;
|
|
|
|
Camera& m_camera;
|
|
|
|
GLToolbar& m_view_toolbar;
|
2018-05-18 12:08:59 +00:00
|
|
|
LayersEditing m_layers_editing;
|
2018-05-23 07:57:44 +00:00
|
|
|
Shader m_shader;
|
2018-05-23 11:56:54 +00:00
|
|
|
Mouse m_mouse;
|
2019-03-20 12:51:25 +00:00
|
|
|
mutable GLGizmosManager m_gizmos;
|
2018-07-23 11:49:48 +00:00
|
|
|
mutable GLToolbar m_toolbar;
|
2018-11-27 13:50:57 +00:00
|
|
|
ClippingPlane m_clipping_planes[2];
|
2019-03-25 11:01:02 +00:00
|
|
|
mutable ClippingPlane m_camera_clipping_plane;
|
2018-11-27 13:50:57 +00:00
|
|
|
bool m_use_clipping_planes;
|
2018-11-29 10:11:39 +00:00
|
|
|
mutable SlaCap m_sla_caps[2];
|
2018-12-18 09:40:53 +00:00
|
|
|
std::string m_sidebar_field;
|
2019-06-05 08:07:59 +00:00
|
|
|
bool m_keep_dirty;
|
2018-05-14 12:14:19 +00:00
|
|
|
|
2018-06-11 13:13:13 +00:00
|
|
|
mutable GLVolumeCollection m_volumes;
|
2018-10-08 12:02:12 +00:00
|
|
|
Selection m_selection;
|
2019-01-21 09:06:51 +00:00
|
|
|
const DynamicPrintConfig* m_config;
|
2018-06-07 09:18:28 +00:00
|
|
|
Model* m_model;
|
2018-11-22 14:29:59 +00:00
|
|
|
BackgroundSlicingProcess *m_process;
|
2018-05-09 08:47:04 +00:00
|
|
|
|
2018-11-16 17:28:50 +00:00
|
|
|
// Screen is only refreshed from the OnIdle handler if it is dirty.
|
2018-05-09 08:47:04 +00:00
|
|
|
bool m_dirty;
|
2018-06-05 10:24:26 +00:00
|
|
|
bool m_initialized;
|
2018-06-04 10:26:39 +00:00
|
|
|
bool m_use_VBOs;
|
2018-05-14 12:14:19 +00:00
|
|
|
bool m_apply_zoom_to_volumes_filter;
|
2019-04-24 13:07:28 +00:00
|
|
|
mutable std::vector<int> m_hover_volume_idxs;
|
2018-05-21 12:40:09 +00:00
|
|
|
bool m_warning_texture_enabled;
|
2018-05-21 12:57:43 +00:00
|
|
|
bool m_legend_texture_enabled;
|
2018-05-22 07:02:42 +00:00
|
|
|
bool m_picking_enabled;
|
2018-05-31 11:51:50 +00:00
|
|
|
bool m_moving_enabled;
|
2018-07-27 07:38:39 +00:00
|
|
|
bool m_dynamic_background_enabled;
|
2018-05-23 13:35:11 +00:00
|
|
|
bool m_multisample_allowed;
|
2018-10-08 12:02:12 +00:00
|
|
|
bool m_regenerate_volumes;
|
2018-11-26 09:41:16 +00:00
|
|
|
bool m_moving;
|
2019-02-21 17:31:01 +00:00
|
|
|
bool m_tab_down;
|
2019-04-24 13:43:52 +00:00
|
|
|
ECursorType m_cursor_type;
|
2019-04-25 07:10:03 +00:00
|
|
|
GLSelectionRectangle m_rectangle_selection;
|
2019-03-24 12:35:09 +00:00
|
|
|
|
|
|
|
// Following variable is obsolete and it should be safe to remove it.
|
|
|
|
// I just don't want to do it now before a release (Lukas Matena 24.3.2019)
|
2019-02-01 15:12:00 +00:00
|
|
|
bool m_render_sla_auxiliaries;
|
2018-05-09 08:47:04 +00:00
|
|
|
|
2018-06-06 08:16:58 +00:00
|
|
|
std::string m_color_by;
|
|
|
|
|
2018-06-08 07:40:00 +00:00
|
|
|
bool m_reload_delayed;
|
|
|
|
|
2018-06-05 08:56:55 +00:00
|
|
|
GCodePreviewVolumeIndex m_gcode_preview_volume_index;
|
|
|
|
|
2019-04-25 09:10:01 +00:00
|
|
|
#if ENABLE_RENDER_STATISTICS
|
|
|
|
RenderStats m_render_stats;
|
|
|
|
#endif // ENABLE_RENDER_STATISTICS
|
|
|
|
|
2018-05-09 08:47:04 +00:00
|
|
|
public:
|
2019-03-07 10:49:00 +00:00
|
|
|
GLCanvas3D(wxGLCanvas* canvas, Bed3D& bed, Camera& camera, GLToolbar& view_toolbar);
|
2018-05-15 07:50:01 +00:00
|
|
|
~GLCanvas3D();
|
2018-05-09 08:47:04 +00:00
|
|
|
|
2018-10-04 08:41:11 +00:00
|
|
|
void set_context(wxGLContext* context) { m_context = context; }
|
|
|
|
|
|
|
|
wxGLCanvas* get_wxglcanvas() { return m_canvas; }
|
2019-02-04 20:41:10 +00:00
|
|
|
const wxGLCanvas* get_wxglcanvas() const { return m_canvas; }
|
2018-09-17 10:15:11 +00:00
|
|
|
|
2018-05-25 12:05:08 +00:00
|
|
|
bool init(bool useVBOs, bool use_legacy_opengl);
|
2018-11-26 09:49:25 +00:00
|
|
|
void post_event(wxEvent &&event);
|
2018-05-23 07:57:44 +00:00
|
|
|
|
2018-06-22 14:06:37 +00:00
|
|
|
void set_as_dirty();
|
2018-05-14 12:14:19 +00:00
|
|
|
|
2018-06-11 11:48:02 +00:00
|
|
|
unsigned int get_volumes_count() const;
|
2018-05-18 12:08:59 +00:00
|
|
|
void reset_volumes();
|
2018-12-04 12:55:25 +00:00
|
|
|
int check_volumes_outside_state() const;
|
2018-06-08 07:40:00 +00:00
|
|
|
|
2019-03-24 12:35:09 +00:00
|
|
|
void toggle_sla_auxiliaries_visibility(bool visible, const ModelObject* mo = nullptr, int instance_idx = -1);
|
2019-02-06 14:16:25 +00:00
|
|
|
void toggle_model_objects_visibility(bool visible, const ModelObject* mo = nullptr, int instance_idx = -1);
|
2019-02-01 15:12:00 +00:00
|
|
|
|
2019-01-21 09:06:51 +00:00
|
|
|
void set_config(const DynamicPrintConfig* config);
|
2018-11-22 14:29:59 +00:00
|
|
|
void set_process(BackgroundSlicingProcess* process);
|
2018-06-07 09:18:28 +00:00
|
|
|
void set_model(Model* model);
|
2018-05-23 09:14:49 +00:00
|
|
|
|
2018-10-08 12:02:12 +00:00
|
|
|
const Selection& get_selection() const { return m_selection; }
|
2018-10-10 14:22:20 +00:00
|
|
|
Selection& get_selection() { return m_selection; }
|
2018-10-08 12:02:12 +00:00
|
|
|
|
2019-02-19 14:15:27 +00:00
|
|
|
void bed_shape_changed();
|
2018-05-15 09:07:32 +00:00
|
|
|
|
2018-11-27 13:50:57 +00:00
|
|
|
void set_clipping_plane(unsigned int id, const ClippingPlane& plane)
|
|
|
|
{
|
|
|
|
if (id < 2)
|
2018-11-29 10:11:39 +00:00
|
|
|
{
|
2018-11-27 13:50:57 +00:00
|
|
|
m_clipping_planes[id] = plane;
|
2018-11-29 10:11:39 +00:00
|
|
|
m_sla_caps[id].reset();
|
|
|
|
}
|
2018-11-27 13:50:57 +00:00
|
|
|
}
|
2019-04-02 11:47:49 +00:00
|
|
|
void reset_clipping_planes_cache() { m_sla_caps[0].triangles.clear(); m_sla_caps[1].triangles.clear(); }
|
2018-11-27 13:50:57 +00:00
|
|
|
void set_use_clipping_planes(bool use) { m_use_clipping_planes = use; }
|
|
|
|
|
2018-06-06 10:36:52 +00:00
|
|
|
void set_color_by(const std::string& value);
|
2018-09-06 14:10:31 +00:00
|
|
|
|
2019-04-01 08:00:10 +00:00
|
|
|
const Camera& get_camera() const { return m_camera; }
|
2018-05-09 08:47:04 +00:00
|
|
|
|
2018-05-14 12:14:19 +00:00
|
|
|
BoundingBoxf3 volumes_bounding_box() const;
|
2018-12-07 15:23:04 +00:00
|
|
|
BoundingBoxf3 scene_bounding_box() const;
|
2018-05-14 12:14:19 +00:00
|
|
|
|
2018-05-18 12:08:59 +00:00
|
|
|
bool is_layers_editing_enabled() const;
|
2018-05-25 14:28:24 +00:00
|
|
|
bool is_layers_editing_allowed() const;
|
2018-05-18 12:08:59 +00:00
|
|
|
|
2018-06-08 07:40:00 +00:00
|
|
|
bool is_reload_delayed() const;
|
|
|
|
|
2018-05-25 12:05:08 +00:00
|
|
|
void enable_layers_editing(bool enable);
|
2018-05-21 12:57:43 +00:00
|
|
|
void enable_legend_texture(bool enable);
|
2018-05-22 07:02:42 +00:00
|
|
|
void enable_picking(bool enable);
|
2018-05-31 11:51:50 +00:00
|
|
|
void enable_moving(bool enable);
|
2018-06-13 07:12:16 +00:00
|
|
|
void enable_gizmos(bool enable);
|
2019-03-28 07:44:46 +00:00
|
|
|
void enable_selection(bool enable);
|
2018-07-23 11:49:48 +00:00
|
|
|
void enable_toolbar(bool enable);
|
2018-07-27 07:38:39 +00:00
|
|
|
void enable_dynamic_background(bool enable);
|
2018-05-23 13:35:11 +00:00
|
|
|
void allow_multisample(bool allow);
|
2018-05-21 12:40:09 +00:00
|
|
|
|
2018-05-15 08:32:38 +00:00
|
|
|
void zoom_to_bed();
|
|
|
|
void zoom_to_volumes();
|
2018-10-26 07:50:28 +00:00
|
|
|
void zoom_to_selection();
|
2018-05-15 09:30:11 +00:00
|
|
|
void select_view(const std::string& direction);
|
2018-05-15 08:32:38 +00:00
|
|
|
|
2018-05-29 13:07:06 +00:00
|
|
|
void update_volumes_colors_by_extruder();
|
2018-11-01 14:08:39 +00:00
|
|
|
|
2018-11-26 09:41:16 +00:00
|
|
|
bool is_dragging() const { return m_gizmos.is_dragging() || m_moving; }
|
2018-05-29 13:07:06 +00:00
|
|
|
|
2018-06-04 10:26:39 +00:00
|
|
|
void render();
|
2018-05-15 13:38:25 +00:00
|
|
|
|
2018-11-21 14:28:35 +00:00
|
|
|
void select_all();
|
2019-05-14 09:57:39 +00:00
|
|
|
void deselect_all();
|
2018-11-14 07:53:56 +00:00
|
|
|
void delete_selected();
|
2018-11-21 11:27:20 +00:00
|
|
|
void ensure_on_bed(unsigned int object_idx);
|
2018-11-14 07:53:56 +00:00
|
|
|
|
2018-06-04 13:42:34 +00:00
|
|
|
std::vector<double> get_current_print_zs(bool active_only) const;
|
|
|
|
void set_toolpaths_range(double low, double high);
|
|
|
|
|
2018-06-06 08:16:58 +00:00
|
|
|
std::vector<int> load_object(const ModelObject& model_object, int obj_idx, std::vector<int> instance_idxs);
|
2018-06-07 07:22:19 +00:00
|
|
|
std::vector<int> load_object(const Model& model, int obj_idx);
|
2018-06-06 08:16:58 +00:00
|
|
|
|
2018-10-18 13:50:51 +00:00
|
|
|
void mirror_selection(Axis axis);
|
|
|
|
|
2018-11-23 11:47:32 +00:00
|
|
|
void reload_scene(bool refresh_immediately, bool force_full_scene_refresh = false);
|
2018-06-08 07:40:00 +00:00
|
|
|
|
2018-06-05 08:56:55 +00:00
|
|
|
void load_gcode_preview(const GCodePreviewData& preview_data, const std::vector<std::string>& str_tool_colors);
|
2018-11-26 14:16:35 +00:00
|
|
|
void load_sla_preview();
|
2019-01-29 14:11:29 +00:00
|
|
|
void load_preview(const std::vector<std::string>& str_tool_colors, const std::vector<double>& color_print_values);
|
2018-06-06 12:19:28 +00:00
|
|
|
void bind_event_handlers();
|
|
|
|
void unbind_event_handlers();
|
|
|
|
|
2018-05-14 12:47:13 +00:00
|
|
|
void on_size(wxSizeEvent& evt);
|
|
|
|
void on_idle(wxIdleEvent& evt);
|
2018-05-15 14:09:04 +00:00
|
|
|
void on_char(wxKeyEvent& evt);
|
2019-02-15 14:35:32 +00:00
|
|
|
void on_key(wxKeyEvent& evt);
|
2018-05-28 13:23:01 +00:00
|
|
|
void on_mouse_wheel(wxMouseEvent& evt);
|
2018-05-30 13:18:45 +00:00
|
|
|
void on_timer(wxTimerEvent& evt);
|
2018-05-31 11:51:50 +00:00
|
|
|
void on_mouse(wxMouseEvent& evt);
|
2018-06-04 10:26:39 +00:00
|
|
|
void on_paint(wxPaintEvent& evt);
|
2018-05-14 12:47:13 +00:00
|
|
|
|
2018-05-24 11:46:17 +00:00
|
|
|
Size get_canvas_size() const;
|
2019-04-01 09:08:26 +00:00
|
|
|
Vec2d get_local_mouse_position() const;
|
2018-05-24 11:46:17 +00:00
|
|
|
|
2018-07-19 11:18:19 +00:00
|
|
|
void reset_legend_texture();
|
|
|
|
|
2018-10-25 07:35:08 +00:00
|
|
|
void set_tooltip(const std::string& tooltip) const;
|
2018-07-25 08:01:17 +00:00
|
|
|
|
2018-11-21 09:36:09 +00:00
|
|
|
void do_move();
|
|
|
|
void do_rotate();
|
|
|
|
void do_scale();
|
|
|
|
void do_flatten();
|
|
|
|
void do_mirror();
|
|
|
|
|
2019-06-19 12:18:51 +00:00
|
|
|
void set_camera_zoom(double zoom);
|
2018-11-29 08:03:38 +00:00
|
|
|
|
2018-12-03 12:29:07 +00:00
|
|
|
void update_gizmos_on_off_state();
|
2019-03-27 13:16:38 +00:00
|
|
|
void reset_all_gizmos() { m_gizmos.reset_all_states(); }
|
2018-12-03 12:29:07 +00:00
|
|
|
|
2018-12-18 09:40:53 +00:00
|
|
|
void handle_sidebar_focus_event(const std::string& opt_key, bool focus_on);
|
2018-12-11 12:57:50 +00:00
|
|
|
|
2019-01-24 12:16:46 +00:00
|
|
|
void update_ui_from_settings();
|
|
|
|
|
2019-03-20 12:51:25 +00:00
|
|
|
float get_view_toolbar_height() const { return m_view_toolbar.get_height(); }
|
|
|
|
|
2019-03-26 11:30:17 +00:00
|
|
|
int get_move_volume_id() const { return m_mouse.drag.move_volume_idx; }
|
2019-04-24 13:07:28 +00:00
|
|
|
int get_first_hover_volume_idx() const { return m_hover_volume_idxs.empty() ? -1 : m_hover_volume_idxs.front(); }
|
2019-03-26 11:30:17 +00:00
|
|
|
|
2019-04-29 12:32:02 +00:00
|
|
|
arr::WipeTowerInfo get_wipe_tower_info() const;
|
|
|
|
void arrange_wipe_tower(const arr::WipeTowerInfo& wti) const;
|
|
|
|
|
2019-03-26 11:30:17 +00:00
|
|
|
// Returns the view ray line, in world coordinate, at the given mouse position.
|
|
|
|
Linef3 mouse_ray(const Point& mouse_pos);
|
|
|
|
|
|
|
|
void set_mouse_as_dragging() { m_mouse.dragging = true; }
|
|
|
|
void disable_regenerate_volumes() { m_regenerate_volumes = false; }
|
|
|
|
void refresh_camera_scene_box() { m_camera.set_scene_box(scene_bounding_box()); }
|
|
|
|
bool is_mouse_dragging() const { return m_mouse.dragging; }
|
|
|
|
|
2019-04-12 13:31:33 +00:00
|
|
|
double get_size_proportional_to_max_bed_size(double factor) const;
|
|
|
|
|
2019-04-24 13:43:52 +00:00
|
|
|
void set_cursor(ECursorType type);
|
2019-04-24 23:45:00 +00:00
|
|
|
void msw_rescale();
|
2019-04-24 13:43:52 +00:00
|
|
|
|
2019-06-05 08:07:59 +00:00
|
|
|
void start_keeping_dirty() { m_keep_dirty = true; }
|
|
|
|
void stop_keeping_dirty() { m_keep_dirty = false; }
|
|
|
|
|
2018-05-14 12:14:19 +00:00
|
|
|
private:
|
2018-06-12 07:18:25 +00:00
|
|
|
bool _is_shown_on_screen() const;
|
2018-06-04 10:26:39 +00:00
|
|
|
|
2018-07-23 11:49:48 +00:00
|
|
|
bool _init_toolbar();
|
|
|
|
|
2018-10-04 08:41:11 +00:00
|
|
|
bool _set_current();
|
2018-06-01 13:54:41 +00:00
|
|
|
void _resize(unsigned int w, unsigned int h);
|
|
|
|
|
2019-06-14 08:38:09 +00:00
|
|
|
BoundingBoxf3 _max_bounding_box(bool include_bed_model) const;
|
2018-06-01 13:54:41 +00:00
|
|
|
|
2019-06-19 12:18:51 +00:00
|
|
|
void _zoom_to_box(const BoundingBoxf3& box);
|
2018-05-15 07:50:01 +00:00
|
|
|
|
2018-05-28 13:23:01 +00:00
|
|
|
void _refresh_if_shown_on_screen();
|
2018-05-29 11:54:34 +00:00
|
|
|
|
|
|
|
void _picking_pass() const;
|
2019-04-25 07:46:26 +00:00
|
|
|
void _rectangular_selection_picking_pass() const;
|
2018-05-29 11:54:34 +00:00
|
|
|
void _render_background() const;
|
2018-06-11 08:46:32 +00:00
|
|
|
void _render_bed(float theta) const;
|
2018-12-17 13:09:35 +00:00
|
|
|
void _render_axes() const;
|
2018-06-04 10:26:39 +00:00
|
|
|
void _render_objects() const;
|
2018-10-08 12:02:12 +00:00
|
|
|
void _render_selection() const;
|
2018-12-18 11:35:49 +00:00
|
|
|
#if ENABLE_RENDER_SELECTION_CENTER
|
|
|
|
void _render_selection_center() const;
|
|
|
|
#endif // ENABLE_RENDER_SELECTION_CENTER
|
2019-06-14 08:38:09 +00:00
|
|
|
void _render_overlays() const;
|
2018-05-29 11:54:34 +00:00
|
|
|
void _render_warning_texture() const;
|
|
|
|
void _render_legend_texture() const;
|
2019-04-10 09:20:09 +00:00
|
|
|
void _render_volumes_for_picking() const;
|
2018-08-21 12:27:36 +00:00
|
|
|
void _render_current_gizmo() const;
|
|
|
|
void _render_gizmos_overlay() const;
|
2018-07-23 11:49:48 +00:00
|
|
|
void _render_toolbar() const;
|
2018-12-06 09:38:19 +00:00
|
|
|
void _render_view_toolbar() const;
|
2018-10-26 07:50:28 +00:00
|
|
|
#if ENABLE_SHOW_CAMERA_TARGET
|
|
|
|
void _render_camera_target() const;
|
|
|
|
#endif // ENABLE_SHOW_CAMERA_TARGET
|
2018-11-28 14:13:25 +00:00
|
|
|
void _render_sla_slices() const;
|
2018-12-19 13:44:37 +00:00
|
|
|
void _render_selection_sidebar_hints() const;
|
2018-05-30 13:18:45 +00:00
|
|
|
|
2018-10-08 12:02:12 +00:00
|
|
|
void _update_volumes_hover_state() const;
|
2018-05-30 13:18:45 +00:00
|
|
|
|
|
|
|
void _perform_layer_editing_action(wxMouseEvent* evt = nullptr);
|
2018-05-31 11:51:50 +00:00
|
|
|
|
|
|
|
// Convert the screen space coordinate to an object space coordinate.
|
|
|
|
// If the Z screen space coordinate is not provided, a depth buffer value is substituted.
|
2018-08-21 15:43:05 +00:00
|
|
|
Vec3d _mouse_to_3d(const Point& mouse_pos, float* z = nullptr);
|
2018-06-01 13:54:41 +00:00
|
|
|
|
2018-06-15 12:10:28 +00:00
|
|
|
// Convert the screen space coordinate to world coordinate on the bed.
|
2018-08-21 15:43:05 +00:00
|
|
|
Vec3d _mouse_to_bed_3d(const Point& mouse_pos);
|
2018-06-15 12:10:28 +00:00
|
|
|
|
2018-06-01 13:54:41 +00:00
|
|
|
void _start_timer();
|
|
|
|
void _stop_timer();
|
2018-06-05 08:56:55 +00:00
|
|
|
|
2018-07-24 11:39:17 +00:00
|
|
|
// Create 3D thick extrusion lines for a skirt and brim.
|
|
|
|
// Adds a new Slic3r::GUI::3DScene::Volume to volumes.
|
|
|
|
void _load_print_toolpaths();
|
|
|
|
// Create 3D thick extrusion lines for object forming extrusions.
|
|
|
|
// Adds a new Slic3r::GUI::3DScene::Volume to $self->volumes,
|
|
|
|
// one for perimeters, one for infill and one for supports.
|
2019-01-29 14:11:29 +00:00
|
|
|
void _load_print_object_toolpaths(const PrintObject& print_object, const std::vector<std::string>& str_tool_colors,
|
|
|
|
const std::vector<double>& color_print_values);
|
2018-07-24 11:39:17 +00:00
|
|
|
// Create 3D thick extrusion lines for wipe tower extrusions
|
|
|
|
void _load_wipe_tower_toolpaths(const std::vector<std::string>& str_tool_colors);
|
2018-06-13 11:14:17 +00:00
|
|
|
|
2018-06-05 08:56:55 +00:00
|
|
|
// generates gcode extrusion paths geometry
|
|
|
|
void _load_gcode_extrusion_paths(const GCodePreviewData& preview_data, const std::vector<float>& tool_colors);
|
|
|
|
// generates gcode travel paths geometry
|
|
|
|
void _load_gcode_travel_paths(const GCodePreviewData& preview_data, const std::vector<float>& tool_colors);
|
|
|
|
bool _travel_paths_by_type(const GCodePreviewData& preview_data);
|
|
|
|
bool _travel_paths_by_feedrate(const GCodePreviewData& preview_data);
|
|
|
|
bool _travel_paths_by_tool(const GCodePreviewData& preview_data, const std::vector<float>& tool_colors);
|
|
|
|
// generates gcode retractions geometry
|
|
|
|
void _load_gcode_retractions(const GCodePreviewData& preview_data);
|
|
|
|
// generates gcode unretractions geometry
|
|
|
|
void _load_gcode_unretractions(const GCodePreviewData& preview_data);
|
|
|
|
// generates objects and wipe tower geometry
|
2019-05-07 10:29:48 +00:00
|
|
|
void _load_fff_shells();
|
2018-11-28 14:13:25 +00:00
|
|
|
// generates objects geometry for sla
|
2019-05-07 10:29:48 +00:00
|
|
|
void _load_sla_shells();
|
2018-06-05 08:56:55 +00:00
|
|
|
// sets gcode geometry visibility according to user selection
|
|
|
|
void _update_gcode_volumes_visibility(const GCodePreviewData& preview_data);
|
2018-07-24 11:39:17 +00:00
|
|
|
void _update_toolpath_volumes_outside_state();
|
2019-05-07 10:29:48 +00:00
|
|
|
void _update_sla_shells_outside_state();
|
|
|
|
void _show_warning_texture_if_needed(WarningTexture::Warning warning);
|
2018-11-21 09:36:09 +00:00
|
|
|
|
2018-07-19 11:18:19 +00:00
|
|
|
// generates the legend texture in dependence of the current shown view type
|
|
|
|
void _generate_legend_texture(const GCodePreviewData& preview_data, const std::vector<float>& tool_colors);
|
|
|
|
|
|
|
|
// generates a warning texture containing the given message
|
2019-02-20 11:09:45 +00:00
|
|
|
void _set_warning_texture(WarningTexture::Warning warning, bool state);
|
2018-07-19 11:18:19 +00:00
|
|
|
|
2018-07-27 07:38:39 +00:00
|
|
|
bool _is_any_volume_outside() const;
|
|
|
|
|
2019-02-26 08:56:23 +00:00
|
|
|
#if !ENABLE_SVG_ICONS
|
2018-12-06 09:38:19 +00:00
|
|
|
void _resize_toolbars() const;
|
2019-02-26 08:56:23 +00:00
|
|
|
#endif // !ENABLE_SVG_ICONS
|
2018-07-31 10:25:00 +00:00
|
|
|
|
2019-04-25 10:31:55 +00:00
|
|
|
// updates the selection from the content of m_hover_volume_idxs
|
|
|
|
void _update_selection_from_hover();
|
|
|
|
|
2018-06-05 12:09:36 +00:00
|
|
|
static std::vector<float> _parse_colors(const std::vector<std::string>& colors);
|
2018-11-22 14:29:59 +00:00
|
|
|
|
2018-12-21 11:35:20 +00:00
|
|
|
public:
|
2018-11-22 14:29:59 +00:00
|
|
|
const Print* fff_print() const;
|
|
|
|
const SLAPrint* sla_print() const;
|
2018-05-09 08:47:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace GUI
|
|
|
|
} // namespace Slic3r
|
|
|
|
|
|
|
|
#endif // slic3r_GLCanvas3D_hpp_
|