-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsvg.h
314 lines (245 loc) · 8.37 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
#pragma once
#include <cstdint>
#include <iostream>
#include <memory>
#include <string>
#include <vector>
#include <string_view>
#include <optional>
#include <variant>
#include <iomanip>
namespace svg {
struct Rgb {
Rgb() = default;
Rgb(uint8_t red, uint8_t green, uint8_t blue) : red(red), green(green), blue(blue) {
}
uint8_t red = 0;
uint8_t green = 0;
uint8_t blue = 0;
};
struct Rgba {
Rgba() = default;
Rgba(uint8_t red, uint8_t green, uint8_t blue, double opacity) : red(red), green(green), blue(blue),
opacity(opacity) {
}
uint8_t red = 0;
uint8_t green = 0;
uint8_t blue = 0;
double opacity = 1.0;
};
std::ostream& operator<<(std::ostream& out, Rgb color);
std::ostream& operator<<(std::ostream& out, Rgba color);
using Color = std::variant<std::monostate, std::string, Rgb, Rgba>;
// Объявив в заголовочном файле константу со спецификатором inline,
// мы сделаем так, что она будет одной на все единицы трансляции,
// которые подключают этот заголовок.
// В противном случае каждая единица трансляции будет использовать свою копию этой константы
inline const Color NoneColor{"none"};
struct ColorDataPrinter {
std::ostream& out;
void operator()(std::monostate) const {
using namespace std::literals;
out << "none"sv;
}
void operator()(const std::string& color) const {
out << color;
}
void operator()(Rgb color) const {
out << color;
}
void operator()(Rgba color) const {
out << color;
}
};
std::ostream& operator<<(std::ostream& out, Color color);
enum class StrokeLineCap {
BUTT,
ROUND,
SQUARE,
};
enum class StrokeLineJoin {
ARCS,
BEVEL,
MITER,
MITER_CLIP,
ROUND,
};
std::ostream& operator<<(std::ostream& out, StrokeLineCap line_cap);
std::ostream& operator<<(std::ostream& out, StrokeLineJoin line_join);
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_ = width;
return AsOwner();
}
Owner& SetStrokeLineCap(StrokeLineCap line_cap) {
stroke_line_cap_ = line_cap;
return AsOwner();
}
Owner& SetStrokeLineJoin(StrokeLineJoin line_join) {
stroke_line_join_ = 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 (stroke_line_cap_) {
out << "stroke-linecap=\""sv << *stroke_line_cap_ << "\" "sv;
}
if (stroke_line_join_) {
out << "stroke-linejoin=\""sv << *stroke_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> stroke_line_cap_;
std::optional<StrokeLineJoin> stroke_line_join_;
};
struct Point {
Point() = default;
Point(double x, double y)
: x(x), y(y) {
}
double x = 0;
double y = 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;
};
class ObjectContainer {
public:
template<class T>
void Add(T obj);
virtual void AddPtr(std::unique_ptr<Object>&&) = 0;
virtual ~ObjectContainer() = default;
};
template<class T>
void ObjectContainer::Add(T obj) {
AddPtr(std::make_unique<T>(std::move(obj)));
}
class Drawable {
public:
virtual void Draw(ObjectContainer& container) const = 0;
virtual ~Drawable() = default;
};
/*
* Класс 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:
void RenderObject(const RenderContext& context) const override;
std::vector<Point> points_;
};
/*
* Класс 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(std::string font_family);
// Задаёт толщину шрифта (атрибут font-weight)
Text& SetFontWeight(std::string font_weight);
// Задаёт текстовое содержимое объекта (отображается внутри тега text)
Text& SetData(std::string data);
private:
void RenderObject(const RenderContext& context) const override;
Point pos_;
Point offset_;
uint32_t font_size_ = 1;
std::string font_family_;
std::string font_weight_;
std::string data_;
};
class Document final : public ObjectContainer {
public:
Document() = default;
// Добавляет в svg-документ объект-наследник svg::Object
void AddPtr(std::unique_ptr<Object>&& obj) override;
// Выводит в ostream svg-представление документа
void Render(std::ostream& out) const;
private:
std::vector<std::unique_ptr<Object>> doc_data_;
};
} // namespace svg