/src/libreoffice/include/basegfx/polygon/b2dpolygon.hxx
Line | Count | Source |
1 | | /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */ |
2 | | /* |
3 | | * This file is part of the LibreOffice project. |
4 | | * |
5 | | * This Source Code Form is subject to the terms of the Mozilla Public |
6 | | * License, v. 2.0. If a copy of the MPL was not distributed with this |
7 | | * file, You can obtain one at http://mozilla.org/MPL/2.0/. |
8 | | * |
9 | | * This file incorporates work covered by the following license notice: |
10 | | * |
11 | | * Licensed to the Apache Software Foundation (ASF) under one or more |
12 | | * contributor license agreements. See the NOTICE file distributed |
13 | | * with this work for additional information regarding copyright |
14 | | * ownership. The ASF licenses this file to you under the Apache |
15 | | * License, Version 2.0 (the "License"); you may not use this file |
16 | | * except in compliance with the License. You may obtain a copy of |
17 | | * the License at http://www.apache.org/licenses/LICENSE-2.0 . |
18 | | */ |
19 | | |
20 | | #pragma once |
21 | | |
22 | | #include <memory> |
23 | | #include <ostream> |
24 | | #include <vector> |
25 | | |
26 | | #include <sal/types.h> |
27 | | #include <o3tl/cow_wrapper.hxx> |
28 | | #include <basegfx/utils/systemdependentdata.hxx> |
29 | | #include <basegfx/basegfxdllapi.h> |
30 | | |
31 | | class ImplB2DPolygon; |
32 | | |
33 | | namespace basegfx |
34 | | { |
35 | | class B2DPoint; |
36 | | class B2DRange; |
37 | | class B2DHomMatrix; |
38 | | class B2DCubicBezier; |
39 | | class B2DVector; |
40 | | enum class B2VectorContinuity; |
41 | | } |
42 | | |
43 | | namespace basegfx |
44 | | { |
45 | | class SAL_WARN_UNUSED BASEGFX_DLLPUBLIC B2DPolygon |
46 | | { |
47 | | public: |
48 | | typedef o3tl::cow_wrapper< ImplB2DPolygon > ImplType; |
49 | | |
50 | | private: |
51 | | // internal data. |
52 | | ImplType mpPolygon; |
53 | | |
54 | | public: |
55 | | /// diverse constructors |
56 | | B2DPolygon(); |
57 | | B2DPolygon(const B2DPolygon& rPolygon); |
58 | | B2DPolygon(B2DPolygon&& rPolygon); |
59 | | B2DPolygon(const B2DPolygon& rPolygon, sal_uInt32 nIndex, sal_uInt32 nCount); |
60 | | B2DPolygon(std::initializer_list<basegfx::B2DPoint> rPoints); |
61 | | |
62 | | ~B2DPolygon(); |
63 | | |
64 | | /// assignment operator |
65 | | B2DPolygon& operator=(const B2DPolygon& rPolygon); |
66 | | B2DPolygon& operator=(B2DPolygon&& rPolygon); |
67 | | |
68 | | /// unshare this polygon with all internally shared instances |
69 | | void makeUnique(); |
70 | | |
71 | | /// compare operators |
72 | | bool operator==(const B2DPolygon& rPolygon) const; |
73 | | |
74 | | /// member count |
75 | | sal_uInt32 count() const; |
76 | | |
77 | | /// Coordinate interface |
78 | | basegfx::B2DPoint const & getB2DPoint(sal_uInt32 nIndex) const; |
79 | | void setB2DPoint(sal_uInt32 nIndex, const basegfx::B2DPoint& rValue); |
80 | | |
81 | | /// Coordinate insert/append |
82 | | void insert(sal_uInt32 nIndex, const basegfx::B2DPoint& rPoint, sal_uInt32 nCount = 1); |
83 | | void append(const basegfx::B2DPoint& rPoint, sal_uInt32 nCount); |
84 | | void append(const basegfx::B2DPoint& rPoint); |
85 | | void reserve(sal_uInt32 nCount); |
86 | | |
87 | | /// Basic ControlPoint interface |
88 | | basegfx::B2DPoint getPrevControlPoint(sal_uInt32 nIndex) const; |
89 | | basegfx::B2DPoint getNextControlPoint(sal_uInt32 nIndex) const; |
90 | | void setPrevControlPoint(sal_uInt32 nIndex, const basegfx::B2DPoint& rValue); |
91 | | void setNextControlPoint(sal_uInt32 nIndex, const basegfx::B2DPoint& rValue); |
92 | | void setControlPoints(sal_uInt32 nIndex, const basegfx::B2DPoint& rPrev, const basegfx::B2DPoint& rNext); |
93 | | |
94 | | /// ControlPoint resets |
95 | | void resetPrevControlPoint(sal_uInt32 nIndex); |
96 | | void resetNextControlPoint(sal_uInt32 nIndex); |
97 | | void resetControlPoints(); |
98 | | |
99 | | /// Bezier segment append with control points. The current last polygon point is implicitly taken as start point. |
100 | | void appendBezierSegment(const basegfx::B2DPoint& rNextControlPoint, |
101 | | const basegfx::B2DPoint& rPrevControlPoint, |
102 | | const basegfx::B2DPoint& rPoint); |
103 | | |
104 | | /// This is a shortcut to append a quadratic bezier segment. The current last polygon point is implicitly taken as start point. |
105 | | /// Note that the quadratic bezier control points will be converted to cubic bezier with 2 control points. |
106 | | void appendQuadraticBezierSegment(const basegfx::B2DPoint& rQuadControlPoint, |
107 | | const basegfx::B2DPoint& rPoint); |
108 | | |
109 | | /// ControlPoint checks |
110 | | bool areControlPointsUsed() const; |
111 | | bool isPrevControlPointUsed(sal_uInt32 nIndex) const; |
112 | | bool isNextControlPointUsed(sal_uInt32 nIndex) const; |
113 | | B2VectorContinuity getContinuityInPoint(sal_uInt32 nIndex) const; |
114 | | |
115 | | /** bezier segment access |
116 | | |
117 | | This method also works when it is no bezier segment at all and will fill |
118 | | the given B2DCubicBezier as needed. |
119 | | In any case, the given B2DCubicBezier will be filled, if necessary with |
120 | | the single start point (if no valid edge exists). |
121 | | |
122 | | @param nIndex |
123 | | Index of the addressed edge's start point |
124 | | |
125 | | @param rTarget |
126 | | The B2DCubicBezier to be filled. It's data WILL be changed. |
127 | | */ |
128 | | void getBezierSegment(sal_uInt32 nIndex, B2DCubicBezier& rTarget) const; |
129 | | |
130 | | /** Default adaptive subdivision access |
131 | | |
132 | | This method will return a default adaptive subdivision of the polygon. |
133 | | If the polygon does not contain any bezier curve segments, it will |
134 | | just return itself. |
135 | | |
136 | | The subdivision is created on first request and buffered, so when using |
137 | | this subdivision You have the guarantee for fast accesses for multiple |
138 | | usages. It is intended for tooling usage for tasks which would be hard |
139 | | to accomplish on bezier segments (e.g. isInEpsilonRange). |
140 | | |
141 | | The current default subdivision uses adaptiveSubdivideByCount with 9 |
142 | | subdivisions which gives 10 edges and 11 points per segment and is |
143 | | usually pretty usable for processing purposes. There is no parameter |
144 | | passing here ATM but it may be changed on demand. If needed, a TYPE |
145 | | and PARAMETER (both defaulted) may be added to allow for switching |
146 | | between the different kinds of subdivisioned and passing them one |
147 | | parameter. |
148 | | |
149 | | The lifetime of the buffered subdivision is based on polygon changes. |
150 | | When changing the polygon, it will be flushed. It is buffered at the |
151 | | refcounted implementation class, so it will survive copy by value and |
152 | | combinations in PolyPolygons. |
153 | | |
154 | | @return |
155 | | The default (and buffered) subdivision of this polygon. It may |
156 | | be this polygon itself when it has no bezier segments. It is guaranteed |
157 | | to have no more bezier segments |
158 | | */ |
159 | | B2DPolygon const & getDefaultAdaptiveSubdivision() const; |
160 | | |
161 | | /** Get the B2DRange (Rectangle dimensions) of this B2DPolygon |
162 | | |
163 | | A polygon may have up to three ranges: |
164 | | |
165 | | (a) the range of the polygon points |
166 | | (b) the range of the polygon points and control points |
167 | | (c) the outer range of the subdivided bezier curve |
168 | | |
169 | | Ranges (a) and (c) are produced by tools::getRange(); resp. this |
170 | | getB2DRange(). tools::getRangeWithControlPoints handles case (b). |
171 | | |
172 | | To get range (c) a simple solution would be to subdivide the polygon |
173 | | and use getRange() on it. Since subdivision is expensive and decreases |
174 | | the polygon quality, i added this new method. It will use a |
175 | | methodology suggested by HDU. First, it gets the range (a). |
176 | | Then it iterates over the bezier segments and for each it |
177 | | first tests if the outer range of the bezier segment is already |
178 | | contained in the result range. |
179 | | |
180 | | The subdivision itself uses getAllExtremumPositions() to only |
181 | | calculate extremum points and to expand the result accordingly. |
182 | | Thus it calculates maximal four extremum points on the bezier |
183 | | segment, no split is used at all. |
184 | | |
185 | | @return |
186 | | The outer range of the bezier curve/polygon |
187 | | */ |
188 | | B2DRange const & getB2DRange() const; |
189 | | |
190 | | /** append other 2D polygons |
191 | | |
192 | | The default (nIndex ==0 && nCount == 0) will append |
193 | | the whole rPoly |
194 | | |
195 | | @param rPoly |
196 | | The source polygon |
197 | | |
198 | | @param nIndex |
199 | | The index to the first point of rPoly to append |
200 | | |
201 | | @param nCount |
202 | | The number of points to append from rPoly, starting |
203 | | from nIndex. If zero, as much as possible is appended |
204 | | */ |
205 | | void append(const B2DPolygon& rPoly, sal_uInt32 nIndex = 0, sal_uInt32 nCount = 0); |
206 | | |
207 | | /// remove points |
208 | | void remove(sal_uInt32 nIndex, sal_uInt32 nCount = 1); |
209 | | |
210 | | /// clear all points |
211 | | void clear(); |
212 | | |
213 | | /// closed state interface |
214 | | bool isClosed() const; |
215 | | void setClosed(bool bNew); |
216 | | |
217 | | /// flip polygon direction |
218 | | void flip(); |
219 | | |
220 | | /// test if Polygon has double points |
221 | | bool hasDoublePoints() const; |
222 | | |
223 | | /// remove double points, at the begin/end and follow-ups, too |
224 | | void removeDoublePoints(); |
225 | | |
226 | | /// apply transformation given in matrix form |
227 | | void transform(const basegfx::B2DHomMatrix& rMatrix); |
228 | | |
229 | | /** Translate (ie. move). |
230 | | Much faster equivalent of transform(createTranslateB2DHomMatrix(xx)). */ |
231 | | void translate(double fTranslateX, double fTranslateY); |
232 | | |
233 | | // exclusive management op's for SystemDependentData at B2DPolygon |
234 | | template<class T> |
235 | | std::shared_ptr<T> getSystemDependentData(basegfx::SDD_Type aType) const |
236 | 532k | { |
237 | 532k | return std::static_pointer_cast<T>(getSystemDependantDataInternal(aType)); |
238 | 532k | } std::__1::shared_ptr<SystemDependentData_CairoPath> basegfx::B2DPolygon::getSystemDependentData<SystemDependentData_CairoPath>(basegfx::SDD_Type) const Line | Count | Source | 236 | 532k | { | 237 | 532k | return std::static_pointer_cast<T>(getSystemDependantDataInternal(aType)); | 238 | 532k | } |
cairopixelprocessor2d.cxx:std::__1::shared_ptr<(anonymous namespace)::SystemDependentData_CairoPathGeometry> basegfx::B2DPolygon::getSystemDependentData<(anonymous namespace)::SystemDependentData_CairoPathGeometry>(basegfx::SDD_Type) const Line | Count | Source | 236 | 104 | { | 237 | 104 | return std::static_pointer_cast<T>(getSystemDependantDataInternal(aType)); | 238 | 104 | } |
|
239 | | |
240 | | template<class T, class... Args> |
241 | | std::shared_ptr<T> addOrReplaceSystemDependentData(Args&&... args) const |
242 | 532k | { |
243 | 532k | std::shared_ptr<T> r = std::make_shared<T>(std::forward<Args>(args)...); |
244 | | |
245 | | // tdf#129845 only add to buffer if a relevant buffer time is estimated |
246 | 532k | if(r->calculateCombinedHoldCyclesInSeconds() > 0) |
247 | 0 | { |
248 | 0 | basegfx::SystemDependentData_SharedPtr r2(r); |
249 | 0 | addOrReplaceSystemDependentDataInternal(r2); |
250 | 0 | } |
251 | | |
252 | 532k | return r; |
253 | 532k | } std::__1::shared_ptr<SystemDependentData_CairoPath> basegfx::B2DPolygon::addOrReplaceSystemDependentData<SystemDependentData_CairoPath, unsigned long&, _cairo*&, bool const&, bool&, std::__1::vector<double, std::__1::allocator<double> > const*&>(unsigned long&, _cairo*&, bool const&, bool&, std::__1::vector<double, std::__1::allocator<double> > const*&) const Line | Count | Source | 242 | 532k | { | 243 | 532k | std::shared_ptr<T> r = std::make_shared<T>(std::forward<Args>(args)...); | 244 | | | 245 | | // tdf#129845 only add to buffer if a relevant buffer time is estimated | 246 | 532k | if(r->calculateCombinedHoldCyclesInSeconds() > 0) | 247 | 0 | { | 248 | 0 | basegfx::SystemDependentData_SharedPtr r2(r); | 249 | 0 | addOrReplaceSystemDependentDataInternal(r2); | 250 | 0 | } | 251 | | | 252 | 532k | return r; | 253 | 532k | } |
Unexecuted instantiation: cairopixelprocessor2d.cxx:std::__1::shared_ptr<(anonymous namespace)::SystemDependentData_CairoPathGeometry> basegfx::B2DPolygon::addOrReplaceSystemDependentData<(anonymous namespace)::SystemDependentData_CairoPathGeometry, std::__1::shared_ptr<(anonymous namespace)::CairoPathHelper>&>(std::__1::shared_ptr<(anonymous namespace)::CairoPathHelper>&) const |
254 | | |
255 | | private: |
256 | | void addOrReplaceSystemDependentDataInternal(SystemDependentData_SharedPtr& rData) const; |
257 | | SystemDependentData_SharedPtr getSystemDependantDataInternal(basegfx::SDD_Type aType) const; |
258 | | const basegfx::B2DVector& getPrevControlVector(sal_uInt32 nIndex) const; |
259 | | const basegfx::B2DVector& getNextControlVector(sal_uInt32 nIndex) const; |
260 | | }; |
261 | | |
262 | | // typedef for a vector of B2DPolygons |
263 | | typedef ::std::vector< B2DPolygon > B2DPolygonVector; |
264 | | |
265 | | template< typename charT, typename traits > |
266 | | inline std::basic_ostream<charT, traits> & operator <<( |
267 | | std::basic_ostream<charT, traits> & stream, const B2DPolygon& poly ) |
268 | 0 | { |
269 | 0 | stream << "<" << poly.count() << ":"; |
270 | 0 | for (sal_uInt32 i = 0; i < poly.count(); i++) |
271 | 0 | { |
272 | 0 | if (i > 0) |
273 | 0 | stream << "--"; |
274 | 0 | stream << poly.getB2DPoint(i); |
275 | 0 | } |
276 | 0 | stream << ">"; |
277 | |
|
278 | 0 | return stream; |
279 | 0 | } |
280 | | |
281 | | } // end of namespace basegfx |
282 | | |
283 | | /* vim:set shiftwidth=4 softtabstop=4 expandtab: */ |