2006-12-10 05:33:38 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
1997-11-25 06:05:25 +08:00
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
2009-01-18 06:28:01 +08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
1997-11-25 06:05:25 +08:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2009-01-18 06:28:01 +08:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
1997-11-25 06:05:25 +08:00
|
|
|
* (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
|
2009-01-18 06:28:01 +08:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
1997-11-25 06:05:25 +08:00
|
|
|
*/
|
2000-12-15 23:54:17 +08:00
|
|
|
|
app/appenv.h New file. Includes <math.h>. Move G_PI, RINT(), ROUND() etc
1999-09-01 Tor Lillqvist <tml@iki.fi>
* app/appenv.h
* libgimp/gimpmath.h: New file. Includes <math.h>. Move G_PI,
RINT(), ROUND() etc from app/appenv.h here, so plug-ins can
use them, too. Remove some commented-out old stuff in appenv.h.
* libgimp/gimp.h: Include gimpmath.h.
* libgimp/gimp.c (gimp_main): Win32: Don't install signal
handlers, we can't do anything useful in the handler ourselves
anyway (it would be nice to print out a backtrace, but that seems
pretty hard to do, even if not impossible). Let Windows inform the
user about the crash. If the plug-in was compiled with MSVC, and
the user also has it, she is offered a chance to start the
debugger automatically anyway.
* app/*several*.c: Include gimpmath.h for G_PI etc. Don't include
<math.h>, as gimpmath.h includes it.
* plug-ins/*/*many*.c: Include config.h. Don't include <math.h>.
Remove all the duplicated definitions of G_PI and rint(). Use
RINT() instead of rint().
* app/app_procs.[ch]: app_exit() takes a gboolean.
* app/batch.c
* app/commands.c
* app/interface.c: Call app_exit() with FALSE or TRUE.
* app/main.c (on_error): Call gimp_fatal_error. (main): Don't
install any signal handler on Win32 here, either.
* app/errors.c (gimp_fatal_error, gimp_terminate): Win32: Format
the message and call MessageBox with it. g_on_error_query doesn't
do anything useful on Win32, and printf'ing a message to stdout or
stderr doesn't do anything, either, in a windowing application.
1999-09-02 04:30:56 +08:00
|
|
|
#include "config.h"
|
|
|
|
|
2009-10-10 21:46:31 +08:00
|
|
|
#include <string.h>
|
|
|
|
|
2008-10-10 04:24:04 +08:00
|
|
|
#include <gegl.h>
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2006-08-29 22:46:32 +08:00
|
|
|
#include "libgimpbase/gimpbase.h"
|
2007-03-09 21:00:01 +08:00
|
|
|
#include "libgimpmath/gimpmath.h"
|
2006-08-29 22:46:32 +08:00
|
|
|
|
2003-09-04 20:18:40 +08:00
|
|
|
#include "core-types.h"
|
2002-08-20 18:22:23 +08:00
|
|
|
|
2003-09-04 20:18:40 +08:00
|
|
|
#include "paint-funcs/paint-funcs.h"
|
2002-08-30 00:48:17 +08:00
|
|
|
|
2003-09-04 20:18:40 +08:00
|
|
|
#include "base/pixel-processor.h"
|
|
|
|
#include "base/pixel-region.h"
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2003-09-04 20:18:40 +08:00
|
|
|
#include "gimpchannel.h"
|
|
|
|
#include "gimpchannel-combine.h"
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
|
|
|
|
void
|
2002-03-19 00:22:14 +08:00
|
|
|
gimp_channel_combine_rect (GimpChannel *mask,
|
2006-04-12 20:49:29 +08:00
|
|
|
GimpChannelOps op,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint w,
|
|
|
|
gint h)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
|
|
|
PixelRegion maskPR;
|
2000-12-29 00:19:55 +08:00
|
|
|
guchar color;
|
1999-08-22 19:45:31 +08:00
|
|
|
|
2001-08-11 22:39:19 +08:00
|
|
|
g_return_if_fail (GIMP_IS_CHANNEL (mask));
|
|
|
|
|
2005-09-07 18:08:02 +08:00
|
|
|
if (! gimp_rectangle_intersect (x, y, w, h,
|
|
|
|
0, 0,
|
2008-11-03 08:09:01 +08:00
|
|
|
gimp_item_get_width (GIMP_ITEM (mask)),
|
|
|
|
gimp_item_get_height (GIMP_ITEM (mask)),
|
2005-09-07 18:08:02 +08:00
|
|
|
&x, &y, &w, &h))
|
1997-11-25 06:05:25 +08:00
|
|
|
return;
|
|
|
|
|
2007-12-24 00:58:41 +08:00
|
|
|
pixel_region_init (&maskPR, gimp_drawable_get_tiles (GIMP_DRAWABLE (mask)),
|
2006-04-12 20:49:29 +08:00
|
|
|
x, y, w, h, TRUE);
|
2002-03-19 00:22:14 +08:00
|
|
|
|
|
|
|
if (op == GIMP_CHANNEL_OP_ADD || op == GIMP_CHANNEL_OP_REPLACE)
|
2002-08-30 00:48:17 +08:00
|
|
|
color = OPAQUE_OPACITY;
|
1999-04-09 14:00:11 +08:00
|
|
|
else
|
2002-08-30 00:48:17 +08:00
|
|
|
color = TRANSPARENT_OPACITY;
|
2002-03-19 00:22:14 +08:00
|
|
|
|
1999-08-22 19:45:31 +08:00
|
|
|
color_region (&maskPR, &color);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* Determine new boundary */
|
2009-10-11 05:01:59 +08:00
|
|
|
if (mask->bounds_known && (op == GIMP_CHANNEL_OP_ADD) && ! mask->empty)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
|
|
|
if (x < mask->x1)
|
2006-04-12 20:49:29 +08:00
|
|
|
mask->x1 = x;
|
1997-11-25 06:05:25 +08:00
|
|
|
if (y < mask->y1)
|
2006-04-12 20:49:29 +08:00
|
|
|
mask->y1 = y;
|
1997-11-25 06:05:25 +08:00
|
|
|
if ((x + w) > mask->x2)
|
2006-04-12 20:49:29 +08:00
|
|
|
mask->x2 = (x + w);
|
1997-11-25 06:05:25 +08:00
|
|
|
if ((y + h) > mask->y2)
|
2006-04-12 20:49:29 +08:00
|
|
|
mask->y2 = (y + h);
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
2002-03-19 00:22:14 +08:00
|
|
|
else if (op == GIMP_CHANNEL_OP_REPLACE || mask->empty)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
|
|
|
mask->empty = FALSE;
|
2002-08-30 00:48:17 +08:00
|
|
|
mask->x1 = x;
|
|
|
|
mask->y1 = y;
|
|
|
|
mask->x2 = x + w;
|
|
|
|
mask->y2 = y + h;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
else
|
2009-10-10 21:46:31 +08:00
|
|
|
{
|
|
|
|
mask->bounds_known = FALSE;
|
|
|
|
}
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2008-11-03 08:09:01 +08:00
|
|
|
mask->x1 = CLAMP (mask->x1, 0, gimp_item_get_width (GIMP_ITEM (mask)));
|
|
|
|
mask->y1 = CLAMP (mask->y1, 0, gimp_item_get_height (GIMP_ITEM (mask)));
|
|
|
|
mask->x2 = CLAMP (mask->x2, 0, gimp_item_get_width (GIMP_ITEM (mask)));
|
|
|
|
mask->y2 = CLAMP (mask->y2, 0, gimp_item_get_height (GIMP_ITEM (mask)));
|
2003-10-06 20:17:11 +08:00
|
|
|
|
|
|
|
gimp_drawable_update (GIMP_DRAWABLE (mask), x, y, w, h);
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2004-07-19 03:31:29 +08:00
|
|
|
/**
|
|
|
|
* gimp_channel_combine_ellipse:
|
|
|
|
* @mask: the channel with which to combine the ellipse
|
2004-07-19 22:25:59 +08:00
|
|
|
* @op: whether to replace, add to, or subtract from the current
|
|
|
|
* contents
|
2004-07-19 03:31:29 +08:00
|
|
|
* @x: x coordinate of upper left corner of ellipse
|
|
|
|
* @y: y coordinate of upper left corner of ellipse
|
|
|
|
* @w: width of ellipse bounding box
|
|
|
|
* @h: height of ellipse bounding box
|
|
|
|
* @antialias: if %TRUE, antialias the ellipse
|
|
|
|
*
|
2004-07-19 22:25:59 +08:00
|
|
|
* Mainly used for elliptical selections. If @op is
|
|
|
|
* %GIMP_CHANNEL_OP_REPLACE or %GIMP_CHANNEL_OP_ADD, sets pixels
|
|
|
|
* within the ellipse to 255. If @op is %GIMP_CHANNEL_OP_SUBTRACT,
|
|
|
|
* sets pixels within to zero. If @antialias is %TRUE, pixels that
|
|
|
|
* impinge on the edge of the ellipse are set to intermediate values,
|
|
|
|
* depending on how much they overlap.
|
2004-07-19 03:31:29 +08:00
|
|
|
**/
|
1997-11-25 06:05:25 +08:00
|
|
|
void
|
2002-03-19 00:22:14 +08:00
|
|
|
gimp_channel_combine_ellipse (GimpChannel *mask,
|
2004-07-19 03:31:29 +08:00
|
|
|
GimpChannelOps op,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint w,
|
|
|
|
gint h,
|
|
|
|
gboolean antialias)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2006-10-19 02:54:28 +08:00
|
|
|
gimp_channel_combine_ellipse_rect (mask, op, x, y, w, h,
|
|
|
|
w / 2.0, h / 2.0, antialias);
|
|
|
|
}
|
|
|
|
|
2009-10-11 05:01:59 +08:00
|
|
|
static void
|
|
|
|
gimp_channel_combine_span (guchar *data,
|
2009-10-11 19:49:14 +08:00
|
|
|
GimpChannelOps op,
|
|
|
|
gint x1,
|
|
|
|
gint x2,
|
|
|
|
gint value)
|
2006-10-19 02:54:28 +08:00
|
|
|
{
|
2009-10-11 05:01:59 +08:00
|
|
|
if (x2 <= x1)
|
|
|
|
return;
|
|
|
|
|
2006-10-19 02:54:28 +08:00
|
|
|
switch (op)
|
|
|
|
{
|
|
|
|
case GIMP_CHANNEL_OP_ADD:
|
|
|
|
case GIMP_CHANNEL_OP_REPLACE:
|
2009-10-11 05:01:59 +08:00
|
|
|
if (value == 255)
|
|
|
|
{
|
|
|
|
memset (data + x1, 255, x2 - x1);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
while (x1 < x2)
|
|
|
|
{
|
|
|
|
const guint val = data[x1] + value;
|
|
|
|
data[x1++] = val > 255 ? 255 : val;
|
|
|
|
}
|
|
|
|
}
|
2006-10-19 02:54:28 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case GIMP_CHANNEL_OP_SUBTRACT:
|
2009-10-11 05:01:59 +08:00
|
|
|
if (value == 255)
|
|
|
|
{
|
|
|
|
memset (data + x1, 0, x2 - x1);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
while (x1 < x2)
|
|
|
|
{
|
|
|
|
const gint val = data[x1] - value;
|
|
|
|
data[x1++] = val > 0 ? val : 0;
|
|
|
|
}
|
|
|
|
}
|
2006-10-19 02:54:28 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case GIMP_CHANNEL_OP_INTERSECT:
|
2009-10-10 21:46:31 +08:00
|
|
|
/* Should not happen */
|
2006-10-19 02:54:28 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* gimp_channel_combine_ellipse_rect:
|
|
|
|
* @mask: the channel with which to combine the elliptic rect
|
|
|
|
* @op: whether to replace, add to, or subtract from the current
|
|
|
|
* contents
|
|
|
|
* @x: x coordinate of upper left corner of bounding rect
|
|
|
|
* @y: y coordinate of upper left corner of bounding rect
|
|
|
|
* @w: width of bounding rect
|
|
|
|
* @h: height of bounding rect
|
|
|
|
* @a: elliptic a-constant applied to corners
|
|
|
|
* @b: elliptic b-constant applied to corners
|
|
|
|
* @antialias: if %TRUE, antialias the elliptic corners
|
|
|
|
*
|
|
|
|
* Used for rounded cornered rectangles and ellipses. If @op is
|
|
|
|
* %GIMP_CHANNEL_OP_REPLACE or %GIMP_CHANNEL_OP_ADD, sets pixels
|
|
|
|
* within the ellipse to 255. If @op is %GIMP_CHANNEL_OP_SUBTRACT,
|
|
|
|
* sets pixels within to zero. If @antialias is %TRUE, pixels that
|
|
|
|
* impinge on the edge of the ellipse are set to intermediate values,
|
|
|
|
* depending on how much they overlap.
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
gimp_channel_combine_ellipse_rect (GimpChannel *mask,
|
|
|
|
GimpChannelOps op,
|
|
|
|
gint x,
|
|
|
|
gint y,
|
|
|
|
gint w,
|
|
|
|
gint h,
|
|
|
|
gdouble a,
|
|
|
|
gdouble b,
|
|
|
|
gboolean antialias)
|
|
|
|
{
|
2009-10-11 05:01:59 +08:00
|
|
|
PixelRegion maskPR;
|
|
|
|
gdouble a_sqr;
|
|
|
|
gdouble b_sqr;
|
|
|
|
gdouble ellipse_center_x;
|
|
|
|
gint x0, y0;
|
|
|
|
gint width, height;
|
|
|
|
gpointer pr;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2001-08-11 22:39:19 +08:00
|
|
|
g_return_if_fail (GIMP_IS_CHANNEL (mask));
|
2006-10-19 02:54:28 +08:00
|
|
|
g_return_if_fail (a >= 0.0 && b >= 0.0);
|
2009-10-11 05:01:59 +08:00
|
|
|
g_return_if_fail (op != GIMP_CHANNEL_OP_INTERSECT);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2006-10-19 02:54:28 +08:00
|
|
|
/* Make sure the elliptic corners fit into the rect */
|
|
|
|
a = MIN (a, w / 2.0);
|
|
|
|
b = MIN (b, h / 2.0);
|
2004-07-19 22:25:59 +08:00
|
|
|
|
|
|
|
a_sqr = SQR (a);
|
|
|
|
b_sqr = SQR (b);
|
2004-07-19 22:12:30 +08:00
|
|
|
|
2009-10-11 05:01:59 +08:00
|
|
|
if (! gimp_rectangle_intersect (x, y, w, h,
|
|
|
|
0, 0,
|
|
|
|
gimp_item_get_width (GIMP_ITEM (mask)),
|
|
|
|
gimp_item_get_height (GIMP_ITEM (mask)),
|
|
|
|
&x0, &y0, &width, &height))
|
|
|
|
return;
|
2004-07-19 03:31:29 +08:00
|
|
|
|
2009-10-11 05:01:59 +08:00
|
|
|
ellipse_center_x = x + a;
|
2006-10-19 02:54:28 +08:00
|
|
|
|
2009-10-11 05:01:59 +08:00
|
|
|
pixel_region_init (&maskPR, gimp_drawable_get_tiles (GIMP_DRAWABLE (mask)),
|
|
|
|
x0, y0, width, height, TRUE);
|
2006-10-19 02:54:28 +08:00
|
|
|
|
2009-10-11 05:01:59 +08:00
|
|
|
for (pr = pixel_regions_register (1, &maskPR);
|
|
|
|
pr != NULL;
|
|
|
|
pr = pixel_regions_process (pr))
|
|
|
|
{
|
|
|
|
guchar *data = maskPR.data;
|
|
|
|
gint py;
|
2006-10-19 02:54:28 +08:00
|
|
|
|
2009-10-11 05:01:59 +08:00
|
|
|
for (py = maskPR.y;
|
|
|
|
py < maskPR.y + maskPR.h;
|
|
|
|
py++, data += maskPR.rowstride)
|
2006-10-19 02:54:28 +08:00
|
|
|
{
|
2009-10-11 05:01:59 +08:00
|
|
|
const gint px = maskPR.x;
|
|
|
|
gdouble ellipse_center_y;
|
2006-10-19 02:54:28 +08:00
|
|
|
|
2009-10-11 05:01:59 +08:00
|
|
|
if (py >= y + b && py < y + h - b)
|
|
|
|
{
|
|
|
|
/* we are on a row without rounded corners */
|
|
|
|
gimp_channel_combine_span (data, op, 0, maskPR.w, 255);
|
|
|
|
continue;
|
|
|
|
}
|
2006-10-19 02:54:28 +08:00
|
|
|
|
2009-10-11 05:01:59 +08:00
|
|
|
/* Match the ellipse center y with our current y */
|
|
|
|
if (py < y + b)
|
|
|
|
{
|
|
|
|
ellipse_center_y = y + b;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ellipse_center_y = y + h - b;
|
|
|
|
}
|
2006-10-19 02:54:28 +08:00
|
|
|
|
2009-10-11 05:01:59 +08:00
|
|
|
/* For a non-antialiased ellipse, use the normal equation
|
|
|
|
* for an ellipse with an arbitrary center
|
|
|
|
* (ellipse_center_x, ellipse_center_y).
|
2006-10-19 02:54:28 +08:00
|
|
|
*/
|
2009-10-11 05:01:59 +08:00
|
|
|
if (! antialias)
|
|
|
|
{
|
|
|
|
gdouble half_ellipse_width_at_y;
|
|
|
|
gint x_start;
|
|
|
|
gint x_end;
|
2006-10-19 02:54:28 +08:00
|
|
|
|
2009-10-11 05:01:59 +08:00
|
|
|
half_ellipse_width_at_y =
|
|
|
|
sqrt (a_sqr -
|
|
|
|
a_sqr * SQR (py + 0.5f - ellipse_center_y) / b_sqr);
|
2006-10-19 02:54:28 +08:00
|
|
|
|
2009-10-11 05:01:59 +08:00
|
|
|
x_start = ROUND (ellipse_center_x - half_ellipse_width_at_y);
|
|
|
|
x_end = ROUND (ellipse_center_x + w - 2 * a +
|
|
|
|
half_ellipse_width_at_y);
|
2006-10-19 02:54:28 +08:00
|
|
|
|
2009-10-11 05:01:59 +08:00
|
|
|
gimp_channel_combine_span (data, op,
|
|
|
|
MAX (x_start - px, 0),
|
|
|
|
MIN (x_end - px, maskPR.w), 255);
|
|
|
|
}
|
|
|
|
else /* use antialiasing */
|
2004-07-19 03:31:29 +08:00
|
|
|
{
|
2009-10-11 05:01:59 +08:00
|
|
|
/* algorithm changed 7-18-04, because the previous one
|
|
|
|
* did not work well for eccentric ellipses. The new
|
|
|
|
* algorithm measures the distance to the ellipse in the
|
|
|
|
* X and Y directions, and uses trigonometry to
|
|
|
|
* approximate the distance to the ellipse as the
|
|
|
|
* distance to the hypotenuse of a right triangle whose
|
|
|
|
* legs are the X and Y distances. (WES)
|
2009-01-29 18:02:47 +08:00
|
|
|
*/
|
2009-10-11 05:01:59 +08:00
|
|
|
const gfloat yi = ABS (py + 0.5 - ellipse_center_y);
|
2009-10-11 19:49:14 +08:00
|
|
|
gint last_val = -1;
|
2009-10-11 05:01:59 +08:00
|
|
|
gint x_start = px;
|
|
|
|
gint cur_x;
|
2004-07-19 03:31:29 +08:00
|
|
|
|
2009-10-11 05:01:59 +08:00
|
|
|
for (cur_x = px; cur_x < (px + maskPR.w); cur_x++)
|
2004-07-19 03:31:29 +08:00
|
|
|
{
|
2009-10-11 05:01:59 +08:00
|
|
|
gfloat xj;
|
|
|
|
gfloat xdist;
|
|
|
|
gfloat ydist;
|
|
|
|
gfloat r;
|
|
|
|
gfloat dist;
|
|
|
|
gint val;
|
|
|
|
|
|
|
|
if (cur_x < x + w / 2)
|
|
|
|
{
|
|
|
|
ellipse_center_x = x + a;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ellipse_center_x = x + w - a;
|
|
|
|
}
|
|
|
|
|
|
|
|
xj = ABS (cur_x + 0.5 - ellipse_center_x);
|
|
|
|
|
|
|
|
if (yi < b)
|
|
|
|
xdist = xj - a * sqrt (1 - SQR (yi) / b_sqr);
|
|
|
|
else
|
|
|
|
xdist = 1000.0; /* anything large will work */
|
|
|
|
|
|
|
|
if (xj < a)
|
|
|
|
ydist = yi - b * sqrt (1 - SQR (xj) / a_sqr);
|
|
|
|
else
|
|
|
|
ydist = 1000.0; /* anything large will work */
|
|
|
|
|
|
|
|
r = hypot (xdist, ydist);
|
|
|
|
|
|
|
|
if (r < 0.001)
|
|
|
|
dist = 0.;
|
|
|
|
else
|
|
|
|
dist = xdist * ydist / r; /* trig formula for distance to
|
|
|
|
* hypotenuse
|
|
|
|
*/
|
|
|
|
|
|
|
|
if (xdist < 0.0)
|
|
|
|
dist *= -1;
|
|
|
|
|
|
|
|
if (dist < -0.5)
|
|
|
|
val = 255;
|
|
|
|
else if (dist < 0.5)
|
|
|
|
val = (gint) (255 * (1 - (dist + 0.5)));
|
|
|
|
else
|
|
|
|
val = 0;
|
|
|
|
|
|
|
|
if (last_val != val)
|
|
|
|
{
|
2009-10-11 19:49:14 +08:00
|
|
|
if (last_val != -1)
|
|
|
|
gimp_channel_combine_span (data, op,
|
|
|
|
MAX (x_start - px, 0),
|
|
|
|
MIN (cur_x - px, maskPR.w),
|
|
|
|
last_val);
|
|
|
|
|
2009-10-11 05:01:59 +08:00
|
|
|
x_start = cur_x;
|
|
|
|
last_val = val;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* skip ahead if we are on the straight segment
|
|
|
|
* between rounded corners
|
|
|
|
*/
|
|
|
|
if (cur_x >= x + a && cur_x < x + w - a)
|
|
|
|
{
|
2009-10-11 19:49:14 +08:00
|
|
|
gimp_channel_combine_span (data, op,
|
|
|
|
MAX (x_start - px, 0),
|
|
|
|
MIN (cur_x - px, maskPR.w),
|
|
|
|
last_val);
|
|
|
|
|
2009-10-11 05:01:59 +08:00
|
|
|
x_start = cur_x;
|
|
|
|
cur_x = x + w - a;
|
|
|
|
last_val = val = 255;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Time to change center? */
|
|
|
|
if (cur_x >= x + w / 2)
|
|
|
|
{
|
|
|
|
ellipse_center_x = x + w - a;
|
|
|
|
}
|
2004-07-19 03:31:29 +08:00
|
|
|
}
|
2006-10-19 02:54:28 +08:00
|
|
|
|
2009-10-11 05:01:59 +08:00
|
|
|
gimp_channel_combine_span (data, op,
|
|
|
|
MAX (x_start - px, 0),
|
|
|
|
MIN (cur_x - px, maskPR.w),
|
|
|
|
last_val);
|
|
|
|
}
|
2006-04-12 20:49:29 +08:00
|
|
|
}
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
2009-10-11 05:01:59 +08:00
|
|
|
/* use the intersected values for the boundary calculation */
|
|
|
|
x = x0;
|
|
|
|
y = y0;
|
|
|
|
w = width;
|
|
|
|
h = height;
|
|
|
|
|
2004-07-19 22:25:59 +08:00
|
|
|
/* determine new boundary */
|
2009-10-11 05:01:59 +08:00
|
|
|
if (mask->bounds_known && (op == GIMP_CHANNEL_OP_ADD) && ! mask->empty)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
|
|
|
if (x < mask->x1)
|
2006-04-12 20:49:29 +08:00
|
|
|
mask->x1 = x;
|
1997-11-25 06:05:25 +08:00
|
|
|
if (y < mask->y1)
|
2006-04-12 20:49:29 +08:00
|
|
|
mask->y1 = y;
|
1997-11-25 06:05:25 +08:00
|
|
|
if ((x + w) > mask->x2)
|
2006-04-12 20:49:29 +08:00
|
|
|
mask->x2 = (x + w);
|
1997-11-25 06:05:25 +08:00
|
|
|
if ((y + h) > mask->y2)
|
2006-04-12 20:49:29 +08:00
|
|
|
mask->y2 = (y + h);
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
2002-03-19 00:22:14 +08:00
|
|
|
else if (op == GIMP_CHANNEL_OP_REPLACE || mask->empty)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
|
|
|
mask->empty = FALSE;
|
2002-08-30 00:48:17 +08:00
|
|
|
mask->x1 = x;
|
|
|
|
mask->y1 = y;
|
|
|
|
mask->x2 = x + w;
|
|
|
|
mask->y2 = y + h;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
else
|
2004-07-19 22:25:59 +08:00
|
|
|
{
|
|
|
|
mask->bounds_known = FALSE;
|
|
|
|
}
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2003-10-06 20:17:11 +08:00
|
|
|
gimp_drawable_update (GIMP_DRAWABLE (mask), x, y, w, h);
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
1999-04-09 14:00:11 +08:00
|
|
|
static void
|
2001-08-11 22:39:19 +08:00
|
|
|
gimp_channel_combine_sub_region_add (gpointer unused,
|
2006-04-12 20:49:29 +08:00
|
|
|
PixelRegion *srcPR,
|
|
|
|
PixelRegion *destPR)
|
1999-04-09 14:00:11 +08:00
|
|
|
{
|
2009-10-10 22:31:41 +08:00
|
|
|
const guchar *src = srcPR->data;
|
|
|
|
guchar *dest = destPR->data;
|
|
|
|
gint x, y;
|
1999-08-22 19:45:31 +08:00
|
|
|
|
1999-04-09 14:00:11 +08:00
|
|
|
for (y = 0; y < srcPR->h; y++)
|
|
|
|
{
|
1999-08-22 19:45:31 +08:00
|
|
|
for (x = 0; x < srcPR->w; x++)
|
2006-04-12 20:49:29 +08:00
|
|
|
{
|
2009-10-10 22:31:41 +08:00
|
|
|
const guint val = dest[x] + src[x];
|
|
|
|
|
|
|
|
dest[x] = val > 255 ? 255 : val;
|
2006-04-12 20:49:29 +08:00
|
|
|
}
|
2009-10-10 22:31:41 +08:00
|
|
|
|
1999-08-22 19:45:31 +08:00
|
|
|
src += srcPR->rowstride;
|
|
|
|
dest += destPR->rowstride;
|
1999-04-09 14:00:11 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-08-11 22:39:19 +08:00
|
|
|
gimp_channel_combine_sub_region_sub (gpointer unused,
|
2006-04-12 20:49:29 +08:00
|
|
|
PixelRegion *srcPR,
|
|
|
|
PixelRegion *destPR)
|
1999-04-09 14:00:11 +08:00
|
|
|
{
|
2009-10-10 22:31:41 +08:00
|
|
|
const guchar *src = srcPR->data;
|
|
|
|
guchar *dest = destPR->data;
|
|
|
|
gint x, y;
|
1999-08-22 19:45:31 +08:00
|
|
|
|
1999-04-09 14:00:11 +08:00
|
|
|
for (y = 0; y < srcPR->h; y++)
|
|
|
|
{
|
1999-08-22 19:45:31 +08:00
|
|
|
for (x = 0; x < srcPR->w; x++)
|
2006-04-12 20:49:29 +08:00
|
|
|
{
|
|
|
|
if (src[x] > dest[x])
|
|
|
|
dest[x] = 0;
|
|
|
|
else
|
2009-10-10 22:31:41 +08:00
|
|
|
dest[x] -= src[x];
|
2006-04-12 20:49:29 +08:00
|
|
|
}
|
2009-10-10 22:31:41 +08:00
|
|
|
|
1999-08-22 19:45:31 +08:00
|
|
|
src += srcPR->rowstride;
|
|
|
|
dest += destPR->rowstride;
|
1999-04-09 14:00:11 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-08-11 22:39:19 +08:00
|
|
|
gimp_channel_combine_sub_region_intersect (gpointer unused,
|
2006-04-12 20:49:29 +08:00
|
|
|
PixelRegion *srcPR,
|
|
|
|
PixelRegion *destPR)
|
1999-04-09 14:00:11 +08:00
|
|
|
{
|
2009-10-10 22:31:41 +08:00
|
|
|
const guchar *src = srcPR->data;
|
|
|
|
guchar *dest = destPR->data;
|
|
|
|
gint x, y;
|
1999-08-22 19:45:31 +08:00
|
|
|
|
1999-04-09 14:00:11 +08:00
|
|
|
for (y = 0; y < srcPR->h; y++)
|
|
|
|
{
|
1999-08-22 19:45:31 +08:00
|
|
|
for (x = 0; x < srcPR->w; x++)
|
2006-04-12 20:49:29 +08:00
|
|
|
{
|
|
|
|
dest[x] = MIN (dest[x], src[x]);
|
|
|
|
}
|
2003-09-04 20:18:40 +08:00
|
|
|
|
1999-08-22 19:45:31 +08:00
|
|
|
src += srcPR->rowstride;
|
|
|
|
dest += destPR->rowstride;
|
2003-09-04 20:18:40 +08:00
|
|
|
}
|
1999-04-09 14:00:11 +08:00
|
|
|
}
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
void
|
2002-03-19 00:22:14 +08:00
|
|
|
gimp_channel_combine_mask (GimpChannel *mask,
|
2006-04-12 20:49:29 +08:00
|
|
|
GimpChannel *add_on,
|
|
|
|
GimpChannelOps op,
|
|
|
|
gint off_x,
|
|
|
|
gint off_y)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
|
|
|
PixelRegion srcPR, destPR;
|
2005-09-07 18:08:02 +08:00
|
|
|
gint x, y, w, h;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2001-08-11 22:39:19 +08:00
|
|
|
g_return_if_fail (GIMP_IS_CHANNEL (mask));
|
|
|
|
g_return_if_fail (GIMP_IS_CHANNEL (add_on));
|
|
|
|
|
2005-09-07 18:08:02 +08:00
|
|
|
if (! gimp_rectangle_intersect (off_x, off_y,
|
2008-11-03 08:09:01 +08:00
|
|
|
gimp_item_get_width (GIMP_ITEM (add_on)),
|
|
|
|
gimp_item_get_height (GIMP_ITEM (add_on)),
|
2005-09-07 18:08:02 +08:00
|
|
|
0, 0,
|
2008-11-03 08:09:01 +08:00
|
|
|
gimp_item_get_width (GIMP_ITEM (mask)),
|
|
|
|
gimp_item_get_height (GIMP_ITEM (mask)),
|
2005-09-07 18:08:02 +08:00
|
|
|
&x, &y, &w, &h))
|
|
|
|
return;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2007-12-24 00:58:41 +08:00
|
|
|
pixel_region_init (&srcPR, gimp_drawable_get_tiles (GIMP_DRAWABLE (add_on)),
|
2006-04-12 20:49:29 +08:00
|
|
|
x - off_x, y - off_y, w, h, FALSE);
|
2007-12-24 00:58:41 +08:00
|
|
|
pixel_region_init (&destPR, gimp_drawable_get_tiles (GIMP_DRAWABLE (mask)),
|
2005-09-07 18:08:02 +08:00
|
|
|
x, y, w, h, TRUE);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-04-09 14:00:11 +08:00
|
|
|
switch (op)
|
1999-08-22 19:45:31 +08:00
|
|
|
{
|
2002-03-19 00:22:14 +08:00
|
|
|
case GIMP_CHANNEL_OP_ADD:
|
|
|
|
case GIMP_CHANNEL_OP_REPLACE:
|
2005-02-12 01:03:56 +08:00
|
|
|
pixel_regions_process_parallel ((PixelProcessorFunc)
|
2006-04-12 20:49:29 +08:00
|
|
|
gimp_channel_combine_sub_region_add,
|
|
|
|
NULL, 2, &srcPR, &destPR);
|
1999-08-22 19:45:31 +08:00
|
|
|
break;
|
2002-08-30 00:48:17 +08:00
|
|
|
|
2002-03-19 00:22:14 +08:00
|
|
|
case GIMP_CHANNEL_OP_SUBTRACT:
|
2005-02-12 01:03:56 +08:00
|
|
|
pixel_regions_process_parallel ((PixelProcessorFunc)
|
2006-04-12 20:49:29 +08:00
|
|
|
gimp_channel_combine_sub_region_sub,
|
|
|
|
NULL, 2, &srcPR, &destPR);
|
1999-08-22 19:45:31 +08:00
|
|
|
break;
|
2002-08-30 00:48:17 +08:00
|
|
|
|
2002-03-19 00:22:14 +08:00
|
|
|
case GIMP_CHANNEL_OP_INTERSECT:
|
2005-02-12 01:03:56 +08:00
|
|
|
pixel_regions_process_parallel ((PixelProcessorFunc)
|
2006-04-12 20:49:29 +08:00
|
|
|
gimp_channel_combine_sub_region_intersect,
|
|
|
|
NULL, 2, &srcPR, &destPR);
|
1999-08-22 19:45:31 +08:00
|
|
|
break;
|
2002-08-30 00:48:17 +08:00
|
|
|
|
1999-08-22 19:45:31 +08:00
|
|
|
default:
|
2004-05-12 16:13:33 +08:00
|
|
|
g_warning ("%s: unknown operation type", G_STRFUNC);
|
1999-08-22 19:45:31 +08:00
|
|
|
break;
|
|
|
|
}
|
2001-01-29 10:45:02 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
mask->bounds_known = FALSE;
|
2003-10-06 20:17:11 +08:00
|
|
|
|
2005-09-07 18:08:02 +08:00
|
|
|
gimp_drawable_update (GIMP_DRAWABLE (mask), x, y, w, h);
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|