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
|
/* GIMP - The GNU Image Manipulation Program
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
*
* gimppath-compat.c
* Copyright (C) 2003 Michael Natterer <mitch@gimp.org>
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "config.h"
#include <gdk-pixbuf/gdk-pixbuf.h>
#include <gegl.h>
#include "vectors-types.h"
#include "core/gimpimage.h"
#include "gimpanchor.h"
#include "gimpbezierstroke.h"
#include "gimppath.h"
#include "gimppath-compat.h"
enum
{
GIMP_PATH_COMPAT_ANCHOR = 1,
GIMP_PATH_COMPAT_CONTROL = 2,
GIMP_PATH_COMPAT_NEW_STROKE = 3
};
static const GimpCoords default_coords = GIMP_COORDS_DEFAULT_VALUES;
GimpPath *
gimp_path_compat_new (GimpImage *image,
const gchar *name,
GimpPathCompatPoint *points,
gint n_points,
gboolean closed)
{
GimpPath *path;
GimpStroke *stroke;
GimpCoords *coords;
GimpCoords *curr_stroke;
GimpCoords *curr_coord;
gint i;
g_return_val_if_fail (GIMP_IS_IMAGE (image), NULL);
g_return_val_if_fail (name != NULL, NULL);
g_return_val_if_fail (points != NULL || n_points == 0, NULL);
g_return_val_if_fail (n_points >= 0, NULL);
path = gimp_path_new (image, name);
coords = g_new0 (GimpCoords, n_points + 1);
curr_stroke = curr_coord = coords;
/* skip the first control point, will set it later */
curr_coord++;
for (i = 0; i < n_points; i++)
{
*curr_coord = default_coords;
curr_coord->x = points[i].x;
curr_coord->y = points[i].y;
/* copy the first anchor to be the first control point */
if (curr_coord == curr_stroke + 1)
*curr_stroke = *curr_coord;
/* found new stroke start */
if (points[i].type == GIMP_PATH_COMPAT_NEW_STROKE)
{
/* copy the last control point to the beginning of the stroke */
*curr_stroke = *(curr_coord - 1);
stroke =
gimp_bezier_stroke_new_from_coords (curr_stroke,
curr_coord - curr_stroke - 1,
TRUE);
gimp_path_stroke_add (path, stroke);
g_object_unref (stroke);
/* start a new stroke */
curr_stroke = curr_coord - 1;
/* copy the first anchor to be the first control point */
*curr_stroke = *curr_coord;
}
curr_coord++;
}
if (closed)
{
/* copy the last control point to the beginning of the stroke */
curr_coord--;
*curr_stroke = *curr_coord;
}
stroke = gimp_bezier_stroke_new_from_coords (curr_stroke,
curr_coord - curr_stroke,
closed);
gimp_path_stroke_add (path, stroke);
g_object_unref (stroke);
g_free (coords);
return path;
}
gboolean
gimp_path_compat_is_compatible (GimpImage *image)
{
GList *list;
g_return_val_if_fail (GIMP_IS_IMAGE (image), FALSE);
for (list = gimp_image_get_path_iter (image);
list;
list = g_list_next (list))
{
GimpPath *path = GIMP_PATH (list->data);
GList *strokes;
gint open_count = 0;
if (gimp_item_get_visible (GIMP_ITEM (path)))
return FALSE;
for (strokes = path->strokes->head;
strokes;
strokes = g_list_next (strokes))
{
GimpStroke *stroke = GIMP_STROKE (strokes->data);
if (! GIMP_IS_BEZIER_STROKE (stroke))
return FALSE;
if (!stroke->closed)
open_count++;
}
if (open_count >= 2)
return FALSE;
}
return TRUE;
}
GimpPathCompatPoint *
gimp_path_compat_get_points (GimpPath *path,
gint32 *n_points,
gint32 *closed)
{
GimpPathCompatPoint *points;
GList *strokes;
gint i;
GList *postponed = NULL; /* for the one open stroke... */
gint open_count;
gboolean first_stroke = TRUE;
g_return_val_if_fail (GIMP_IS_PATH (path), NULL);
g_return_val_if_fail (n_points != NULL, NULL);
g_return_val_if_fail (closed != NULL, NULL);
*n_points = 0;
*closed = TRUE;
open_count = 0;
for (strokes = path->strokes->head;
strokes;
strokes = g_list_next (strokes))
{
GimpStroke *stroke = strokes->data;
gint n_anchors;
if (! stroke->closed)
{
open_count++;
postponed = strokes;
*closed = FALSE;
if (open_count >= 2)
{
g_warning ("gimp_path_compat_get_points(): convert failed");
*n_points = 0;
return NULL;
}
}
n_anchors = g_queue_get_length (stroke->anchors);
if (! stroke->closed)
n_anchors--;
*n_points += n_anchors;
}
points = g_new0 (GimpPathCompatPoint, *n_points);
i = 0;
for (strokes = path->strokes->head;
strokes || postponed;
strokes = g_list_next (strokes))
{
GimpStroke *stroke;
GList *anchors;
if (strokes)
{
if (postponed && strokes == postponed)
/* we need to visit the open stroke last... */
continue;
else
stroke = GIMP_STROKE (strokes->data);
}
else
{
stroke = GIMP_STROKE (postponed->data);
postponed = NULL;
}
for (anchors = stroke->anchors->head;
anchors;
anchors = g_list_next (anchors))
{
GimpAnchor *anchor = anchors->data;
/* skip the first anchor, will add it at the end if needed */
if (! anchors->prev)
continue;
switch (anchor->type)
{
case GIMP_ANCHOR_ANCHOR:
if (anchors->prev == stroke->anchors->head && ! first_stroke)
points[i].type = GIMP_PATH_COMPAT_NEW_STROKE;
else
points[i].type = GIMP_PATH_COMPAT_ANCHOR;
break;
case GIMP_ANCHOR_CONTROL:
points[i].type = GIMP_PATH_COMPAT_CONTROL;
break;
}
points[i].x = anchor->position.x;
points[i].y = anchor->position.y;
i++;
/* write the skipped control point */
if (! anchors->next && stroke->closed)
{
anchor = g_queue_peek_head (stroke->anchors);
points[i].type = GIMP_PATH_COMPAT_CONTROL;
points[i].x = anchor->position.x;
points[i].y = anchor->position.y;
i++;
}
}
first_stroke = FALSE;
}
return points;
}
|