Line data Source code
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 : #include <svgio/svgreader/svgtextpathnode.hxx>
21 : #include <svgio/svgreader/svgstyleattributes.hxx>
22 : #include <svgio/svgreader/svgpathnode.hxx>
23 : #include <svgio/svgreader/svgdocument.hxx>
24 : #include <svgio/svgreader/svgtrefnode.hxx>
25 : #include <basegfx/polygon/b2dpolygon.hxx>
26 : #include <basegfx/polygon/b2dpolygontools.hxx>
27 : #include <drawinglayer/primitive2d/textbreakuphelper.hxx>
28 : #include <drawinglayer/primitive2d/groupprimitive2d.hxx>
29 : #include <basegfx/curve/b2dcubicbezier.hxx>
30 : #include <basegfx/curve/b2dbeziertools.hxx>
31 :
32 : namespace svgio
33 : {
34 : namespace svgreader
35 : {
36 : class pathTextBreakupHelper : public drawinglayer::primitive2d::TextBreakupHelper
37 : {
38 : private:
39 : const basegfx::B2DPolygon& mrPolygon;
40 : const double mfBasegfxPathLength;
41 : double mfPosition;
42 : const basegfx::B2DPoint& mrTextStart;
43 :
44 : const sal_uInt32 mnMaxIndex;
45 : sal_uInt32 mnIndex;
46 : basegfx::B2DCubicBezier maCurrentSegment;
47 : basegfx::B2DCubicBezierHelper* mpB2DCubicBezierHelper;
48 : double mfCurrentSegmentLength;
49 : double mfSegmentStartPosition;
50 :
51 : protected:
52 : /// allow user callback to allow changes to the new TextTransformation. Default
53 : /// does nothing.
54 : virtual bool allowChange(sal_uInt32 nCount, basegfx::B2DHomMatrix& rNewTransform, sal_uInt32 nIndex, sal_uInt32 nLength) SAL_OVERRIDE;
55 :
56 : void freeB2DCubicBezierHelper();
57 : basegfx::B2DCubicBezierHelper* getB2DCubicBezierHelper();
58 : void advanceToPosition(double fNewPosition);
59 :
60 : public:
61 : pathTextBreakupHelper(
62 : const drawinglayer::primitive2d::TextSimplePortionPrimitive2D& rSource,
63 : const basegfx::B2DPolygon& rPolygon,
64 : const double fBasegfxPathLength,
65 : double fPosition,
66 : const basegfx::B2DPoint& rTextStart);
67 : virtual ~pathTextBreakupHelper();
68 :
69 : // read access to evtl. advanced position
70 0 : double getPosition() const { return mfPosition; }
71 : };
72 :
73 0 : void pathTextBreakupHelper::freeB2DCubicBezierHelper()
74 : {
75 0 : if(mpB2DCubicBezierHelper)
76 : {
77 0 : delete mpB2DCubicBezierHelper;
78 0 : mpB2DCubicBezierHelper = 0;
79 : }
80 0 : }
81 :
82 0 : basegfx::B2DCubicBezierHelper* pathTextBreakupHelper::getB2DCubicBezierHelper()
83 : {
84 0 : if(!mpB2DCubicBezierHelper && maCurrentSegment.isBezier())
85 : {
86 0 : mpB2DCubicBezierHelper = new basegfx::B2DCubicBezierHelper(maCurrentSegment);
87 : }
88 :
89 0 : return mpB2DCubicBezierHelper;
90 : }
91 :
92 0 : void pathTextBreakupHelper::advanceToPosition(double fNewPosition)
93 : {
94 0 : while(mfSegmentStartPosition + mfCurrentSegmentLength < fNewPosition && mnIndex < mnMaxIndex)
95 : {
96 0 : mfSegmentStartPosition += mfCurrentSegmentLength;
97 0 : mnIndex++;
98 :
99 0 : if(mnIndex < mnMaxIndex)
100 : {
101 0 : freeB2DCubicBezierHelper();
102 0 : mrPolygon.getBezierSegment(mnIndex % mrPolygon.count(), maCurrentSegment);
103 0 : maCurrentSegment.testAndSolveTrivialBezier();
104 0 : mfCurrentSegmentLength = getB2DCubicBezierHelper()
105 0 : ? getB2DCubicBezierHelper()->getLength()
106 0 : : maCurrentSegment.getLength();
107 : }
108 : }
109 :
110 0 : mfPosition = fNewPosition;
111 0 : }
112 :
113 0 : pathTextBreakupHelper::pathTextBreakupHelper(
114 : const drawinglayer::primitive2d::TextSimplePortionPrimitive2D& rSource,
115 : const basegfx::B2DPolygon& rPolygon,
116 : const double fBasegfxPathLength,
117 : double fPosition,
118 : const basegfx::B2DPoint& rTextStart)
119 : : drawinglayer::primitive2d::TextBreakupHelper(rSource),
120 : mrPolygon(rPolygon),
121 : mfBasegfxPathLength(fBasegfxPathLength),
122 : mfPosition(0.0),
123 : mrTextStart(rTextStart),
124 0 : mnMaxIndex(rPolygon.isClosed() ? rPolygon.count() : rPolygon.count() - 1),
125 : mnIndex(0),
126 : maCurrentSegment(),
127 : mpB2DCubicBezierHelper(0),
128 : mfCurrentSegmentLength(0.0),
129 0 : mfSegmentStartPosition(0.0)
130 : {
131 0 : mrPolygon.getBezierSegment(mnIndex % mrPolygon.count(), maCurrentSegment);
132 0 : mfCurrentSegmentLength = maCurrentSegment.getLength();
133 :
134 0 : advanceToPosition(fPosition);
135 0 : }
136 :
137 0 : pathTextBreakupHelper::~pathTextBreakupHelper()
138 : {
139 0 : freeB2DCubicBezierHelper();
140 0 : }
141 :
142 0 : bool pathTextBreakupHelper::allowChange(sal_uInt32 /*nCount*/, basegfx::B2DHomMatrix& rNewTransform, sal_uInt32 nIndex, sal_uInt32 nLength)
143 : {
144 0 : bool bRetval(false);
145 :
146 0 : if(mfPosition < mfBasegfxPathLength && nLength && mnIndex < mnMaxIndex)
147 : {
148 : const double fSnippetWidth(
149 0 : getTextLayouter().getTextWidth(
150 0 : getSource().getText(),
151 : nIndex,
152 0 : nLength));
153 :
154 0 : if(basegfx::fTools::more(fSnippetWidth, 0.0))
155 : {
156 0 : const OUString aText(getSource().getText());
157 0 : const OUString aTrimmedChars(aText.copy(nIndex, nLength).trim());
158 0 : const double fEndPos(mfPosition + fSnippetWidth);
159 :
160 0 : if(!aTrimmedChars.isEmpty() && (mfPosition < mfBasegfxPathLength || fEndPos > 0.0))
161 : {
162 0 : const double fHalfSnippetWidth(fSnippetWidth * 0.5);
163 :
164 0 : advanceToPosition(mfPosition + fHalfSnippetWidth);
165 :
166 : // create representation for this snippet
167 0 : bRetval = true;
168 :
169 : // get target position and tangent in that point
170 0 : basegfx::B2DPoint aPosition(0.0, 0.0);
171 0 : basegfx::B2DVector aTangent(0.0, 1.0);
172 :
173 0 : if(mfPosition < 0.0)
174 : {
175 : // snippet center is left of first segment, but right edge is on it (SVG allows that)
176 0 : aTangent = maCurrentSegment.getTangent(0.0);
177 0 : aTangent.normalize();
178 0 : aPosition = maCurrentSegment.getStartPoint() + (aTangent * (mfPosition - mfSegmentStartPosition));
179 : }
180 0 : else if(mfPosition > mfBasegfxPathLength)
181 : {
182 : // snippet center is right of last segment, but left edge is on it (SVG allows that)
183 0 : aTangent = maCurrentSegment.getTangent(1.0);
184 0 : aTangent.normalize();
185 0 : aPosition = maCurrentSegment.getEndPoint() + (aTangent * (mfPosition - mfSegmentStartPosition));
186 : }
187 : else
188 : {
189 : // snippet center inside segment, interpolate
190 0 : double fBezierDistance(mfPosition - mfSegmentStartPosition);
191 :
192 0 : if(getB2DCubicBezierHelper())
193 : {
194 : // use B2DCubicBezierHelper to bridge the non-linear gap between
195 : // length and bezier distances (if it's a bezier segment)
196 0 : fBezierDistance = getB2DCubicBezierHelper()->distanceToRelative(fBezierDistance);
197 : }
198 : else
199 : {
200 : // linear relationship, make relative to segment length
201 0 : fBezierDistance = fBezierDistance / mfCurrentSegmentLength;
202 : }
203 :
204 0 : aPosition = maCurrentSegment.interpolatePoint(fBezierDistance);
205 0 : aTangent = maCurrentSegment.getTangent(fBezierDistance);
206 0 : aTangent.normalize();
207 : }
208 :
209 : // detect evtl. hor/ver translations (depends on text direction)
210 0 : const basegfx::B2DPoint aBasePoint(rNewTransform * basegfx::B2DPoint(0.0, 0.0));
211 0 : const basegfx::B2DVector aOffset(aBasePoint - mrTextStart);
212 :
213 0 : if(!basegfx::fTools::equalZero(aOffset.getY()))
214 : {
215 : // ...and apply
216 0 : aPosition.setY(aPosition.getY() + aOffset.getY());
217 : }
218 :
219 : // move target position from snippet center to left text start
220 0 : aPosition -= fHalfSnippetWidth * aTangent;
221 :
222 : // remove current translation
223 0 : rNewTransform.translate(-aBasePoint.getX(), -aBasePoint.getY());
224 :
225 : // rotate due to tangent
226 0 : rNewTransform.rotate(atan2(aTangent.getY(), aTangent.getX()));
227 :
228 : // add new translation
229 0 : rNewTransform.translate(aPosition.getX(), aPosition.getY());
230 : }
231 :
232 : // advance to end
233 0 : advanceToPosition(fEndPos);
234 : }
235 : }
236 :
237 0 : return bRetval;
238 : }
239 :
240 : } // end of namespace svgreader
241 : } // end of namespace svgio
242 :
243 :
244 :
245 : namespace svgio
246 : {
247 : namespace svgreader
248 : {
249 0 : SvgTextPathNode::SvgTextPathNode(
250 : SvgDocument& rDocument,
251 : SvgNode* pParent)
252 : : SvgNode(SVGTokenTextPath, rDocument, pParent),
253 : maSvgStyleAttributes(*this),
254 : maXLink(),
255 : maStartOffset(),
256 : mbMethod(true),
257 0 : mbSpacing(false)
258 : {
259 0 : }
260 :
261 0 : SvgTextPathNode::~SvgTextPathNode()
262 : {
263 0 : }
264 :
265 0 : const SvgStyleAttributes* SvgTextPathNode::getSvgStyleAttributes() const
266 : {
267 0 : return &maSvgStyleAttributes;
268 : }
269 :
270 0 : void SvgTextPathNode::parseAttribute(const OUString& rTokenName, SVGToken aSVGToken, const OUString& aContent)
271 : {
272 : // call parent
273 0 : SvgNode::parseAttribute(rTokenName, aSVGToken, aContent);
274 :
275 : // read style attributes
276 0 : maSvgStyleAttributes.parseStyleAttribute(rTokenName, aSVGToken, aContent, false);
277 :
278 : // parse own
279 0 : switch(aSVGToken)
280 : {
281 : case SVGTokenStyle:
282 : {
283 0 : readLocalCssStyle(aContent);
284 0 : break;
285 : }
286 : case SVGTokenStartOffset:
287 : {
288 0 : SvgNumber aNum;
289 :
290 0 : if(readSingleNumber(aContent, aNum))
291 : {
292 0 : if(aNum.isPositive())
293 : {
294 0 : setStartOffset(aNum);
295 : }
296 : }
297 0 : break;
298 : }
299 : case SVGTokenMethod:
300 : {
301 0 : if(!aContent.isEmpty())
302 : {
303 0 : if(aContent.startsWith("align"))
304 : {
305 0 : setMethod(true);
306 : }
307 0 : else if(aContent.startsWith("stretch"))
308 : {
309 0 : setMethod(false);
310 : }
311 : }
312 0 : break;
313 : }
314 : case SVGTokenSpacing:
315 : {
316 0 : if(!aContent.isEmpty())
317 : {
318 0 : if(aContent.startsWith("auto"))
319 : {
320 0 : setSpacing(true);
321 : }
322 0 : else if(aContent.startsWith("exact"))
323 : {
324 0 : setSpacing(false);
325 : }
326 : }
327 0 : break;
328 : }
329 : case SVGTokenXlinkHref:
330 : {
331 0 : const sal_Int32 nLen(aContent.getLength());
332 :
333 0 : if(nLen && '#' == aContent[0])
334 : {
335 0 : maXLink = aContent.copy(1);
336 : }
337 0 : break;
338 : }
339 : default:
340 : {
341 0 : break;
342 : }
343 : }
344 0 : }
345 :
346 0 : bool SvgTextPathNode::isValid() const
347 : {
348 0 : const SvgPathNode* pSvgPathNode = dynamic_cast< const SvgPathNode* >(getDocument().findSvgNodeById(maXLink));
349 :
350 0 : if(!pSvgPathNode)
351 : {
352 0 : return false;
353 : }
354 :
355 0 : const basegfx::B2DPolyPolygon* pPolyPolyPath = pSvgPathNode->getPath();
356 :
357 0 : if(!pPolyPolyPath || !pPolyPolyPath->count())
358 : {
359 0 : return false;
360 : }
361 :
362 0 : const basegfx::B2DPolygon aPolygon(pPolyPolyPath->getB2DPolygon(0));
363 :
364 0 : if(!aPolygon.count())
365 : {
366 0 : return false;
367 : }
368 :
369 0 : const double fBasegfxPathLength(basegfx::tools::getLength(aPolygon));
370 :
371 0 : if(basegfx::fTools::equalZero(fBasegfxPathLength))
372 : {
373 0 : return false;
374 : }
375 :
376 0 : return true;
377 : }
378 :
379 0 : void SvgTextPathNode::decomposePathNode(
380 : const drawinglayer::primitive2d::Primitive2DSequence& rPathContent,
381 : drawinglayer::primitive2d::Primitive2DSequence& rTarget,
382 : const basegfx::B2DPoint& rTextStart) const
383 : {
384 0 : if(rPathContent.hasElements())
385 : {
386 0 : const SvgPathNode* pSvgPathNode = dynamic_cast< const SvgPathNode* >(getDocument().findSvgNodeById(maXLink));
387 :
388 0 : if(pSvgPathNode)
389 : {
390 0 : const basegfx::B2DPolyPolygon* pPolyPolyPath = pSvgPathNode->getPath();
391 :
392 0 : if(pPolyPolyPath && pPolyPolyPath->count())
393 : {
394 0 : basegfx::B2DPolygon aPolygon(pPolyPolyPath->getB2DPolygon(0));
395 :
396 0 : if(pSvgPathNode->getTransform())
397 : {
398 0 : aPolygon.transform(*pSvgPathNode->getTransform());
399 : }
400 :
401 0 : const double fBasegfxPathLength(basegfx::tools::getLength(aPolygon));
402 :
403 0 : if(!basegfx::fTools::equalZero(fBasegfxPathLength))
404 : {
405 0 : double fUserToBasegfx(1.0); // multiply: user->basegfx, divide: basegfx->user
406 :
407 0 : if(pSvgPathNode->getPathLength().isSet())
408 : {
409 0 : const double fUserLength(pSvgPathNode->getPathLength().solve(*this, length));
410 :
411 0 : if(fUserLength > 0.0 && !basegfx::fTools::equal(fUserLength, fBasegfxPathLength))
412 : {
413 0 : fUserToBasegfx = fUserLength / fBasegfxPathLength;
414 : }
415 : }
416 :
417 0 : double fPosition(0.0);
418 :
419 0 : if(getStartOffset().isSet())
420 : {
421 0 : if(Unit_percent == getStartOffset().getUnit())
422 : {
423 : // percent are relative to path length
424 0 : fPosition = getStartOffset().getNumber() * 0.01 * fBasegfxPathLength;
425 : }
426 : else
427 : {
428 0 : fPosition = getStartOffset().solve(*this, length) * fUserToBasegfx;
429 : }
430 : }
431 :
432 0 : if(fPosition >= 0.0)
433 : {
434 0 : const sal_Int32 nLength(rPathContent.getLength());
435 0 : sal_Int32 nCurrent(0);
436 :
437 0 : while(fPosition < fBasegfxPathLength && nCurrent < nLength)
438 : {
439 0 : const drawinglayer::primitive2d::TextSimplePortionPrimitive2D* pCandidate = 0;
440 0 : const drawinglayer::primitive2d::Primitive2DReference xReference(rPathContent[nCurrent]);
441 :
442 0 : if(xReference.is())
443 : {
444 0 : pCandidate = dynamic_cast< const drawinglayer::primitive2d::TextSimplePortionPrimitive2D* >(xReference.get());
445 : }
446 :
447 0 : if(pCandidate)
448 : {
449 : const pathTextBreakupHelper aPathTextBreakupHelper(
450 : *pCandidate,
451 : aPolygon,
452 : fBasegfxPathLength,
453 : fPosition,
454 0 : rTextStart);
455 :
456 : const drawinglayer::primitive2d::Primitive2DSequence aResult(
457 0 : aPathTextBreakupHelper.getResult(drawinglayer::primitive2d::BreakupUnit_character));
458 :
459 0 : if(aResult.hasElements())
460 : {
461 0 : drawinglayer::primitive2d::appendPrimitive2DSequenceToPrimitive2DSequence(rTarget, aResult);
462 : }
463 :
464 : // advance position to consumed
465 0 : fPosition = aPathTextBreakupHelper.getPosition();
466 : }
467 :
468 0 : nCurrent++;
469 0 : }
470 : }
471 0 : }
472 : }
473 : }
474 : }
475 0 : }
476 :
477 : } // end of namespace svgreader
478 : } // end of namespace svgio
479 :
480 : /* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|