2012-03-16 19:49:34 +08:00
|
|
|
/* GIMP - The GNU Image Manipulation Program
|
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* gimp-gegl-nodes.h
|
|
|
|
* 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 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 <http://www.gnu.org/licenses/>.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <gegl.h>
|
|
|
|
|
|
|
|
#include "gimp-gegl-types.h"
|
|
|
|
|
2017-02-05 22:59:29 +08:00
|
|
|
#include "operations/layer-modes/gimp-layer-modes.h"
|
2017-01-15 22:23:57 +08:00
|
|
|
|
2012-03-16 19:49:34 +08:00
|
|
|
#include "gimp-gegl-nodes.h"
|
|
|
|
#include "gimp-gegl-utils.h"
|
|
|
|
|
|
|
|
|
|
|
|
GeglNode *
|
2017-10-21 23:21:10 +08:00
|
|
|
gimp_gegl_create_flatten_node (const GimpRGB *background,
|
|
|
|
GimpLayerColorSpace composite_space)
|
2012-03-16 19:49:34 +08:00
|
|
|
{
|
|
|
|
GeglNode *node;
|
|
|
|
GeglNode *input;
|
|
|
|
GeglNode *output;
|
|
|
|
GeglNode *color;
|
2017-10-21 23:32:07 +08:00
|
|
|
GeglNode *mode;
|
2012-03-16 19:49:34 +08:00
|
|
|
GeglColor *c;
|
|
|
|
|
|
|
|
g_return_val_if_fail (background != NULL, NULL);
|
2017-10-21 23:21:10 +08:00
|
|
|
g_return_val_if_fail (composite_space == GIMP_LAYER_COLOR_SPACE_RGB_LINEAR ||
|
|
|
|
composite_space == GIMP_LAYER_COLOR_SPACE_RGB_PERCEPTUAL,
|
|
|
|
NULL);
|
2012-03-16 19:49:34 +08:00
|
|
|
|
|
|
|
node = gegl_node_new ();
|
|
|
|
|
|
|
|
input = gegl_node_get_input_proxy (node, "input");
|
|
|
|
output = gegl_node_get_output_proxy (node, "output");
|
|
|
|
|
2012-03-20 17:27:28 +08:00
|
|
|
c = gimp_gegl_color_new (background);
|
2012-03-16 19:49:34 +08:00
|
|
|
color = gegl_node_new_child (node,
|
|
|
|
"operation", "gegl:color",
|
|
|
|
"value", c,
|
|
|
|
NULL);
|
|
|
|
g_object_unref (c);
|
|
|
|
|
2017-10-21 23:32:07 +08:00
|
|
|
mode = gegl_node_new_child (node,
|
|
|
|
"operation", "gimp:normal",
|
2012-03-16 19:49:34 +08:00
|
|
|
NULL);
|
2017-10-21 23:32:07 +08:00
|
|
|
gimp_gegl_mode_node_set_mode (mode,
|
|
|
|
GIMP_LAYER_MODE_NORMAL,
|
|
|
|
GIMP_LAYER_COLOR_SPACE_AUTO,
|
|
|
|
composite_space,
|
|
|
|
GIMP_LAYER_COMPOSITE_AUTO);
|
2012-03-16 19:49:34 +08:00
|
|
|
|
|
|
|
gegl_node_connect_to (input, "output",
|
2017-10-21 23:32:07 +08:00
|
|
|
mode, "aux");
|
2012-03-16 19:49:34 +08:00
|
|
|
gegl_node_connect_to (color, "output",
|
2017-10-21 23:32:07 +08:00
|
|
|
mode, "input");
|
|
|
|
gegl_node_connect_to (mode, "output",
|
2012-03-16 19:49:34 +08:00
|
|
|
output, "input");
|
|
|
|
|
|
|
|
return node;
|
|
|
|
}
|
2012-03-17 00:29:28 +08:00
|
|
|
|
|
|
|
GeglNode *
|
|
|
|
gimp_gegl_create_apply_opacity_node (GeglBuffer *mask,
|
2012-03-19 09:30:18 +08:00
|
|
|
gint mask_offset_x,
|
2012-03-24 22:22:49 +08:00
|
|
|
gint mask_offset_y,
|
|
|
|
gdouble opacity)
|
2012-03-17 00:29:28 +08:00
|
|
|
{
|
|
|
|
GeglNode *node;
|
|
|
|
GeglNode *input;
|
|
|
|
GeglNode *output;
|
|
|
|
GeglNode *opacity_node;
|
|
|
|
GeglNode *mask_source;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GEGL_IS_BUFFER (mask), NULL);
|
|
|
|
|
|
|
|
node = gegl_node_new ();
|
|
|
|
|
|
|
|
input = gegl_node_get_input_proxy (node, "input");
|
|
|
|
output = gegl_node_get_output_proxy (node, "output");
|
|
|
|
|
|
|
|
opacity_node = gegl_node_new_child (node,
|
|
|
|
"operation", "gegl:opacity",
|
|
|
|
"value", opacity,
|
|
|
|
NULL);
|
2012-03-24 21:54:36 +08:00
|
|
|
|
|
|
|
mask_source = gimp_gegl_add_buffer_source (node, mask,
|
2012-03-24 22:22:49 +08:00
|
|
|
mask_offset_x,
|
|
|
|
mask_offset_y);
|
2012-03-17 00:29:28 +08:00
|
|
|
|
|
|
|
gegl_node_connect_to (input, "output",
|
|
|
|
opacity_node, "input");
|
2012-03-24 21:54:36 +08:00
|
|
|
gegl_node_connect_to (mask_source, "output",
|
|
|
|
opacity_node, "aux");
|
|
|
|
gegl_node_connect_to (opacity_node, "output",
|
|
|
|
output, "input");
|
|
|
|
|
|
|
|
return node;
|
|
|
|
}
|
|
|
|
|
|
|
|
GeglNode *
|
|
|
|
gimp_gegl_add_buffer_source (GeglNode *parent,
|
|
|
|
GeglBuffer *buffer,
|
|
|
|
gint offset_x,
|
|
|
|
gint offset_y)
|
|
|
|
{
|
|
|
|
GeglNode *buffer_source;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GEGL_IS_NODE (parent), NULL);
|
|
|
|
g_return_val_if_fail (GEGL_IS_BUFFER (buffer), NULL);
|
|
|
|
|
|
|
|
buffer_source = gegl_node_new_child (parent,
|
|
|
|
"operation", "gegl:buffer-source",
|
|
|
|
"buffer", buffer,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
if (offset_x != 0 || offset_y != 0)
|
|
|
|
{
|
|
|
|
GeglNode *translate =
|
|
|
|
gegl_node_new_child (parent,
|
|
|
|
"operation", "gegl:translate",
|
|
|
|
"x", (gdouble) offset_x,
|
|
|
|
"y", (gdouble) offset_y,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
gegl_node_connect_to (buffer_source, "output",
|
|
|
|
translate, "input");
|
|
|
|
|
|
|
|
buffer_source = translate;
|
|
|
|
}
|
|
|
|
|
|
|
|
return buffer_source;
|
|
|
|
}
|
2012-03-25 01:28:05 +08:00
|
|
|
|
|
|
|
void
|
2017-02-02 07:38:25 +08:00
|
|
|
gimp_gegl_mode_node_set_mode (GeglNode *node,
|
|
|
|
GimpLayerMode mode,
|
2017-02-13 06:49:26 +08:00
|
|
|
GimpLayerColorSpace blend_space,
|
|
|
|
GimpLayerColorSpace composite_space,
|
|
|
|
GimpLayerCompositeMode composite_mode)
|
2012-03-25 01:28:05 +08:00
|
|
|
{
|
2017-01-15 22:23:57 +08:00
|
|
|
gdouble opacity;
|
2012-03-25 01:28:05 +08:00
|
|
|
|
|
|
|
g_return_if_fail (GEGL_IS_NODE (node));
|
|
|
|
|
2017-02-13 06:49:26 +08:00
|
|
|
if (blend_space == GIMP_LAYER_COLOR_SPACE_AUTO)
|
|
|
|
blend_space = gimp_layer_mode_get_blend_space (mode);
|
|
|
|
|
|
|
|
if (composite_space == GIMP_LAYER_COLOR_SPACE_AUTO)
|
|
|
|
composite_space = gimp_layer_mode_get_composite_space (mode);
|
|
|
|
|
|
|
|
if (composite_mode == GIMP_LAYER_COMPOSITE_AUTO)
|
|
|
|
composite_mode = gimp_layer_mode_get_composite_mode (mode);
|
2017-02-02 07:38:25 +08:00
|
|
|
|
2013-06-13 04:13:01 +08:00
|
|
|
gegl_node_get (node,
|
|
|
|
"opacity", &opacity,
|
|
|
|
NULL);
|
|
|
|
|
2013-10-19 23:31:32 +08:00
|
|
|
/* setting the operation creates a new instance, so we have to set
|
|
|
|
* all its properties
|
|
|
|
*/
|
2012-03-25 01:28:05 +08:00
|
|
|
gegl_node_set (node,
|
2017-01-23 00:14:44 +08:00
|
|
|
"operation", gimp_layer_mode_get_operation (mode),
|
|
|
|
"layer-mode", mode,
|
|
|
|
"opacity", opacity,
|
2017-02-13 06:49:26 +08:00
|
|
|
"blend-space", blend_space,
|
|
|
|
"composite-space", composite_space,
|
|
|
|
"composite-mode", composite_mode,
|
2017-01-12 05:13:14 +08:00
|
|
|
NULL);
|
2012-03-25 01:28:05 +08:00
|
|
|
}
|
2012-03-31 22:18:13 +08:00
|
|
|
|
2013-04-27 14:23:58 +08:00
|
|
|
void
|
2013-04-23 04:53:07 +08:00
|
|
|
gimp_gegl_mode_node_set_opacity (GeglNode *node,
|
|
|
|
gdouble opacity)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GEGL_IS_NODE (node));
|
|
|
|
|
|
|
|
gegl_node_set (node,
|
|
|
|
"opacity", opacity,
|
|
|
|
NULL);
|
|
|
|
}
|
|
|
|
|
2012-03-31 22:18:13 +08:00
|
|
|
void
|
|
|
|
gimp_gegl_node_set_matrix (GeglNode *node,
|
|
|
|
const GimpMatrix3 *matrix)
|
|
|
|
{
|
|
|
|
gchar *matrix_string;
|
|
|
|
|
|
|
|
g_return_if_fail (GEGL_IS_NODE (node));
|
|
|
|
g_return_if_fail (matrix != NULL);
|
|
|
|
|
|
|
|
matrix_string = gegl_matrix3_to_string ((GeglMatrix3 *) matrix);
|
|
|
|
|
|
|
|
gegl_node_set (node,
|
|
|
|
"transform", matrix_string,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
g_free (matrix_string);
|
|
|
|
}
|
2013-10-19 23:31:32 +08:00
|
|
|
|
|
|
|
void
|
|
|
|
gimp_gegl_node_set_color (GeglNode *node,
|
|
|
|
const GimpRGB *color)
|
|
|
|
{
|
|
|
|
GeglColor *gegl_color;
|
|
|
|
|
|
|
|
g_return_if_fail (GEGL_IS_NODE (node));
|
|
|
|
g_return_if_fail (color != NULL);
|
|
|
|
|
|
|
|
gegl_color = gimp_gegl_color_new (color);
|
|
|
|
|
|
|
|
gegl_node_set (node,
|
|
|
|
"value", gegl_color,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
g_object_unref (gegl_color);
|
|
|
|
}
|