* Rework UI jobs to make them more understandable and flexible. * Update Orca specific jobs * Fix progress issue * Fix dark mode and window radius * Update cereal version from 1.2.2 to 1.3.0 (cherry picked from commit prusa3d/PrusaSlicer@057232a275) * Initial port of Emboss gizmo * Bump up CGAL version to 5.4 (cherry picked from commit prusa3d/PrusaSlicer@1bf9dee3e7) * Fix text rotation * Fix test dragging * Add text gizmo to right click menu * Initial port of SVG gizmo * Fix text rotation * Fix Linux build * Fix "from surface" * Fix -90 rotation * Fix icon path * Fix loading font with non-ascii name * Fix storing non-utf8 font descriptor in 3mf file * Fix filtering with non-utf8 characters * Emboss: Use Orca style input dialog * Fix build on macOS * Fix tooltip color in light mode * InputText: fixed incorrect padding when FrameBorder > 0. (ocornut/imgui#4794, ocornut/imgui#3781) InputTextMultiline: fixed vertical tracking with large values of FramePadding.y. (ocornut/imgui#3781, ocornut/imgui#4794) (cherry picked from commit ocornut/imgui@072caa4a90) (cherry picked from commit ocornut/imgui@bdd2a94315) * SVG: Use Orca style input dialog * Fix job progress update * Fix crash when select editing text in preview screen * Use Orca checkbox style * Fix issue that toolbar icons are kept regenerated * Emboss: Fix text & icon alignment * SVG: Fix text & icon alignment * Emboss: fix toolbar icon mouse hover state * Add a simple subtle outline effect by drawing back faces using wireframe mode * Disable selection outlines * Show outline in white if the model color is too dark * Make the outline algorithm more reliable * Enable cull face, which fix render on Linux * Fix `disable_cullface` * Post merge fix * Optimize selection rendering * Fix scale gizmo * Emboss: Fix text rotation if base object is scaled * Fix volume synchronize * Fix emboss rotation * Emboss: Fix advance toggle * Fix text position after reopened the project * Make font style preview darker * Make font style preview selector height shorter --------- Co-authored-by: tamasmeszaros <meszaros.q@gmail.com> Co-authored-by: ocornut <omarcornut@gmail.com> Co-authored-by: SoftFever <softfeverever@gmail.com>
124 lines
3.9 KiB
C++
124 lines
3.9 KiB
C++
///|/ Copyright (c) Prusa Research 2020 - 2022 Tomáš Mészáros @tamasmeszaros, Vojtěch Bubník @bubnikv
|
|
///|/ Copyright (c) 2022 ole00 @ole00
|
|
///|/
|
|
///|/ PrusaSlicer is released under the terms of the AGPLv3 or higher
|
|
///|/
|
|
#ifndef SLA_RASTERBASE_HPP
|
|
#define SLA_RASTERBASE_HPP
|
|
|
|
#include <ostream>
|
|
#include <memory>
|
|
#include <vector>
|
|
#include <array>
|
|
#include <utility>
|
|
#include <cstdint>
|
|
|
|
#include <libslic3r/ExPolygon.hpp>
|
|
|
|
namespace Slic3r {
|
|
|
|
namespace sla {
|
|
|
|
// Raw byte buffer paired with its size. Suitable for compressed image data.
|
|
class EncodedRaster {
|
|
protected:
|
|
std::vector<uint8_t> m_buffer;
|
|
std::string m_ext;
|
|
public:
|
|
EncodedRaster() = default;
|
|
explicit EncodedRaster(std::vector<uint8_t> &&buf, std::string ext)
|
|
: m_buffer(std::move(buf)), m_ext(std::move(ext))
|
|
{}
|
|
|
|
size_t size() const { return m_buffer.size(); }
|
|
const void * data() const { return m_buffer.data(); }
|
|
const char * extension() const { return m_ext.c_str(); }
|
|
};
|
|
|
|
/// Type that represents a resolution in pixels.
|
|
struct Resolution {
|
|
size_t width_px = 0;
|
|
size_t height_px = 0;
|
|
|
|
Resolution() = default;
|
|
Resolution(size_t w, size_t h) : width_px(w), height_px(h) {}
|
|
size_t pixels() const { return width_px * height_px; }
|
|
};
|
|
|
|
/// Types that represents the dimension of a pixel in millimeters.
|
|
struct PixelDim {
|
|
double w_mm = 1.;
|
|
double h_mm = 1.;
|
|
|
|
PixelDim() = default;
|
|
PixelDim(double px_width_mm, double px_height_mm)
|
|
: w_mm(px_width_mm), h_mm(px_height_mm)
|
|
{}
|
|
};
|
|
|
|
using RasterEncoder =
|
|
std::function<EncodedRaster(const void *ptr, size_t w, size_t h, size_t num_components)>;
|
|
|
|
class RasterBase {
|
|
public:
|
|
|
|
enum Orientation { roLandscape, roPortrait };
|
|
|
|
using TMirroring = std::array<bool, 2>;
|
|
static const constexpr TMirroring NoMirror = {false, false};
|
|
static const constexpr TMirroring MirrorX = {true, false};
|
|
static const constexpr TMirroring MirrorY = {false, true};
|
|
static const constexpr TMirroring MirrorXY = {true, true};
|
|
|
|
struct Trafo {
|
|
bool mirror_x = false, mirror_y = false, flipXY = false;
|
|
coord_t center_x = 0, center_y = 0;
|
|
|
|
// Portrait orientation will make sure the drawed polygons are rotated
|
|
// by 90 degrees.
|
|
Trafo(Orientation o = roLandscape, const TMirroring &mirror = NoMirror)
|
|
// XY flipping implicitly does an X mirror
|
|
: mirror_x(o == roPortrait ? !mirror[0] : mirror[0])
|
|
, mirror_y(!mirror[1]) // Makes raster origin to be top left corner
|
|
, flipXY(o == roPortrait)
|
|
{}
|
|
|
|
TMirroring get_mirror() const { return { (roPortrait ? !mirror_x : mirror_x), mirror_y}; }
|
|
Orientation get_orientation() const { return flipXY ? roPortrait : roLandscape; }
|
|
Point get_center() const { return {center_x, center_y}; }
|
|
};
|
|
|
|
virtual ~RasterBase() = default;
|
|
|
|
/// Draw a polygon with holes.
|
|
virtual void draw(const ExPolygon& poly) = 0;
|
|
|
|
/// Get the resolution of the raster.
|
|
// virtual Resolution resolution() const = 0;
|
|
// virtual PixelDim pixel_dimensions() const = 0;
|
|
virtual Trafo trafo() const = 0;
|
|
|
|
virtual EncodedRaster encode(RasterEncoder encoder) const = 0;
|
|
};
|
|
|
|
struct PNGRasterEncoder {
|
|
EncodedRaster operator()(const void *ptr, size_t w, size_t h, size_t num_components);
|
|
};
|
|
|
|
struct PPMRasterEncoder {
|
|
EncodedRaster operator()(const void *ptr, size_t w, size_t h, size_t num_components);
|
|
};
|
|
|
|
std::ostream& operator<<(std::ostream &stream, const EncodedRaster &bytes);
|
|
|
|
// If gamma is zero, thresholding will be performed which disables AA.
|
|
std::unique_ptr<RasterBase> create_raster_grayscale_aa(
|
|
const Resolution &res,
|
|
const PixelDim &pxdim,
|
|
double gamma = 1.0,
|
|
const RasterBase::Trafo &tr = {});
|
|
|
|
}} // namespace Slic3r::sla
|
|
|
|
#endif // SLARASTERBASE_HPP
|