-
Notifications
You must be signed in to change notification settings - Fork 0
/
svg.h
418 lines (320 loc) · 9.46 KB
/
svg.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
#pragma once
#define _USE_MATH_DEFINES
#include <cstdint>
#include <iostream>
#include <memory>
#include <string>
#include <variant>
#include <vector>
#include <cmath>
#include <optional>
#include <iomanip>
namespace svg {
struct Rgb {
Rgb() = default;
Rgb(int red, int green, int blue)
: red(red), green(green), blue(blue) {
}
int red = 0;
int green = 0;
int blue = 0;
};
struct Rgba {
Rgba() = default;
Rgba(int red, int green, int blue, double opacity)
: red(red), green(green), blue(blue), opacity(opacity) {
}
int red = 0;
int green = 0;
int blue = 0;
double opacity = 1.0;
};
using Color = std::variant<std::monostate, Rgb, Rgba, std::string>;
inline const Color NoneColor{ "none" };
struct ColorPrinter {
void operator()(std::monostate) {}
void operator()(Rgb rgb) {
using namespace std::literals;
out << "rgb("sv;
out << std::to_string(rgb.red) << ","sv;
out << std::to_string(rgb.green) << ","sv;
out << std::to_string(rgb.blue) << ")"sv;
}
void operator()(Rgba rgba) {
using namespace std::literals;
out << "rgba("sv;
out << std::to_string(rgba.red) << ","sv;
out << std::to_string(rgba.green) << ","sv;
out << std::to_string(rgba.blue) << ","sv;
out << rgba.opacity << ")"sv;
}
void operator()(std::string text) {
out << text;
}
std::ostream& out;
};
enum class StrokeLineCap {
BUTT,
ROUND,
SQUARE,
};
enum class StrokeLineJoin {
ARCS,
BEVEL,
MITER,
MITER_CLIP,
ROUND,
};
inline std::ostream& operator<<(std::ostream& out, Color color) {
using namespace std::literals;
std::visit(ColorPrinter{ out }, color);
return out;
}
inline std::ostream& operator<<(std::ostream& out, StrokeLineCap line_cap_) {
using namespace std::literals;
switch (static_cast<int>(line_cap_)) {
case 0:
out << "butt"sv;
break;
case 1:
out << "round"sv;
break;
case 2:
out << "square"sv;
break;
}
return out;
}
inline std::ostream& operator<<(std::ostream& out, StrokeLineJoin line_join_) {
using namespace std::literals;
switch (static_cast<int>(line_join_)) {
case 0:
out << "arcs"sv;
break;
case 1:
out << "bevel"sv;
break;
case 2:
out << "miter"sv;
break;
case 3:
out << "miter-clip"sv;
break;
case 4:
out << "round"sv;
break;
}
return out;
}
struct Point {
Point() = default;
Point(double x, double y)
: x(x)
, y(y) {
}
double x = 0.0;
double y = 0.0;
};
/*
* Вспомогательная структура, хранящая контекст для вывода SVG-документа с отступами.
* Хранит ссылку на поток вывода, текущее значение и шаг отступа при выводе элемента
*/
struct RenderContext {
RenderContext(std::ostream& out)
: out(out) {
}
RenderContext(std::ostream& out, int indent_step, int indent = 0)
: out(out)
, indent_step(indent_step)
, indent(indent) {
}
RenderContext Indented() const {
return { out, indent_step, indent + indent_step };
}
void RenderIndent() const {
for (int i = 0; i < indent; ++i) {
out.put(' ');
}
}
std::ostream& out;
int indent_step = 0;
int indent = 0;
};
/*
* Абстрактный базовый класс Object служит для унифицированного хранения
* конкретных тегов SVG-документа
* Реализует паттерн "Шаблонный метод" для вывода содержимого тега
*/
class Object {
public:
void Render(const RenderContext& context) const;
virtual ~Object() = default;
private:
virtual void RenderObject(const RenderContext& context) const = 0;
protected:
Object() = default;
};
template <typename Owner>
class PathProps {
public:
Owner& SetFillColor(Color color) {
fill_color_ = std::move(color);
return AsOwner();
}
Owner& SetStrokeColor(Color color) {
stroke_color_ = std::move(color);
return AsOwner();
}
Owner& SetStrokeWidth(double width) {
stroke_width_ = std::move(width);
return AsOwner();
}
Owner& SetStrokeLineCap(StrokeLineCap line_cap) {
line_cap_ = std::move(line_cap);
return AsOwner();
}
Owner& SetStrokeLineJoin(StrokeLineJoin line_join) {
line_join_ = std::move(line_join);
return AsOwner();
}
protected:
~PathProps() = default;
void RenderAttrs(std::ostream& out) const {
using namespace std::literals;
if (fill_color_) {
out << " fill=\""sv << *fill_color_ << "\""sv;
}
if (stroke_color_) {
out << " stroke=\""sv << *stroke_color_ << "\""sv;
}
if (stroke_width_) {
out << " stroke-width=\""sv << *stroke_width_ << "\""sv;
}
if (line_cap_) {
out << " stroke-linecap=\""sv << *line_cap_ << "\""sv;
}
if (line_join_) {
out << " stroke-linejoin=\""sv << *line_join_ << "\""sv;
}
}
private:
Owner& AsOwner() {
// static_cast безопасно преобразует *this к Owner&,
// если класс Owner — наследник PathProps
return static_cast<Owner&>(*this);
}
std::optional<Color> fill_color_;
std::optional<Color> stroke_color_;
std::optional<double> stroke_width_;
std::optional<StrokeLineCap> line_cap_;
std::optional<StrokeLineJoin> line_join_;
};
/*
* Класс Circle моделирует элемент <circle> для отображения круга
* https://developer.mozilla.org/en-US/docs/Web/SVG/Element/circle
*/
class Circle final : public Object, public PathProps<Circle> {
public:
Circle& SetCenter(Point center);
Circle& SetRadius(double radius);
private:
void RenderObject(const RenderContext& context) const override;
Point center_;
double radius_ = 1.0;
};
/*
* Класс Polyline моделирует элемент <polyline> для отображения ломаных линий
* https://developer.mozilla.org/en-US/docs/Web/SVG/Element/polyline
*/
class Polyline final : public Object, public PathProps<Polyline> {
public:
// Добавляет очередную вершину к ломаной линии
Polyline& AddPoint(Point point);
private:
std::vector<Point> points_;
void RenderObject(const RenderContext& context) const override;
};
/*
* Класс Text моделирует элемент <text> для отображения текста
* https://developer.mozilla.org/en-US/docs/Web/SVG/Element/text
*/
class Text final : public Object, public PathProps<Text> {
public:
// Задаёт координаты опорной точки (атрибуты x и y)
Text& SetPosition(Point pos);
// Задаёт смещение относительно опорной точки (атрибуты dx, dy)
Text& SetOffset(Point offset);
// Задаёт размеры шрифта (атрибут font-size)
Text& SetFontSize(uint32_t size);
// Задаёт название шрифта (атрибут font-family)
Text& SetFontFamily(const std::string& font_family);
// Задаёт толщину шрифта (атрибут font-weight)
Text& SetFontWeight(const std::string& font_weight);
// Задаёт текстовое содержимое объекта (отображается внутри тега text)
Text& SetData(const std::string& data);
private:
Point pos_ = { 0, 0 };
Point offset_ = { 0, 0 };
uint32_t font_size_ = 1;
std::string font_family_;
std::string font_weight_;
std::string data_ = "";
void PrintText(const RenderContext& context) const;
void RenderObject(const RenderContext& context) const override;
};
class ObjectContainer {
public:
template <typename Obj>
void Add(Obj obj) {
items_.push_back(std::make_unique<Obj>(std::move(obj)));
}
virtual void AddPtr(std::unique_ptr<Object>&& obj) = 0;
protected:
std::vector<std::unique_ptr<Object>> items_;
~ObjectContainer() = default;
};
class Drawable {
public:
virtual void Draw(ObjectContainer& container) const = 0;
virtual ~Drawable() = default;
};
class Document : public ObjectContainer {
public:
// Метод Add добавляет в svg-документ любой объект-наследник svg::Object.
// Пример использования:
// Document doc;
// doc.Add(Circle().SetCenter({20, 30}).SetRadius(15));
Document() = default;
// Добавляет в svg-документ объект-наследник svg::Object
void AddPtr(std::unique_ptr<Object>&& obj) override;
// Выводит в ostream svg-представление документа
void Render(std::ostream& out) const;
void Clear();
};
} // namespace svg
namespace shapes {
class Triangle : public svg::Drawable {
public:
Triangle(svg::Point p1, svg::Point p2, svg::Point p3);
// Реализует метод Draw интерфейса svg::Drawable
void Draw(svg::ObjectContainer& container) const override;
private:
svg::Point p1_, p2_, p3_;
};
class Star : public svg::Drawable {
public:
Star(svg::Point center, double outer_rad, double inner_rad, int num_rays);
void Draw(svg::ObjectContainer& container) const override;
private:
svg::Polyline polyline_;
svg::Polyline CreateStar(svg::Point center, double outer_rad, double inner_rad, int num_rays);
};
class Snowman : public svg::Drawable {
public:
Snowman(svg::Point head_center, double head_radius);
void Draw(svg::ObjectContainer& container) const override;
private:
svg::Point head_center_;
double head_radius_;
};
} // namespace shapes