2012-03-24 23:22:02 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* gimpoperationnormalmode.c
|
|
|
|
* Copyright (C) 2012 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 2 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, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <gegl-plugin.h>
|
|
|
|
|
2012-05-11 03:22:44 +08:00
|
|
|
#include "operations-types.h"
|
2012-03-24 23:22:02 +08:00
|
|
|
|
|
|
|
#include "gimpoperationnormalmode.h"
|
|
|
|
|
|
|
|
|
|
|
|
static gboolean gimp_operation_normal_parent_process (GeglOperation *operation,
|
|
|
|
GeglOperationContext *context,
|
|
|
|
const gchar *output_prop,
|
2012-03-25 11:51:55 +08:00
|
|
|
const GeglRectangle *result,
|
|
|
|
gint level);
|
2012-03-24 23:22:02 +08:00
|
|
|
static gboolean gimp_operation_normal_mode_process (GeglOperation *operation,
|
|
|
|
void *in_buf,
|
|
|
|
void *aux_buf,
|
2012-05-19 04:35:00 +08:00
|
|
|
void *aux2_buf,
|
2012-03-24 23:22:02 +08:00
|
|
|
void *out_buf,
|
|
|
|
glong samples,
|
2012-03-25 11:51:55 +08:00
|
|
|
const GeglRectangle *roi,
|
|
|
|
gint level);
|
2012-03-24 23:22:02 +08:00
|
|
|
|
|
|
|
|
|
|
|
G_DEFINE_TYPE (GimpOperationNormalMode, gimp_operation_normal_mode,
|
|
|
|
GIMP_TYPE_OPERATION_POINT_LAYER_MODE)
|
|
|
|
|
|
|
|
#define parent_class gimp_operation_normal_mode_parent_class
|
|
|
|
|
2012-06-15 01:18:42 +08:00
|
|
|
static const gchar* reference_xml = "<?xml version='1.0' encoding='UTF-8'?>"
|
|
|
|
"<gegl>"
|
|
|
|
"<node operation='gimp:normal-mode'>"
|
|
|
|
" <node operation='gegl:load'>"
|
|
|
|
" <params>"
|
|
|
|
" <param name='path'>blending-test-B.png</param>"
|
|
|
|
" </params>"
|
|
|
|
" </node>"
|
|
|
|
"</node>"
|
|
|
|
"<node operation='gegl:load'>"
|
|
|
|
" <params>"
|
|
|
|
" <param name='path'>blending-test-A.png</param>"
|
|
|
|
" </params>"
|
|
|
|
"</node>"
|
|
|
|
"</gegl>";
|
|
|
|
|
2012-03-24 23:22:02 +08:00
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_operation_normal_mode_class_init (GimpOperationNormalModeClass *klass)
|
|
|
|
{
|
2012-05-19 04:35:00 +08:00
|
|
|
GeglOperationClass *operation_class;
|
|
|
|
GeglOperationPointComposer3Class *point_class;
|
2012-03-24 23:22:02 +08:00
|
|
|
|
|
|
|
operation_class = GEGL_OPERATION_CLASS (klass);
|
2012-05-19 04:35:00 +08:00
|
|
|
point_class = GEGL_OPERATION_POINT_COMPOSER3_CLASS (klass);
|
2012-03-24 23:22:02 +08:00
|
|
|
|
2012-03-30 02:37:40 +08:00
|
|
|
gegl_operation_class_set_keys (operation_class,
|
2012-06-09 02:31:17 +08:00
|
|
|
"name", "gimp:normal-mode",
|
|
|
|
"description", "GIMP normal mode operation",
|
|
|
|
"reference-image", "normal-mode.png",
|
2012-06-15 01:18:42 +08:00
|
|
|
"reference-composition", reference_xml,
|
2012-04-21 06:46:48 +08:00
|
|
|
NULL);
|
2012-03-30 02:37:40 +08:00
|
|
|
|
2012-03-24 23:22:02 +08:00
|
|
|
operation_class->process = gimp_operation_normal_parent_process;
|
|
|
|
|
|
|
|
point_class->process = gimp_operation_normal_mode_process;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_operation_normal_mode_init (GimpOperationNormalMode *self)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gimp_operation_normal_parent_process (GeglOperation *operation,
|
|
|
|
GeglOperationContext *context,
|
|
|
|
const gchar *output_prop,
|
2012-03-25 11:51:55 +08:00
|
|
|
const GeglRectangle *result,
|
|
|
|
gint level)
|
2012-03-24 23:22:02 +08:00
|
|
|
{
|
2013-03-11 22:38:28 +08:00
|
|
|
GimpOperationPointLayerMode *point;
|
2012-03-24 23:22:02 +08:00
|
|
|
|
2013-03-11 22:38:28 +08:00
|
|
|
point = GIMP_OPERATION_POINT_LAYER_MODE (operation);
|
2012-03-24 23:22:02 +08:00
|
|
|
|
2013-03-11 22:38:28 +08:00
|
|
|
if (point->opacity == 1.0 &&
|
|
|
|
! gegl_operation_context_get_object (context, "aux2"))
|
2012-03-24 23:22:02 +08:00
|
|
|
{
|
2013-03-11 22:38:28 +08:00
|
|
|
const GeglRectangle *in_extent = NULL;
|
|
|
|
const GeglRectangle *aux_extent = NULL;
|
|
|
|
GObject *input;
|
|
|
|
GObject *aux;
|
|
|
|
|
|
|
|
/* get the raw values this does not increase the reference count */
|
|
|
|
input = gegl_operation_context_get_object (context, "input");
|
|
|
|
aux = gegl_operation_context_get_object (context, "aux");
|
|
|
|
|
|
|
|
/* pass the input/aux buffers directly through if they are not
|
|
|
|
* overlapping
|
|
|
|
*/
|
|
|
|
if (input)
|
|
|
|
in_extent = gegl_buffer_get_abyss (GEGL_BUFFER (input));
|
|
|
|
|
|
|
|
if (! input ||
|
|
|
|
(aux && ! gegl_rectangle_intersect (NULL, in_extent, result)))
|
|
|
|
{
|
|
|
|
gegl_operation_context_set_object (context, "output", aux);
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (aux)
|
|
|
|
aux_extent = gegl_buffer_get_abyss (GEGL_BUFFER (aux));
|
|
|
|
|
|
|
|
if (! aux ||
|
|
|
|
(input && ! gegl_rectangle_intersect (NULL, aux_extent, result)))
|
|
|
|
{
|
|
|
|
gegl_operation_context_set_object (context, "output", input);
|
|
|
|
return TRUE;
|
|
|
|
}
|
2012-03-24 23:22:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* chain up, which will create the needed buffers for our actual
|
|
|
|
* process function
|
|
|
|
*/
|
|
|
|
return GEGL_OPERATION_CLASS (parent_class)->process (operation, context,
|
2012-03-25 11:51:55 +08:00
|
|
|
output_prop, result,
|
|
|
|
level);
|
2012-03-24 23:22:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gimp_operation_normal_mode_process (GeglOperation *operation,
|
|
|
|
void *in_buf,
|
|
|
|
void *aux_buf,
|
2012-05-19 04:35:00 +08:00
|
|
|
void *aux2_buf,
|
2012-03-24 23:22:02 +08:00
|
|
|
void *out_buf,
|
|
|
|
glong samples,
|
2012-03-25 11:51:55 +08:00
|
|
|
const GeglRectangle *roi,
|
|
|
|
gint level)
|
2012-03-24 23:22:02 +08:00
|
|
|
{
|
2012-06-01 03:06:31 +08:00
|
|
|
GimpOperationPointLayerMode *point = GIMP_OPERATION_POINT_LAYER_MODE (operation);
|
|
|
|
gdouble opacity = point->opacity;
|
|
|
|
gfloat *in = in_buf;
|
|
|
|
gfloat *aux = aux_buf;
|
|
|
|
gfloat *mask = aux2_buf;
|
|
|
|
gfloat *out = out_buf;
|
|
|
|
const gboolean has_mask = mask != NULL;
|
2012-03-24 23:22:02 +08:00
|
|
|
|
2012-12-14 05:58:38 +08:00
|
|
|
while (samples--)
|
2012-03-24 23:22:02 +08:00
|
|
|
{
|
2012-12-14 05:58:38 +08:00
|
|
|
gfloat aux_alpha;
|
|
|
|
|
|
|
|
aux_alpha = aux[ALPHA] * opacity;
|
|
|
|
if (has_mask)
|
|
|
|
aux_alpha *= *mask;
|
2012-05-19 04:35:00 +08:00
|
|
|
|
2012-12-14 05:58:38 +08:00
|
|
|
out[ALPHA] = aux_alpha + in[ALPHA] - aux_alpha * in[ALPHA];
|
|
|
|
|
|
|
|
if (out[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-12-14 05:58:38 +08:00
|
|
|
out[b] = (aux[b] * aux_alpha + in[b] * in[ALPHA] * (1.0f - aux_alpha)) / out[ALPHA];
|
2012-06-01 03:06:31 +08:00
|
|
|
}
|
2012-03-24 23:22:02 +08:00
|
|
|
}
|
2012-12-14 05:58:38 +08:00
|
|
|
else
|
2012-05-19 04:35:00 +08:00
|
|
|
{
|
2012-12-14 05:58:38 +08:00
|
|
|
gint b;
|
2012-06-01 03:06:31 +08:00
|
|
|
|
2012-12-14 05:58:38 +08:00
|
|
|
for (b = RED; b < ALPHA; b++)
|
2012-05-19 04:35:00 +08:00
|
|
|
{
|
2012-12-14 05:58:38 +08:00
|
|
|
out[b] = in[b];
|
2012-05-19 04:35:00 +08:00
|
|
|
}
|
2012-12-14 05:58:38 +08:00
|
|
|
}
|
2012-06-01 03:06:31 +08:00
|
|
|
|
2012-12-14 05:58:38 +08:00
|
|
|
in += 4;
|
|
|
|
aux += 4;
|
|
|
|
out += 4;
|
2012-06-01 03:06:31 +08:00
|
|
|
|
2012-12-14 05:58:38 +08:00
|
|
|
if (has_mask)
|
|
|
|
mask++;
|
2012-03-24 23:22:02 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|