2009-12-30 22:18:44 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* gimpoperationdifferencemode.c
|
|
|
|
* Copyright (C) 2008 Michael Natterer <mitch@gimp.org>
|
2012-04-22 03:05:49 +08:00
|
|
|
* 2012 Ville Sokk <ville.sokk@gmail.com>
|
2009-12-30 22:18:44 +08:00
|
|
|
*
|
2014-01-05 21:22:08 +08:00
|
|
|
* This program is free software: you can redistribute it and/or modify
|
2009-12-30 22:18:44 +08:00
|
|
|
* it under the terms of the GNU General Public License as published by
|
2014-01-05 21:22:08 +08:00
|
|
|
* the Free Software Foundation; either version 3 of the License, or
|
2009-12-30 22:18:44 +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
|
2014-01-05 21:22:08 +08:00
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
2009-12-30 22:18:44 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <gegl-plugin.h>
|
|
|
|
|
2017-01-10 06:44:57 +08:00
|
|
|
#include "../operations-types.h"
|
2009-12-30 22:18:44 +08:00
|
|
|
|
2017-01-10 06:44:57 +08:00
|
|
|
#include "gimpoperationdifferencelegacy.h"
|
2009-12-30 22:18:44 +08:00
|
|
|
|
2017-01-10 06:44:57 +08:00
|
|
|
G_DEFINE_TYPE (GimpOperationDifferenceLegacy, gimp_operation_difference_legacy,
|
2009-12-30 22:18:44 +08:00
|
|
|
GIMP_TYPE_OPERATION_POINT_LAYER_MODE)
|
|
|
|
|
|
|
|
static void
|
2017-01-10 06:44:57 +08:00
|
|
|
gimp_operation_difference_legacy_class_init (GimpOperationDifferenceLegacyClass *klass)
|
2009-12-30 22:18:44 +08:00
|
|
|
{
|
2012-05-19 04:35:00 +08:00
|
|
|
GeglOperationClass *operation_class;
|
|
|
|
GeglOperationPointComposer3Class *point_class;
|
2009-12-30 22:18:44 +08:00
|
|
|
|
|
|
|
operation_class = GEGL_OPERATION_CLASS (klass);
|
2012-05-19 04:35:00 +08:00
|
|
|
point_class = GEGL_OPERATION_POINT_COMPOSER3_CLASS (klass);
|
2009-12-30 22:18:44 +08:00
|
|
|
|
2012-03-30 02:22:22 +08:00
|
|
|
gegl_operation_class_set_keys (operation_class,
|
2017-01-11 03:09:44 +08:00
|
|
|
"name", "gimp:difference-legacy",
|
2012-04-21 06:46:48 +08:00
|
|
|
"description", "GIMP difference mode operation",
|
|
|
|
NULL);
|
2009-12-30 22:18:44 +08:00
|
|
|
|
2017-01-10 06:44:57 +08:00
|
|
|
point_class->process = gimp_operation_difference_legacy_process;
|
2009-12-30 22:18:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2017-01-10 06:44:57 +08:00
|
|
|
gimp_operation_difference_legacy_init (GimpOperationDifferenceLegacy *self)
|
2009-12-30 22:18:44 +08:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2017-01-21 08:37:37 +08:00
|
|
|
|
|
|
|
gboolean
|
|
|
|
gimp_operation_difference_legacy_process (GeglOperation *op,
|
|
|
|
void *in_p,
|
|
|
|
void *layer_p,
|
|
|
|
void *mask_p,
|
|
|
|
void *out_p,
|
2017-01-10 06:44:57 +08:00
|
|
|
glong samples,
|
|
|
|
const GeglRectangle *roi,
|
|
|
|
gint level)
|
2009-12-30 22:18:44 +08:00
|
|
|
{
|
2017-01-21 08:37:37 +08:00
|
|
|
GimpOperationPointLayerMode *layer_mode = (gpointer)op;
|
|
|
|
gfloat opacity = layer_mode->opacity;
|
|
|
|
gfloat *in = in_p, *out = out_p, *layer = layer_p, *mask = mask_p;
|
2012-06-01 03:06:31 +08:00
|
|
|
|
|
|
|
while (samples--)
|
2009-12-30 22:18:44 +08:00
|
|
|
{
|
2012-06-01 03:06:31 +08:00
|
|
|
gfloat comp_alpha, new_alpha;
|
2012-05-19 04:35:00 +08:00
|
|
|
|
2012-06-01 03:06:31 +08:00
|
|
|
comp_alpha = MIN (in[ALPHA], layer[ALPHA]) * opacity;
|
2017-01-21 08:37:37 +08:00
|
|
|
if (mask)
|
2012-06-01 03:06:31 +08:00
|
|
|
comp_alpha *= *mask;
|
2012-05-19 04:35:00 +08:00
|
|
|
|
2012-06-01 03:06:31 +08:00
|
|
|
new_alpha = in[ALPHA] + (1.0 - in[ALPHA]) * comp_alpha;
|
2012-05-19 04:35:00 +08:00
|
|
|
|
2012-06-01 03:06:31 +08:00
|
|
|
if (comp_alpha && new_alpha)
|
|
|
|
{
|
|
|
|
gfloat ratio = comp_alpha / new_alpha;
|
|
|
|
gint b;
|
2012-05-19 04:35:00 +08:00
|
|
|
|
2012-06-01 03:06:31 +08:00
|
|
|
for (b = RED; b < ALPHA; b++)
|
2012-05-19 04:35:00 +08:00
|
|
|
{
|
2012-06-01 03:06:31 +08:00
|
|
|
gfloat comp = in[b] - layer[b];
|
|
|
|
comp = (comp < 0) ? -comp : comp;
|
2012-05-19 04:35:00 +08:00
|
|
|
|
2012-06-01 03:06:31 +08:00
|
|
|
out[b] = comp * ratio + in[b] * (1.0 - ratio);
|
2012-05-19 04:35:00 +08:00
|
|
|
}
|
|
|
|
}
|
2012-06-01 03:06:31 +08:00
|
|
|
else
|
2012-05-19 04:35:00 +08:00
|
|
|
{
|
2012-06-01 03:06:31 +08:00
|
|
|
gint b;
|
2012-05-19 04:35:00 +08:00
|
|
|
|
2012-06-01 03:06:31 +08:00
|
|
|
for (b = RED; b < ALPHA; b++)
|
2012-05-19 04:35:00 +08:00
|
|
|
{
|
2012-06-01 03:06:31 +08:00
|
|
|
out[b] = in[b];
|
2012-05-19 04:35:00 +08:00
|
|
|
}
|
2012-06-01 03:06:31 +08:00
|
|
|
}
|
2012-05-19 04:35:00 +08:00
|
|
|
|
2012-06-01 03:06:31 +08:00
|
|
|
out[ALPHA] = in[ALPHA];
|
2012-05-19 04:35:00 +08:00
|
|
|
|
2012-06-01 03:06:31 +08:00
|
|
|
in += 4;
|
|
|
|
layer += 4;
|
|
|
|
out += 4;
|
|
|
|
|
2017-01-21 08:37:37 +08:00
|
|
|
if (mask)
|
2012-06-01 03:06:31 +08:00
|
|
|
mask++;
|
2009-12-30 22:18:44 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|