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>
|
2018-05-09 08:47:04 +00:00
|
|
|
|
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"
|
2018-05-09 08:47:04 +00:00
|
|
|
|
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-05-09 08:47:04 +00:00
|
|
|
|
2018-10-03 09:34:39 +00:00
|
|
|
|
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-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;
|
|
|
|
|
2018-05-15 13:38:25 +00:00
|
|
|
class GeometryBuffer
|
|
|
|
{
|
2018-06-11 08:46:32 +00:00
|
|
|
std::vector<float> m_vertices;
|
|
|
|
std::vector<float> m_tex_coords;
|
2018-05-15 13:38:25 +00:00
|
|
|
|
|
|
|
public:
|
2018-06-11 08:46:32 +00:00
|
|
|
bool set_from_triangles(const Polygons& triangles, float z, bool generate_tex_coords);
|
2018-05-15 13:38:25 +00:00
|
|
|
bool set_from_lines(const Lines& lines, float z);
|
|
|
|
|
2018-06-11 08:46:32 +00:00
|
|
|
const float* get_vertices() const;
|
|
|
|
const float* get_tex_coords() const;
|
|
|
|
|
|
|
|
unsigned int get_vertices_count() const;
|
2018-05-15 13:38:25 +00:00
|
|
|
};
|
|
|
|
|
2018-05-24 11:46:17 +00:00
|
|
|
class Size
|
|
|
|
{
|
|
|
|
int m_width;
|
|
|
|
int m_height;
|
|
|
|
|
|
|
|
public:
|
|
|
|
Size();
|
|
|
|
Size(int width, int height);
|
|
|
|
|
|
|
|
int get_width() const;
|
|
|
|
void set_width(int width);
|
|
|
|
|
|
|
|
int get_height() const;
|
|
|
|
void set_height(int height);
|
|
|
|
};
|
|
|
|
|
|
|
|
class Rect
|
|
|
|
{
|
|
|
|
float m_left;
|
|
|
|
float m_top;
|
|
|
|
float m_right;
|
|
|
|
float m_bottom;
|
|
|
|
|
|
|
|
public:
|
|
|
|
Rect();
|
|
|
|
Rect(float left, float top, float right, float bottom);
|
|
|
|
|
|
|
|
float get_left() const;
|
|
|
|
void set_left(float left);
|
|
|
|
|
|
|
|
float get_top() const;
|
|
|
|
void set_top(float top);
|
|
|
|
|
|
|
|
float get_right() const;
|
|
|
|
void set_right(float right);
|
|
|
|
|
|
|
|
float get_bottom() const;
|
|
|
|
void set_bottom(float bottom);
|
|
|
|
};
|
|
|
|
|
2018-10-16 14:04:19 +00:00
|
|
|
#if ENABLE_EXTENDED_SELECTION
|
|
|
|
wxDECLARE_EVENT(EVT_GLCANVAS_OBJECT_SELECT, SimpleEvent);
|
|
|
|
#else
|
2018-10-03 09:34:39 +00:00
|
|
|
struct ObjectSelectEvent;
|
|
|
|
wxDECLARE_EVENT(EVT_GLCANVAS_OBJECT_SELECT, ObjectSelectEvent);
|
|
|
|
struct ObjectSelectEvent : public ArrayEvent<ptrdiff_t, 2>
|
|
|
|
{
|
2018-10-03 12:07:10 +00:00
|
|
|
ObjectSelectEvent(ptrdiff_t object_id, ptrdiff_t volume_id, wxObject *origin = nullptr)
|
|
|
|
: ArrayEvent(EVT_GLCANVAS_OBJECT_SELECT, {object_id, volume_id}, origin)
|
2018-10-03 09:34:39 +00:00
|
|
|
{}
|
|
|
|
|
|
|
|
ptrdiff_t object_id() const { return data[0]; }
|
|
|
|
ptrdiff_t volume_id() const { return data[1]; }
|
|
|
|
};
|
2018-10-16 14:04:19 +00:00
|
|
|
#endif // ENABLE_EXTENDED_SELECTION
|
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-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_VIEWPORT_CHANGED, SimpleEvent);
|
2018-10-17 10:17:25 +00:00
|
|
|
#if !ENABLE_EXTENDED_SELECTION
|
2018-10-03 09:34:39 +00:00
|
|
|
wxDECLARE_EVENT(EVT_GLCANVAS_DOUBLE_CLICK, SimpleEvent);
|
2018-10-17 10:17:25 +00:00
|
|
|
#endif // !ENABLE_EXTENDED_SELECTION
|
2018-10-03 09:34:39 +00:00
|
|
|
wxDECLARE_EVENT(EVT_GLCANVAS_RIGHT_CLICK, Vec2dEvent);
|
|
|
|
wxDECLARE_EVENT(EVT_GLCANVAS_MODEL_UPDATE, SimpleEvent);
|
|
|
|
wxDECLARE_EVENT(EVT_GLCANVAS_REMOVE_OBJECT, SimpleEvent);
|
|
|
|
wxDECLARE_EVENT(EVT_GLCANVAS_ARRANGE, SimpleEvent);
|
2018-10-18 13:09:41 +00:00
|
|
|
#if !ENABLE_EXTENDED_SELECTION
|
2018-10-03 09:34:39 +00:00
|
|
|
wxDECLARE_EVENT(EVT_GLCANVAS_ROTATE_OBJECT, Event<int>); // data: -1 => rotate left, +1 => rotate right
|
|
|
|
wxDECLARE_EVENT(EVT_GLCANVAS_SCALE_UNIFORMLY, SimpleEvent);
|
2018-10-18 13:09:41 +00:00
|
|
|
#endif // !ENABLE_EXTENDED_SELECTION
|
|
|
|
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);
|
|
|
|
wxDECLARE_EVENT(EVT_GLCANVAS_ENABLE_ACTION_BUTTONS, Event<bool>);
|
|
|
|
wxDECLARE_EVENT(EVT_GLCANVAS_UPDATE_GEOMETRY, Vec3dsEvent<2>);
|
|
|
|
|
2018-10-09 13:56:34 +00:00
|
|
|
#if !ENABLE_EXTENDED_SELECTION
|
2018-10-12 13:43:29 +00:00
|
|
|
wxDECLARE_EVENT(EVT_GIZMO_SCALE, Vec3dEvent);
|
2018-10-03 09:34:39 +00:00
|
|
|
wxDECLARE_EVENT(EVT_GIZMO_ROTATE, Vec3dEvent);
|
|
|
|
wxDECLARE_EVENT(EVT_GIZMO_FLATTEN, Vec3dEvent);
|
2018-10-16 11:49:40 +00:00
|
|
|
#endif // !ENABLE_EXTENDED_SELECTION
|
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(); }
|
|
|
|
};
|
|
|
|
|
2018-06-01 13:54:41 +00:00
|
|
|
struct Camera
|
2018-05-09 08:47:04 +00:00
|
|
|
{
|
|
|
|
enum EType : unsigned char
|
|
|
|
{
|
2018-06-01 13:54:41 +00:00
|
|
|
Unknown,
|
2018-06-04 10:26:39 +00:00
|
|
|
// Perspective,
|
2018-06-01 13:54:41 +00:00
|
|
|
Ortho,
|
|
|
|
Num_types
|
2018-05-09 08:47:04 +00:00
|
|
|
};
|
|
|
|
|
2018-06-01 13:54:41 +00:00
|
|
|
EType type;
|
|
|
|
float zoom;
|
|
|
|
float phi;
|
2018-06-04 10:26:39 +00:00
|
|
|
// float distance;
|
2018-08-21 15:43:05 +00:00
|
|
|
Vec3d target;
|
2018-06-01 13:54:41 +00:00
|
|
|
|
2018-05-14 10:08:23 +00:00
|
|
|
private:
|
|
|
|
float m_theta;
|
2018-05-09 08:47:04 +00:00
|
|
|
|
2018-05-14 10:08:23 +00:00
|
|
|
public:
|
2018-05-09 08:47:04 +00:00
|
|
|
Camera();
|
2018-05-14 09:31:58 +00:00
|
|
|
|
|
|
|
std::string get_type_as_string() const;
|
2018-05-14 10:08:23 +00:00
|
|
|
|
|
|
|
float get_theta() const;
|
|
|
|
void set_theta(float theta);
|
2018-05-09 08:47:04 +00:00
|
|
|
};
|
|
|
|
|
2018-05-14 12:14:19 +00:00
|
|
|
class Bed
|
|
|
|
{
|
2018-06-11 08:46:32 +00:00
|
|
|
public:
|
|
|
|
enum EType : unsigned char
|
|
|
|
{
|
|
|
|
MK2,
|
|
|
|
MK3,
|
|
|
|
Custom,
|
|
|
|
Num_Types
|
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
|
|
|
EType m_type;
|
2018-05-14 12:14:19 +00:00
|
|
|
Pointfs m_shape;
|
|
|
|
BoundingBoxf3 m_bounding_box;
|
2018-05-15 13:38:25 +00:00
|
|
|
Polygon m_polygon;
|
|
|
|
GeometryBuffer m_triangles;
|
|
|
|
GeometryBuffer m_gridlines;
|
2018-06-13 07:12:16 +00:00
|
|
|
mutable GLTexture m_top_texture;
|
|
|
|
mutable GLTexture m_bottom_texture;
|
2018-05-14 12:14:19 +00:00
|
|
|
|
|
|
|
public:
|
2018-06-11 08:46:32 +00:00
|
|
|
Bed();
|
|
|
|
|
2018-06-11 09:40:11 +00:00
|
|
|
bool is_prusa() const;
|
|
|
|
bool is_custom() const;
|
|
|
|
|
2018-05-14 12:14:19 +00:00
|
|
|
const Pointfs& get_shape() const;
|
2018-08-05 20:52:38 +00:00
|
|
|
// Return true if the bed shape changed, so the calee will update the UI.
|
|
|
|
bool set_shape(const Pointfs& shape);
|
2018-05-14 12:14:19 +00:00
|
|
|
|
|
|
|
const BoundingBoxf3& get_bounding_box() const;
|
2018-05-31 14:04:59 +00:00
|
|
|
bool contains(const Point& point) const;
|
|
|
|
Point point_projection(const Point& point) const;
|
2018-05-14 12:14:19 +00:00
|
|
|
|
2018-06-11 08:46:32 +00:00
|
|
|
void render(float theta) const;
|
2018-05-15 13:38:25 +00:00
|
|
|
|
2018-05-14 12:14:19 +00:00
|
|
|
private:
|
|
|
|
void _calc_bounding_box();
|
2018-05-15 13:38:25 +00:00
|
|
|
void _calc_triangles(const ExPolygon& poly);
|
|
|
|
void _calc_gridlines(const ExPolygon& poly, const BoundingBox& bed_bbox);
|
2018-06-11 08:46:32 +00:00
|
|
|
EType _detect_type() const;
|
|
|
|
void _render_mk2(float theta) const;
|
|
|
|
void _render_mk3(float theta) const;
|
|
|
|
void _render_prusa(float theta) const;
|
|
|
|
void _render_custom() const;
|
|
|
|
static bool _are_equal(const Pointfs& bed_1, const Pointfs& bed_2);
|
2018-05-14 12:14:19 +00:00
|
|
|
};
|
|
|
|
|
2018-06-01 13:54:41 +00:00
|
|
|
struct Axes
|
2018-05-18 11:02:47 +00:00
|
|
|
{
|
2018-08-21 15:43:05 +00:00
|
|
|
Vec3d origin;
|
2018-06-01 13:54:41 +00:00
|
|
|
float length;
|
2018-05-18 11:02:47 +00:00
|
|
|
|
|
|
|
Axes();
|
|
|
|
|
2018-06-13 11:14:17 +00:00
|
|
|
void render(bool depth_test) const;
|
2018-05-18 11:02:47 +00:00
|
|
|
};
|
|
|
|
|
2018-05-18 09:05:48 +00:00
|
|
|
class CuttingPlane
|
|
|
|
{
|
|
|
|
float m_z;
|
|
|
|
GeometryBuffer m_lines;
|
|
|
|
|
|
|
|
public:
|
|
|
|
CuttingPlane();
|
|
|
|
|
|
|
|
bool set(float z, const ExPolygons& polygons);
|
|
|
|
|
2018-05-21 13:57:03 +00:00
|
|
|
void render(const BoundingBoxf3& bb) const;
|
2018-05-21 13:24:52 +00:00
|
|
|
|
|
|
|
private:
|
2018-05-21 13:57:03 +00:00
|
|
|
void _render_plane(const BoundingBoxf3& bb) const;
|
|
|
|
void _render_contour() const;
|
2018-05-18 09:05:48 +00:00
|
|
|
};
|
|
|
|
|
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();
|
|
|
|
};
|
|
|
|
|
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:
|
2018-05-25 14:28:24 +00:00
|
|
|
bool m_use_legacy_opengl;
|
2018-05-18 12:08:59 +00:00
|
|
|
bool m_enabled;
|
2018-05-25 12:05:08 +00:00
|
|
|
Shader m_shader;
|
|
|
|
unsigned int m_z_texture_id;
|
2018-06-13 07:12:16 +00:00
|
|
|
mutable GLTexture m_tooltip_texture;
|
|
|
|
mutable GLTexture m_reset_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;
|
|
|
|
unsigned int last_action;
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
unsigned int get_z_texture_id() const;
|
2018-05-24 11:46:17 +00:00
|
|
|
|
2018-05-25 13:56:14 +00:00
|
|
|
void render(const GLCanvas3D& canvas, const PrintObject& print_object, const GLVolume& volume) const;
|
2018-05-24 11:46:17 +00:00
|
|
|
|
2018-06-01 13:54:41 +00:00
|
|
|
int get_shader_program_id() const;
|
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
|
|
|
|
2018-05-24 11:46:17 +00:00
|
|
|
private:
|
2018-05-25 12:05:08 +00:00
|
|
|
bool _is_initialized() const;
|
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;
|
2018-05-25 13:56:14 +00:00
|
|
|
void _render_active_object_annotations(const GLCanvas3D& canvas, const GLVolume& volume, const PrintObject& print_object, const Rect& bar_rect) const;
|
2018-05-24 13:17:01 +00:00
|
|
|
void _render_profile(const PrintObject& print_object, const Rect& bar_rect) const;
|
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;
|
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-10-08 12:02:12 +00:00
|
|
|
#if !ENABLE_EXTENDED_SELECTION
|
2018-08-21 15:43:05 +00:00
|
|
|
Vec3d volume_center_offset;
|
2018-06-21 06:37:04 +00:00
|
|
|
|
2018-06-21 09:14:17 +00:00
|
|
|
bool move_with_shift;
|
2018-10-08 12:02:12 +00:00
|
|
|
#endif // !ENABLE_EXTENDED_SELECTION
|
2018-06-21 06:37:04 +00:00
|
|
|
int move_volume_idx;
|
2018-10-08 12:02:12 +00:00
|
|
|
#if !ENABLE_EXTENDED_SELECTION
|
2018-06-21 06:37:04 +00:00
|
|
|
int gizmo_volume_idx;
|
2018-10-08 12:02:12 +00:00
|
|
|
#endif // !ENABLE_EXTENDED_SELECTION
|
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-06-01 13:54:41 +00:00
|
|
|
Drag drag;
|
2018-09-20 07:50:49 +00:00
|
|
|
#if ENABLE_GIZMOS_RESET
|
|
|
|
bool ignore_up_event;
|
|
|
|
#endif // ENABLE_GIZMOS_RESET
|
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
|
|
|
|
2018-06-01 13:54:41 +00:00
|
|
|
void set_start_position_2D_as_invalid();
|
|
|
|
void set_start_position_3D_as_invalid();
|
2018-05-31 11:51:50 +00:00
|
|
|
|
2018-06-01 07:00:30 +00:00
|
|
|
bool is_start_position_2D_defined() const;
|
|
|
|
bool is_start_position_3D_defined() const;
|
2018-05-31 11:51:50 +00:00
|
|
|
};
|
|
|
|
|
2018-10-08 12:02:12 +00:00
|
|
|
#if ENABLE_EXTENDED_SELECTION
|
|
|
|
public:
|
|
|
|
class Selection
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
typedef std::set<unsigned int> IndicesList;
|
|
|
|
|
|
|
|
enum EMode : unsigned char
|
|
|
|
{
|
|
|
|
Volume,
|
|
|
|
Instance,
|
|
|
|
Object
|
|
|
|
};
|
|
|
|
|
2018-10-09 13:56:34 +00:00
|
|
|
enum EType : unsigned char
|
|
|
|
{
|
|
|
|
Invalid,
|
|
|
|
Empty,
|
|
|
|
WipeTower,
|
|
|
|
Modifier,
|
|
|
|
SingleFullObject,
|
|
|
|
SingleFullInstance,
|
|
|
|
Mixed
|
|
|
|
};
|
|
|
|
|
2018-10-08 12:02:12 +00:00
|
|
|
private:
|
|
|
|
struct VolumeCache
|
|
|
|
{
|
|
|
|
private:
|
2018-10-09 13:56:34 +00:00
|
|
|
Vec3d m_position;
|
|
|
|
Vec3d m_rotation;
|
|
|
|
Vec3d m_scaling_factor;
|
2018-10-08 12:02:12 +00:00
|
|
|
Transform3d m_rotation_matrix;
|
2018-10-15 11:22:36 +00:00
|
|
|
Transform3d m_scale_matrix;
|
2018-10-08 12:02:12 +00:00
|
|
|
|
|
|
|
public:
|
|
|
|
VolumeCache();
|
|
|
|
VolumeCache(const Vec3d& position, const Vec3d& rotation, const Vec3d& scaling_factor);
|
|
|
|
|
2018-10-09 13:56:34 +00:00
|
|
|
const Vec3d& get_position() const { return m_position; }
|
|
|
|
const Vec3d& get_rotation() const { return m_rotation; }
|
|
|
|
const Vec3d& get_scaling_factor() const { return m_scaling_factor; }
|
2018-10-08 12:02:12 +00:00
|
|
|
const Transform3d& get_rotation_matrix() const { return m_rotation_matrix; }
|
2018-10-15 11:22:36 +00:00
|
|
|
const Transform3d& get_scale_matrix() const { return m_scale_matrix; }
|
2018-10-08 12:02:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
typedef std::map<unsigned int, VolumeCache> VolumesCache;
|
2018-10-09 13:56:34 +00:00
|
|
|
typedef std::set<int> InstanceIdxsList;
|
|
|
|
typedef std::map<int, InstanceIdxsList> ObjectIdxsToInstanceIdxsMap;
|
2018-10-08 12:02:12 +00:00
|
|
|
|
|
|
|
struct Cache
|
|
|
|
{
|
|
|
|
VolumesCache volumes_data;
|
|
|
|
Vec3d dragging_center;
|
2018-10-09 13:56:34 +00:00
|
|
|
ObjectIdxsToInstanceIdxsMap content;
|
2018-10-08 12:02:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
GLVolumePtrs* m_volumes;
|
|
|
|
Model* m_model;
|
|
|
|
|
|
|
|
bool m_valid;
|
|
|
|
EMode m_mode;
|
2018-10-09 13:56:34 +00:00
|
|
|
EType m_type;
|
2018-10-08 12:02:12 +00:00
|
|
|
IndicesList m_list;
|
|
|
|
Cache m_cache;
|
|
|
|
mutable BoundingBoxf3 m_bounding_box;
|
|
|
|
mutable bool m_bounding_box_dirty;
|
|
|
|
|
|
|
|
public:
|
|
|
|
Selection();
|
|
|
|
|
|
|
|
void set_volumes(GLVolumePtrs* volumes);
|
|
|
|
void set_model(Model* model);
|
|
|
|
|
|
|
|
EMode get_mode() const { return m_mode; }
|
|
|
|
void set_mode(EMode mode) { m_mode = mode; }
|
|
|
|
|
|
|
|
void add(unsigned int volume_idx, bool as_single_selection = true);
|
|
|
|
void remove(unsigned int volume_idx);
|
2018-10-11 06:26:12 +00:00
|
|
|
|
|
|
|
void add_object(unsigned int object_idx, bool as_single_selection = true);
|
|
|
|
void remove_object(unsigned int object_idx);
|
|
|
|
|
|
|
|
void add_instance(unsigned int object_idx, unsigned int instance_idx, bool as_single_selection = true);
|
|
|
|
void remove_instance(unsigned int object_idx, unsigned int instance_idx);
|
|
|
|
|
|
|
|
void add_volume(unsigned int object_idx, unsigned int volume_idx, bool as_single_selection = true);
|
|
|
|
void remove_volume(unsigned int object_idx, unsigned int volume_idx);
|
|
|
|
|
2018-10-08 12:02:12 +00:00
|
|
|
void clear();
|
|
|
|
|
2018-10-09 13:56:34 +00:00
|
|
|
bool is_empty() const { return m_type == Empty; }
|
|
|
|
bool is_wipe_tower() const { return m_type == WipeTower; }
|
|
|
|
bool is_modifier() const { return m_type == Modifier; }
|
|
|
|
bool is_single_full_instance() const;
|
|
|
|
bool is_single_full_object() const { return m_type == SingleFullObject; }
|
2018-10-10 11:51:11 +00:00
|
|
|
bool is_mixed() const { return m_type == Mixed; }
|
2018-10-09 13:56:34 +00:00
|
|
|
bool is_from_single_instance() const { return get_instance_idx() != -1; }
|
|
|
|
bool is_from_single_object() const { return get_object_idx() != -1; }
|
|
|
|
|
2018-10-22 06:54:04 +00:00
|
|
|
bool contains_volume(unsigned int volume_idx) const { return std::find(m_list.begin(), m_list.end(), volume_idx) != m_list.end(); }
|
|
|
|
|
2018-10-09 13:56:34 +00:00
|
|
|
// Returns the the object id if the selection is from a single object, otherwise is -1
|
|
|
|
int get_object_idx() const;
|
|
|
|
// Returns the instance id if the selection is from a single object and from a single instance, otherwise is -1
|
|
|
|
int get_instance_idx() const;
|
2018-10-08 12:02:12 +00:00
|
|
|
|
|
|
|
const IndicesList& get_volume_idxs() const { return m_list; }
|
|
|
|
const GLVolume* get_volume(unsigned int volume_idx) const;
|
|
|
|
|
|
|
|
unsigned int volumes_count() const { return (unsigned int)m_list.size(); }
|
|
|
|
const BoundingBoxf3& get_bounding_box() const;
|
|
|
|
|
|
|
|
void start_dragging();
|
|
|
|
|
|
|
|
void translate(const Vec3d& displacement);
|
2018-10-09 13:56:34 +00:00
|
|
|
void rotate(const Vec3d& rotation);
|
2018-10-12 13:43:29 +00:00
|
|
|
void scale(const Vec3d& scale);
|
2018-10-18 13:50:51 +00:00
|
|
|
#if ENABLE_MIRROR
|
|
|
|
void mirror(Axis axis);
|
|
|
|
#endif // ENABLE_MIRROR
|
2018-10-08 12:02:12 +00:00
|
|
|
|
2018-10-10 09:04:04 +00:00
|
|
|
void render(bool show_indirect_selection) const;
|
2018-10-08 12:02:12 +00:00
|
|
|
|
|
|
|
private:
|
2018-10-11 06:26:12 +00:00
|
|
|
void _update_valid();
|
|
|
|
void _update_type();
|
|
|
|
void _set_caches();
|
|
|
|
void _add_volume(unsigned int volume_idx);
|
|
|
|
void _add_instance(unsigned int object_idx, unsigned int instance_idx);
|
|
|
|
void _add_object(unsigned int object_idx);
|
|
|
|
void _remove_volume(unsigned int volume_idx);
|
|
|
|
void _remove_instance(unsigned int object_idx, unsigned int instance_idx);
|
|
|
|
void _remove_object(unsigned int object_idx);
|
|
|
|
void _calc_bounding_box() const;
|
|
|
|
void _render_selected_volumes() const;
|
|
|
|
void _render_unselected_instances() const;
|
|
|
|
void _render_bounding_box(const BoundingBoxf3& box, float* color) const;
|
|
|
|
void _synchronize_unselected_instances();
|
2018-10-08 12:02:12 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
|
|
|
#endif // ENABLE_EXTENDED_SELECTION
|
|
|
|
|
2018-06-13 07:12:16 +00:00
|
|
|
class Gizmos
|
|
|
|
{
|
2018-06-22 07:00:01 +00:00
|
|
|
static const float OverlayTexturesScale;
|
2018-06-13 07:12:16 +00:00
|
|
|
static const float OverlayOffsetX;
|
|
|
|
static const float OverlayGapY;
|
|
|
|
|
|
|
|
public:
|
|
|
|
enum EType : unsigned char
|
|
|
|
{
|
2018-06-13 07:26:58 +00:00
|
|
|
Undefined,
|
2018-09-11 07:00:28 +00:00
|
|
|
Move,
|
2018-06-13 07:12:16 +00:00
|
|
|
Scale,
|
|
|
|
Rotate,
|
2018-08-09 14:55:43 +00:00
|
|
|
Flatten,
|
2018-09-12 10:14:20 +00:00
|
|
|
SlaSupports,
|
2018-06-13 07:12:16 +00:00
|
|
|
Num_Types
|
|
|
|
};
|
|
|
|
|
|
|
|
private:
|
|
|
|
bool m_enabled;
|
|
|
|
typedef std::map<EType, GLGizmoBase*> GizmosMap;
|
|
|
|
GizmosMap m_gizmos;
|
|
|
|
EType m_current;
|
|
|
|
|
|
|
|
public:
|
|
|
|
Gizmos();
|
|
|
|
~Gizmos();
|
|
|
|
|
2018-08-24 12:11:41 +00:00
|
|
|
bool init(GLCanvas3D& parent);
|
2018-06-13 07:12:16 +00:00
|
|
|
|
|
|
|
bool is_enabled() const;
|
|
|
|
void set_enabled(bool enable);
|
|
|
|
|
2018-10-08 12:02:12 +00:00
|
|
|
#if ENABLE_EXTENDED_SELECTION
|
2018-10-25 07:35:08 +00:00
|
|
|
std::string update_hover_state(const GLCanvas3D& canvas, const Vec2d& mouse_pos, const Selection& selection);
|
2018-10-08 12:02:12 +00:00
|
|
|
void update_on_off_state(const GLCanvas3D& canvas, const Vec2d& mouse_pos, const Selection& selection);
|
2018-10-16 12:56:35 +00:00
|
|
|
void update_on_off_state(const Selection& selection);
|
2018-10-08 12:02:12 +00:00
|
|
|
#else
|
2018-08-21 19:05:24 +00:00
|
|
|
void update_hover_state(const GLCanvas3D& canvas, const Vec2d& mouse_pos);
|
|
|
|
void update_on_off_state(const GLCanvas3D& canvas, const Vec2d& mouse_pos);
|
2018-10-08 12:02:12 +00:00
|
|
|
#endif // ENABLE_EXTENDED_SELECTION
|
2018-06-13 11:14:17 +00:00
|
|
|
void reset_all_states();
|
|
|
|
|
2018-06-14 13:32:26 +00:00
|
|
|
void set_hover_id(int id);
|
2018-10-08 12:02:12 +00:00
|
|
|
#if ENABLE_EXTENDED_SELECTION
|
2018-10-09 13:56:34 +00:00
|
|
|
void enable_grabber(EType type, unsigned int id, bool enable);
|
2018-10-08 12:02:12 +00:00
|
|
|
#endif // ENABLE_EXTENDED_SELECTION
|
2018-06-14 13:32:26 +00:00
|
|
|
|
2018-08-21 19:05:24 +00:00
|
|
|
bool overlay_contains_mouse(const GLCanvas3D& canvas, const Vec2d& mouse_pos) const;
|
2018-06-15 12:10:28 +00:00
|
|
|
bool grabber_contains_mouse() const;
|
2018-09-19 12:59:57 +00:00
|
|
|
void update(const Linef3& mouse_ray, const Point* mouse_pos = nullptr);
|
2018-09-19 13:39:54 +00:00
|
|
|
#if ENABLE_GIZMOS_RESET
|
|
|
|
void process_double_click();
|
|
|
|
#endif // ENABLE_GIZMOS_RESET
|
2018-09-19 12:59:57 +00:00
|
|
|
Rect get_reset_rect_viewport(const GLCanvas3D& canvas) const;
|
2018-06-19 07:46:26 +00:00
|
|
|
EType get_current_type() const;
|
2018-06-15 12:10:28 +00:00
|
|
|
|
2018-06-18 13:07:17 +00:00
|
|
|
bool is_running() const;
|
2018-06-19 07:46:26 +00:00
|
|
|
|
2018-06-15 12:10:28 +00:00
|
|
|
bool is_dragging() const;
|
2018-10-15 09:30:50 +00:00
|
|
|
#if ENABLE_EXTENDED_SELECTION
|
|
|
|
void start_dragging(const Selection& selection);
|
|
|
|
#else
|
2018-09-10 08:01:49 +00:00
|
|
|
void start_dragging(const BoundingBoxf3& box);
|
2018-10-15 09:30:50 +00:00
|
|
|
#endif // ENABLE_EXTENDED_SELECTION
|
2018-06-15 12:10:28 +00:00
|
|
|
void stop_dragging();
|
2018-06-13 08:49:59 +00:00
|
|
|
|
2018-10-08 12:02:12 +00:00
|
|
|
#if ENABLE_EXTENDED_SELECTION
|
|
|
|
Vec3d get_displacement() const;
|
|
|
|
#else
|
2018-09-11 07:00:28 +00:00
|
|
|
Vec3d get_position() const;
|
|
|
|
void set_position(const Vec3d& position);
|
2018-10-08 12:02:12 +00:00
|
|
|
#endif // ENABLE_EXTENDED_SELECTION
|
2018-09-11 07:00:28 +00:00
|
|
|
|
2018-09-24 13:54:09 +00:00
|
|
|
Vec3d get_scale() const;
|
|
|
|
void set_scale(const Vec3d& scale);
|
2018-06-19 07:46:26 +00:00
|
|
|
|
2018-09-20 13:00:40 +00:00
|
|
|
Vec3d get_rotation() const;
|
|
|
|
void set_rotation(const Vec3d& rotation);
|
2018-09-25 08:42:11 +00:00
|
|
|
|
|
|
|
Vec3d get_flattening_rotation() const;
|
|
|
|
|
2018-09-20 13:00:40 +00:00
|
|
|
void set_flattening_data(const ModelObject* model_object);
|
2018-10-26 13:45:52 +00:00
|
|
|
|
2018-09-24 11:39:44 +00:00
|
|
|
void set_model_object_ptr(ModelObject* model_object);
|
2018-09-19 12:59:57 +00:00
|
|
|
void clicked_on_object(const Vec2d& mouse_position);
|
|
|
|
void delete_current_grabber(bool delete_all = false);
|
2018-09-12 10:14:20 +00:00
|
|
|
|
2018-10-15 09:30:50 +00:00
|
|
|
#if ENABLE_EXTENDED_SELECTION
|
|
|
|
void render_current_gizmo(const Selection& selection) const;
|
|
|
|
void render_current_gizmo_for_picking_pass(const Selection& selection) const;
|
|
|
|
#else
|
2018-08-21 12:27:36 +00:00
|
|
|
void render_current_gizmo(const BoundingBoxf3& box) const;
|
2018-06-14 13:32:26 +00:00
|
|
|
void render_current_gizmo_for_picking_pass(const BoundingBoxf3& box) const;
|
2018-10-15 09:30:50 +00:00
|
|
|
#endif // ENABLE_EXTENDED_SELECTION
|
|
|
|
|
2018-08-21 12:27:36 +00:00
|
|
|
void render_overlay(const GLCanvas3D& canvas) const;
|
2018-06-13 07:12:16 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
void _reset();
|
|
|
|
|
|
|
|
void _render_overlay(const GLCanvas3D& canvas) const;
|
2018-10-15 09:30:50 +00:00
|
|
|
#if ENABLE_EXTENDED_SELECTION
|
|
|
|
void _render_current_gizmo(const Selection& selection) const;
|
|
|
|
#else
|
2018-06-13 13:44:04 +00:00
|
|
|
void _render_current_gizmo(const BoundingBoxf3& box) const;
|
2018-10-15 09:30:50 +00:00
|
|
|
#endif // ENABLE_EXTENDED_SELECTION
|
2018-06-13 08:49:59 +00:00
|
|
|
|
|
|
|
float _get_total_overlay_height() const;
|
2018-06-15 12:10:28 +00:00
|
|
|
GLGizmoBase* _get_current() const;
|
2018-06-13 07:12:16 +00:00
|
|
|
};
|
|
|
|
|
2018-07-19 11:18:19 +00:00
|
|
|
class WarningTexture : public GUI::GLTexture
|
|
|
|
{
|
|
|
|
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;
|
|
|
|
|
2018-07-19 11:18:19 +00:00
|
|
|
public:
|
2018-07-31 12:20:16 +00:00
|
|
|
WarningTexture();
|
|
|
|
|
2018-07-19 11:18:19 +00:00
|
|
|
bool generate(const std::string& msg);
|
2018-07-31 12:20:16 +00:00
|
|
|
|
|
|
|
void render(const GLCanvas3D& canvas) const;
|
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];
|
|
|
|
static const unsigned char Background_Color[3];
|
|
|
|
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();
|
|
|
|
|
2018-07-19 11:18:19 +00:00
|
|
|
bool generate(const GCodePreviewData& preview_data, const std::vector<float>& tool_colors);
|
2018-07-31 12:32:59 +00:00
|
|
|
|
|
|
|
void render(const GLCanvas3D& canvas) const;
|
2018-07-19 11:18:19 +00:00
|
|
|
};
|
|
|
|
|
2018-05-09 08:47:04 +00:00
|
|
|
wxGLCanvas* m_canvas;
|
|
|
|
wxGLContext* m_context;
|
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;
|
2018-05-09 08:47:04 +00:00
|
|
|
Camera m_camera;
|
2018-05-14 12:14:19 +00:00
|
|
|
Bed m_bed;
|
2018-05-18 11:02:47 +00:00
|
|
|
Axes m_axes;
|
2018-05-18 09:05:48 +00:00
|
|
|
CuttingPlane m_cutting_plane;
|
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;
|
2018-06-13 08:49:59 +00:00
|
|
|
mutable Gizmos m_gizmos;
|
2018-07-23 11:49:48 +00:00
|
|
|
mutable GLToolbar m_toolbar;
|
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
|
|
|
#if ENABLE_EXTENDED_SELECTION
|
|
|
|
Selection m_selection;
|
|
|
|
#endif // ENABLE_EXTENDED_SELECTION
|
2018-05-23 09:14:49 +00:00
|
|
|
DynamicPrintConfig* m_config;
|
2018-05-28 13:23:01 +00:00
|
|
|
Print* m_print;
|
2018-06-07 09:18:28 +00:00
|
|
|
Model* m_model;
|
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-06-05 08:56:55 +00:00
|
|
|
bool m_force_zoom_to_bed_enabled;
|
2018-05-14 12:14:19 +00:00
|
|
|
bool m_apply_zoom_to_volumes_filter;
|
2018-05-29 11:54:34 +00:00
|
|
|
mutable int m_hover_volume_id;
|
2018-07-27 10:08:33 +00:00
|
|
|
bool m_toolbar_action_running;
|
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-05-25 12:05:08 +00:00
|
|
|
bool m_shader_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
|
|
|
#if ENABLE_EXTENDED_SELECTION
|
|
|
|
bool m_regenerate_volumes;
|
|
|
|
#endif // ENABLE_EXTENDED_SELECTION
|
2018-05-09 08:47:04 +00:00
|
|
|
|
2018-06-06 08:16:58 +00:00
|
|
|
std::string m_color_by;
|
2018-10-08 12:02:12 +00:00
|
|
|
#if !ENABLE_EXTENDED_SELECTION
|
2018-06-06 08:16:58 +00:00
|
|
|
std::string m_select_by;
|
|
|
|
std::string m_drag_by;
|
2018-10-08 12:02:12 +00:00
|
|
|
#endif // !ENABLE_EXTENDED_SELECTION
|
2018-06-06 08:16:58 +00:00
|
|
|
|
2018-06-08 07:40:00 +00:00
|
|
|
bool m_reload_delayed;
|
2018-10-08 12:02:12 +00:00
|
|
|
#if !ENABLE_EXTENDED_SELECTION
|
2018-06-08 07:40:00 +00:00
|
|
|
std::vector<std::vector<int>> m_objects_volumes_idxs;
|
|
|
|
std::vector<int> m_objects_selections;
|
2018-10-08 12:02:12 +00:00
|
|
|
#endif // !ENABLE_EXTENDED_SELECTION
|
2018-06-08 07:40:00 +00:00
|
|
|
|
2018-06-05 08:56:55 +00:00
|
|
|
GCodePreviewVolumeIndex m_gcode_preview_volume_index;
|
|
|
|
|
2018-10-03 12:07:10 +00:00
|
|
|
void post_event(wxEvent &&event);
|
2018-10-03 09:34:39 +00:00
|
|
|
void viewport_changed();
|
2018-07-27 10:08:33 +00:00
|
|
|
|
2018-05-09 08:47:04 +00:00
|
|
|
public:
|
2018-06-27 09:31:11 +00:00
|
|
|
GLCanvas3D(wxGLCanvas* canvas);
|
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
|
|
|
#if ENABLE_USE_UNIQUE_GLCONTEXT
|
|
|
|
void set_context(wxGLContext* context) { m_context = context; }
|
|
|
|
#endif // ENABLE_USE_UNIQUE_GLCONTEXT
|
|
|
|
|
|
|
|
wxGLCanvas* get_wxglcanvas() { 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-05-23 07:57:44 +00:00
|
|
|
|
2018-10-04 08:41:11 +00:00
|
|
|
#if !ENABLE_USE_UNIQUE_GLCONTEXT
|
2018-06-27 09:31:11 +00:00
|
|
|
bool set_current();
|
2018-10-04 08:41:11 +00:00
|
|
|
#endif // !ENABLE_USE_UNIQUE_GLCONTEXT
|
2018-05-09 08:47:04 +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-10-08 13:17:36 +00:00
|
|
|
#if !ENABLE_EXTENDED_SELECTION
|
2018-05-25 07:03:55 +00:00
|
|
|
void deselect_volumes();
|
|
|
|
void select_volume(unsigned int id);
|
2018-06-08 07:40:00 +00:00
|
|
|
void update_volumes_selection(const std::vector<int>& selections);
|
2018-10-08 13:17:36 +00:00
|
|
|
#endif // !ENABLE_EXTENDED_SELECTION
|
2018-07-23 08:16:56 +00:00
|
|
|
int check_volumes_outside_state(const DynamicPrintConfig* config) const;
|
2018-06-11 11:48:02 +00:00
|
|
|
bool move_volume_up(unsigned int id);
|
|
|
|
bool move_volume_down(unsigned int id);
|
2018-06-08 07:40:00 +00:00
|
|
|
|
2018-10-08 12:02:12 +00:00
|
|
|
#if !ENABLE_EXTENDED_SELECTION
|
2018-06-08 07:40:00 +00:00
|
|
|
void set_objects_selections(const std::vector<int>& selections);
|
2018-10-08 12:02:12 +00:00
|
|
|
#endif // !ENABLE_EXTENDED_SELECTION
|
2018-05-18 12:08:59 +00:00
|
|
|
|
2018-05-23 09:14:49 +00:00
|
|
|
void set_config(DynamicPrintConfig* config);
|
2018-05-28 13:23:01 +00:00
|
|
|
void set_print(Print* print);
|
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
|
|
|
#if ENABLE_EXTENDED_SELECTION
|
|
|
|
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
|
|
|
#endif // ENABLE_EXTENDED_SELECTION
|
|
|
|
|
2018-05-15 13:38:25 +00:00
|
|
|
// Set the bed shape to a single closed 2D polygon(array of two element arrays),
|
|
|
|
// triangulate the bed and store the triangles into m_bed.m_triangles,
|
|
|
|
// fills the m_bed.m_grid_lines and sets m_bed.m_origin.
|
|
|
|
// Sets m_bed.m_polygon to limit the object placement.
|
2018-05-14 12:14:19 +00:00
|
|
|
void set_bed_shape(const Pointfs& shape);
|
2018-05-15 13:38:25 +00:00
|
|
|
// Used by ObjectCutDialog and ObjectPartsPanel to generate a rectangular ground plane to support the scene objects.
|
|
|
|
void set_auto_bed_shape();
|
2018-05-14 12:14:19 +00:00
|
|
|
|
2018-05-18 11:02:47 +00:00
|
|
|
void set_axes_length(float length);
|
2018-05-15 09:07:32 +00:00
|
|
|
|
2018-05-18 09:05:48 +00:00
|
|
|
void set_cutting_plane(float z, const ExPolygons& polygons);
|
2018-06-06 10:36:52 +00:00
|
|
|
|
|
|
|
void set_color_by(const std::string& value);
|
2018-10-08 12:02:12 +00:00
|
|
|
#if !ENABLE_EXTENDED_SELECTION
|
2018-06-06 10:36:52 +00:00
|
|
|
void set_select_by(const std::string& value);
|
|
|
|
void set_drag_by(const std::string& value);
|
|
|
|
|
2018-09-06 14:10:31 +00:00
|
|
|
const std::string& get_select_by() const;
|
2018-09-11 07:00:28 +00:00
|
|
|
const std::string& get_drag_by() const;
|
2018-10-08 12:02:12 +00:00
|
|
|
#endif // !ENABLE_EXTENDED_SELECTION
|
2018-09-06 14:10:31 +00:00
|
|
|
|
2018-05-09 08:47:04 +00:00
|
|
|
float get_camera_zoom() const;
|
|
|
|
|
2018-05-14 12:14:19 +00:00
|
|
|
BoundingBoxf3 volumes_bounding_box() const;
|
|
|
|
|
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-06-04 12:28:59 +00:00
|
|
|
bool is_shader_enabled() 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:40:09 +00:00
|
|
|
void enable_warning_texture(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);
|
2018-07-23 11:49:48 +00:00
|
|
|
void enable_toolbar(bool enable);
|
2018-05-23 07:57:44 +00:00
|
|
|
void enable_shader(bool enable);
|
2018-06-05 08:56:55 +00:00
|
|
|
void enable_force_zoom_to_bed(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-07-23 11:49:48 +00:00
|
|
|
void enable_toolbar_item(const std::string& name, bool enable);
|
2018-07-27 10:08:33 +00:00
|
|
|
bool is_toolbar_item_pressed(const std::string& name) const;
|
2018-07-23 11:49:48 +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
|
|
|
#if ENABLE_MODIFIED_CAMERA_TARGET
|
|
|
|
#if ENABLE_EXTENDED_SELECTION
|
|
|
|
void zoom_to_selection();
|
|
|
|
#endif // ENABLE_EXTENDED_SELECTION
|
|
|
|
#endif // ENABLE_MODIFIED_CAMERA_TARGET
|
2018-05-15 09:30:11 +00:00
|
|
|
void select_view(const std::string& direction);
|
2018-05-29 13:36:09 +00:00
|
|
|
void set_viewport_from_scene(const GLCanvas3D& other);
|
2018-05-15 08:32:38 +00:00
|
|
|
|
2018-05-29 13:07:06 +00:00
|
|
|
void update_volumes_colors_by_extruder();
|
2018-06-19 07:46:26 +00:00
|
|
|
void update_gizmos_data();
|
2018-09-19 12:59:57 +00:00
|
|
|
Rect get_gizmo_reset_rect(const GLCanvas3D& canvas, bool viewport) const;
|
|
|
|
bool gizmo_reset_rect_contains(const GLCanvas3D& canvas, float x, float y) const;
|
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-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-09-06 14:10:31 +00:00
|
|
|
int get_first_volume_id(int obj_idx) const;
|
2018-09-13 14:09:46 +00:00
|
|
|
int get_in_object_volume_id(int scene_vol_idx) const;
|
2018-09-06 14:10:31 +00:00
|
|
|
|
2018-10-18 13:50:51 +00:00
|
|
|
#if ENABLE_MIRROR
|
|
|
|
#if ENABLE_EXTENDED_SELECTION
|
|
|
|
void mirror_selection(Axis axis);
|
|
|
|
#endif // ENABLE_EXTENDED_SELECTION
|
|
|
|
#endif // ENABLE_MIRROR
|
|
|
|
|
2018-06-08 07:40:00 +00:00
|
|
|
void reload_scene(bool force);
|
|
|
|
|
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-07-24 11:39:17 +00:00
|
|
|
void load_preview(const std::vector<std::string>& str_tool_colors);
|
2018-06-05 08:56:55 +00:00
|
|
|
|
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);
|
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-06-07 07:22:19 +00:00
|
|
|
void on_key_down(wxKeyEvent& evt);
|
2018-05-14 12:47:13 +00:00
|
|
|
|
2018-05-24 11:46:17 +00:00
|
|
|
Size get_canvas_size() const;
|
2018-05-25 13:56:14 +00:00
|
|
|
Point 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-05-14 12:14:19 +00:00
|
|
|
private:
|
2018-06-12 07:18:25 +00:00
|
|
|
bool _is_shown_on_screen() const;
|
2018-06-05 08:56:55 +00:00
|
|
|
void _force_zoom_to_bed();
|
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
|
|
|
#if ENABLE_USE_UNIQUE_GLCONTEXT
|
|
|
|
bool _set_current();
|
|
|
|
#endif // ENABLE_USE_UNIQUE_GLCONTEXT
|
2018-06-01 13:54:41 +00:00
|
|
|
void _resize(unsigned int w, unsigned int h);
|
|
|
|
|
|
|
|
BoundingBoxf3 _max_bounding_box() const;
|
2018-10-08 12:02:12 +00:00
|
|
|
#if !ENABLE_EXTENDED_SELECTION
|
2018-06-13 13:44:04 +00:00
|
|
|
BoundingBoxf3 _selected_volumes_bounding_box() const;
|
2018-10-08 12:02:12 +00:00
|
|
|
#endif // !ENABLE_EXTENDED_SELECTION
|
2018-06-01 13:54:41 +00:00
|
|
|
|
2018-05-14 12:14:19 +00:00
|
|
|
void _zoom_to_bounding_box(const BoundingBoxf3& bbox);
|
2018-05-15 07:50:01 +00:00
|
|
|
float _get_zoom_to_bounding_box_factor(const BoundingBoxf3& bbox) const;
|
|
|
|
|
2018-05-29 12:34:45 +00:00
|
|
|
void _mark_volumes_for_layer_height() const;
|
2018-05-28 13:23:01 +00:00
|
|
|
void _refresh_if_shown_on_screen();
|
2018-05-29 11:54:34 +00:00
|
|
|
|
2018-05-31 06:44:39 +00:00
|
|
|
void _camera_tranform() const;
|
2018-05-29 11:54:34 +00:00
|
|
|
void _picking_pass() const;
|
|
|
|
void _render_background() const;
|
2018-06-11 08:46:32 +00:00
|
|
|
void _render_bed(float theta) const;
|
2018-06-13 11:14:17 +00:00
|
|
|
void _render_axes(bool depth_test) const;
|
2018-06-04 10:26:39 +00:00
|
|
|
void _render_objects() const;
|
2018-10-08 12:02:12 +00:00
|
|
|
#if ENABLE_EXTENDED_SELECTION
|
|
|
|
void _render_selection() const;
|
|
|
|
#endif // ENABLE_EXTENDED_SELECTION
|
2018-05-29 11:54:34 +00:00
|
|
|
void _render_cutting_plane() const;
|
|
|
|
void _render_warning_texture() const;
|
|
|
|
void _render_legend_texture() const;
|
|
|
|
void _render_layer_editing_overlay() const;
|
2018-06-01 13:54:41 +00:00
|
|
|
void _render_volumes(bool fake_colors) 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-10-26 07:50:28 +00:00
|
|
|
#if ENABLE_SHOW_CAMERA_TARGET
|
|
|
|
void _render_camera_target() const;
|
|
|
|
#endif // ENABLE_SHOW_CAMERA_TARGET
|
2018-05-30 13:18:45 +00:00
|
|
|
|
2018-10-08 12:02:12 +00:00
|
|
|
#if ENABLE_EXTENDED_SELECTION
|
|
|
|
void _update_volumes_hover_state() const;
|
|
|
|
#endif // ENABLE_EXTENDED_SELECTION
|
2018-05-30 13:18:45 +00:00
|
|
|
|
2018-06-01 13:54:41 +00:00
|
|
|
float _get_layers_editing_cursor_z_relative() 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-08-20 08:23:17 +00:00
|
|
|
// Returns the view ray line, in world coordinate, at the given mouse position.
|
|
|
|
Linef3 mouse_ray(const Point& mouse_pos);
|
|
|
|
|
2018-06-01 13:54:41 +00:00
|
|
|
void _start_timer();
|
|
|
|
void _stop_timer();
|
2018-06-05 08:56:55 +00:00
|
|
|
|
2018-10-08 12:02:12 +00:00
|
|
|
#if !ENABLE_EXTENDED_SELECTION
|
2018-06-13 11:14:17 +00:00
|
|
|
int _get_first_selected_object_id() const;
|
2018-07-24 13:32:44 +00:00
|
|
|
int _get_first_selected_volume_id(int object_id) const;
|
2018-10-08 12:02:12 +00:00
|
|
|
#endif // !ENABLE_EXTENDED_SELECTION
|
2018-06-13 11:14:17 +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.
|
|
|
|
void _load_print_object_toolpaths(const PrintObject& print_object, const std::vector<std::string>& str_tool_colors);
|
|
|
|
// 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
|
|
|
|
void _load_shells();
|
|
|
|
// 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();
|
|
|
|
void _show_warning_texture_if_needed();
|
2018-06-05 12:09:36 +00:00
|
|
|
|
2018-10-08 12:02:12 +00:00
|
|
|
#if ENABLE_EXTENDED_SELECTION
|
|
|
|
void _on_move();
|
2018-10-09 13:56:34 +00:00
|
|
|
void _on_rotate();
|
2018-10-12 13:43:29 +00:00
|
|
|
void _on_scale();
|
2018-10-16 11:49:40 +00:00
|
|
|
void _on_flatten();
|
2018-10-18 13:50:51 +00:00
|
|
|
#if ENABLE_MIRROR
|
|
|
|
void _on_mirror();
|
|
|
|
#endif // ENABLE_MIRROR
|
2018-10-08 12:02:12 +00:00
|
|
|
#else
|
2018-06-07 09:18:28 +00:00
|
|
|
void _on_move(const std::vector<int>& volume_idxs);
|
2018-10-08 12:02:12 +00:00
|
|
|
#endif // ENABLE_EXTENDED_SELECTION
|
2018-10-19 14:14:55 +00:00
|
|
|
#if !ENABLE_EXTENDED_SELECTION
|
2018-09-06 14:10:31 +00:00
|
|
|
void _on_select(int volume_idx, int object_idx);
|
2018-10-19 14:14:55 +00:00
|
|
|
#endif // !ENABLE_EXTENDED_SELECTION
|
2018-06-07 09:18:28 +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
|
|
|
|
void _generate_warning_texture(const std::string& msg);
|
|
|
|
void _reset_warning_texture();
|
|
|
|
|
2018-07-27 07:38:39 +00:00
|
|
|
bool _is_any_volume_outside() const;
|
|
|
|
|
2018-07-31 10:25:00 +00:00
|
|
|
void _resize_toolbar() const;
|
|
|
|
|
2018-06-05 12:09:36 +00:00
|
|
|
static std::vector<float> _parse_colors(const std::vector<std::string>& colors);
|
2018-05-09 08:47:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace GUI
|
|
|
|
} // namespace Slic3r
|
|
|
|
|
|
|
|
#endif // slic3r_GLCanvas3D_hpp_
|