plug-ins, pdb: remove plug-in noise-randomize
and implement its procedures as compat wrappers around GEGL ops.
This commit is contained in:
@ -28,7 +28,7 @@
|
|||||||
#include "internal-procs.h"
|
#include "internal-procs.h"
|
||||||
|
|
||||||
|
|
||||||
/* 681 procedures registered total */
|
/* 684 procedures registered total */
|
||||||
|
|
||||||
void
|
void
|
||||||
internal_procs_init (GimpPDB *pdb)
|
internal_procs_init (GimpPDB *pdb)
|
||||||
|
@ -334,6 +334,168 @@ plug_in_polar_coords_invoker (GimpProcedure *procedure,
|
|||||||
error ? *error : NULL);
|
error ? *error : NULL);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
static GimpValueArray *
|
||||||
|
plug_in_randomize_hurl_invoker (GimpProcedure *procedure,
|
||||||
|
Gimp *gimp,
|
||||||
|
GimpContext *context,
|
||||||
|
GimpProgress *progress,
|
||||||
|
const GimpValueArray *args,
|
||||||
|
GError **error)
|
||||||
|
{
|
||||||
|
gboolean success = TRUE;
|
||||||
|
GimpDrawable *drawable;
|
||||||
|
gdouble rndm_pct;
|
||||||
|
gdouble rndm_rcount;
|
||||||
|
gboolean randomize;
|
||||||
|
gint32 seed;
|
||||||
|
|
||||||
|
drawable = gimp_value_get_drawable (gimp_value_array_index (args, 2), gimp);
|
||||||
|
rndm_pct = g_value_get_double (gimp_value_array_index (args, 3));
|
||||||
|
rndm_rcount = g_value_get_double (gimp_value_array_index (args, 4));
|
||||||
|
randomize = g_value_get_boolean (gimp_value_array_index (args, 5));
|
||||||
|
seed = g_value_get_int (gimp_value_array_index (args, 6));
|
||||||
|
|
||||||
|
if (success)
|
||||||
|
{
|
||||||
|
if (gimp_pdb_item_is_attached (GIMP_ITEM (drawable), NULL,
|
||||||
|
GIMP_PDB_ITEM_CONTENT, error) &&
|
||||||
|
gimp_pdb_item_is_not_group (GIMP_ITEM (drawable), error))
|
||||||
|
{
|
||||||
|
GeglNode *node;
|
||||||
|
|
||||||
|
if (randomize)
|
||||||
|
seed = g_random_int ();
|
||||||
|
|
||||||
|
node =
|
||||||
|
gegl_node_new_child (NULL,
|
||||||
|
"operation", "gegl:noise-hurl",
|
||||||
|
"seed", seed,
|
||||||
|
"pct-random", rndm_pct,
|
||||||
|
"repeat", (gint) rndm_rcount,
|
||||||
|
NULL);
|
||||||
|
|
||||||
|
gimp_drawable_apply_operation (drawable, progress,
|
||||||
|
C_("undo-type", "Random Hurl"),
|
||||||
|
node);
|
||||||
|
|
||||||
|
g_object_unref (node);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
success = FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
return gimp_procedure_get_return_values (procedure, success,
|
||||||
|
error ? *error : NULL);
|
||||||
|
}
|
||||||
|
|
||||||
|
static GimpValueArray *
|
||||||
|
plug_in_randomize_pick_invoker (GimpProcedure *procedure,
|
||||||
|
Gimp *gimp,
|
||||||
|
GimpContext *context,
|
||||||
|
GimpProgress *progress,
|
||||||
|
const GimpValueArray *args,
|
||||||
|
GError **error)
|
||||||
|
{
|
||||||
|
gboolean success = TRUE;
|
||||||
|
GimpDrawable *drawable;
|
||||||
|
gdouble rndm_pct;
|
||||||
|
gdouble rndm_rcount;
|
||||||
|
gboolean randomize;
|
||||||
|
gint32 seed;
|
||||||
|
|
||||||
|
drawable = gimp_value_get_drawable (gimp_value_array_index (args, 2), gimp);
|
||||||
|
rndm_pct = g_value_get_double (gimp_value_array_index (args, 3));
|
||||||
|
rndm_rcount = g_value_get_double (gimp_value_array_index (args, 4));
|
||||||
|
randomize = g_value_get_boolean (gimp_value_array_index (args, 5));
|
||||||
|
seed = g_value_get_int (gimp_value_array_index (args, 6));
|
||||||
|
|
||||||
|
if (success)
|
||||||
|
{
|
||||||
|
if (gimp_pdb_item_is_attached (GIMP_ITEM (drawable), NULL,
|
||||||
|
GIMP_PDB_ITEM_CONTENT, error) &&
|
||||||
|
gimp_pdb_item_is_not_group (GIMP_ITEM (drawable), error))
|
||||||
|
{
|
||||||
|
GeglNode *node;
|
||||||
|
|
||||||
|
if (randomize)
|
||||||
|
seed = g_random_int ();
|
||||||
|
|
||||||
|
node =
|
||||||
|
gegl_node_new_child (NULL,
|
||||||
|
"operation", "gegl:noise-pick",
|
||||||
|
"seed", seed,
|
||||||
|
"pct-random", rndm_pct,
|
||||||
|
"repeat", (gint) rndm_rcount,
|
||||||
|
NULL);
|
||||||
|
|
||||||
|
gimp_drawable_apply_operation (drawable, progress,
|
||||||
|
C_("undo-type", "Random Pick"),
|
||||||
|
node);
|
||||||
|
|
||||||
|
g_object_unref (node);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
success = FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
return gimp_procedure_get_return_values (procedure, success,
|
||||||
|
error ? *error : NULL);
|
||||||
|
}
|
||||||
|
|
||||||
|
static GimpValueArray *
|
||||||
|
plug_in_randomize_slur_invoker (GimpProcedure *procedure,
|
||||||
|
Gimp *gimp,
|
||||||
|
GimpContext *context,
|
||||||
|
GimpProgress *progress,
|
||||||
|
const GimpValueArray *args,
|
||||||
|
GError **error)
|
||||||
|
{
|
||||||
|
gboolean success = TRUE;
|
||||||
|
GimpDrawable *drawable;
|
||||||
|
gdouble rndm_pct;
|
||||||
|
gdouble rndm_rcount;
|
||||||
|
gboolean randomize;
|
||||||
|
gint32 seed;
|
||||||
|
|
||||||
|
drawable = gimp_value_get_drawable (gimp_value_array_index (args, 2), gimp);
|
||||||
|
rndm_pct = g_value_get_double (gimp_value_array_index (args, 3));
|
||||||
|
rndm_rcount = g_value_get_double (gimp_value_array_index (args, 4));
|
||||||
|
randomize = g_value_get_boolean (gimp_value_array_index (args, 5));
|
||||||
|
seed = g_value_get_int (gimp_value_array_index (args, 6));
|
||||||
|
|
||||||
|
if (success)
|
||||||
|
{
|
||||||
|
if (gimp_pdb_item_is_attached (GIMP_ITEM (drawable), NULL,
|
||||||
|
GIMP_PDB_ITEM_CONTENT, error) &&
|
||||||
|
gimp_pdb_item_is_not_group (GIMP_ITEM (drawable), error))
|
||||||
|
{
|
||||||
|
GeglNode *node;
|
||||||
|
|
||||||
|
if (randomize)
|
||||||
|
seed = g_random_int ();
|
||||||
|
|
||||||
|
node =
|
||||||
|
gegl_node_new_child (NULL,
|
||||||
|
"operation", "gegl:noise-slur",
|
||||||
|
"seed", seed,
|
||||||
|
"pct-random", rndm_pct,
|
||||||
|
"repeat", (gint) rndm_rcount,
|
||||||
|
NULL);
|
||||||
|
|
||||||
|
gimp_drawable_apply_operation (drawable, progress,
|
||||||
|
C_("undo-type", "Random Slur"),
|
||||||
|
node);
|
||||||
|
|
||||||
|
g_object_unref (node);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
success = FALSE;
|
||||||
|
}
|
||||||
|
|
||||||
|
return gimp_procedure_get_return_values (procedure, success,
|
||||||
|
error ? *error : NULL);
|
||||||
|
}
|
||||||
|
|
||||||
static GimpValueArray *
|
static GimpValueArray *
|
||||||
plug_in_semiflatten_invoker (GimpProcedure *procedure,
|
plug_in_semiflatten_invoker (GimpProcedure *procedure,
|
||||||
Gimp *gimp,
|
Gimp *gimp,
|
||||||
@ -735,6 +897,186 @@ register_plug_in_compat_procs (GimpPDB *pdb)
|
|||||||
gimp_pdb_register_procedure (pdb, procedure);
|
gimp_pdb_register_procedure (pdb, procedure);
|
||||||
g_object_unref (procedure);
|
g_object_unref (procedure);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* gimp-plug-in-randomize-hurl
|
||||||
|
*/
|
||||||
|
procedure = gimp_procedure_new (plug_in_randomize_hurl_invoker);
|
||||||
|
gimp_object_set_static_name (GIMP_OBJECT (procedure),
|
||||||
|
"plug-in-randomize-hurl");
|
||||||
|
gimp_procedure_set_static_strings (procedure,
|
||||||
|
"plug-in-randomize-hurl",
|
||||||
|
"Completely randomize a fraction of pixels",
|
||||||
|
"This plug-in \"hurls\" randomly-valued pixels onto the selection or image. You may select the percentage of pixels to modify and the number of times to repeat the process.",
|
||||||
|
"Compatibility procedure. Please see 'gegl:noise-hurl' for credits.",
|
||||||
|
"Compatibility procedure. Please see 'gegl:noise-hurl' for credits.",
|
||||||
|
"2013",
|
||||||
|
NULL);
|
||||||
|
gimp_procedure_add_argument (procedure,
|
||||||
|
g_param_spec_enum ("run-mode",
|
||||||
|
"run mode",
|
||||||
|
"The run mode",
|
||||||
|
GIMP_TYPE_RUN_MODE,
|
||||||
|
GIMP_RUN_INTERACTIVE,
|
||||||
|
GIMP_PARAM_READWRITE));
|
||||||
|
gimp_procedure_add_argument (procedure,
|
||||||
|
gimp_param_spec_image_id ("image",
|
||||||
|
"image",
|
||||||
|
"Input image (unused)",
|
||||||
|
pdb->gimp, FALSE,
|
||||||
|
GIMP_PARAM_READWRITE));
|
||||||
|
gimp_procedure_add_argument (procedure,
|
||||||
|
gimp_param_spec_drawable_id ("drawable",
|
||||||
|
"drawable",
|
||||||
|
"Input drawable",
|
||||||
|
pdb->gimp, FALSE,
|
||||||
|
GIMP_PARAM_READWRITE));
|
||||||
|
gimp_procedure_add_argument (procedure,
|
||||||
|
g_param_spec_double ("rndm-pct",
|
||||||
|
"rndm pct",
|
||||||
|
"Randomization percentage",
|
||||||
|
1.0, 100.0, 1.0,
|
||||||
|
GIMP_PARAM_READWRITE));
|
||||||
|
gimp_procedure_add_argument (procedure,
|
||||||
|
g_param_spec_double ("rndm-rcount",
|
||||||
|
"rndm rcount",
|
||||||
|
"Repeat count",
|
||||||
|
1.0, 100.0, 1.0,
|
||||||
|
GIMP_PARAM_READWRITE));
|
||||||
|
gimp_procedure_add_argument (procedure,
|
||||||
|
g_param_spec_boolean ("randomize",
|
||||||
|
"randomize",
|
||||||
|
"Use random seed",
|
||||||
|
FALSE,
|
||||||
|
GIMP_PARAM_READWRITE));
|
||||||
|
gimp_procedure_add_argument (procedure,
|
||||||
|
gimp_param_spec_int32 ("seed",
|
||||||
|
"seed",
|
||||||
|
"Seed value (used only if randomize is FALSE)",
|
||||||
|
G_MININT32, G_MAXINT32, 0,
|
||||||
|
GIMP_PARAM_READWRITE));
|
||||||
|
gimp_pdb_register_procedure (pdb, procedure);
|
||||||
|
g_object_unref (procedure);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* gimp-plug-in-randomize-pick
|
||||||
|
*/
|
||||||
|
procedure = gimp_procedure_new (plug_in_randomize_pick_invoker);
|
||||||
|
gimp_object_set_static_name (GIMP_OBJECT (procedure),
|
||||||
|
"plug-in-randomize-pick");
|
||||||
|
gimp_procedure_set_static_strings (procedure,
|
||||||
|
"plug-in-randomize-pick",
|
||||||
|
"Randomly interchange some pixels with neighbors",
|
||||||
|
"This plug-in replaces a pixel with a random adjacent pixel. You may select the percentage of pixels to modify and the number of times to repeat the process.",
|
||||||
|
"Compatibility procedure. Please see 'gegl:noise-pick' for credits.",
|
||||||
|
"Compatibility procedure. Please see 'gegl:noise-pick' for credits.",
|
||||||
|
"2013",
|
||||||
|
NULL);
|
||||||
|
gimp_procedure_add_argument (procedure,
|
||||||
|
g_param_spec_enum ("run-mode",
|
||||||
|
"run mode",
|
||||||
|
"The run mode",
|
||||||
|
GIMP_TYPE_RUN_MODE,
|
||||||
|
GIMP_RUN_INTERACTIVE,
|
||||||
|
GIMP_PARAM_READWRITE));
|
||||||
|
gimp_procedure_add_argument (procedure,
|
||||||
|
gimp_param_spec_image_id ("image",
|
||||||
|
"image",
|
||||||
|
"Input image (unused)",
|
||||||
|
pdb->gimp, FALSE,
|
||||||
|
GIMP_PARAM_READWRITE));
|
||||||
|
gimp_procedure_add_argument (procedure,
|
||||||
|
gimp_param_spec_drawable_id ("drawable",
|
||||||
|
"drawable",
|
||||||
|
"Input drawable",
|
||||||
|
pdb->gimp, FALSE,
|
||||||
|
GIMP_PARAM_READWRITE));
|
||||||
|
gimp_procedure_add_argument (procedure,
|
||||||
|
g_param_spec_double ("rndm-pct",
|
||||||
|
"rndm pct",
|
||||||
|
"Randomization percentage",
|
||||||
|
1.0, 100.0, 1.0,
|
||||||
|
GIMP_PARAM_READWRITE));
|
||||||
|
gimp_procedure_add_argument (procedure,
|
||||||
|
g_param_spec_double ("rndm-rcount",
|
||||||
|
"rndm rcount",
|
||||||
|
"Repeat count",
|
||||||
|
1.0, 100.0, 1.0,
|
||||||
|
GIMP_PARAM_READWRITE));
|
||||||
|
gimp_procedure_add_argument (procedure,
|
||||||
|
g_param_spec_boolean ("randomize",
|
||||||
|
"randomize",
|
||||||
|
"Use random seed",
|
||||||
|
FALSE,
|
||||||
|
GIMP_PARAM_READWRITE));
|
||||||
|
gimp_procedure_add_argument (procedure,
|
||||||
|
gimp_param_spec_int32 ("seed",
|
||||||
|
"seed",
|
||||||
|
"Seed value (used only if randomize is FALSE)",
|
||||||
|
G_MININT32, G_MAXINT32, 0,
|
||||||
|
GIMP_PARAM_READWRITE));
|
||||||
|
gimp_pdb_register_procedure (pdb, procedure);
|
||||||
|
g_object_unref (procedure);
|
||||||
|
|
||||||
|
/*
|
||||||
|
* gimp-plug-in-randomize-slur
|
||||||
|
*/
|
||||||
|
procedure = gimp_procedure_new (plug_in_randomize_slur_invoker);
|
||||||
|
gimp_object_set_static_name (GIMP_OBJECT (procedure),
|
||||||
|
"plug-in-randomize-slur");
|
||||||
|
gimp_procedure_set_static_strings (procedure,
|
||||||
|
"plug-in-randomize-slur",
|
||||||
|
"Randomly slide some pixels downward (similar to melting",
|
||||||
|
"This plug-in \"slurs\" (melts like a bunch of icicles) an image. You may select the percentage of pixels to modify and the number of times to repeat the process.",
|
||||||
|
"Compatibility procedure. Please see 'gegl:noise-slur' for credits.",
|
||||||
|
"Compatibility procedure. Please see 'gegl:noise-slur' for credits.",
|
||||||
|
"2013",
|
||||||
|
NULL);
|
||||||
|
gimp_procedure_add_argument (procedure,
|
||||||
|
g_param_spec_enum ("run-mode",
|
||||||
|
"run mode",
|
||||||
|
"The run mode",
|
||||||
|
GIMP_TYPE_RUN_MODE,
|
||||||
|
GIMP_RUN_INTERACTIVE,
|
||||||
|
GIMP_PARAM_READWRITE));
|
||||||
|
gimp_procedure_add_argument (procedure,
|
||||||
|
gimp_param_spec_image_id ("image",
|
||||||
|
"image",
|
||||||
|
"Input image (unused)",
|
||||||
|
pdb->gimp, FALSE,
|
||||||
|
GIMP_PARAM_READWRITE));
|
||||||
|
gimp_procedure_add_argument (procedure,
|
||||||
|
gimp_param_spec_drawable_id ("drawable",
|
||||||
|
"drawable",
|
||||||
|
"Input drawable",
|
||||||
|
pdb->gimp, FALSE,
|
||||||
|
GIMP_PARAM_READWRITE));
|
||||||
|
gimp_procedure_add_argument (procedure,
|
||||||
|
g_param_spec_double ("rndm-pct",
|
||||||
|
"rndm pct",
|
||||||
|
"Randomization percentage",
|
||||||
|
1.0, 100.0, 1.0,
|
||||||
|
GIMP_PARAM_READWRITE));
|
||||||
|
gimp_procedure_add_argument (procedure,
|
||||||
|
g_param_spec_double ("rndm-rcount",
|
||||||
|
"rndm rcount",
|
||||||
|
"Repeat count",
|
||||||
|
1.0, 100.0, 1.0,
|
||||||
|
GIMP_PARAM_READWRITE));
|
||||||
|
gimp_procedure_add_argument (procedure,
|
||||||
|
g_param_spec_boolean ("randomize",
|
||||||
|
"randomize",
|
||||||
|
"Use random seed",
|
||||||
|
FALSE,
|
||||||
|
GIMP_PARAM_READWRITE));
|
||||||
|
gimp_procedure_add_argument (procedure,
|
||||||
|
gimp_param_spec_int32 ("seed",
|
||||||
|
"seed",
|
||||||
|
"Seed value (used only if randomize is FALSE)",
|
||||||
|
G_MININT32, G_MAXINT32, 0,
|
||||||
|
GIMP_PARAM_READWRITE));
|
||||||
|
gimp_pdb_register_procedure (pdb, procedure);
|
||||||
|
g_object_unref (procedure);
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* gimp-plug-in-semiflatten
|
* gimp-plug-in-semiflatten
|
||||||
*/
|
*/
|
||||||
|
2
plug-ins/common/.gitignore
vendored
2
plug-ins/common/.gitignore
vendored
@ -204,8 +204,6 @@
|
|||||||
/nl-filter.exe
|
/nl-filter.exe
|
||||||
/noise-hsv
|
/noise-hsv
|
||||||
/noise-hsv.exe
|
/noise-hsv.exe
|
||||||
/noise-randomize
|
|
||||||
/noise-randomize.exe
|
|
||||||
/noise-rgb
|
/noise-rgb
|
||||||
/noise-rgb.exe
|
/noise-rgb.exe
|
||||||
/noise-solid
|
/noise-solid
|
||||||
|
@ -145,7 +145,6 @@ libexec_PROGRAMS = \
|
|||||||
newsprint \
|
newsprint \
|
||||||
nl-filter \
|
nl-filter \
|
||||||
noise-hsv \
|
noise-hsv \
|
||||||
noise-randomize \
|
|
||||||
noise-rgb \
|
noise-rgb \
|
||||||
noise-solid \
|
noise-solid \
|
||||||
noise-spread \
|
noise-spread \
|
||||||
@ -1964,23 +1963,6 @@ noise_hsv_LDADD = \
|
|||||||
$(INTLLIBS) \
|
$(INTLLIBS) \
|
||||||
$(noise_hsv_RC)
|
$(noise_hsv_RC)
|
||||||
|
|
||||||
noise_randomize_SOURCES = \
|
|
||||||
noise-randomize.c
|
|
||||||
|
|
||||||
noise_randomize_LDADD = \
|
|
||||||
$(libgimpui) \
|
|
||||||
$(libgimpwidgets) \
|
|
||||||
$(libgimpmodule) \
|
|
||||||
$(libgimp) \
|
|
||||||
$(libgimpmath) \
|
|
||||||
$(libgimpconfig) \
|
|
||||||
$(libgimpcolor) \
|
|
||||||
$(libgimpbase) \
|
|
||||||
$(GTK_LIBS) \
|
|
||||||
$(RT_LIBS) \
|
|
||||||
$(INTLLIBS) \
|
|
||||||
$(noise_randomize_RC)
|
|
||||||
|
|
||||||
noise_rgb_SOURCES = \
|
noise_rgb_SOURCES = \
|
||||||
noise-rgb.c
|
noise-rgb.c
|
||||||
|
|
||||||
|
@ -99,7 +99,6 @@ mosaic_RC = mosaic.rc.o
|
|||||||
newsprint_RC = newsprint.rc.o
|
newsprint_RC = newsprint.rc.o
|
||||||
nl_filter_RC = nl-filter.rc.o
|
nl_filter_RC = nl-filter.rc.o
|
||||||
noise_hsv_RC = noise-hsv.rc.o
|
noise_hsv_RC = noise-hsv.rc.o
|
||||||
noise_randomize_RC = noise-randomize.rc.o
|
|
||||||
noise_rgb_RC = noise-rgb.rc.o
|
noise_rgb_RC = noise-rgb.rc.o
|
||||||
noise_solid_RC = noise-solid.rc.o
|
noise_solid_RC = noise-solid.rc.o
|
||||||
noise_spread_RC = noise-spread.rc.o
|
noise_spread_RC = noise-spread.rc.o
|
||||||
|
@ -1,809 +0,0 @@
|
|||||||
/****************************************************************************
|
|
||||||
* This is a plugin for GIMP v 1.0 or later. Documentation is
|
|
||||||
* available at http://www.rru.com/~meo/gimp/ .
|
|
||||||
*
|
|
||||||
* Copyright (C) 1997-8 Miles O'Neal <meo@rru.com> http://www.rru.com/~meo/
|
|
||||||
* GUI based on GTK code from:
|
|
||||||
* alienmap (Copyright (C) 1996, 1997 Daniel Cotting)
|
|
||||||
* plasma (Copyright (C) 1996 Stephen Norris),
|
|
||||||
* oilify (Copyright (C) 1996 Torsten Martinsen),
|
|
||||||
* ripple (Copyright (C) 1997 Brian Degenhardt) and
|
|
||||||
* whirl (Copyright (C) 1997 Federico Mena Quintero).
|
|
||||||
*
|
|
||||||
* 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/>.
|
|
||||||
*
|
|
||||||
****************************************************************************/
|
|
||||||
|
|
||||||
/****************************************************************************
|
|
||||||
* Randomize:
|
|
||||||
*
|
|
||||||
* randomize version 1.7 (1 May 1998, MEO)
|
|
||||||
*
|
|
||||||
* Please send any patches or suggestions to the author: meo@rru.com .
|
|
||||||
*
|
|
||||||
* This plug-in adds a user-defined amount of randomization to an
|
|
||||||
* image. Variations include:
|
|
||||||
*
|
|
||||||
* - hurling (spewing random colors)
|
|
||||||
* - picking a nearby pixel at random
|
|
||||||
* - slurring (a crude form of melting)
|
|
||||||
*
|
|
||||||
* In any case, for each pixel in the selection or image,
|
|
||||||
* whether to change the pixel is decided by picking a
|
|
||||||
* random number, weighted by the user's "randomization" percentage.
|
|
||||||
* If the random number is in range, the pixel is modified. Picking
|
|
||||||
* one selects the new pixel value at random from the current and
|
|
||||||
* adjacent pixels. Hurling assigns a random value to the pixel.
|
|
||||||
* Slurring sort of melts downwards; if a pixel is to be slurred,
|
|
||||||
* there is an 80% chance the pixel above be used; otherwise, one
|
|
||||||
* of the pixels adjacent to the one above is used (even odds as
|
|
||||||
* to which it will be).
|
|
||||||
*
|
|
||||||
* Picking, hurling and slurring work with any image type.
|
|
||||||
*
|
|
||||||
* This plug-in's effectiveness varies a lot with the type
|
|
||||||
* and clarity of the image being "randomized".
|
|
||||||
*
|
|
||||||
* Hurling more than 75% or so onto an existing image will
|
|
||||||
* make the image nearly unrecognizable. By 90% hurl, most
|
|
||||||
* images are indistinguishable from random noise.
|
|
||||||
*
|
|
||||||
* The repeat count is especially useful with slurring.
|
|
||||||
*
|
|
||||||
* TODO List
|
|
||||||
*
|
|
||||||
* - add a real melt function
|
|
||||||
****************************************************************************/
|
|
||||||
|
|
||||||
#include "config.h"
|
|
||||||
|
|
||||||
#include <string.h>
|
|
||||||
|
|
||||||
#include <libgimp/gimp.h>
|
|
||||||
#include <libgimp/gimpui.h>
|
|
||||||
|
|
||||||
#include "libgimp/stdplugins-intl.h"
|
|
||||||
|
|
||||||
|
|
||||||
/*********************************
|
|
||||||
*
|
|
||||||
* PLUGIN-SPECIFIC CONSTANTS
|
|
||||||
*
|
|
||||||
********************************/
|
|
||||||
|
|
||||||
#define PLUG_IN_BINARY "noise-randomize"
|
|
||||||
#define PLUG_IN_ROLE "gimp-noise-randomize"
|
|
||||||
|
|
||||||
/*
|
|
||||||
* progress meter update frequency
|
|
||||||
*/
|
|
||||||
#define PROG_UPDATE_TIME ((row % 12) == 0)
|
|
||||||
|
|
||||||
static gchar *PLUG_IN_PROC[] =
|
|
||||||
{
|
|
||||||
"plug-in-randomize-hurl",
|
|
||||||
"plug-in-randomize-pick",
|
|
||||||
"plug-in-randomize-slur",
|
|
||||||
};
|
|
||||||
|
|
||||||
static gchar *RNDM_NAME[] =
|
|
||||||
{
|
|
||||||
N_("Random Hurl"),
|
|
||||||
N_("Random Pick"),
|
|
||||||
N_("Random Slur"),
|
|
||||||
};
|
|
||||||
|
|
||||||
#define RNDM_HURL 1
|
|
||||||
#define RNDM_PICK 2
|
|
||||||
#define RNDM_SLUR 3
|
|
||||||
|
|
||||||
#define SEED_DEFAULT 10
|
|
||||||
|
|
||||||
#define SCALE_WIDTH 100
|
|
||||||
|
|
||||||
static gint rndm_type = RNDM_HURL; /* hurl, pick, etc. */
|
|
||||||
|
|
||||||
/*********************************
|
|
||||||
*
|
|
||||||
* PLUGIN-SPECIFIC STRUCTURES AND DATA
|
|
||||||
*
|
|
||||||
********************************/
|
|
||||||
|
|
||||||
typedef struct
|
|
||||||
{
|
|
||||||
gdouble rndm_pct; /* likelihood of randomization (as %age) */
|
|
||||||
gdouble rndm_rcount; /* repeat count */
|
|
||||||
gboolean randomize; /* Whether to use a random seed */
|
|
||||||
guint seed; /* seed value for g_rand_set_seed() function */
|
|
||||||
} RandomizeVals;
|
|
||||||
|
|
||||||
static RandomizeVals pivals =
|
|
||||||
{
|
|
||||||
50.0,
|
|
||||||
1.0,
|
|
||||||
FALSE,
|
|
||||||
SEED_DEFAULT
|
|
||||||
};
|
|
||||||
|
|
||||||
static GRand *gr; /* The GRand object which generates the
|
|
||||||
* random numbers */
|
|
||||||
|
|
||||||
/*********************************
|
|
||||||
*
|
|
||||||
* LOCAL FUNCTIONS
|
|
||||||
*
|
|
||||||
********************************/
|
|
||||||
|
|
||||||
static void query (void);
|
|
||||||
static void run (const gchar *name,
|
|
||||||
gint nparams,
|
|
||||||
const GimpParam *param,
|
|
||||||
gint *nreturn_vals,
|
|
||||||
GimpParam **return_vals);
|
|
||||||
|
|
||||||
static void randomize (GimpDrawable *drawable,
|
|
||||||
GimpPreview *preview);
|
|
||||||
|
|
||||||
static inline void randomize_prepare_row (GimpPixelRgn *pixel_rgn,
|
|
||||||
guchar *data,
|
|
||||||
gint x,
|
|
||||||
gint y,
|
|
||||||
gint w);
|
|
||||||
|
|
||||||
static gboolean randomize_dialog (GimpDrawable *drawable);
|
|
||||||
|
|
||||||
|
|
||||||
/************************************ Guts ***********************************/
|
|
||||||
|
|
||||||
const GimpPlugInInfo PLUG_IN_INFO =
|
|
||||||
{
|
|
||||||
NULL, /* init_proc */
|
|
||||||
NULL, /* quit_proc */
|
|
||||||
query, /* query_proc */
|
|
||||||
run, /* run_proc */
|
|
||||||
};
|
|
||||||
|
|
||||||
MAIN ()
|
|
||||||
|
|
||||||
/*********************************
|
|
||||||
*
|
|
||||||
* query() - query_proc
|
|
||||||
*
|
|
||||||
* called by GIMP to learn about this plug-in
|
|
||||||
*
|
|
||||||
********************************/
|
|
||||||
|
|
||||||
static void
|
|
||||||
query (void)
|
|
||||||
{
|
|
||||||
static const GimpParamDef args[] =
|
|
||||||
{
|
|
||||||
{ GIMP_PDB_INT32, "run_mode", "The run mode { RUN-INTERACTIVE (0), RUN-NONINTERACTIVE (1) }" },
|
|
||||||
{ GIMP_PDB_IMAGE, "image", "Input image (unused)" },
|
|
||||||
{ GIMP_PDB_DRAWABLE, "drawable", "Input drawable" },
|
|
||||||
{ GIMP_PDB_FLOAT, "rndm_pct", "Randomization percentage (1.0 - 100.0)" },
|
|
||||||
{ GIMP_PDB_FLOAT, "rndm_rcount", "Repeat count (1.0 - 100.0)" },
|
|
||||||
{ GIMP_PDB_INT32, "randomize", "Use random seed { TRUE, FALSE }" },
|
|
||||||
{ GIMP_PDB_INT32, "seed", "Seed value (used only if randomize is FALSE)" }
|
|
||||||
};
|
|
||||||
|
|
||||||
const gchar *hurl_blurb =
|
|
||||||
N_("Completely randomize a fraction of pixels");
|
|
||||||
const gchar *pick_blurb =
|
|
||||||
N_("Randomly interchange some pixels with neighbors");
|
|
||||||
const gchar *slur_blurb =
|
|
||||||
N_("Randomly slide some pixels downward (similar to melting)");
|
|
||||||
|
|
||||||
const gchar *hurl_help =
|
|
||||||
"This plug-in ``hurls'' randomly-valued pixels onto the selection or "
|
|
||||||
"image. You may select the percentage of pixels to modify and the number "
|
|
||||||
"of times to repeat the process.";
|
|
||||||
const gchar *pick_help =
|
|
||||||
"This plug-in replaces a pixel with a random adjacent pixel. You may "
|
|
||||||
"select the percentage of pixels to modify and the number of times to "
|
|
||||||
"repeat the process.";
|
|
||||||
const gchar *slur_help =
|
|
||||||
"This plug-in slurs (melts like a bunch of icicles) an image. You may "
|
|
||||||
"select the percentage of pixels to modify and the number of times to "
|
|
||||||
"repeat the process.";
|
|
||||||
|
|
||||||
const gchar *author = "Miles O'Neal <meo@rru.com>";
|
|
||||||
const gchar *copyrights = "Miles O'Neal, Spencer Kimball, Peter Mattis, "
|
|
||||||
"Torsten Martinsen, Brian Degenhardt, Federico Mena Quintero, Stephen "
|
|
||||||
"Norris, Daniel Cotting";
|
|
||||||
const gchar *copyright_date = "1995-1998";
|
|
||||||
|
|
||||||
gimp_install_procedure (PLUG_IN_PROC[0],
|
|
||||||
hurl_blurb,
|
|
||||||
hurl_help,
|
|
||||||
author,
|
|
||||||
copyrights,
|
|
||||||
copyright_date,
|
|
||||||
N_("_Hurl..."),
|
|
||||||
"RGB*, GRAY*, INDEXED*",
|
|
||||||
GIMP_PLUGIN,
|
|
||||||
G_N_ELEMENTS (args), 0,
|
|
||||||
args, NULL);
|
|
||||||
|
|
||||||
gimp_install_procedure (PLUG_IN_PROC[1],
|
|
||||||
pick_blurb,
|
|
||||||
pick_help,
|
|
||||||
author,
|
|
||||||
copyrights,
|
|
||||||
copyright_date,
|
|
||||||
N_("_Pick..."),
|
|
||||||
"RGB*, GRAY*, INDEXED*",
|
|
||||||
GIMP_PLUGIN,
|
|
||||||
G_N_ELEMENTS (args), 0,
|
|
||||||
args, NULL);
|
|
||||||
|
|
||||||
gimp_install_procedure (PLUG_IN_PROC[2],
|
|
||||||
slur_blurb,
|
|
||||||
slur_help,
|
|
||||||
author,
|
|
||||||
copyrights,
|
|
||||||
copyright_date,
|
|
||||||
N_("_Slur..."),
|
|
||||||
"RGB*, GRAY*, INDEXED*",
|
|
||||||
GIMP_PLUGIN,
|
|
||||||
G_N_ELEMENTS (args), 0,
|
|
||||||
args, NULL);
|
|
||||||
|
|
||||||
gimp_plugin_menu_register (PLUG_IN_PROC[0], "<Image>/Filters/Noise");
|
|
||||||
gimp_plugin_menu_register (PLUG_IN_PROC[1], "<Image>/Filters/Noise");
|
|
||||||
gimp_plugin_menu_register (PLUG_IN_PROC[2], "<Image>/Filters/Noise");
|
|
||||||
}
|
|
||||||
|
|
||||||
/*********************************
|
|
||||||
*
|
|
||||||
* run() - main routine
|
|
||||||
*
|
|
||||||
* This handles the main interaction with GIMP itself,
|
|
||||||
* and invokes the routine that actually does the work.
|
|
||||||
*
|
|
||||||
********************************/
|
|
||||||
|
|
||||||
static void
|
|
||||||
run (const gchar *name,
|
|
||||||
gint nparams,
|
|
||||||
const GimpParam *param,
|
|
||||||
gint *nreturn_vals,
|
|
||||||
GimpParam **return_vals)
|
|
||||||
{
|
|
||||||
GimpDrawable *drawable;
|
|
||||||
GimpRunMode run_mode;
|
|
||||||
GimpPDBStatusType status = GIMP_PDB_SUCCESS; /* assume the best! */
|
|
||||||
static GimpParam values[1];
|
|
||||||
|
|
||||||
INIT_I18N ();
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Get the specified drawable, do standard initialization.
|
|
||||||
*/
|
|
||||||
if (strcmp (name, PLUG_IN_PROC[0]) == 0)
|
|
||||||
rndm_type = RNDM_HURL;
|
|
||||||
else if (strcmp (name, PLUG_IN_PROC[1]) == 0)
|
|
||||||
rndm_type = RNDM_PICK;
|
|
||||||
else if (strcmp (name, PLUG_IN_PROC[2]) == 0)
|
|
||||||
rndm_type = RNDM_SLUR;
|
|
||||||
|
|
||||||
run_mode = param[0].data.d_int32;
|
|
||||||
drawable = gimp_drawable_get(param[2].data.d_drawable);
|
|
||||||
|
|
||||||
*nreturn_vals = 1;
|
|
||||||
*return_vals = values;
|
|
||||||
|
|
||||||
values[0].type = GIMP_PDB_STATUS;
|
|
||||||
values[0].data.d_status = status;
|
|
||||||
|
|
||||||
gr = g_rand_new ();
|
|
||||||
/*
|
|
||||||
* Make sure the drawable type is appropriate.
|
|
||||||
*/
|
|
||||||
if (gimp_drawable_is_rgb (drawable->drawable_id) ||
|
|
||||||
gimp_drawable_is_gray (drawable->drawable_id) ||
|
|
||||||
gimp_drawable_is_indexed (drawable->drawable_id))
|
|
||||||
{
|
|
||||||
gimp_tile_cache_ntiles (2 * drawable->ntile_cols);
|
|
||||||
|
|
||||||
switch (run_mode)
|
|
||||||
{
|
|
||||||
/*
|
|
||||||
* If we're running interactively, pop up the dialog box.
|
|
||||||
*/
|
|
||||||
case GIMP_RUN_INTERACTIVE:
|
|
||||||
gimp_get_data (PLUG_IN_PROC[rndm_type - 1], &pivals);
|
|
||||||
|
|
||||||
if (! randomize_dialog (drawable)) /* return on Cancel */
|
|
||||||
return;
|
|
||||||
break;
|
|
||||||
/*
|
|
||||||
* If we're not interactive (probably scripting), we
|
|
||||||
* get the parameters from the param[] array, since
|
|
||||||
* we don't use the dialog box. Make sure they all
|
|
||||||
* parameters have legitimate values.
|
|
||||||
*/
|
|
||||||
case GIMP_RUN_NONINTERACTIVE:
|
|
||||||
if (nparams != 7)
|
|
||||||
{
|
|
||||||
status = GIMP_PDB_CALLING_ERROR;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
pivals.rndm_pct = (gdouble) param[3].data.d_float;
|
|
||||||
pivals.rndm_rcount = (gdouble) param[4].data.d_float;
|
|
||||||
pivals.randomize = (gboolean) param[5].data.d_int32;
|
|
||||||
pivals.seed = (gint) param[6].data.d_int32;
|
|
||||||
|
|
||||||
if (pivals.randomize)
|
|
||||||
pivals.seed = g_random_int ();
|
|
||||||
|
|
||||||
if ((rndm_type != RNDM_PICK &&
|
|
||||||
rndm_type != RNDM_SLUR &&
|
|
||||||
rndm_type != RNDM_HURL) ||
|
|
||||||
(pivals.rndm_pct < 1.0 || pivals.rndm_pct > 100.0) ||
|
|
||||||
(pivals.rndm_rcount < 1.0 || pivals.rndm_rcount > 100.0))
|
|
||||||
{
|
|
||||||
status = GIMP_PDB_CALLING_ERROR;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
/*
|
|
||||||
* If we're running with the last set of values, get those values.
|
|
||||||
*/
|
|
||||||
case GIMP_RUN_WITH_LAST_VALS:
|
|
||||||
gimp_get_data (PLUG_IN_PROC[rndm_type - 1], &pivals);
|
|
||||||
|
|
||||||
if (pivals.randomize)
|
|
||||||
pivals.seed = g_random_int ();
|
|
||||||
break;
|
|
||||||
/*
|
|
||||||
* Hopefully we never get here!
|
|
||||||
*/
|
|
||||||
default:
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (status == GIMP_PDB_SUCCESS)
|
|
||||||
{
|
|
||||||
gimp_progress_init_printf ("%s", gettext (RNDM_NAME[rndm_type - 1]));
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Initialize the g_rand() function seed
|
|
||||||
*/
|
|
||||||
g_rand_set_seed (gr, pivals.seed);
|
|
||||||
|
|
||||||
randomize (drawable, NULL);
|
|
||||||
/*
|
|
||||||
* If we ran interactively (even repeating) update the display.
|
|
||||||
*/
|
|
||||||
if (run_mode != GIMP_RUN_NONINTERACTIVE)
|
|
||||||
{
|
|
||||||
gimp_displays_flush ();
|
|
||||||
}
|
|
||||||
/*
|
|
||||||
* If we use the dialog popup, set the data for future use.
|
|
||||||
*/
|
|
||||||
if (run_mode == GIMP_RUN_INTERACTIVE)
|
|
||||||
{
|
|
||||||
gimp_set_data (PLUG_IN_PROC[rndm_type - 1], &pivals,
|
|
||||||
sizeof (RandomizeVals));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
/*
|
|
||||||
* If we got the wrong drawable type, we need to complain.
|
|
||||||
*/
|
|
||||||
status = GIMP_PDB_EXECUTION_ERROR;
|
|
||||||
}
|
|
||||||
/*
|
|
||||||
* DONE!
|
|
||||||
* Set the status where GIMP can see it, and let go
|
|
||||||
* of the drawable.
|
|
||||||
*/
|
|
||||||
g_rand_free (gr);
|
|
||||||
values[0].data.d_status = status;
|
|
||||||
gimp_drawable_detach(drawable);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*********************************
|
|
||||||
*
|
|
||||||
* randomize_prepare_row()
|
|
||||||
*
|
|
||||||
* Get a row of pixels. If the requested row
|
|
||||||
* is off the edge, clone the edge row.
|
|
||||||
*
|
|
||||||
********************************/
|
|
||||||
|
|
||||||
static inline void
|
|
||||||
randomize_prepare_row (GimpPixelRgn *pixel_rgn,
|
|
||||||
guchar *data,
|
|
||||||
int x,
|
|
||||||
int y,
|
|
||||||
int w)
|
|
||||||
{
|
|
||||||
gint b;
|
|
||||||
|
|
||||||
if (y <= 0)
|
|
||||||
{
|
|
||||||
gimp_pixel_rgn_get_row(pixel_rgn, data, x, (y + 1), w);
|
|
||||||
}
|
|
||||||
else if (y >= pixel_rgn->h)
|
|
||||||
{
|
|
||||||
gimp_pixel_rgn_get_row(pixel_rgn, data, x, (y - 1), w);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
gimp_pixel_rgn_get_row(pixel_rgn, data, x, y, w);
|
|
||||||
}
|
|
||||||
/*
|
|
||||||
* Fill in edge pixels
|
|
||||||
*/
|
|
||||||
for (b = 0; b < pixel_rgn->bpp; b++)
|
|
||||||
{
|
|
||||||
data[-(gint)pixel_rgn->bpp + b] = data[b];
|
|
||||||
data[w * pixel_rgn->bpp + b] = data[(w - 1) * pixel_rgn->bpp + b];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/*********************************
|
|
||||||
*
|
|
||||||
* randomize()
|
|
||||||
*
|
|
||||||
* Actually mess with the image.
|
|
||||||
*
|
|
||||||
********************************/
|
|
||||||
|
|
||||||
static void
|
|
||||||
randomize (GimpDrawable *drawable,
|
|
||||||
GimpPreview *preview)
|
|
||||||
{
|
|
||||||
GimpPixelRgn srcPR, destPR, destPR2, *sp, *dp, *tp;
|
|
||||||
gint width, height;
|
|
||||||
gint bytes;
|
|
||||||
guchar *dest, *d;
|
|
||||||
guchar *prev_row, *pr;
|
|
||||||
guchar *cur_row, *cr;
|
|
||||||
guchar *next_row, *nr;
|
|
||||||
guchar *tmp;
|
|
||||||
gint row, col;
|
|
||||||
gint x, y;
|
|
||||||
gint cnt;
|
|
||||||
gint i, j, k;
|
|
||||||
|
|
||||||
if (preview)
|
|
||||||
{
|
|
||||||
gimp_preview_get_position (preview, &x, &y);
|
|
||||||
gimp_preview_get_size (preview, &width, &height);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
if (! gimp_drawable_mask_intersect (drawable->drawable_id,
|
|
||||||
&x, &y, &width, &height))
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
bytes = drawable->bpp;
|
|
||||||
|
|
||||||
/*
|
|
||||||
* allocate row buffers
|
|
||||||
*/
|
|
||||||
prev_row = g_new (guchar, (width + 2) * bytes);
|
|
||||||
cur_row = g_new (guchar, (width + 2) * bytes);
|
|
||||||
next_row = g_new (guchar, (width + 2) * bytes);
|
|
||||||
dest = g_new (guchar, width * bytes);
|
|
||||||
|
|
||||||
/*
|
|
||||||
* initialize the pixel regions
|
|
||||||
*/
|
|
||||||
gimp_pixel_rgn_init (&srcPR, drawable, x, y, width, height, FALSE, FALSE);
|
|
||||||
gimp_pixel_rgn_init (&destPR, drawable, x, y, width, height, TRUE, TRUE);
|
|
||||||
gimp_pixel_rgn_init (&destPR2, drawable, x, y, width, height, TRUE, TRUE);
|
|
||||||
sp = &srcPR;
|
|
||||||
dp = &destPR;
|
|
||||||
tp = NULL;
|
|
||||||
|
|
||||||
pr = prev_row + bytes;
|
|
||||||
cr = cur_row + bytes;
|
|
||||||
nr = next_row + bytes;
|
|
||||||
|
|
||||||
for (cnt = 1; cnt <= pivals.rndm_rcount; cnt++)
|
|
||||||
{
|
|
||||||
/*
|
|
||||||
* prepare the first row and previous row
|
|
||||||
*/
|
|
||||||
randomize_prepare_row (sp, pr, x, y - 1, width);
|
|
||||||
randomize_prepare_row (sp, cr, x, y, width);
|
|
||||||
/*
|
|
||||||
* loop through the rows, applying the selected convolution
|
|
||||||
*/
|
|
||||||
for (row = y; row < y + height; row++)
|
|
||||||
{
|
|
||||||
/* prepare the next row */
|
|
||||||
randomize_prepare_row (sp, nr, x, row + 1, width);
|
|
||||||
|
|
||||||
d = dest;
|
|
||||||
for (col = 0; col < width; col++)
|
|
||||||
{
|
|
||||||
if (g_rand_int_range (gr, 0, 100) <= (gint) pivals.rndm_pct)
|
|
||||||
{
|
|
||||||
switch (rndm_type)
|
|
||||||
{
|
|
||||||
/*
|
|
||||||
* HURL
|
|
||||||
* Just assign a random value.
|
|
||||||
*/
|
|
||||||
case RNDM_HURL:
|
|
||||||
for (j = 0; j < bytes; j++)
|
|
||||||
*d++ = g_rand_int_range (gr, 0, 256);
|
|
||||||
break;
|
|
||||||
/*
|
|
||||||
* PICK
|
|
||||||
* pick at random from a neighboring pixel.
|
|
||||||
*/
|
|
||||||
case RNDM_PICK:
|
|
||||||
k = g_rand_int_range (gr, 0, 9);
|
|
||||||
for (j = 0; j < bytes; j++)
|
|
||||||
{
|
|
||||||
i = col * bytes + j;
|
|
||||||
|
|
||||||
switch (k)
|
|
||||||
{
|
|
||||||
case 0:
|
|
||||||
*d++ = (gint) pr[i - bytes];
|
|
||||||
break;
|
|
||||||
case 1:
|
|
||||||
*d++ = (gint) pr[i];
|
|
||||||
break;
|
|
||||||
case 2:
|
|
||||||
*d++ = (gint) pr[i + bytes];
|
|
||||||
break;
|
|
||||||
case 3:
|
|
||||||
*d++ = (gint) cr[i - bytes];
|
|
||||||
break;
|
|
||||||
case 4:
|
|
||||||
*d++ = (gint) cr[i];
|
|
||||||
break;
|
|
||||||
case 5:
|
|
||||||
*d++ = (gint) cr[i + bytes];
|
|
||||||
break;
|
|
||||||
case 6:
|
|
||||||
*d++ = (gint) nr[i - bytes];
|
|
||||||
break;
|
|
||||||
case 7:
|
|
||||||
*d++ = (gint) nr[i];
|
|
||||||
break;
|
|
||||||
case 8:
|
|
||||||
*d++ = (gint) nr[i + bytes];
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
/*
|
|
||||||
* SLUR
|
|
||||||
* 80% chance it's from directly above,
|
|
||||||
* 10% from above left,
|
|
||||||
* 10% from above right.
|
|
||||||
*/
|
|
||||||
case RNDM_SLUR:
|
|
||||||
k = g_rand_int_range (gr, 0, 10);
|
|
||||||
for (j = 0; j < bytes; j++)
|
|
||||||
{
|
|
||||||
i = col*bytes + j;
|
|
||||||
|
|
||||||
switch (k )
|
|
||||||
{
|
|
||||||
case 0:
|
|
||||||
*d++ = (gint) pr[i - bytes];
|
|
||||||
break;
|
|
||||||
case 9:
|
|
||||||
*d++ = (gint) pr[i + bytes];
|
|
||||||
break;
|
|
||||||
default:
|
|
||||||
*d++ = (gint) pr[i];
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
break;
|
|
||||||
}
|
|
||||||
/*
|
|
||||||
* Otherwise, this pixel was not selected for randomization,
|
|
||||||
* so use the current value.
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
for (j = 0; j < bytes; j++)
|
|
||||||
*d++ = (gint) cr[col*bytes + j];
|
|
||||||
}
|
|
||||||
}
|
|
||||||
/*
|
|
||||||
* Save the modified row, shuffle the row pointers, and every
|
|
||||||
* so often, update the progress meter.
|
|
||||||
*/
|
|
||||||
gimp_pixel_rgn_set_row (dp, dest, x, row, width);
|
|
||||||
|
|
||||||
tmp = pr;
|
|
||||||
pr = cr;
|
|
||||||
cr = nr;
|
|
||||||
nr = tmp;
|
|
||||||
|
|
||||||
if (! preview && PROG_UPDATE_TIME)
|
|
||||||
{
|
|
||||||
gdouble base = (gdouble) cnt / pivals.rndm_rcount;
|
|
||||||
gdouble inc = (gdouble) row / (height * pivals.rndm_rcount);
|
|
||||||
|
|
||||||
gimp_progress_update (base + inc);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* if we have more cycles to perform, swap the src and dest Pixel Regions
|
|
||||||
*/
|
|
||||||
if (cnt < pivals.rndm_rcount)
|
|
||||||
{
|
|
||||||
if (tp != NULL)
|
|
||||||
{
|
|
||||||
tp = dp;
|
|
||||||
dp = sp;
|
|
||||||
sp = tp;
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
tp = &srcPR;
|
|
||||||
sp = &destPR;
|
|
||||||
dp = &destPR2;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
if (! preview)
|
|
||||||
gimp_progress_update (1.0);
|
|
||||||
|
|
||||||
/*
|
|
||||||
* update the randomized region
|
|
||||||
*/
|
|
||||||
if (preview)
|
|
||||||
{
|
|
||||||
gimp_drawable_preview_draw_region (GIMP_DRAWABLE_PREVIEW (preview),
|
|
||||||
dp);
|
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
gimp_drawable_flush (drawable);
|
|
||||||
gimp_drawable_merge_shadow (drawable->drawable_id, TRUE);
|
|
||||||
gimp_drawable_update (drawable->drawable_id, x, y, width, height);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*
|
|
||||||
* clean up after ourselves.
|
|
||||||
*/
|
|
||||||
g_free (prev_row);
|
|
||||||
g_free (cur_row);
|
|
||||||
g_free (next_row);
|
|
||||||
g_free (dest);
|
|
||||||
}
|
|
||||||
|
|
||||||
/*********************************
|
|
||||||
*
|
|
||||||
* GUI ROUTINES
|
|
||||||
*
|
|
||||||
********************************/
|
|
||||||
|
|
||||||
|
|
||||||
/*********************************
|
|
||||||
*
|
|
||||||
* randomize_dialog() - set up the plug-in's dialog box
|
|
||||||
*
|
|
||||||
********************************/
|
|
||||||
|
|
||||||
static gboolean
|
|
||||||
randomize_dialog (GimpDrawable *drawable)
|
|
||||||
{
|
|
||||||
GtkWidget *dlg;
|
|
||||||
GtkWidget *table;
|
|
||||||
GtkWidget *label;
|
|
||||||
GtkWidget *seed_hbox;
|
|
||||||
GtkWidget *main_vbox;
|
|
||||||
GtkWidget *preview;
|
|
||||||
GtkObject *adj;
|
|
||||||
gboolean run;
|
|
||||||
|
|
||||||
gimp_ui_init (PLUG_IN_BINARY, FALSE);
|
|
||||||
|
|
||||||
dlg = gimp_dialog_new (gettext (RNDM_NAME[rndm_type - 1]), PLUG_IN_ROLE,
|
|
||||||
NULL, 0,
|
|
||||||
gimp_standard_help_func, PLUG_IN_PROC[rndm_type - 1],
|
|
||||||
|
|
||||||
GTK_STOCK_CANCEL, GTK_RESPONSE_CANCEL,
|
|
||||||
GTK_STOCK_OK, GTK_RESPONSE_OK,
|
|
||||||
|
|
||||||
NULL);
|
|
||||||
|
|
||||||
gtk_dialog_set_alternative_button_order (GTK_DIALOG (dlg),
|
|
||||||
GTK_RESPONSE_OK,
|
|
||||||
GTK_RESPONSE_CANCEL,
|
|
||||||
-1);
|
|
||||||
|
|
||||||
gimp_window_set_transient (GTK_WINDOW (dlg));
|
|
||||||
|
|
||||||
main_vbox = gtk_box_new (GTK_ORIENTATION_VERTICAL, 12);
|
|
||||||
gtk_container_set_border_width (GTK_CONTAINER (main_vbox), 12);
|
|
||||||
gtk_box_pack_start (GTK_BOX (gtk_dialog_get_content_area (GTK_DIALOG (dlg))),
|
|
||||||
main_vbox, TRUE, TRUE, 0);
|
|
||||||
gtk_widget_show (main_vbox);
|
|
||||||
|
|
||||||
preview = gimp_drawable_preview_new (drawable, NULL);
|
|
||||||
gtk_box_pack_start (GTK_BOX (main_vbox), preview, TRUE, TRUE, 0);
|
|
||||||
gtk_widget_show (preview);
|
|
||||||
|
|
||||||
g_signal_connect_swapped (preview, "invalidated",
|
|
||||||
G_CALLBACK (randomize),
|
|
||||||
drawable);
|
|
||||||
|
|
||||||
table = gtk_table_new (3, 3, FALSE);
|
|
||||||
gtk_table_set_col_spacings (GTK_TABLE (table), 6);
|
|
||||||
gtk_table_set_row_spacings (GTK_TABLE (table), 6);
|
|
||||||
gtk_container_set_border_width (GTK_CONTAINER (table), 12);
|
|
||||||
gtk_box_pack_start (GTK_BOX (main_vbox), table, TRUE, TRUE, 0);
|
|
||||||
gtk_widget_show(table);
|
|
||||||
|
|
||||||
/* Random Seed */
|
|
||||||
seed_hbox = gimp_random_seed_new (&pivals.seed, &pivals.randomize);
|
|
||||||
label = gimp_table_attach_aligned (GTK_TABLE (table), 0, 0,
|
|
||||||
_("_Random seed:"), 0.0, 0.5,
|
|
||||||
seed_hbox, 1, TRUE);
|
|
||||||
gtk_label_set_mnemonic_widget (GTK_LABEL (label),
|
|
||||||
GIMP_RANDOM_SEED_SPINBUTTON (seed_hbox));
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Randomization percentage label & scale (1 to 100)
|
|
||||||
*/
|
|
||||||
adj = gimp_scale_entry_new (GTK_TABLE (table), 0, 1,
|
|
||||||
_("R_andomization (%):"), SCALE_WIDTH, 0,
|
|
||||||
pivals.rndm_pct, 1.0, 100.0, 1.0, 10.0, 0,
|
|
||||||
TRUE, 0, 0,
|
|
||||||
_("Percentage of pixels to be filtered"), NULL);
|
|
||||||
g_signal_connect (adj, "value-changed",
|
|
||||||
G_CALLBACK (gimp_double_adjustment_update),
|
|
||||||
&pivals.rndm_pct);
|
|
||||||
g_signal_connect_swapped (adj, "value-changed",
|
|
||||||
G_CALLBACK (gimp_preview_invalidate),
|
|
||||||
preview);
|
|
||||||
|
|
||||||
/*
|
|
||||||
* Repeat count label & scale (1 to 100)
|
|
||||||
*/
|
|
||||||
adj = gimp_scale_entry_new (GTK_TABLE (table), 0, 2,
|
|
||||||
_("R_epeat:"), SCALE_WIDTH, 0,
|
|
||||||
pivals.rndm_rcount, 1.0, 100.0, 1.0, 10.0, 0,
|
|
||||||
TRUE, 0, 0,
|
|
||||||
_("Number of times to apply filter"), NULL);
|
|
||||||
g_signal_connect (adj, "value-changed",
|
|
||||||
G_CALLBACK (gimp_double_adjustment_update),
|
|
||||||
&pivals.rndm_rcount);
|
|
||||||
g_signal_connect_swapped (adj, "value-changed",
|
|
||||||
G_CALLBACK (gimp_preview_invalidate),
|
|
||||||
preview);
|
|
||||||
|
|
||||||
gtk_widget_show (dlg);
|
|
||||||
|
|
||||||
run = (gimp_dialog_run (GIMP_DIALOG (dlg)) == GTK_RESPONSE_OK);
|
|
||||||
|
|
||||||
gtk_widget_destroy (dlg);
|
|
||||||
|
|
||||||
return run;
|
|
||||||
}
|
|
@ -100,7 +100,6 @@
|
|||||||
'newsprint' => { ui => 1 },
|
'newsprint' => { ui => 1 },
|
||||||
'nl-filter' => { ui => 1 },
|
'nl-filter' => { ui => 1 },
|
||||||
'noise-hsv' => { ui => 1 },
|
'noise-hsv' => { ui => 1 },
|
||||||
'noise-randomize' => { ui => 1 },
|
|
||||||
'noise-rgb' => { ui => 1 },
|
'noise-rgb' => { ui => 1 },
|
||||||
'noise-solid' => { ui => 1 },
|
'noise-solid' => { ui => 1 },
|
||||||
'noise-spread' => { ui => 1 },
|
'noise-spread' => { ui => 1 },
|
||||||
|
@ -107,7 +107,6 @@ plug-ins/common/mosaic.c
|
|||||||
plug-ins/common/newsprint.c
|
plug-ins/common/newsprint.c
|
||||||
plug-ins/common/nl-filter.c
|
plug-ins/common/nl-filter.c
|
||||||
plug-ins/common/noise-hsv.c
|
plug-ins/common/noise-hsv.c
|
||||||
plug-ins/common/noise-randomize.c
|
|
||||||
plug-ins/common/noise-rgb.c
|
plug-ins/common/noise-rgb.c
|
||||||
plug-ins/common/noise-solid.c
|
plug-ins/common/noise-solid.c
|
||||||
plug-ins/common/noise-spread.c
|
plug-ins/common/noise-spread.c
|
||||||
|
@ -335,6 +335,192 @@ CODE
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sub plug_in_randomize_hurl {
|
||||||
|
$blurb = 'Completely randomize a fraction of pixels';
|
||||||
|
|
||||||
|
$help = <<'HELP';
|
||||||
|
This plug-in "hurls" randomly-valued pixels onto the selection or
|
||||||
|
image. You may select the percentage of pixels to modify and the
|
||||||
|
number of times to repeat the process.
|
||||||
|
HELP
|
||||||
|
|
||||||
|
&std_pdb_compat('gegl:noise-hurl');
|
||||||
|
$date = '2013';
|
||||||
|
|
||||||
|
@inargs = (
|
||||||
|
{ name => 'run_mode', type => 'enum GimpRunMode', dead => 1,
|
||||||
|
desc => 'The run mode' },
|
||||||
|
{ name => 'image', type => 'image', dead => 1,
|
||||||
|
desc => 'Input image (unused)' },
|
||||||
|
{ name => 'drawable', type => 'drawable',
|
||||||
|
desc => 'Input drawable' },
|
||||||
|
{ name => 'rndm_pct', type => '1.0 <= float <= 100.0',
|
||||||
|
desc => 'Randomization percentage' },
|
||||||
|
{ name => 'rndm_rcount', type => '1.0 <= float <= 100.0',
|
||||||
|
desc => 'Repeat count' },
|
||||||
|
{ name => 'randomize', type => 'boolean',
|
||||||
|
desc => 'Use random seed' },
|
||||||
|
{ name => 'seed', type => 'int32',
|
||||||
|
desc => 'Seed value (used only if randomize is FALSE)' }
|
||||||
|
);
|
||||||
|
|
||||||
|
%invoke = (
|
||||||
|
code => <<'CODE'
|
||||||
|
{
|
||||||
|
if (gimp_pdb_item_is_attached (GIMP_ITEM (drawable), NULL,
|
||||||
|
GIMP_PDB_ITEM_CONTENT, error) &&
|
||||||
|
gimp_pdb_item_is_not_group (GIMP_ITEM (drawable), error))
|
||||||
|
{
|
||||||
|
GeglNode *node;
|
||||||
|
|
||||||
|
if (randomize)
|
||||||
|
seed = g_random_int ();
|
||||||
|
|
||||||
|
node =
|
||||||
|
gegl_node_new_child (NULL,
|
||||||
|
"operation", "gegl:noise-hurl",
|
||||||
|
"seed", seed,
|
||||||
|
"pct-random", rndm_pct,
|
||||||
|
"repeat", (gint) rndm_rcount,
|
||||||
|
NULL);
|
||||||
|
|
||||||
|
gimp_drawable_apply_operation (drawable, progress,
|
||||||
|
C_("undo-type", "Random Hurl"),
|
||||||
|
node);
|
||||||
|
|
||||||
|
g_object_unref (node);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
success = FALSE;
|
||||||
|
}
|
||||||
|
CODE
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
sub plug_in_randomize_pick {
|
||||||
|
$blurb = 'Randomly interchange some pixels with neighbors';
|
||||||
|
|
||||||
|
$help = <<'HELP';
|
||||||
|
This plug-in replaces a pixel with a random adjacent pixel. You may
|
||||||
|
select the percentage of pixels to modify and the number of times to
|
||||||
|
repeat the process.
|
||||||
|
HELP
|
||||||
|
|
||||||
|
&std_pdb_compat('gegl:noise-pick');
|
||||||
|
$date = '2013';
|
||||||
|
|
||||||
|
@inargs = (
|
||||||
|
{ name => 'run_mode', type => 'enum GimpRunMode', dead => 1,
|
||||||
|
desc => 'The run mode' },
|
||||||
|
{ name => 'image', type => 'image', dead => 1,
|
||||||
|
desc => 'Input image (unused)' },
|
||||||
|
{ name => 'drawable', type => 'drawable',
|
||||||
|
desc => 'Input drawable' },
|
||||||
|
{ name => 'rndm_pct', type => '1.0 <= float <= 100.0',
|
||||||
|
desc => 'Randomization percentage' },
|
||||||
|
{ name => 'rndm_rcount', type => '1.0 <= float <= 100.0',
|
||||||
|
desc => 'Repeat count' },
|
||||||
|
{ name => 'randomize', type => 'boolean',
|
||||||
|
desc => 'Use random seed' },
|
||||||
|
{ name => 'seed', type => 'int32',
|
||||||
|
desc => 'Seed value (used only if randomize is FALSE)' }
|
||||||
|
);
|
||||||
|
|
||||||
|
%invoke = (
|
||||||
|
code => <<'CODE'
|
||||||
|
{
|
||||||
|
if (gimp_pdb_item_is_attached (GIMP_ITEM (drawable), NULL,
|
||||||
|
GIMP_PDB_ITEM_CONTENT, error) &&
|
||||||
|
gimp_pdb_item_is_not_group (GIMP_ITEM (drawable), error))
|
||||||
|
{
|
||||||
|
GeglNode *node;
|
||||||
|
|
||||||
|
if (randomize)
|
||||||
|
seed = g_random_int ();
|
||||||
|
|
||||||
|
node =
|
||||||
|
gegl_node_new_child (NULL,
|
||||||
|
"operation", "gegl:noise-pick",
|
||||||
|
"seed", seed,
|
||||||
|
"pct-random", rndm_pct,
|
||||||
|
"repeat", (gint) rndm_rcount,
|
||||||
|
NULL);
|
||||||
|
|
||||||
|
gimp_drawable_apply_operation (drawable, progress,
|
||||||
|
C_("undo-type", "Random Pick"),
|
||||||
|
node);
|
||||||
|
|
||||||
|
g_object_unref (node);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
success = FALSE;
|
||||||
|
}
|
||||||
|
CODE
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
sub plug_in_randomize_slur {
|
||||||
|
$blurb = 'Randomly slide some pixels downward (similar to melting';
|
||||||
|
|
||||||
|
$help = <<'HELP';
|
||||||
|
This plug-in "slurs" (melts like a bunch of icicles) an image. You may
|
||||||
|
select the percentage of pixels to modify and the number of times to
|
||||||
|
repeat the process.
|
||||||
|
HELP
|
||||||
|
|
||||||
|
&std_pdb_compat('gegl:noise-slur');
|
||||||
|
$date = '2013';
|
||||||
|
|
||||||
|
@inargs = (
|
||||||
|
{ name => 'run_mode', type => 'enum GimpRunMode', dead => 1,
|
||||||
|
desc => 'The run mode' },
|
||||||
|
{ name => 'image', type => 'image', dead => 1,
|
||||||
|
desc => 'Input image (unused)' },
|
||||||
|
{ name => 'drawable', type => 'drawable',
|
||||||
|
desc => 'Input drawable' },
|
||||||
|
{ name => 'rndm_pct', type => '1.0 <= float <= 100.0',
|
||||||
|
desc => 'Randomization percentage' },
|
||||||
|
{ name => 'rndm_rcount', type => '1.0 <= float <= 100.0',
|
||||||
|
desc => 'Repeat count' },
|
||||||
|
{ name => 'randomize', type => 'boolean',
|
||||||
|
desc => 'Use random seed' },
|
||||||
|
{ name => 'seed', type => 'int32',
|
||||||
|
desc => 'Seed value (used only if randomize is FALSE)' }
|
||||||
|
);
|
||||||
|
|
||||||
|
%invoke = (
|
||||||
|
code => <<'CODE'
|
||||||
|
{
|
||||||
|
if (gimp_pdb_item_is_attached (GIMP_ITEM (drawable), NULL,
|
||||||
|
GIMP_PDB_ITEM_CONTENT, error) &&
|
||||||
|
gimp_pdb_item_is_not_group (GIMP_ITEM (drawable), error))
|
||||||
|
{
|
||||||
|
GeglNode *node;
|
||||||
|
|
||||||
|
if (randomize)
|
||||||
|
seed = g_random_int ();
|
||||||
|
|
||||||
|
node =
|
||||||
|
gegl_node_new_child (NULL,
|
||||||
|
"operation", "gegl:noise-slur",
|
||||||
|
"seed", seed,
|
||||||
|
"pct-random", rndm_pct,
|
||||||
|
"repeat", (gint) rndm_rcount,
|
||||||
|
NULL);
|
||||||
|
|
||||||
|
gimp_drawable_apply_operation (drawable, progress,
|
||||||
|
C_("undo-type", "Random Slur"),
|
||||||
|
node);
|
||||||
|
|
||||||
|
g_object_unref (node);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
success = FALSE;
|
||||||
|
}
|
||||||
|
CODE
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
sub plug_in_semiflatten {
|
sub plug_in_semiflatten {
|
||||||
$blurb = 'Replace partial transparency with the current background color';
|
$blurb = 'Replace partial transparency with the current background color';
|
||||||
|
|
||||||
@ -502,8 +688,11 @@ CODE
|
|||||||
plug_in_pixelize
|
plug_in_pixelize
|
||||||
plug_in_pixelize2
|
plug_in_pixelize2
|
||||||
plug_in_polar_coords
|
plug_in_polar_coords
|
||||||
|
plug_in_randomize_hurl
|
||||||
|
plug_in_randomize_pick
|
||||||
|
plug_in_randomize_slur
|
||||||
plug_in_semiflatten
|
plug_in_semiflatten
|
||||||
plug_in_threshold_alpha
|
plug_in_threshold_alpha
|
||||||
plug_in_vinvert);
|
plug_in_vinvert);
|
||||||
|
|
||||||
%exports = (app => [@procs], lib => []);
|
%exports = (app => [@procs], lib => []);
|
||||||
|
@ -164,4 +164,9 @@ sub std_pdb_deprecated {
|
|||||||
$author = $copyright = $date = '';
|
$author = $copyright = $date = '';
|
||||||
}
|
}
|
||||||
|
|
||||||
|
sub std_pdb_compat {
|
||||||
|
$author = $copyright = "Compatibility procedure. Please see '@_' for credits.";
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
1;
|
1;
|
||||||
|
Reference in New Issue
Block a user