1 /* CPML - Cairo Path Manipulation Library
2 * Copyright (C) 2008, 2009 Nicola Fontana <ntd at entidi.it>
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Lesser General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Lesser General Public License for more details.
14 * You should have received a copy of the GNU Lesser General Public
15 * License along with this library; if not, write to the
16 * Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 * Boston, MA 02110-1301, USA.
22 * SECTION:cpml-segment
23 * @Section_Id:CpmlSegment
25 * @short_description: Contiguous segment that can be a fragment
26 * or a whole cairo path
28 * A segment is a single contiguous line got from a cairo path. The
29 * CPML library relies on one assumption to let the data be independent
30 * from the current point (and thus from the cairo context): any segment
31 * MUST be preceded by at least one %CAIRO_PATH_MOVE_TO primitive.
32 * This means a valid segment in cairo could be rejected by CPML.
34 * #CpmlSegment provides an unobtrusive way to access a cairo path.
35 * This means #CpmlSegment itsself does not hold any coordinates but
36 * instead a bunch of pointers to the original #cairo_path_t struct:
37 * modifying data throught this struct also changes the original path.
39 * Every #CpmlPath struct can contain more than one segment: the CPML
40 * library provides iteration APIs to browse the segments of a path.
41 * Use cpml_segment_reset() to reset the iterator at the start of the
42 * cairo path (will point the first segment) and cpml_segment_next()
43 * to get the next segment. Getting the previous segment is not provided
44 * as the underlying cairo struct is not accessible in reverse order.
46 * When initialized, #CpmlSegment yet refers to the first segment so
47 * the initial reset is not required.
53 * This is another name for the #cairo_path_t type. Although phisically
54 * they are the same struct, #CpmlPath conceptually embodies an important
55 * difference: it is a cairo path that can embed %CAIRO_PATH_ARC_TO
56 * primitives. This is not a native cairo primitive and having two
57 * different data types is a good way to make clear when a function
58 * expect or not embedded arc-to primitives.
63 * @cpml_path: a #CpmlPath (or a #cairo_path_t) pointer
65 * Checks whether @cpml_path is empty. An invalid path is considered
68 * Returns: %1 if the path is empty or invalid, %0 otherwise
73 * @path: the source #CpmlPath struct
74 * @data: the data points of the segment; the first primitive
75 * will always be a %CAIRO_PATH_MOVE_TO
76 * @num_data: size of @data
78 * This is an unobtrusive struct to identify a segment inside a
79 * cairo path. Unobtrusive means that the real coordinates are
80 * still stored in @path: CpmlSegment only provides a way to
85 #include "cpml-internal.h"
86 #include "cpml-extents.h"
87 #include "cpml-segment.h"
88 #include "cpml-primitive.h"
89 #include "cpml-line.h"
90 #include "cpml-curve.h"
91 #include "cpml-alloca.h"
96 static cairo_bool_t
normalize (CpmlSegment
*segment
);
97 static cairo_bool_t
ensure_one_move_to (CpmlSegment
*segment
);
98 static void reshape (CpmlSegment
*segment
);
102 * cpml_segment_from_cairo:
103 * @segment: a #CpmlSegment
104 * @path: the source #CpmlPath
106 * Builds a CpmlSegment from a #CpmlPath structure. This operation
107 * involves stripping the leading %CAIRO_PATH_MOVE_TO primitives and
108 * setting the internal segment structure accordling. A pointer to the
109 * source cairo path is kept.
111 * This function will fail if @path is null, empty or if its
112 * <structfield>status</structfield> member is not %CAIRO_STATUS_SUCCESS.
113 * Also, the first primitive must be a %CAIRO_PATH_MOVE_TO, so no
114 * dependency on the cairo context is needed.
116 * Returns: 1 on success, 0 on errors
119 cpml_segment_from_cairo(CpmlSegment
*segment
, CpmlPath
*path
)
121 /* The cairo path should be defined and in a perfect state */
122 if (path
== NULL
|| path
->num_data
== 0 ||
123 path
->status
!= CAIRO_STATUS_SUCCESS
)
126 segment
->path
= path
;
127 segment
->data
= path
->data
;
128 segment
->num_data
= path
->num_data
;
130 return normalize(segment
);
135 * @segment: a #CpmlSegment
136 * @src: the source segment to copy
138 * Makes a shallow copy of @src into @segment.
140 * Returns: @segment or %NULL on errors
143 cpml_segment_copy(CpmlSegment
*segment
, const CpmlSegment
*src
)
145 if (segment
== NULL
|| src
== NULL
)
148 return memcpy(segment
, src
, sizeof(CpmlSegment
));
153 * cpml_segment_reset:
154 * @segment: a #CpmlSegment
156 * Modifies @segment to point to the first segment of the source cairo path.
159 cpml_segment_reset(CpmlSegment
*segment
)
161 segment
->data
= segment
->path
->data
;
162 segment
->num_data
= segment
->path
->num_data
;
168 * @segment: a #CpmlSegment
170 * Modifies @segment to point to the next segment of the source cairo path.
172 * Returns: 1 on success, 0 if no next segment found or errors
175 cpml_segment_next(CpmlSegment
*segment
)
177 int rest
= segment
->path
->num_data
- segment
->num_data
+
178 segment
->path
->data
- segment
->data
;
183 segment
->data
+= segment
->num_data
;
184 segment
->num_data
= rest
;
186 return normalize(segment
);
191 * cpml_segment_get_length:
192 * @segment: a #CpmlSegment
194 * Gets the whole length of @segment.
196 * Returns: the requested length
199 cpml_segment_get_length(const CpmlSegment
*segment
)
201 CpmlPrimitive primitive
;
204 cpml_primitive_from_segment(&primitive
, (CpmlSegment
*) segment
);
208 length
+= cpml_primitive_get_length(&primitive
);
209 } while (cpml_primitive_next(&primitive
));
215 * cpml_segment_put_extents:
216 * @segment: a #CpmlSegment
217 * @extents: where to store the extents
219 * Gets the whole extents of @segment.
222 cpml_segment_put_extents(const CpmlSegment
*segment
, CpmlExtents
*extents
)
224 CpmlPrimitive primitive
;
225 CpmlExtents primitive_extents
;
227 extents
->is_defined
= 0;
229 cpml_primitive_from_segment(&primitive
, (CpmlSegment
*) segment
);
232 cpml_primitive_put_extents(&primitive
, &primitive_extents
);
233 cpml_extents_add(extents
, &primitive_extents
);
234 } while (cpml_primitive_next(&primitive
));
238 * cpml_segment_put_pair_at:
239 * @segment: a #CpmlSegment
240 * @pos: the position value
241 * @pair: the destination #CpmlPair
243 * Gets the coordinates of the point lying on @segment at position
244 * @pos. @pos is an homogeneous factor where %0 is the start point,
245 * %1 the end point, %0.5 the mid point and so on.
246 * The relation %0 < @pos < %1 should be satisfied, although some
247 * cases accept value outside this range.
250 * <title>TODO</title>
252 * <listitem>The actual implementation returns only the start and end points,
253 * that is only when @pos is %0 or %1.</listitem>
258 cpml_segment_put_pair_at(const CpmlSegment
*segment
, double pos
,
261 CpmlPrimitive primitive
;
263 cpml_primitive_from_segment(&primitive
, (CpmlSegment
*) segment
);
265 /* Handle the common cases: start and end points */
267 return cpml_primitive_put_pair_at(&primitive
, 0, pair
);
270 while (cpml_primitive_next(&primitive
))
272 return cpml_primitive_put_pair_at(&primitive
, 1, pair
);
277 * cpml_segment_put_vector_at:
278 * @segment: a #CpmlSegment
279 * @pos: the position value
280 * @vector: the destination #CpmlVector
282 * Gets the steepness of the point lying on @segment at position
283 * @pos. @pos is an homogeneous factor where %0 is the start point,
284 * %1 the end point, %0.5 the mid point and so on.
285 * The relation %0 < @pos < %1 should be satisfied, although some
286 * cases accept value outside this range.
289 * <title>TODO</title>
291 * <listitem>The actual implementation returns only the start and end
292 * steepness, that is only when @pos is %0 or %1.</listitem>
297 cpml_segment_put_vector_at(const CpmlSegment
*segment
, double pos
,
300 CpmlPrimitive primitive
;
302 cpml_primitive_from_segment(&primitive
, (CpmlSegment
*) segment
);
304 /* Handle the common cases: start and end points */
306 cpml_primitive_put_vector_at(&primitive
, 0, vector
);
311 while (cpml_primitive_next(&primitive
))
313 cpml_primitive_put_vector_at(&primitive
, 1, vector
);
320 * cpml_segment_to_cairo:
321 * @segment: a #CpmlSegment
322 * @cr: the destination cairo context
324 * Appends the path of @segment to @cr. The segment is "flattened",
325 * that is %CAIRO_PATH_ARC_TO primitives are approximated by one
326 * or more %CAIRO_PATH_CURVE_TO using cpml_arc_to_cairo(). Check
327 * its documentation for further details.
330 cpml_segment_to_cairo(const CpmlSegment
*segment
, cairo_t
*cr
)
332 CpmlPrimitive primitive
;
334 cpml_primitive_from_segment(&primitive
, (CpmlSegment
*) segment
);
337 cpml_primitive_to_cairo(&primitive
, cr
);
338 } while (cpml_primitive_next(&primitive
));
343 * @segment: a #CpmlSegment
345 * Dumps the specified @segment to stdout. Useful for debugging purposes.
348 cpml_segment_dump(const CpmlSegment
*segment
)
350 CpmlPrimitive primitive
;
351 cairo_bool_t first_call
= 1;
353 cpml_primitive_from_segment(&primitive
, (CpmlSegment
*) segment
);
356 cpml_primitive_dump(&primitive
, first_call
);
358 } while (cpml_primitive_next(&primitive
));
363 * cpml_segment_reverse:
364 * @segment: a #CpmlSegment
366 * Reverses @segment in-place. The resulting rendering will be the same,
367 * but with the primitives generated in reverse order.
370 cpml_segment_reverse(CpmlSegment
*segment
)
372 cairo_path_data_t
*data
, *dst_data
;
375 int n
, num_points
, n_point
;
376 const cairo_path_data_t
*src_data
;
378 data_size
= sizeof(cairo_path_data_t
) * segment
->num_data
;
379 data
= cpml_alloca(data_size
);
380 end_x
= segment
->data
[1].point
.x
;
381 end_y
= segment
->data
[1].point
.y
;
383 for (n
= 2; n
< segment
->num_data
; ++n
) {
384 src_data
= segment
->data
+ n
;
385 num_points
= src_data
->header
.length
;
387 dst_data
= data
+ segment
->num_data
- n
- num_points
+ 2;
388 dst_data
->header
.type
= src_data
->header
.type
;
389 dst_data
->header
.length
= num_points
;
391 for (n_point
= 1; n_point
< num_points
; ++n_point
) {
392 dst_data
[num_points
- n_point
].point
.x
= end_x
;
393 dst_data
[num_points
- n_point
].point
.y
= end_y
;
394 end_x
= src_data
[n_point
].point
.x
;
395 end_y
= src_data
[n_point
].point
.y
;
401 data
[0].header
.type
= CAIRO_PATH_MOVE_TO
;
402 data
[0].header
.length
= 2;
403 data
[1].point
.x
= end_x
;
404 data
[1].point
.y
= end_y
;
405 memcpy(segment
->data
, data
, data_size
);
409 * cpml_segment_transform:
410 * @segment: a #CpmlSegment
411 * @matrix: the matrix to be applied
413 * Applies @matrix on all the points of @segment.
416 cpml_segment_transform(CpmlSegment
*segment
, const cairo_matrix_t
*matrix
)
418 cairo_path_data_t
*data
;
419 int n
, n_point
, num_points
;
421 data
= segment
->data
;
423 for (n
= 0; n
< segment
->num_data
; n
+= num_points
) {
424 num_points
= data
->header
.length
;
426 for (n_point
= 1; n_point
< num_points
; ++n_point
) {
427 cairo_matrix_transform_point(matrix
, &data
->point
.x
, &data
->point
.y
);
434 * cpml_segment_put_intersections:
435 * @segment: the first #CpmlSegment
436 * @segment2: the second #CpmlSegment
437 * @max: maximum number of intersections to return
438 * @dest: the destination vector of #CpmlPair
440 * Computes the intersections between @segment and @segment2 and
441 * returns the found points in @dest. If the intersections are more
442 * than @max, only the first @max pairs are stored in @dest.
444 * To get the job done, the primitives of @segment are sequentially
445 * scanned for intersections with any primitive in @segment2. This
446 * means @segment has a higher precedence over @segment2.
448 * Returns: the number of intersections found
451 cpml_segment_put_intersections(const CpmlSegment
*segment
,
452 const CpmlSegment
*segment2
,
453 int max
, CpmlPair
*dest
)
455 CpmlPrimitive portion
;
458 cpml_primitive_from_segment(&portion
, (CpmlSegment
*) segment
);
462 partial
= cpml_primitive_put_intersections_with_segment(&portion
,
467 } while (total
< max
&& cpml_primitive_next(&portion
));
473 * cpml_segment_offset:
474 * @segment: a #CpmlSegment
475 * @offset: the offset distance
477 * Offsets a segment of the specified amount, that is builds a "parallel"
478 * segment at the @offset distance from the original one and returns the
479 * result by replacing the original @segment.
482 * <title>TODO</title>
484 * <listitem>Closed path are not yet managed: an elegant solution is not
485 * so obvious: use cpml_close_offset() when available.</listitem>
486 * <listitem>Degenerated primitives, such as lines of length 0, are not
487 * managed properly.</listitem>
492 cpml_segment_offset(CpmlSegment
*segment
, double offset
)
494 CpmlPrimitive primitive
;
495 CpmlPrimitive last_primitive
;
496 cairo_path_data_t org
, old_end
;
497 cairo_bool_t first_cycle
;
499 cpml_primitive_from_segment(&primitive
, segment
);
505 primitive
.org
= &org
;
508 old_end
= *cpml_primitive_get_point(&primitive
, -1);
509 cpml_primitive_offset(&primitive
, offset
);
512 cpml_primitive_join(&last_primitive
, &primitive
);
513 primitive
.org
= cpml_primitive_get_point(&last_primitive
, -1);
516 cpml_primitive_copy(&last_primitive
, &primitive
);
518 } while (cpml_primitive_next(&primitive
));
523 * @segment: a #CpmlSegment
525 * Strips the leading %CAIRO_PATH_MOVE_TO primitives, updating
526 * the CpmlSegment structure accordling. One, and only one,
527 * %CAIRO_PATH_MOVE_TO primitive is left.
529 * Returns: 1 on success, 0 on no leading MOVE_TOs or on errors
532 normalize(CpmlSegment
*segment
)
534 if (!ensure_one_move_to(segment
))
542 * ensure_one_move_to:
543 * @segment: a #CpmlSegment
545 * Strips the leading %CAIRO_PATH_MOVE_TO primitives, updating
546 * the <structname>CpmlSegment</structname> structure accordling.
547 * One, and only one, %CAIRO_PATH_MOVE_TO primitive is left.
549 * Returns: 1 on success, 0 on no leading MOVE_TOs or on empty path
552 ensure_one_move_to(CpmlSegment
*segment
)
554 cairo_path_data_t
*new_data
;
555 int new_num_data
, length
;
557 new_data
= segment
->data
;
559 /* Check for at least one move to */
560 if (new_data
->header
.type
!= CAIRO_PATH_MOVE_TO
)
563 new_num_data
= segment
->num_data
;
566 /* Strip the leading CAIRO_PATH_MOVE_TO, leaving only the last one */
569 new_num_data
-= length
;
570 length
= new_data
->header
.length
;
572 /* Check for end of cairo path data */
573 if (length
>= new_num_data
)
575 } while (new_data
[length
].header
.type
== CAIRO_PATH_MOVE_TO
);
577 segment
->data
= new_data
;
578 segment
->num_data
= new_num_data
;
585 * @segment: a #CpmlSegment
587 * Looks for the segment termination and modify the
588 * <structfield>num_data</structfield> field of @segment accordling.
589 * @segment must have only one leading %CAIRO_PATH_MOVE_TO and
590 * it is supposed to be non-empty, conditions yet imposed by the
591 * ensure_one_move_to() function.
594 reshape(CpmlSegment
*segment
)
596 cairo_path_data_t
*data
;
597 int num_data
, new_num_data
, length
;
599 /* Skip the leading move to */
601 data
= segment
->data
+ new_num_data
;
603 /* Calculate the remaining data in the cairo path */
604 num_data
= segment
->path
->num_data
-
605 (segment
->data
- segment
->path
->data
);
607 while (new_num_data
< num_data
) {
608 /* A primitive is considered valid if it has at least one point */
609 if (cpml_primitive_type_get_n_points(data
->header
.type
) <= 0)
612 length
= data
->header
.length
;
614 new_num_data
+= length
;
617 segment
->num_data
= new_num_data
;