2019-03-06 14:46:19 +00:00
|
|
|
#ifndef slic3r_Camera_hpp_
|
|
|
|
#define slic3r_Camera_hpp_
|
|
|
|
|
|
|
|
#include "libslic3r/BoundingBox.hpp"
|
2019-04-01 08:28:04 +00:00
|
|
|
#include <array>
|
2019-03-06 14:46:19 +00:00
|
|
|
|
|
|
|
namespace Slic3r {
|
|
|
|
namespace GUI {
|
|
|
|
|
|
|
|
struct Camera
|
|
|
|
{
|
2019-06-19 11:01:18 +00:00
|
|
|
static const double DefaultDistance;
|
2019-06-14 08:38:09 +00:00
|
|
|
static double FrustrumMinZSize;
|
|
|
|
static double FrustrumZMargin;
|
2019-06-24 07:38:46 +00:00
|
|
|
static double FovMinDeg;
|
|
|
|
static double FovMaxDeg;
|
2019-06-13 07:12:44 +00:00
|
|
|
|
2019-03-06 14:46:19 +00:00
|
|
|
enum EType : unsigned char
|
|
|
|
{
|
|
|
|
Unknown,
|
|
|
|
Ortho,
|
2019-06-20 08:02:52 +00:00
|
|
|
Perspective,
|
2019-03-06 14:46:19 +00:00
|
|
|
Num_types
|
|
|
|
};
|
|
|
|
|
|
|
|
float phi;
|
|
|
|
bool requires_zoom_to_bed;
|
2019-04-30 13:09:25 +00:00
|
|
|
bool inverted_phi;
|
2019-03-06 14:46:19 +00:00
|
|
|
|
|
|
|
private:
|
2019-06-19 11:01:18 +00:00
|
|
|
EType m_type;
|
2019-03-06 14:46:19 +00:00
|
|
|
Vec3d m_target;
|
|
|
|
float m_theta;
|
2019-06-19 12:18:51 +00:00
|
|
|
double m_zoom;
|
2019-06-19 11:01:18 +00:00
|
|
|
// Distance between camera position and camera target measured along the camera Z axis
|
2019-06-24 07:38:46 +00:00
|
|
|
mutable double m_distance;
|
|
|
|
mutable double m_gui_scale;
|
2019-03-06 14:46:19 +00:00
|
|
|
|
2019-04-01 08:00:10 +00:00
|
|
|
mutable std::array<int, 4> m_viewport;
|
|
|
|
mutable Transform3d m_view_matrix;
|
|
|
|
mutable Transform3d m_projection_matrix;
|
2019-06-14 08:38:09 +00:00
|
|
|
mutable std::pair<double, double> m_frustrum_zs;
|
2019-04-01 08:00:10 +00:00
|
|
|
|
2019-03-06 14:46:19 +00:00
|
|
|
BoundingBoxf3 m_scene_box;
|
|
|
|
|
|
|
|
public:
|
|
|
|
Camera();
|
|
|
|
|
2019-06-19 11:01:18 +00:00
|
|
|
EType get_type() const { return m_type; }
|
2019-03-06 14:46:19 +00:00
|
|
|
std::string get_type_as_string() const;
|
2019-06-20 08:02:52 +00:00
|
|
|
void set_type(EType type);
|
|
|
|
void set_type(const std::string& type);
|
2019-06-19 11:01:18 +00:00
|
|
|
void select_next_type();
|
2019-03-06 14:46:19 +00:00
|
|
|
|
|
|
|
const Vec3d& get_target() const { return m_target; }
|
|
|
|
void set_target(const Vec3d& target);
|
|
|
|
|
2019-06-24 07:38:46 +00:00
|
|
|
double get_distance() const { return m_distance; }
|
|
|
|
double get_gui_scale() const { return m_gui_scale; }
|
|
|
|
|
2019-03-06 14:46:19 +00:00
|
|
|
float get_theta() const { return m_theta; }
|
|
|
|
void set_theta(float theta, bool apply_limit);
|
|
|
|
|
2019-06-19 12:18:51 +00:00
|
|
|
double get_zoom() const { return m_zoom; }
|
|
|
|
void set_zoom(double zoom, const BoundingBoxf3& max_box, int canvas_w, int canvas_h);
|
2019-06-20 08:02:52 +00:00
|
|
|
void set_zoom(double zoom) { m_zoom = zoom; }
|
2019-06-19 12:18:51 +00:00
|
|
|
|
2019-03-06 14:46:19 +00:00
|
|
|
const BoundingBoxf3& get_scene_box() const { return m_scene_box; }
|
2019-06-19 12:18:51 +00:00
|
|
|
void set_scene_box(const BoundingBoxf3& box) { m_scene_box = box; }
|
2019-04-01 08:00:10 +00:00
|
|
|
|
|
|
|
bool select_view(const std::string& direction);
|
|
|
|
|
|
|
|
const std::array<int, 4>& get_viewport() const { return m_viewport; }
|
|
|
|
const Transform3d& get_view_matrix() const { return m_view_matrix; }
|
|
|
|
const Transform3d& get_projection_matrix() const { return m_projection_matrix; }
|
|
|
|
|
|
|
|
Vec3d get_dir_right() const { return m_view_matrix.matrix().block(0, 0, 3, 3).row(0); }
|
|
|
|
Vec3d get_dir_up() const { return m_view_matrix.matrix().block(0, 0, 3, 3).row(1); }
|
2019-06-13 06:38:49 +00:00
|
|
|
Vec3d get_dir_forward() const { return -m_view_matrix.matrix().block(0, 0, 3, 3).row(2); }
|
2019-04-01 08:00:10 +00:00
|
|
|
|
2019-06-13 06:47:38 +00:00
|
|
|
Vec3d get_position() const { return m_view_matrix.matrix().inverse().block(0, 3, 3, 1); }
|
2019-04-01 08:00:10 +00:00
|
|
|
|
2019-06-14 08:38:09 +00:00
|
|
|
double get_near_z() const { return m_frustrum_zs.first; }
|
|
|
|
double get_far_z() const { return m_frustrum_zs.second; }
|
|
|
|
|
2019-06-24 07:38:46 +00:00
|
|
|
double get_fov() const;
|
|
|
|
|
2019-04-01 08:00:10 +00:00
|
|
|
void apply_viewport(int x, int y, unsigned int w, unsigned int h) const;
|
|
|
|
void apply_view_matrix() const;
|
2019-05-16 13:54:11 +00:00
|
|
|
void apply_projection(const BoundingBoxf3& box) const;
|
|
|
|
|
2019-06-19 12:18:51 +00:00
|
|
|
void zoom_to_box(const BoundingBoxf3& box, int canvas_w, int canvas_h);
|
|
|
|
|
2019-05-20 07:39:57 +00:00
|
|
|
#if ENABLE_CAMERA_STATISTICS
|
|
|
|
void debug_render() const;
|
|
|
|
#endif // ENABLE_CAMERA_STATISTICS
|
|
|
|
|
2019-05-16 13:54:11 +00:00
|
|
|
private:
|
2019-06-14 08:38:09 +00:00
|
|
|
// returns tight values for nearZ and farZ plane around the given bounding box
|
|
|
|
// the camera MUST be outside of the bounding box in eye coordinate of the given box
|
|
|
|
std::pair<double, double> calc_tight_frustrum_zs_around(const BoundingBoxf3& box) const;
|
2019-06-19 12:18:51 +00:00
|
|
|
double calc_zoom_to_bounding_box_factor(const BoundingBoxf3& box, int canvas_w, int canvas_h) const;
|
2019-03-06 14:46:19 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
} // GUI
|
|
|
|
} // Slic3r
|
|
|
|
|
|
|
|
#endif // slic3r_Camera_hpp_
|
|
|
|
|