2018-06-13 07:12:16 +00:00
|
|
|
#include "GLGizmo.hpp"
|
|
|
|
|
2018-06-13 07:26:58 +00:00
|
|
|
#include "../../libslic3r/Utils.hpp"
|
2018-06-13 13:44:04 +00:00
|
|
|
#include "../../libslic3r/BoundingBox.hpp"
|
|
|
|
|
|
|
|
#include <GL/glew.h>
|
2018-06-13 07:12:16 +00:00
|
|
|
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
namespace Slic3r {
|
|
|
|
namespace GUI {
|
|
|
|
|
2018-06-15 12:10:28 +00:00
|
|
|
const float GLGizmoBase::Grabber::HalfSize = 2.0f;
|
|
|
|
const float GLGizmoBase::Grabber::HoverOffset = 0.5f;
|
2018-06-14 08:00:59 +00:00
|
|
|
const float GLGizmoBase::BaseColor[3] = { 1.0f, 1.0f, 1.0f };
|
|
|
|
const float GLGizmoBase::HighlightColor[3] = { 1.0f, 0.38f, 0.0f };
|
2018-06-15 12:10:28 +00:00
|
|
|
|
|
|
|
GLGizmoBase::Grabber::Grabber()
|
|
|
|
: center(Pointf(0.0, 0.0))
|
2018-06-15 14:16:55 +00:00
|
|
|
, angle_z(0.0f)
|
2018-06-15 12:10:28 +00:00
|
|
|
{
|
|
|
|
color[0] = 1.0f;
|
|
|
|
color[1] = 1.0f;
|
|
|
|
color[2] = 1.0f;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GLGizmoBase::Grabber::render(bool hover) const
|
|
|
|
{
|
2018-06-15 14:16:55 +00:00
|
|
|
float min_x = -HalfSize;
|
|
|
|
float max_x = +HalfSize;
|
|
|
|
float min_y = -HalfSize;
|
|
|
|
float max_y = +HalfSize;
|
2018-06-15 12:10:28 +00:00
|
|
|
|
|
|
|
::glColor3f((GLfloat)color[0], (GLfloat)color[1], (GLfloat)color[2]);
|
|
|
|
|
2018-06-15 14:16:55 +00:00
|
|
|
float angle_z_in_deg = angle_z * 180.0f / (float)PI;
|
|
|
|
::glPushMatrix();
|
2018-08-17 13:53:43 +00:00
|
|
|
::glTranslatef((GLfloat)center(0), (GLfloat)center(1), 0.0f);
|
2018-06-15 14:16:55 +00:00
|
|
|
::glRotatef((GLfloat)angle_z_in_deg, 0.0f, 0.0f, 1.0f);
|
|
|
|
|
2018-06-15 12:10:28 +00:00
|
|
|
::glDisable(GL_CULL_FACE);
|
|
|
|
::glBegin(GL_TRIANGLES);
|
|
|
|
::glVertex3f((GLfloat)min_x, (GLfloat)min_y, 0.0f);
|
|
|
|
::glVertex3f((GLfloat)max_x, (GLfloat)min_y, 0.0f);
|
|
|
|
::glVertex3f((GLfloat)max_x, (GLfloat)max_y, 0.0f);
|
|
|
|
::glVertex3f((GLfloat)max_x, (GLfloat)max_y, 0.0f);
|
|
|
|
::glVertex3f((GLfloat)min_x, (GLfloat)max_y, 0.0f);
|
|
|
|
::glVertex3f((GLfloat)min_x, (GLfloat)min_y, 0.0f);
|
|
|
|
::glEnd();
|
|
|
|
::glEnable(GL_CULL_FACE);
|
|
|
|
|
|
|
|
if (hover)
|
|
|
|
{
|
|
|
|
min_x -= HoverOffset;
|
|
|
|
max_x += HoverOffset;
|
|
|
|
min_y -= HoverOffset;
|
|
|
|
max_y += HoverOffset;
|
|
|
|
|
|
|
|
::glBegin(GL_LINE_LOOP);
|
|
|
|
::glVertex3f((GLfloat)min_x, (GLfloat)min_y, 0.0f);
|
|
|
|
::glVertex3f((GLfloat)max_x, (GLfloat)min_y, 0.0f);
|
|
|
|
::glVertex3f((GLfloat)max_x, (GLfloat)max_y, 0.0f);
|
|
|
|
::glVertex3f((GLfloat)min_x, (GLfloat)max_y, 0.0f);
|
|
|
|
::glEnd();
|
|
|
|
}
|
2018-06-15 14:16:55 +00:00
|
|
|
|
|
|
|
::glPopMatrix();
|
2018-06-15 12:10:28 +00:00
|
|
|
}
|
2018-06-14 08:00:59 +00:00
|
|
|
|
2018-06-13 07:12:16 +00:00
|
|
|
GLGizmoBase::GLGizmoBase()
|
|
|
|
: m_state(Off)
|
2018-06-14 13:32:26 +00:00
|
|
|
, m_hover_id(-1)
|
2018-06-13 07:12:16 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
GLGizmoBase::~GLGizmoBase()
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-06-13 13:44:04 +00:00
|
|
|
bool GLGizmoBase::init()
|
|
|
|
{
|
|
|
|
return on_init();
|
|
|
|
}
|
|
|
|
|
2018-06-13 07:12:16 +00:00
|
|
|
GLGizmoBase::EState GLGizmoBase::get_state() const
|
|
|
|
{
|
|
|
|
return m_state;
|
|
|
|
}
|
|
|
|
|
2018-06-13 08:49:59 +00:00
|
|
|
void GLGizmoBase::set_state(GLGizmoBase::EState state)
|
2018-06-13 07:12:16 +00:00
|
|
|
{
|
2018-06-13 08:49:59 +00:00
|
|
|
m_state = state;
|
2018-07-12 09:26:13 +00:00
|
|
|
on_set_state();
|
2018-06-13 07:12:16 +00:00
|
|
|
}
|
|
|
|
|
2018-06-22 13:11:04 +00:00
|
|
|
unsigned int GLGizmoBase::get_texture_id() const
|
2018-06-13 07:12:16 +00:00
|
|
|
{
|
2018-06-13 08:49:59 +00:00
|
|
|
return m_textures[m_state].get_id();
|
2018-06-13 07:12:16 +00:00
|
|
|
}
|
|
|
|
|
2018-06-13 08:49:59 +00:00
|
|
|
int GLGizmoBase::get_textures_size() const
|
2018-06-13 07:12:16 +00:00
|
|
|
{
|
|
|
|
return m_textures[Off].get_width();
|
|
|
|
}
|
|
|
|
|
2018-06-15 12:10:28 +00:00
|
|
|
int GLGizmoBase::get_hover_id() const
|
|
|
|
{
|
|
|
|
return m_hover_id;
|
|
|
|
}
|
|
|
|
|
2018-06-14 13:32:26 +00:00
|
|
|
void GLGizmoBase::set_hover_id(int id)
|
|
|
|
{
|
2018-06-15 12:10:28 +00:00
|
|
|
if (id < (int)m_grabbers.size())
|
|
|
|
m_hover_id = id;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GLGizmoBase::start_dragging()
|
|
|
|
{
|
2018-06-18 13:07:17 +00:00
|
|
|
on_start_dragging();
|
2018-06-15 12:10:28 +00:00
|
|
|
}
|
|
|
|
|
2018-07-12 09:26:13 +00:00
|
|
|
void GLGizmoBase::stop_dragging()
|
|
|
|
{
|
|
|
|
on_stop_dragging();
|
|
|
|
}
|
|
|
|
|
2018-06-15 12:10:28 +00:00
|
|
|
void GLGizmoBase::update(const Pointf& mouse_pos)
|
|
|
|
{
|
|
|
|
if (m_hover_id != -1)
|
|
|
|
on_update(mouse_pos);
|
2018-06-14 13:32:26 +00:00
|
|
|
}
|
|
|
|
|
2018-07-12 09:26:13 +00:00
|
|
|
void GLGizmoBase::refresh()
|
|
|
|
{
|
|
|
|
on_refresh();
|
|
|
|
}
|
|
|
|
|
2018-06-13 13:44:04 +00:00
|
|
|
void GLGizmoBase::render(const BoundingBoxf3& box) const
|
2018-06-13 07:12:16 +00:00
|
|
|
{
|
2018-06-13 13:44:04 +00:00
|
|
|
on_render(box);
|
2018-06-13 07:12:16 +00:00
|
|
|
}
|
|
|
|
|
2018-06-14 13:32:26 +00:00
|
|
|
void GLGizmoBase::render_for_picking(const BoundingBoxf3& box) const
|
|
|
|
{
|
|
|
|
on_render_for_picking(box);
|
|
|
|
}
|
|
|
|
|
2018-07-12 09:26:13 +00:00
|
|
|
void GLGizmoBase::on_set_state()
|
|
|
|
{
|
|
|
|
// do nothing
|
|
|
|
}
|
|
|
|
|
2018-06-18 13:07:17 +00:00
|
|
|
void GLGizmoBase::on_start_dragging()
|
|
|
|
{
|
2018-07-12 09:26:13 +00:00
|
|
|
// do nothing
|
|
|
|
}
|
|
|
|
|
|
|
|
void GLGizmoBase::on_stop_dragging()
|
|
|
|
{
|
|
|
|
// do nothing
|
|
|
|
}
|
|
|
|
|
|
|
|
void GLGizmoBase::on_refresh()
|
|
|
|
{
|
|
|
|
// do nothing
|
2018-06-18 13:07:17 +00:00
|
|
|
}
|
|
|
|
|
2018-06-15 12:10:28 +00:00
|
|
|
void GLGizmoBase::render_grabbers() const
|
2018-06-14 08:00:59 +00:00
|
|
|
{
|
2018-06-19 07:46:26 +00:00
|
|
|
for (int i = 0; i < (int)m_grabbers.size(); ++i)
|
2018-06-14 13:32:26 +00:00
|
|
|
{
|
2018-06-15 12:10:28 +00:00
|
|
|
m_grabbers[i].render(m_hover_id == i);
|
2018-06-14 13:32:26 +00:00
|
|
|
}
|
2018-06-14 08:00:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const float GLGizmoRotate::Offset = 5.0f;
|
|
|
|
const unsigned int GLGizmoRotate::CircleResolution = 64;
|
2018-06-15 14:16:55 +00:00
|
|
|
const unsigned int GLGizmoRotate::AngleResolution = 64;
|
2018-06-14 08:00:59 +00:00
|
|
|
const unsigned int GLGizmoRotate::ScaleStepsCount = 60;
|
|
|
|
const float GLGizmoRotate::ScaleStepRad = 2.0f * (float)PI / GLGizmoRotate::ScaleStepsCount;
|
|
|
|
const unsigned int GLGizmoRotate::ScaleLongEvery = 5;
|
|
|
|
const float GLGizmoRotate::ScaleLongTooth = 2.0f;
|
|
|
|
const float GLGizmoRotate::ScaleShortTooth = 1.0f;
|
|
|
|
const unsigned int GLGizmoRotate::SnapRegionsCount = 8;
|
|
|
|
const float GLGizmoRotate::GrabberOffset = 5.0f;
|
|
|
|
|
2018-06-13 07:12:16 +00:00
|
|
|
GLGizmoRotate::GLGizmoRotate()
|
|
|
|
: GLGizmoBase()
|
|
|
|
, m_angle_z(0.0f)
|
2018-06-15 14:16:55 +00:00
|
|
|
, m_center(Pointf(0.0, 0.0))
|
|
|
|
, m_radius(0.0f)
|
2018-07-12 09:26:13 +00:00
|
|
|
, m_keep_radius(false)
|
2018-06-13 07:12:16 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2018-06-19 07:46:26 +00:00
|
|
|
float GLGizmoRotate::get_angle_z() const
|
|
|
|
{
|
|
|
|
return m_angle_z;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GLGizmoRotate::set_angle_z(float angle_z)
|
|
|
|
{
|
|
|
|
if (std::abs(angle_z - 2.0f * PI) < EPSILON)
|
|
|
|
angle_z = 0.0f;
|
|
|
|
|
|
|
|
m_angle_z = angle_z;
|
|
|
|
}
|
|
|
|
|
2018-06-13 07:12:16 +00:00
|
|
|
bool GLGizmoRotate::on_init()
|
|
|
|
{
|
|
|
|
std::string path = resources_dir() + "/icons/overlay/";
|
|
|
|
|
|
|
|
std::string filename = path + "rotate_off.png";
|
2018-06-14 08:37:28 +00:00
|
|
|
if (!m_textures[Off].load_from_file(filename, false))
|
2018-06-13 07:12:16 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
filename = path + "rotate_hover.png";
|
2018-06-14 08:37:28 +00:00
|
|
|
if (!m_textures[Hover].load_from_file(filename, false))
|
2018-06-13 07:12:16 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
filename = path + "rotate_on.png";
|
2018-06-14 08:37:28 +00:00
|
|
|
if (!m_textures[On].load_from_file(filename, false))
|
2018-06-13 07:12:16 +00:00
|
|
|
return false;
|
|
|
|
|
2018-06-15 12:10:28 +00:00
|
|
|
m_grabbers.push_back(Grabber());
|
|
|
|
|
2018-06-13 07:12:16 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-07-12 09:26:13 +00:00
|
|
|
void GLGizmoRotate::on_set_state()
|
|
|
|
{
|
|
|
|
m_keep_radius = (m_state == On) ? false : true;
|
|
|
|
}
|
|
|
|
|
2018-06-15 12:10:28 +00:00
|
|
|
void GLGizmoRotate::on_update(const Pointf& mouse_pos)
|
|
|
|
{
|
2018-06-15 14:16:55 +00:00
|
|
|
Vectorf orig_dir(1.0, 0.0);
|
Removed Point::scale(),translate(),coincides_with(),distance_to(),
distance_to_squared(),perp_distance_to(),negative(),vector_to(),
translate(), distance_to() etc,
replaced with the Eigen equivalents.
2018-08-17 12:14:24 +00:00
|
|
|
Vectorf new_dir = (mouse_pos - m_center).normalized();
|
|
|
|
coordf_t theta = ::acos(clamp(-1.0, 1.0, new_dir.dot(orig_dir)));
|
|
|
|
if (cross2(orig_dir, new_dir) < 0.0)
|
2018-06-15 14:16:55 +00:00
|
|
|
theta = 2.0 * (coordf_t)PI - theta;
|
|
|
|
|
2018-06-19 07:46:26 +00:00
|
|
|
// snap
|
Removed Point::scale(),translate(),coincides_with(),distance_to(),
distance_to_squared(),perp_distance_to(),negative(),vector_to(),
translate(), distance_to() etc,
replaced with the Eigen equivalents.
2018-08-17 12:14:24 +00:00
|
|
|
if ((mouse_pos - m_center).norm() < 2.0 * (double)m_radius / 3.0)
|
2018-06-15 14:16:55 +00:00
|
|
|
{
|
|
|
|
coordf_t step = 2.0 * (coordf_t)PI / (coordf_t)SnapRegionsCount;
|
|
|
|
theta = step * (coordf_t)std::round(theta / step);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (theta == 2.0 * (coordf_t)PI)
|
|
|
|
theta = 0.0;
|
2018-06-19 07:46:26 +00:00
|
|
|
|
2018-06-15 14:16:55 +00:00
|
|
|
m_angle_z = (float)theta;
|
2018-06-15 12:10:28 +00:00
|
|
|
}
|
|
|
|
|
2018-07-12 09:26:13 +00:00
|
|
|
void GLGizmoRotate::on_refresh()
|
|
|
|
{
|
|
|
|
m_keep_radius = false;
|
|
|
|
}
|
|
|
|
|
2018-06-13 13:44:04 +00:00
|
|
|
void GLGizmoRotate::on_render(const BoundingBoxf3& box) const
|
|
|
|
{
|
2018-06-14 08:00:59 +00:00
|
|
|
::glDisable(GL_DEPTH_TEST);
|
|
|
|
|
2018-08-21 15:43:05 +00:00
|
|
|
m_center = to_2d(box.center());
|
2018-07-12 09:26:13 +00:00
|
|
|
if (!m_keep_radius)
|
|
|
|
{
|
2018-08-21 15:43:05 +00:00
|
|
|
m_radius = Offset + 0.5 * to_2d(box.size()).norm();
|
2018-07-12 09:26:13 +00:00
|
|
|
m_keep_radius = true;
|
|
|
|
}
|
2018-06-14 08:00:59 +00:00
|
|
|
|
|
|
|
::glLineWidth(2.0f);
|
|
|
|
::glColor3fv(BaseColor);
|
|
|
|
|
2018-06-15 14:16:55 +00:00
|
|
|
_render_circle();
|
|
|
|
_render_scale();
|
|
|
|
_render_snap_radii();
|
|
|
|
_render_reference_radius();
|
|
|
|
|
|
|
|
::glColor3fv(HighlightColor);
|
|
|
|
_render_angle_z();
|
|
|
|
_render_grabber();
|
2018-06-14 08:00:59 +00:00
|
|
|
}
|
|
|
|
|
2018-06-14 13:32:26 +00:00
|
|
|
void GLGizmoRotate::on_render_for_picking(const BoundingBoxf3& box) const
|
|
|
|
{
|
|
|
|
::glDisable(GL_DEPTH_TEST);
|
|
|
|
|
2018-06-15 12:10:28 +00:00
|
|
|
m_grabbers[0].color[0] = 1.0f;
|
|
|
|
m_grabbers[0].color[1] = 1.0f;
|
|
|
|
m_grabbers[0].color[2] = 254.0f / 255.0f;
|
|
|
|
render_grabbers();
|
2018-06-14 13:32:26 +00:00
|
|
|
}
|
|
|
|
|
2018-06-15 14:16:55 +00:00
|
|
|
void GLGizmoRotate::_render_circle() const
|
2018-06-14 08:00:59 +00:00
|
|
|
{
|
|
|
|
::glBegin(GL_LINE_LOOP);
|
|
|
|
for (unsigned int i = 0; i < ScaleStepsCount; ++i)
|
|
|
|
{
|
|
|
|
float angle = (float)i * ScaleStepRad;
|
2018-08-17 13:53:43 +00:00
|
|
|
float x = m_center(0) + ::cos(angle) * m_radius;
|
|
|
|
float y = m_center(1) + ::sin(angle) * m_radius;
|
2018-06-14 08:00:59 +00:00
|
|
|
::glVertex3f((GLfloat)x, (GLfloat)y, 0.0f);
|
|
|
|
}
|
|
|
|
::glEnd();
|
|
|
|
}
|
|
|
|
|
2018-06-15 14:16:55 +00:00
|
|
|
void GLGizmoRotate::_render_scale() const
|
2018-06-14 08:00:59 +00:00
|
|
|
{
|
2018-06-15 14:16:55 +00:00
|
|
|
float out_radius_long = m_radius + ScaleLongTooth;
|
|
|
|
float out_radius_short = m_radius + ScaleShortTooth;
|
2018-06-14 08:00:59 +00:00
|
|
|
|
|
|
|
::glBegin(GL_LINES);
|
|
|
|
for (unsigned int i = 0; i < ScaleStepsCount; ++i)
|
|
|
|
{
|
|
|
|
float angle = (float)i * ScaleStepRad;
|
|
|
|
float cosa = ::cos(angle);
|
|
|
|
float sina = ::sin(angle);
|
2018-08-17 13:53:43 +00:00
|
|
|
float in_x = m_center(0) + cosa * m_radius;
|
|
|
|
float in_y = m_center(1) + sina * m_radius;
|
|
|
|
float out_x = (i % ScaleLongEvery == 0) ? m_center(0) + cosa * out_radius_long : m_center(0) + cosa * out_radius_short;
|
|
|
|
float out_y = (i % ScaleLongEvery == 0) ? m_center(1) + sina * out_radius_long : m_center(1) + sina * out_radius_short;
|
2018-06-14 08:00:59 +00:00
|
|
|
::glVertex3f((GLfloat)in_x, (GLfloat)in_y, 0.0f);
|
|
|
|
::glVertex3f((GLfloat)out_x, (GLfloat)out_y, 0.0f);
|
|
|
|
}
|
|
|
|
::glEnd();
|
|
|
|
}
|
|
|
|
|
2018-06-15 14:16:55 +00:00
|
|
|
void GLGizmoRotate::_render_snap_radii() const
|
2018-06-14 08:00:59 +00:00
|
|
|
{
|
2018-06-15 14:16:55 +00:00
|
|
|
float step = 2.0f * (float)PI / (float)SnapRegionsCount;
|
2018-06-14 08:00:59 +00:00
|
|
|
|
2018-06-15 14:16:55 +00:00
|
|
|
float in_radius = m_radius / 3.0f;
|
2018-06-14 08:00:59 +00:00
|
|
|
float out_radius = 2.0f * in_radius;
|
|
|
|
|
|
|
|
::glBegin(GL_LINES);
|
|
|
|
for (unsigned int i = 0; i < SnapRegionsCount; ++i)
|
|
|
|
{
|
2018-06-15 14:16:55 +00:00
|
|
|
float angle = (float)i * step;
|
2018-06-14 08:00:59 +00:00
|
|
|
float cosa = ::cos(angle);
|
|
|
|
float sina = ::sin(angle);
|
2018-08-17 13:53:43 +00:00
|
|
|
float in_x = m_center(0) + cosa * in_radius;
|
|
|
|
float in_y = m_center(1) + sina * in_radius;
|
|
|
|
float out_x = m_center(0) + cosa * out_radius;
|
|
|
|
float out_y = m_center(1) + sina * out_radius;
|
2018-06-14 08:00:59 +00:00
|
|
|
::glVertex3f((GLfloat)in_x, (GLfloat)in_y, 0.0f);
|
|
|
|
::glVertex3f((GLfloat)out_x, (GLfloat)out_y, 0.0f);
|
|
|
|
}
|
|
|
|
::glEnd();
|
|
|
|
}
|
|
|
|
|
2018-06-15 14:16:55 +00:00
|
|
|
void GLGizmoRotate::_render_reference_radius() const
|
2018-06-14 08:00:59 +00:00
|
|
|
{
|
|
|
|
::glBegin(GL_LINES);
|
2018-08-17 13:53:43 +00:00
|
|
|
::glVertex3f((GLfloat)m_center(0), (GLfloat)m_center(1), 0.0f);
|
|
|
|
::glVertex3f((GLfloat)m_center(0) + m_radius + GrabberOffset, (GLfloat)m_center(1), 0.0f);
|
2018-06-14 08:00:59 +00:00
|
|
|
::glEnd();
|
|
|
|
}
|
|
|
|
|
2018-06-15 14:16:55 +00:00
|
|
|
void GLGizmoRotate::_render_angle_z() const
|
2018-06-14 08:00:59 +00:00
|
|
|
{
|
2018-06-15 14:16:55 +00:00
|
|
|
float step_angle = m_angle_z / AngleResolution;
|
|
|
|
float ex_radius = m_radius + GrabberOffset;
|
2018-06-14 08:00:59 +00:00
|
|
|
|
2018-06-15 14:16:55 +00:00
|
|
|
::glBegin(GL_LINE_STRIP);
|
|
|
|
for (unsigned int i = 0; i <= AngleResolution; ++i)
|
|
|
|
{
|
|
|
|
float angle = (float)i * step_angle;
|
2018-08-17 13:53:43 +00:00
|
|
|
float x = m_center(0) + ::cos(angle) * ex_radius;
|
|
|
|
float y = m_center(1) + ::sin(angle) * ex_radius;
|
2018-06-15 14:16:55 +00:00
|
|
|
::glVertex3f((GLfloat)x, (GLfloat)y, 0.0f);
|
|
|
|
}
|
|
|
|
::glEnd();
|
|
|
|
}
|
|
|
|
|
|
|
|
void GLGizmoRotate::_render_grabber() const
|
|
|
|
{
|
|
|
|
float grabber_radius = m_radius + GrabberOffset;
|
2018-08-17 13:53:43 +00:00
|
|
|
m_grabbers[0].center(0) = m_center(0) + ::cos(m_angle_z) * grabber_radius;
|
|
|
|
m_grabbers[0].center(1) = m_center(1) + ::sin(m_angle_z) * grabber_radius;
|
2018-06-15 14:16:55 +00:00
|
|
|
m_grabbers[0].angle_z = m_angle_z;
|
|
|
|
|
|
|
|
::glColor3fv(BaseColor);
|
2018-06-14 08:00:59 +00:00
|
|
|
::glBegin(GL_LINES);
|
2018-08-17 13:53:43 +00:00
|
|
|
::glVertex3f((GLfloat)m_center(0), (GLfloat)m_center(1), 0.0f);
|
|
|
|
::glVertex3f((GLfloat)m_grabbers[0].center(0), (GLfloat)m_grabbers[0].center(1), 0.0f);
|
2018-06-14 08:00:59 +00:00
|
|
|
::glEnd();
|
|
|
|
|
2018-06-18 13:07:17 +00:00
|
|
|
::memcpy((void*)m_grabbers[0].color, (const void*)HighlightColor, 3 * sizeof(float));
|
2018-06-15 12:10:28 +00:00
|
|
|
render_grabbers();
|
2018-06-13 13:44:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
const float GLGizmoScale::Offset = 5.0f;
|
|
|
|
|
2018-06-13 07:12:16 +00:00
|
|
|
GLGizmoScale::GLGizmoScale()
|
|
|
|
: GLGizmoBase()
|
2018-06-18 13:07:17 +00:00
|
|
|
, m_scale(1.0f)
|
|
|
|
, m_starting_scale(1.0f)
|
2018-08-21 18:34:45 +00:00
|
|
|
, m_starting_drag_position(Vec2d::Zero())
|
2018-06-18 13:07:17 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
float GLGizmoScale::get_scale() const
|
|
|
|
{
|
|
|
|
return m_scale;
|
|
|
|
}
|
|
|
|
|
|
|
|
void GLGizmoScale::set_scale(float scale)
|
2018-06-13 07:12:16 +00:00
|
|
|
{
|
2018-06-18 13:07:17 +00:00
|
|
|
m_starting_scale = scale;
|
2018-06-13 07:12:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
bool GLGizmoScale::on_init()
|
|
|
|
{
|
|
|
|
std::string path = resources_dir() + "/icons/overlay/";
|
|
|
|
|
|
|
|
std::string filename = path + "scale_off.png";
|
2018-06-14 08:37:28 +00:00
|
|
|
if (!m_textures[Off].load_from_file(filename, false))
|
2018-06-13 07:12:16 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
filename = path + "scale_hover.png";
|
2018-06-14 08:37:28 +00:00
|
|
|
if (!m_textures[Hover].load_from_file(filename, false))
|
2018-06-13 07:12:16 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
filename = path + "scale_on.png";
|
2018-06-14 08:37:28 +00:00
|
|
|
if (!m_textures[On].load_from_file(filename, false))
|
2018-06-13 07:12:16 +00:00
|
|
|
return false;
|
|
|
|
|
2018-06-15 12:10:28 +00:00
|
|
|
for (unsigned int i = 0; i < 4; ++i)
|
|
|
|
{
|
|
|
|
m_grabbers.push_back(Grabber());
|
|
|
|
}
|
|
|
|
|
2018-06-13 07:12:16 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2018-06-18 13:07:17 +00:00
|
|
|
void GLGizmoScale::on_start_dragging()
|
|
|
|
{
|
|
|
|
if (m_hover_id != -1)
|
|
|
|
m_starting_drag_position = m_grabbers[m_hover_id].center;
|
|
|
|
}
|
|
|
|
|
2018-06-15 12:10:28 +00:00
|
|
|
void GLGizmoScale::on_update(const Pointf& mouse_pos)
|
|
|
|
{
|
2018-08-17 13:53:43 +00:00
|
|
|
Pointf center(0.5 * (m_grabbers[1].center(0) + m_grabbers[0].center(0)), 0.5 * (m_grabbers[3].center(1) + m_grabbers[0].center(1)));
|
2018-06-15 12:10:28 +00:00
|
|
|
|
Removed Point::scale(),translate(),coincides_with(),distance_to(),
distance_to_squared(),perp_distance_to(),negative(),vector_to(),
translate(), distance_to() etc,
replaced with the Eigen equivalents.
2018-08-17 12:14:24 +00:00
|
|
|
coordf_t orig_len = (m_starting_drag_position - center).norm();
|
|
|
|
coordf_t new_len = (mouse_pos - center).norm();
|
2018-06-15 12:10:28 +00:00
|
|
|
coordf_t ratio = (orig_len != 0.0) ? new_len / orig_len : 1.0;
|
|
|
|
|
2018-06-18 13:07:17 +00:00
|
|
|
m_scale = m_starting_scale * (float)ratio;
|
2018-06-15 12:10:28 +00:00
|
|
|
}
|
|
|
|
|
2018-06-13 13:44:04 +00:00
|
|
|
void GLGizmoScale::on_render(const BoundingBoxf3& box) const
|
|
|
|
{
|
|
|
|
::glDisable(GL_DEPTH_TEST);
|
|
|
|
|
2018-08-17 13:53:43 +00:00
|
|
|
coordf_t min_x = box.min(0) - (coordf_t)Offset;
|
|
|
|
coordf_t max_x = box.max(0) + (coordf_t)Offset;
|
|
|
|
coordf_t min_y = box.min(1) - (coordf_t)Offset;
|
|
|
|
coordf_t max_y = box.max(1) + (coordf_t)Offset;
|
2018-06-13 13:44:04 +00:00
|
|
|
|
2018-08-17 13:53:43 +00:00
|
|
|
m_grabbers[0].center(0) = min_x;
|
|
|
|
m_grabbers[0].center(1) = min_y;
|
|
|
|
m_grabbers[1].center(0) = max_x;
|
|
|
|
m_grabbers[1].center(1) = min_y;
|
|
|
|
m_grabbers[2].center(0) = max_x;
|
|
|
|
m_grabbers[2].center(1) = max_y;
|
|
|
|
m_grabbers[3].center(0) = min_x;
|
|
|
|
m_grabbers[3].center(1) = max_y;
|
2018-06-15 12:10:28 +00:00
|
|
|
|
2018-06-13 13:44:04 +00:00
|
|
|
::glLineWidth(2.0f);
|
2018-06-14 08:00:59 +00:00
|
|
|
::glColor3fv(BaseColor);
|
2018-06-13 13:44:04 +00:00
|
|
|
// draw outline
|
2018-06-14 08:00:59 +00:00
|
|
|
::glBegin(GL_LINE_LOOP);
|
2018-06-15 12:10:28 +00:00
|
|
|
for (unsigned int i = 0; i < 4; ++i)
|
|
|
|
{
|
2018-08-17 13:53:43 +00:00
|
|
|
::glVertex3f((GLfloat)m_grabbers[i].center(0), (GLfloat)m_grabbers[i].center(1), 0.0f);
|
2018-06-15 12:10:28 +00:00
|
|
|
}
|
2018-06-13 13:44:04 +00:00
|
|
|
::glEnd();
|
|
|
|
|
|
|
|
// draw grabbers
|
2018-06-15 12:10:28 +00:00
|
|
|
for (unsigned int i = 0; i < 4; ++i)
|
|
|
|
{
|
2018-06-18 13:07:17 +00:00
|
|
|
::memcpy((void*)m_grabbers[i].color, (const void*)HighlightColor, 3 * sizeof(float));
|
2018-06-15 12:10:28 +00:00
|
|
|
}
|
|
|
|
render_grabbers();
|
2018-06-14 13:32:26 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void GLGizmoScale::on_render_for_picking(const BoundingBoxf3& box) const
|
|
|
|
{
|
|
|
|
static const GLfloat INV_255 = 1.0f / 255.0f;
|
|
|
|
|
|
|
|
::glDisable(GL_DEPTH_TEST);
|
|
|
|
|
2018-06-15 12:10:28 +00:00
|
|
|
for (unsigned int i = 0; i < 4; ++i)
|
|
|
|
{
|
|
|
|
m_grabbers[i].color[0] = 1.0f;
|
|
|
|
m_grabbers[i].color[1] = 1.0f;
|
|
|
|
m_grabbers[i].color[2] = (254.0f - (float)i) * INV_255;
|
|
|
|
}
|
|
|
|
render_grabbers();
|
2018-06-13 13:44:04 +00:00
|
|
|
}
|
|
|
|
|
2018-06-13 07:12:16 +00:00
|
|
|
} // namespace GUI
|
|
|
|
} // namespace Slic3r
|