2000-04-30 Michael Natterer <mitch@gimp.org> * gimprc.in * app/gimprc.[ch]: replaced "color-cube" by "min-colors". * app/app_procs.c: read unitrc/gimprc before displaying the splash. * app/colormaps.c: set min_colors and install_cmap before initializing GdkRGB. * app/gimprc.[ch] * app/gimpunit.c: don't call the splash's progress_update function. * app/plug_in.c: pass min_colors instead of color_cube to plugins. * app/preferences_dialog.c: widget for min_colors. * libgimp/gimp.[ch]: s/color_cube/min_colors/ but left gimp_color_cube() there for source level compatibility. * libgimp/gimpprotocol.[ch]: changed the GPConfig message accordinly and increased the gimp protocol version number because the change breaks binary compatibility. Also actually pass the use_xshm variable over the wire (was only in the GPConfig struct before). Was it the right thing to do to increase the version number?? * libgimp/gimpui.c (gimp_ui_init): use the same code as the app for initializing GdkRGB. Never explicitly activate Gdk's SHM usage (only switch it off). * app/main.c * libgimp/gimp.c: reverted the handling of all signals except SIGCHLD back to plain old signal() because those signals are fatal anyway and sigaction() as used by gimp_signal_*() made debugging (stacktrace) impossible. * plug-ins/AlienMap/AlienMap.c * plug-ins/AlienMap2/AlienMap2.c * plug-ins/FractalExplorer/Dialogs.c * plug-ins/bmp/bmp.c * plug-ins/borderaverage/borderaverage.c * plug-ins/dbbrowser/dbbrowser.c * plug-ins/faxg3/faxg3.c * plug-ins/fits/fits.c * plug-ins/flame/flame.c * plug-ins/fp/fp.c * plug-ins/fp/fp_gtk.c * plug-ins/gdyntext/Makefile.am * plug-ins/gdyntext/gdyntext_ui.c * plug-ins/gfig/gfig.c * plug-ins/gflare/gflare.c * plug-ins/gfli/gfli.c * plug-ins/gimpressionist/gimpressionist.c * plug-ins/helpbrowser/helpbrowser.c * plug-ins/ifscompose/ifscompose.c * plug-ins/imagemap/Makefile.am * plug-ins/imagemap/imap_main.c * plug-ins/maze/maze_face.c * plug-ins/mosaic/mosaic.c * plug-ins/pagecurl/pagecurl.c * plug-ins/print/print.c * plug-ins/rcm/rcm_dialog.c * plug-ins/script-fu/script-fu-console.c * plug-ins/script-fu/script-fu-scripts.c * plug-ins/script-fu/script-fu-server.c * plug-ins/sel2path/Makefile.am * plug-ins/sel2path/sel2path.c * plug-ins/sgi/sgi.c * plug-ins/sinus/sinus.c * plug-ins/struc/struc.c * plug-ins/webbrowser/webbrowser.c * plug-ins/winsnap/winsnap.c * plug-ins/xjt/xjt.c: use gimp_ui_init(). * plug-ins/Lighting/lighting_ui.c * plug-ins/MapObject/mapobject_ui.c: only switch Gdk SHM usage off, never on. Don't use gimp_ui_init() here because of libgck.
272 lines
6.4 KiB
C
272 lines
6.4 KiB
C
/*
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
*
|
|
* This is a plug-in for the GIMP.
|
|
*
|
|
* Copyright (C) Pavel Grinfeld (pavel@ml.com)
|
|
*
|
|
*
|
|
* 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 <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
#include <gtk/gtk.h>
|
|
|
|
#include <libgimp/gimp.h>
|
|
|
|
#include "fp.h"
|
|
|
|
#include "libgimp/stdplugins-intl.h"
|
|
|
|
|
|
FP_Params Current =
|
|
{
|
|
1,
|
|
.25, /* Initial Roughness */
|
|
NULL,
|
|
.6, /* Initial Degree of Aliasing */
|
|
NULL,
|
|
80,
|
|
NULL,
|
|
MIDTONES, /* Initial Range */
|
|
BY_VAL, /* Initial God knows what */
|
|
TRUE, /* Selection Only */
|
|
TRUE, /* Real Time */
|
|
0, /* Offset */
|
|
0,
|
|
{32,224,255},
|
|
{0,0,0}
|
|
};
|
|
|
|
GDrawable *drawable, *mask;
|
|
|
|
void query (void);
|
|
void run (gchar *name,
|
|
gint nparams,
|
|
GParam *param,
|
|
gint *nreturn_vals,
|
|
GParam **return_vals);
|
|
|
|
GPlugInInfo PLUG_IN_INFO =
|
|
{
|
|
NULL, /* init_proc */
|
|
NULL, /* quit_proc */
|
|
query, /* query_proc */
|
|
run, /* run_proc */
|
|
};
|
|
|
|
MAIN()
|
|
|
|
void
|
|
query (void)
|
|
{
|
|
GParamDef args[] =
|
|
{
|
|
{ PARAM_INT32, "run_mode", "Interactive, non-interactive" },
|
|
{ PARAM_IMAGE, "image", "Input image (used for indexed images)" },
|
|
{ PARAM_DRAWABLE, "drawable", "Input drawable" },
|
|
};
|
|
gint nargs = sizeof (args) / sizeof (args[0]);
|
|
|
|
gimp_install_procedure ("plug_in_filter_pack",
|
|
"Allows the user to change H, S, or C with many previews",
|
|
"No help available",
|
|
"Pavel Grinfeld (pavel@ml.com)",
|
|
"Pavel Grinfeld (pavel@ml.com)",
|
|
"27th March 1997",
|
|
N_("<Image>/Image/Colors/Filter Pack..."),
|
|
"RGB*",
|
|
PROC_PLUG_IN,
|
|
nargs, 0,
|
|
args, NULL);
|
|
}
|
|
|
|
/********************************STANDARD RUN*************************/
|
|
|
|
void
|
|
run (gchar *name,
|
|
gint nparams,
|
|
GParam *param,
|
|
gint *nreturn_vals,
|
|
GParam **return_vals)
|
|
{
|
|
GParam values[1];
|
|
GStatusType status = STATUS_SUCCESS;
|
|
|
|
*nreturn_vals = 1;
|
|
*return_vals = values;
|
|
|
|
INIT_I18N_UI();
|
|
|
|
values[0].type = PARAM_STATUS;
|
|
values[0].data.d_status = status;
|
|
|
|
initializeFilterPacks();
|
|
|
|
drawable = gimp_drawable_get (param[2].data.d_drawable);
|
|
mask = gimp_drawable_get (gimp_image_get_selection (param[1].data.d_image));
|
|
|
|
if (gimp_drawable_is_indexed (drawable->id) ||
|
|
gimp_drawable_is_gray (drawable->id) )
|
|
{
|
|
gimp_message (_("Convert the image to RGB first!"));
|
|
status = STATUS_EXECUTION_ERROR;
|
|
}
|
|
else if (gimp_drawable_is_rgb (drawable->id) && fp_dialog())
|
|
{
|
|
gimp_progress_init (_("Applying the Filter Pack..."));
|
|
gimp_tile_cache_ntiles (2 * (drawable->width / gimp_tile_width () + 1));
|
|
fp (drawable);
|
|
gimp_displays_flush ();
|
|
}
|
|
else status = STATUS_EXECUTION_ERROR;
|
|
|
|
|
|
values[0].data.d_status = status;
|
|
if (status==STATUS_SUCCESS)
|
|
gimp_drawable_detach (drawable);
|
|
}
|
|
|
|
|
|
void
|
|
fp_row (const guchar *src_row,
|
|
guchar *dest_row,
|
|
gint row,
|
|
gint row_width,
|
|
gint bytes)
|
|
{
|
|
gint col, bytenum, k;
|
|
int JudgeBy, Intensity=0, P[3], backupP[3];
|
|
hsv H,S,V;
|
|
gint M, m, middle;
|
|
|
|
for (col = 0; col < row_width ; col++)
|
|
{
|
|
|
|
backupP[0] = P[0] = src_row[col*bytes+0];
|
|
backupP[0] = P[1] = src_row[col*bytes+1];
|
|
backupP[0] = P[2] = src_row[col*bytes+2];
|
|
|
|
H = P[0]/255.0;
|
|
S = P[1]/255.0;
|
|
V = P[2]/255.0;
|
|
gimp_rgb_to_hsv_double(&H, &S, &V);
|
|
|
|
for (JudgeBy=BY_HUE; JudgeBy<JUDGE_BY; JudgeBy++) {
|
|
if (!Current.Touched[JudgeBy]) continue;
|
|
|
|
switch (JudgeBy) {
|
|
case BY_HUE:
|
|
Intensity=255*H;
|
|
break;
|
|
case BY_SAT:
|
|
Intensity=255*S;
|
|
break;
|
|
case BY_VAL:
|
|
Intensity=255*V;
|
|
break;
|
|
}
|
|
|
|
|
|
/* It's important to take care of Saturation first!!! */
|
|
|
|
m = MIN(MIN(P[0],P[1]),P[2]);
|
|
M = MAX(MAX(P[0],P[1]),P[2]);
|
|
middle=(M+m)/2;
|
|
|
|
for (k=0; k<3; k++)
|
|
if (P[k]!=m && P[k]!=M) middle=P[k];
|
|
|
|
for (k=0; k<3; k++)
|
|
if (M!=m) {
|
|
if (P[k] == M)
|
|
P[k] = MAX(P[k]+Current.satAdj[JudgeBy][Intensity],middle);
|
|
else if (P[k] == m)
|
|
P[k] = MIN(P[k]-Current.satAdj[JudgeBy][Intensity],middle);
|
|
}
|
|
|
|
|
|
P[0] += Current.redAdj[JudgeBy][Intensity];
|
|
P[1] += Current.greenAdj[JudgeBy][Intensity];
|
|
P[2] += Current.blueAdj[JudgeBy][Intensity];
|
|
|
|
P[0] = MAX(0,MIN(255, P[0]));
|
|
P[1] = MAX(0,MIN(255, P[1]));
|
|
P[2] = MAX(0,MIN(255, P[2]));
|
|
}
|
|
dest_row[col*bytes + 0] = P[0];
|
|
dest_row[col*bytes + 1] = P[1];
|
|
dest_row[col*bytes + 2] = P[2];
|
|
|
|
if (bytes>3)
|
|
for (bytenum = 3; bytenum<bytes; bytenum++)
|
|
dest_row[col*bytes+bytenum] = src_row[col*bytes+bytenum];
|
|
}
|
|
}
|
|
|
|
|
|
void fp (GDrawable *drawable)
|
|
{
|
|
GPixelRgn srcPR, destPR;
|
|
gint width, height;
|
|
gint bytes;
|
|
guchar *src_row, *dest_row;
|
|
gint row;
|
|
gint x1, y1, x2, y2;
|
|
|
|
gimp_drawable_mask_bounds (drawable->id, &x1, &y1, &x2, &y2);
|
|
|
|
width = drawable->width;
|
|
height = drawable->height;
|
|
bytes = drawable->bpp;
|
|
|
|
src_row = (guchar *) malloc ((x2 - x1) * bytes);
|
|
dest_row = (guchar *) malloc ((x2 - x1) * bytes);
|
|
|
|
gimp_pixel_rgn_init (&srcPR, drawable, 0, 0, width, height, FALSE, FALSE);
|
|
gimp_pixel_rgn_init (&destPR, drawable, 0, 0, width, height, TRUE, TRUE);
|
|
|
|
for (row = y1; row < y2; row++)
|
|
{
|
|
gimp_pixel_rgn_get_row (&srcPR, src_row, x1, row, (x2 - x1));
|
|
|
|
fp_row (src_row,
|
|
dest_row,
|
|
row,
|
|
(x2 - x1),
|
|
bytes
|
|
);
|
|
|
|
gimp_pixel_rgn_set_row (&destPR, dest_row, x1, row, (x2 - x1));
|
|
|
|
if ((row % 10) == 0)
|
|
gimp_progress_update ((double) row / (double) (y2 - y1));
|
|
}
|
|
|
|
|
|
/* update the processed region */
|
|
|
|
gimp_drawable_flush (drawable);
|
|
gimp_drawable_merge_shadow (drawable->id, TRUE);
|
|
gimp_drawable_update (drawable->id, x1, y1, (x2 - x1), (y2 - y1));
|
|
|
|
free (src_row);
|
|
free (dest_row);
|
|
|
|
}
|