Verovio
Source code documentation
devicecontextbase.h
1 // Name: devicecontextbase.h
3 // Author: Laurent Pugin
4 // Created: 2015
5 // Copyright (c) Authors and others. All rights reserved.
7 
8 #ifndef __VRV_DC_BASE_H__
9 #define __VRV_DC_BASE_H__
10 
11 #include <algorithm>
12 #include <string>
13 
14 //----------------------------------------------------------------------------
15 
16 #include "attdef.h"
17 #include "vrvdef.h"
18 
19 namespace vrv {
20 
21 class Doc;
22 
23 #define COLOR_NONE -1
24 #define COLOR_WHITE 255 << 16 | 255 << 8 | 255
25 #define COLOR_BLACK 0
26 #define COLOR_RED 255 << 16
27 #define COLOR_BLUE 255
28 #define COLOR_GREEN 255 << 8
29 #define COLOR_CYAN 255 << 8 | 255
30 #define COLOR_LIGHT_GREY 127 << 16 | 127 << 8 | 127
31 
32 #undef max
33 #undef min
34 
35 enum PenStyle : int8_t { PEN_SOLID = 0, PEN_DOT, PEN_LONG_DASH, PEN_SHORT_DASH, PEN_DOT_DASH };
36 
37 enum LineCapStyle : int8_t { LINECAP_DEFAULT = 0, LINECAP_BUTT, LINECAP_ROUND, LINECAP_SQUARE };
38 
39 enum LineJoinStyle : int8_t {
40  LINEJOIN_DEFAULT = 0,
41  LINEJOIN_ARCS,
42  LINEJOIN_BEVEL,
43  LINEJOIN_MITER,
44  LINEJOIN_MITER_CLIP,
45  LINEJOIN_ROUND
46 };
47 
48 // ---------------------------------------------------------------------------
49 // Pen/Brush
50 // ---------------------------------------------------------------------------
51 
57 class Pen {
58 public:
59  Pen()
60  : m_width(0)
61  , m_style(PEN_SOLID)
62  , m_dashLength(0)
63  , m_gapLength(0)
64  , m_lineCap(LINECAP_DEFAULT)
65  , m_lineJoin(LINEJOIN_DEFAULT)
66  , m_opacity(-1.0)
67  , m_color(COLOR_NONE)
68  {
69  }
70  Pen(int width, PenStyle style, int dashLength, int gapLength, LineCapStyle lineCap, LineJoinStyle lineJoin,
71  float opacity, int color)
72  : m_width(width)
73  , m_style(style)
74  , m_dashLength(dashLength)
75  , m_gapLength(gapLength)
76  , m_lineCap(lineCap)
77  , m_lineJoin(lineJoin)
78  , m_opacity(opacity)
79  , m_color(color)
80  {
81  }
82 
83  int GetColor() const { return m_color; }
84  void SetColor(int color) { m_color = color; }
85  bool HasColor() const { return (m_color != COLOR_NONE); }
86  int GetWidth() const { return m_width; }
87  void SetWidth(int width) { m_width = width; }
88  int GetDashLength() const { return m_dashLength; }
89  void SetDashLength(int dashLength) { m_dashLength = dashLength; }
90  int GetGapLength() const { return m_gapLength; }
91  void SetGapLength(int gapLength) { m_gapLength = gapLength; }
92  LineCapStyle GetLineCap() const { return m_lineCap; }
93  void SetLineCap(LineCapStyle lineCap) { m_lineCap = lineCap; }
94  LineJoinStyle GetLineJoin() const { return m_lineJoin; }
95  void SetLineJoin(LineJoinStyle lineJoin) { m_lineJoin = lineJoin; }
96  PenStyle GetStyle() const { return m_style; }
97  void SetStyle(PenStyle style) { m_style = style; }
98  float GetOpacity() const { return m_opacity; }
99  void SetOpacity(float opacity) { m_opacity = opacity; }
100  bool HasOpacity() const { return (m_opacity != -1.0); }
101 
102 private:
103  int m_width;
104  PenStyle m_style;
105  int m_dashLength, m_gapLength;
106  LineCapStyle m_lineCap;
107  LineJoinStyle m_lineJoin;
108  float m_opacity;
109  int m_color;
110 };
111 
112 class Brush {
113 public:
114  Brush() : m_opacity(-1.0), m_color(COLOR_NONE) {}
115  Brush(float opacity, int color) : m_opacity(opacity), m_color(color) {}
116 
117  int GetColor() const { return m_color; }
118  void SetColor(int color) { m_color = color; }
119  bool HasColor() const { return (m_color != COLOR_NONE); }
120  float GetOpacity() const { return m_opacity; }
121  void SetOpacity(float opacity) { m_opacity = opacity; }
122  bool HasOpacity() const { return (m_opacity != -1.0); }
123 
124 private:
125  float m_opacity;
126  int m_color;
127 };
128 
129 // ---------------------------------------------------------------------------
130 // FontInfo
131 // ---------------------------------------------------------------------------
132 
137 class FontInfo {
138 public:
139  FontInfo()
140  {
141  m_pointSize = 0;
142  m_letterSpacing = 0.0;
143  m_family = 0; // was wxFONTFAMILY_DEFAULT;
144  m_style = FONTSTYLE_NONE;
145  m_weight = FONTWEIGHT_NONE;
146  m_underlined = false;
147  m_supSubScript = false;
148  m_faceName.clear();
149  m_encoding = 0; // was wxFONTENCODING_DEFAULT;
150  m_widthToHeightRatio = 1.0;
151  m_smuflFont = SMUFL_NONE;
152  }
153  virtual ~FontInfo() {}
154 
155  // accessors and modifiers for the font elements
156  int GetPointSize() const { return m_pointSize; }
157  int GetLetterSpacing() const { return m_letterSpacing; }
158  data_FONTSTYLE GetStyle() const { return m_style; }
159  data_FONTWEIGHT GetWeight() const { return m_weight; }
160  bool GetUnderlined() const { return m_underlined; }
161  bool GetSupSubScript() const { return m_supSubScript; }
162  std::string GetFaceName() const { return m_faceName; }
163  int GetFamily() const { return m_family; }
164  int GetEncoding() const { return m_encoding; }
165  float GetWidthToHeightRatio() const { return m_widthToHeightRatio; }
166  SmuflTextFont GetSmuflFont() const { return m_smuflFont; }
167 
168  void SetPointSize(int pointSize) { m_pointSize = pointSize; }
169  void SetLetterSpacing(double letterSpacing) { m_letterSpacing = letterSpacing; }
170  void SetStyle(data_FONTSTYLE style) { m_style = style; }
171  void SetWeight(data_FONTWEIGHT weight) { m_weight = weight; }
172  void SetUnderlined(bool underlined) { m_underlined = underlined; }
173  void SetSupSubScript(bool supSubScript) { m_supSubScript = supSubScript; }
174  void SetFaceName(const std::string &faceName) { m_faceName = faceName; }
175  void SetFamily(int family) { m_family = family; }
176  void SetEncoding(int encoding) { m_encoding = encoding; }
177  void SetWidthToHeightRatio(float ratio) { m_widthToHeightRatio = ratio; }
178  void SetSmuflFont(SmuflTextFont smuflFont) { m_smuflFont = smuflFont; }
179  void SetSmuflWithFallback(bool fallback) { m_smuflFont = (fallback) ? SMUFL_FONT_FALLBACK : SMUFL_FONT_SELECTED; }
180 
181 private:
182  int m_pointSize;
183  int m_letterSpacing;
184  int m_family;
185  data_FONTSTYLE m_style;
186  data_FONTWEIGHT m_weight;
187  bool m_underlined;
188  bool m_supSubScript;
189  std::string m_faceName;
190  int m_encoding;
191  float m_widthToHeightRatio;
192  SmuflTextFont m_smuflFont;
193 };
194 
195 // ---------------------------------------------------------------------------
196 // Point
197 // ---------------------------------------------------------------------------
198 
203 class Point {
204 public:
205  int x, y;
206 
207  Point() : x(0), y(0) {}
208  Point(int xx, int yy) : x(xx), y(yy) {}
209 
210  // no copy ctor or assignment operator - the defaults are ok
211 
212  // comparison
213  bool operator==(const Point &p) const { return x == p.x && y == p.y; }
214  bool operator!=(const Point &p) const { return !(*this == p); }
215 
216  // arithmetic operations (component wise)
217  Point operator+(const Point &p) const { return { x + p.x, y + p.y }; }
218  Point operator-(const Point &p) const { return { x - p.x, y - p.y }; }
219 
220  Point &operator+=(const Point &p)
221  {
222  x += p.x;
223  y += p.y;
224  return *this;
225  }
226  Point &operator-=(const Point &p)
227  {
228  x -= p.x;
229  y -= p.y;
230  return *this;
231  }
232 
233  Point operator-() const { return { -x, -y }; }
234 
235  static Point Min(const Point &p1, const Point &p2)
236  {
237  int x = std::min(p1.x, p2.x);
238  int y = std::min(p1.y, p2.y);
239  return { x, y };
240  }
241 
242  static Point Max(const Point &p1, const Point &p2)
243  {
244  int x = std::max(p1.x, p2.x);
245  int y = std::max(p1.y, p2.y);
246  return { x, y };
247  }
248 };
249 
250 // ---------------------------------------------------------------------------
251 // BezierCurve
252 // ---------------------------------------------------------------------------
253 
258 class BezierCurve {
259 public:
260  Point p1; // start point
261  Point c1, c2; // control points
262  Point p2; // end point
263 
264  // no copy ctor or assignment operator - the defaults are ok
265 
266  BezierCurve() {}
267  BezierCurve(const Point &p1, const Point &c1, const Point &c2, const Point &p2) : p1(p1), c1(c1), c2(c2), p2(p2) {}
268 
269  // Helper to rotate all points within bezier curve around \@rotationPoint by \@angle
270  void Rotate(float angle, const Point &rotationPoint);
271 
275  void SetControlOffset(int offset) { m_leftControlOffset = m_rightControlOffset = offset; }
277  void SetLeftControlOffset(int offset) { m_leftControlOffset = offset; }
278  void SetRightControlOffset(int offset) { m_rightControlOffset = offset; }
279  int GetLeftControlOffset() const { return m_leftControlOffset; }
280  int GetRightControlOffset() const { return m_rightControlOffset; }
282 
286  void SetControlHeight(int height) { m_leftControlHeight = m_rightControlHeight = height; }
288  void SetLeftControlHeight(int height) { m_leftControlHeight = height; }
289  void SetRightControlHeight(int height) { m_rightControlHeight = height; }
290  int GetLeftControlHeight() const { return m_leftControlHeight; }
291  int GetRightControlHeight() const { return m_rightControlHeight; }
293 
297  void SetControlSides(bool leftAbove, bool rightAbove);
299  bool IsLeftControlAbove() const { return m_leftControlAbove; }
300  bool IsRightControlAbove() const { return m_rightControlAbove; }
302 
306  void CalcInitialControlPointParams();
308  void CalcInitialControlPointParams(const Doc *doc, float angle, int staffSize);
310 
316  void UpdateControlPoints();
318 
323  std::pair<double, double> EstimateCurveParamForControlPoints() const;
324 
325 private:
326  // Control point X-axis offset for both start/end points
327  int m_leftControlOffset = 0;
328  int m_rightControlOffset = 0;
329  int m_leftControlHeight = 0;
330  int m_rightControlHeight = 0;
331  bool m_leftControlAbove = true;
332  bool m_rightControlAbove = true;
333 
334  // no copy ctor or assignment operator - the defaults are ok
335 };
336 
337 // ---------------------------------------------------------------------------
338 // TextExtend
339 // ---------------------------------------------------------------------------
340 
345 class TextExtend {
346 public:
347  int m_width, m_height, m_leftBearing, m_ascent, m_descent, m_advX;
348 
349  TextExtend() : m_width(0), m_height(0), m_leftBearing(0), m_ascent(0), m_descent(0), m_advX(0) {}
350 
351  // no copy ctor or assignment operator - the defaults are ok
352 };
353 
354 } // namespace vrv
355 
356 #endif // __AX_DC_BASE_H__
vrv::BezierCurve::UpdateControlPointParams
void UpdateControlPointParams()
Calculate control point offset and height from points or vice versa.
vrv::Doc
This class is a hold the data and corresponds to the model of a MVC design pattern.
Definition: doc.h:41
vrv::Pen
These classes are used for storing drawing style parameters during SVG and bounding box engraving.
Definition: devicecontextbase.h:57
vrv::FontInfo
This class is store font properties.
Definition: devicecontextbase.h:137
vrv::BezierCurve
Simple class for representing bezier cCurve.
Definition: devicecontextbase.h:258
vrv::Brush
Definition: devicecontextbase.h:112
vrv::BezierCurve::EstimateCurveParamForControlPoints
std::pair< double, double > EstimateCurveParamForControlPoints() const
Estimate the curve parameter corresponding to the control points Based on the polyline P1-C1-C2-P2.
vrv::Point
Simple class for representing points.
Definition: devicecontextbase.h:203
vrv::TextExtend
Simple class for representing text extends.
Definition: devicecontextbase.h:345