1997-11-25 06:05:25 +08:00
|
|
|
/* The GIMP -- an image manipulation program
|
|
|
|
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
|
|
|
|
*
|
|
|
|
* 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
|
1998-04-13 13:44:11 +08:00
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
1997-11-25 06:05:25 +08:00
|
|
|
*/
|
2000-12-17 05:37:03 +08:00
|
|
|
|
2000-04-28 01:27:28 +08:00
|
|
|
#include "config.h"
|
2000-01-14 20:41:00 +08:00
|
|
|
|
2000-12-17 05:37:03 +08:00
|
|
|
#include <gtk/gtk.h>
|
2000-01-14 20:41:00 +08:00
|
|
|
#include <gdk/gdkkeysyms.h>
|
|
|
|
|
2000-12-17 05:37:03 +08:00
|
|
|
#include "apptypes.h"
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
#include "appenv.h"
|
|
|
|
#include "drawable.h"
|
|
|
|
#include "convolve.h"
|
|
|
|
#include "gdisplay.h"
|
2000-01-14 20:41:00 +08:00
|
|
|
#include "gimpui.h"
|
1997-11-25 06:05:25 +08:00
|
|
|
#include "paint_funcs.h"
|
|
|
|
#include "paint_core.h"
|
1999-04-22 22:34:00 +08:00
|
|
|
#include "paint_options.h"
|
1997-11-25 06:05:25 +08:00
|
|
|
#include "selection.h"
|
|
|
|
#include "tools.h"
|
1998-06-29 08:24:44 +08:00
|
|
|
#include "gimage.h"
|
1997-11-25 06:05:25 +08:00
|
|
|
|
Lots of ii8n stuff here and some additions to the de.po. Applied
Wed Oct 14 17:46:15 EDT 1998 Adrian Likins <adrian@gimp.org>
* app/*, po/de.po, de/POTFILES.in, libgimp/gimpintl.h:
Lots of ii8n stuff here and some additions to the de.po.
Applied gimp-egger-981005-1 ,gimp-egger-981006-1,
gimp-egger-981007-1, gimp-egger-981008-1,
gimp-egger-981009-1.patch, gimp-egger-981010-1.patch
* plug-in/guillotine/guillotine.c: added the coordinates
of the split images from the original image to the title.
ie foo.jpg (0,0) for the image in the topleft.
* plug-in/script-fu/scripts/neon-logo.scm,
perspective-shadow.scm, predator.scm,rendermap.scm,
ripply-anim.scm, select_to_image.scm,swirltile.scm,
xach-effect.scm: updated scripts to use new script-fu stuff
wooo boy! a big un!
in testing this, it looks like some of the po files are busted.
but the code stuff seems okay.
-adrian
1998-10-15 07:23:52 +08:00
|
|
|
#include "libgimp/gimpintl.h"
|
|
|
|
|
2000-04-28 01:27:28 +08:00
|
|
|
|
1999-04-09 06:25:54 +08:00
|
|
|
#define FIELD_COLS 4
|
|
|
|
#define MIN_BLUR 64 /* (8/9 original pixel) */
|
|
|
|
#define MAX_BLUR 0.25 /* (1/33 original pixel) */
|
|
|
|
#define MIN_SHARPEN -512
|
|
|
|
#define MAX_SHARPEN -64
|
|
|
|
|
1999-07-20 06:42:49 +08:00
|
|
|
/* defaults */
|
1999-11-13 09:02:27 +08:00
|
|
|
#define DEFAULT_CONVOLVE_RATE 50.0
|
|
|
|
#define DEFAULT_CONVOLVE_TYPE BLUR_CONVOLVE
|
1999-07-20 06:42:49 +08:00
|
|
|
|
2000-11-06 20:40:07 +08:00
|
|
|
|
|
|
|
/* Different clip relationships between a blur-blob and edges:
|
|
|
|
see convolve_motion */
|
|
|
|
|
|
|
|
typedef enum
|
|
|
|
{
|
|
|
|
CONVOLVE_NCLIP, /* Left or top edge */
|
|
|
|
CONVOLVE_NOT_CLIPPED, /* No edges */
|
|
|
|
CONVOLVE_PCLIP /* Right or bottom edge */
|
|
|
|
} ConvolveClipType;
|
|
|
|
|
|
|
|
|
1999-04-09 06:25:54 +08:00
|
|
|
/* the convolve structures */
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
typedef struct _ConvolveOptions ConvolveOptions;
|
2000-01-14 20:41:00 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
struct _ConvolveOptions
|
|
|
|
{
|
1999-04-22 22:34:00 +08:00
|
|
|
PaintOptions paint_options;
|
1999-04-13 01:55:06 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
ConvolveType type;
|
1999-04-09 06:25:54 +08:00
|
|
|
ConvolveType type_d;
|
1999-04-28 05:06:00 +08:00
|
|
|
GtkWidget *type_w[2];
|
1999-04-09 06:25:54 +08:00
|
|
|
|
2000-01-14 20:41:00 +08:00
|
|
|
gdouble rate;
|
|
|
|
gdouble rate_d;
|
1999-11-13 09:02:27 +08:00
|
|
|
GtkObject *rate_w;
|
1997-11-25 06:05:25 +08:00
|
|
|
};
|
|
|
|
|
1999-04-13 01:55:06 +08:00
|
|
|
|
|
|
|
/* the convolve tool options */
|
|
|
|
static ConvolveOptions * convolve_options = NULL;
|
1999-04-09 06:25:54 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
/* local variables */
|
2000-01-14 20:41:00 +08:00
|
|
|
static gint matrix [25];
|
|
|
|
static gint matrix_size;
|
|
|
|
static gint matrix_divisor;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-07-20 06:42:49 +08:00
|
|
|
static ConvolveType non_gui_type;
|
2000-01-14 20:41:00 +08:00
|
|
|
static gdouble non_gui_rate;
|
1999-07-20 06:42:49 +08:00
|
|
|
|
2000-01-14 20:41:00 +08:00
|
|
|
static gfloat custom_matrix [25] =
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
|
|
|
0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0,
|
|
|
|
0, 0, 1, 0, 0,
|
|
|
|
0, 0, 0, 0, 0,
|
|
|
|
0, 0, 0, 0, 0,
|
|
|
|
};
|
|
|
|
|
2000-01-14 20:41:00 +08:00
|
|
|
static gfloat blur_matrix [25] =
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
|
|
|
0, 0, 0, 0, 0,
|
|
|
|
0, 1, 1, 1, 0,
|
|
|
|
0, 1, MIN_BLUR, 1, 0,
|
|
|
|
0, 1, 1, 1, 0,
|
|
|
|
0, 0 ,0, 0, 0,
|
|
|
|
};
|
|
|
|
|
2000-01-14 20:41:00 +08:00
|
|
|
static gfloat sharpen_matrix [25] =
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
|
|
|
0, 0, 0, 0, 0,
|
|
|
|
0, 1, 1, 1, 0,
|
|
|
|
0, 1, MIN_SHARPEN, 1, 0,
|
|
|
|
0, 1, 1, 1, 0,
|
|
|
|
0, 0, 0, 0, 0,
|
|
|
|
};
|
|
|
|
|
|
|
|
|
1999-04-09 06:25:54 +08:00
|
|
|
/* forward function declarations */
|
1999-11-13 09:02:27 +08:00
|
|
|
static void calculate_matrix (ConvolveType, double);
|
1999-04-09 06:25:54 +08:00
|
|
|
static void integer_matrix (float *, int *, int);
|
|
|
|
static void copy_matrix (float *, float *, int);
|
|
|
|
static int sum_matrix (int *, int);
|
|
|
|
|
1999-11-13 09:02:27 +08:00
|
|
|
static void convolve_motion (PaintCore *, GimpDrawable *,
|
|
|
|
PaintPressureOptions *,
|
1999-09-09 09:47:54 +08:00
|
|
|
ConvolveType, double);
|
1999-04-09 06:25:54 +08:00
|
|
|
|
|
|
|
/* functions */
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
static void
|
1999-04-13 01:55:06 +08:00
|
|
|
convolve_options_reset (void)
|
1999-04-09 06:25:54 +08:00
|
|
|
{
|
|
|
|
ConvolveOptions *options = convolve_options;
|
|
|
|
|
1999-04-22 22:34:00 +08:00
|
|
|
paint_options_reset ((PaintOptions *) options);
|
|
|
|
|
1999-11-13 09:02:27 +08:00
|
|
|
gtk_adjustment_set_value (GTK_ADJUSTMENT (options->rate_w), options->rate_d);
|
1999-04-28 05:06:00 +08:00
|
|
|
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (options->type_w[options->type_d]), TRUE);
|
1999-04-09 06:25:54 +08:00
|
|
|
}
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
static ConvolveOptions *
|
1999-04-13 01:55:06 +08:00
|
|
|
convolve_options_new (void)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
|
|
|
ConvolveOptions *options;
|
1999-04-13 01:55:06 +08:00
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
GtkWidget *vbox;
|
|
|
|
GtkWidget *hbox;
|
|
|
|
GtkWidget *label;
|
1999-04-09 06:25:54 +08:00
|
|
|
GtkWidget *scale;
|
1999-04-13 01:55:06 +08:00
|
|
|
GtkWidget *frame;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-04-13 01:55:06 +08:00
|
|
|
/* the new convolve tool options structure */
|
2000-01-14 20:41:00 +08:00
|
|
|
options = g_new (ConvolveOptions, 1);
|
1999-04-22 22:34:00 +08:00
|
|
|
paint_options_init ((PaintOptions *) options,
|
|
|
|
CONVOLVE,
|
|
|
|
convolve_options_reset);
|
1999-11-13 09:02:27 +08:00
|
|
|
options->type = options->type_d = DEFAULT_CONVOLVE_TYPE;
|
|
|
|
options->rate = options->rate_d = DEFAULT_CONVOLVE_RATE;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* the main vbox */
|
1999-04-22 22:34:00 +08:00
|
|
|
vbox = ((ToolOptions *) options)->main_vbox;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-11-13 09:02:27 +08:00
|
|
|
/* the rate scale */
|
1999-04-22 22:34:00 +08:00
|
|
|
hbox = gtk_hbox_new (FALSE, 4);
|
1997-11-25 06:05:25 +08:00
|
|
|
gtk_box_pack_start (GTK_BOX (vbox), hbox, FALSE, FALSE, 0);
|
|
|
|
|
1999-11-13 09:02:27 +08:00
|
|
|
label = gtk_label_new (_("Rate:"));
|
1999-04-09 06:25:54 +08:00
|
|
|
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0);
|
1997-11-25 06:05:25 +08:00
|
|
|
gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (label);
|
|
|
|
|
1999-11-13 09:02:27 +08:00
|
|
|
options->rate_w =
|
|
|
|
gtk_adjustment_new (options->rate_d, 0.0, 100.0, 1.0, 1.0, 0.0);
|
|
|
|
scale = gtk_hscale_new (GTK_ADJUSTMENT (options->rate_w));
|
1999-04-09 06:25:54 +08:00
|
|
|
gtk_box_pack_start (GTK_BOX (hbox), scale, TRUE, TRUE, 0);
|
|
|
|
gtk_scale_set_value_pos (GTK_SCALE (scale), GTK_POS_TOP);
|
|
|
|
gtk_range_set_update_policy (GTK_RANGE (scale), GTK_UPDATE_DELAYED);
|
1999-11-13 09:02:27 +08:00
|
|
|
gtk_signal_connect (GTK_OBJECT (options->rate_w), "value_changed",
|
2000-01-14 20:41:00 +08:00
|
|
|
GTK_SIGNAL_FUNC (gimp_double_adjustment_update),
|
1999-11-13 09:02:27 +08:00
|
|
|
&options->rate);
|
1999-04-09 06:25:54 +08:00
|
|
|
gtk_widget_show (scale);
|
1997-11-25 06:05:25 +08:00
|
|
|
gtk_widget_show (hbox);
|
|
|
|
|
2000-01-14 20:41:00 +08:00
|
|
|
frame = gimp_radio_group_new2 (TRUE, _("Convolve Type"),
|
|
|
|
gimp_radio_button_update,
|
|
|
|
&options->type, (gpointer) options->type,
|
|
|
|
|
|
|
|
_("Blur"), (gpointer) BLUR_CONVOLVE,
|
|
|
|
&options->type_w[0],
|
|
|
|
_("Sharpen"), (gpointer) SHARPEN_CONVOLVE,
|
|
|
|
&options->type_w[1],
|
|
|
|
|
|
|
|
NULL);
|
|
|
|
|
1999-04-09 06:25:54 +08:00
|
|
|
gtk_box_pack_start (GTK_BOX (vbox), frame, FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (frame);
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
return options;
|
|
|
|
}
|
|
|
|
|
|
|
|
void *
|
1999-04-09 06:25:54 +08:00
|
|
|
convolve_paint_func (PaintCore *paint_core,
|
1998-01-22 15:02:57 +08:00
|
|
|
GimpDrawable *drawable,
|
1999-04-09 06:25:54 +08:00
|
|
|
int state)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
|
|
|
switch (state)
|
|
|
|
{
|
|
|
|
case MOTION_PAINT:
|
1999-09-09 09:47:54 +08:00
|
|
|
convolve_motion (paint_core, drawable,
|
|
|
|
convolve_options->paint_options.pressure_options,
|
1999-11-13 09:02:27 +08:00
|
|
|
convolve_options->type, convolve_options->rate);
|
1997-11-25 06:05:25 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
1999-04-27 10:09:03 +08:00
|
|
|
static void
|
1999-04-28 05:06:00 +08:00
|
|
|
convolve_modifier_key_func (Tool *tool,
|
1999-06-08 06:38:20 +08:00
|
|
|
GdkEventKey *kevent,
|
|
|
|
gpointer gdisp_ptr)
|
1999-04-27 10:09:03 +08:00
|
|
|
{
|
1999-04-28 05:06:00 +08:00
|
|
|
switch (kevent->keyval)
|
1999-04-27 10:09:03 +08:00
|
|
|
{
|
1999-11-20 08:30:41 +08:00
|
|
|
case GDK_Alt_L:
|
|
|
|
case GDK_Alt_R:
|
1999-04-27 10:09:03 +08:00
|
|
|
break;
|
1999-11-20 08:30:41 +08:00
|
|
|
case GDK_Shift_L:
|
|
|
|
case GDK_Shift_R:
|
|
|
|
if (kevent->state & GDK_CONTROL_MASK) /* reset tool toggle */
|
|
|
|
{
|
|
|
|
switch (convolve_options->type)
|
|
|
|
{
|
|
|
|
case BLUR_CONVOLVE:
|
2000-06-14 22:22:47 +08:00
|
|
|
gtk_toggle_button_set_active
|
|
|
|
(GTK_TOGGLE_BUTTON (convolve_options->type_w[SHARPEN_CONVOLVE]),
|
|
|
|
TRUE);
|
1999-11-20 08:30:41 +08:00
|
|
|
break;
|
|
|
|
case SHARPEN_CONVOLVE:
|
2000-06-14 22:22:47 +08:00
|
|
|
gtk_toggle_button_set_active
|
|
|
|
(GTK_TOGGLE_BUTTON (convolve_options->type_w[BLUR_CONVOLVE]),
|
|
|
|
TRUE);
|
1999-11-20 08:30:41 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
1999-06-08 06:38:20 +08:00
|
|
|
break;
|
1999-11-20 08:30:41 +08:00
|
|
|
case GDK_Control_L:
|
|
|
|
case GDK_Control_R:
|
|
|
|
if ( !(kevent->state & GDK_SHIFT_MASK) ) /* shift enables line draw mode */
|
1999-04-28 05:06:00 +08:00
|
|
|
{
|
1999-11-20 08:30:41 +08:00
|
|
|
switch (convolve_options->type)
|
|
|
|
{
|
|
|
|
case BLUR_CONVOLVE:
|
2000-06-14 22:22:47 +08:00
|
|
|
gtk_toggle_button_set_active
|
|
|
|
(GTK_TOGGLE_BUTTON (convolve_options->type_w[SHARPEN_CONVOLVE]),
|
|
|
|
TRUE);
|
1999-11-20 08:30:41 +08:00
|
|
|
break;
|
|
|
|
case SHARPEN_CONVOLVE:
|
2000-06-14 22:22:47 +08:00
|
|
|
gtk_toggle_button_set_active
|
|
|
|
(GTK_TOGGLE_BUTTON (convolve_options->type_w[BLUR_CONVOLVE]),
|
|
|
|
TRUE);
|
1999-11-20 08:30:41 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
1999-04-28 05:06:00 +08:00
|
|
|
}
|
1999-11-20 08:30:41 +08:00
|
|
|
break;
|
1999-04-27 10:09:03 +08:00
|
|
|
}
|
2000-06-14 22:22:47 +08:00
|
|
|
|
|
|
|
tool->toggled = (convolve_options->type == SHARPEN_CONVOLVE);
|
1999-04-27 10:09:03 +08:00
|
|
|
}
|
|
|
|
|
2000-07-30 00:12:40 +08:00
|
|
|
static void
|
|
|
|
convolve_cursor_update_func (Tool *tool,
|
|
|
|
GdkEventMotion *mevent,
|
|
|
|
gpointer gdisp_ptr)
|
|
|
|
{
|
|
|
|
tool->toggled = (convolve_options->type == SHARPEN_CONVOLVE);
|
|
|
|
|
|
|
|
paint_core_cursor_update (tool, mevent, gdisp_ptr);
|
|
|
|
}
|
|
|
|
|
1997-11-25 06:05:25 +08:00
|
|
|
Tool *
|
2000-04-28 01:27:28 +08:00
|
|
|
tools_new_convolve (void)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
|
|
|
Tool * tool;
|
|
|
|
PaintCore * private;
|
|
|
|
|
1999-04-13 01:55:06 +08:00
|
|
|
/* The tool options */
|
1997-11-25 06:05:25 +08:00
|
|
|
if (! convolve_options)
|
1999-04-13 01:55:06 +08:00
|
|
|
{
|
|
|
|
convolve_options = convolve_options_new ();
|
|
|
|
tools_register (CONVOLVE, (ToolOptions *) convolve_options);
|
1999-04-18 07:18:43 +08:00
|
|
|
|
|
|
|
/* press all default buttons */
|
|
|
|
convolve_options_reset ();
|
1999-04-13 01:55:06 +08:00
|
|
|
}
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
tool = paint_core_new (CONVOLVE);
|
2000-07-30 00:12:40 +08:00
|
|
|
tool->modifier_key_func = convolve_modifier_key_func;
|
|
|
|
tool->cursor_update_func = convolve_cursor_update_func;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
private = (PaintCore *) tool->private;
|
|
|
|
private->paint_func = convolve_paint_func;
|
|
|
|
|
|
|
|
return tool;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
tools_free_convolve (Tool *tool)
|
|
|
|
{
|
|
|
|
paint_core_free (tool);
|
|
|
|
}
|
|
|
|
|
1998-03-19 06:35:31 +08:00
|
|
|
static void
|
1999-09-09 09:47:54 +08:00
|
|
|
convolve_motion (PaintCore *paint_core,
|
|
|
|
GimpDrawable *drawable,
|
|
|
|
PaintPressureOptions *pressure_options,
|
|
|
|
ConvolveType type,
|
1999-11-13 09:02:27 +08:00
|
|
|
double rate)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-11-05 01:54:01 +08:00
|
|
|
TempBuf *area;
|
|
|
|
guchar *temp_data;
|
|
|
|
PixelRegion srcPR;
|
|
|
|
PixelRegion destPR;
|
|
|
|
gdouble scale;
|
|
|
|
ConvolveClipType area_hclip = CONVOLVE_NOT_CLIPPED;
|
|
|
|
ConvolveClipType area_vclip = CONVOLVE_NOT_CLIPPED;
|
|
|
|
gint marginx = 0;
|
|
|
|
gint marginy = 0;
|
|
|
|
|
|
|
|
if (!drawable_gimage (drawable))
|
1997-11-25 06:05:25 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
/* If the image type is indexed, don't convolve */
|
1998-05-12 08:12:47 +08:00
|
|
|
if ((drawable_type (drawable) == INDEXED_GIMAGE) ||
|
|
|
|
(drawable_type (drawable) == INDEXEDA_GIMAGE))
|
1997-11-25 06:05:25 +08:00
|
|
|
return;
|
|
|
|
|
2000-11-05 01:54:01 +08:00
|
|
|
/* If the brush is smaller than the convolution matrix, don't convolve */
|
|
|
|
|
|
|
|
if((paint_core->brush->mask->width < matrix_size) || (paint_core->brush->mask->height < matrix_size))
|
|
|
|
return;
|
|
|
|
|
1999-09-09 09:47:54 +08:00
|
|
|
if (pressure_options->size)
|
|
|
|
scale = paint_core->curpressure;
|
|
|
|
else
|
|
|
|
scale = 1.0;
|
|
|
|
|
2000-11-05 01:54:01 +08:00
|
|
|
/* Get image region around current brush (mask bbox + 1 pixel) */
|
1999-09-09 09:47:54 +08:00
|
|
|
if (! (area = paint_core_get_paint_area (paint_core, drawable, scale)))
|
1997-11-25 06:05:25 +08:00
|
|
|
return;
|
|
|
|
|
2000-11-05 01:54:01 +08:00
|
|
|
/* configure the source pixel region */
|
2000-04-28 01:27:28 +08:00
|
|
|
pixel_region_init (&srcPR, drawable_data (drawable),
|
|
|
|
area->x, area->y, area->width, area->height, FALSE);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
2000-11-05 01:54:01 +08:00
|
|
|
/* Configure the destination pixel region - a paint_core TempBuf */
|
|
|
|
|
|
|
|
destPR.bytes = area->bytes;
|
|
|
|
destPR.tiles = NULL;
|
|
|
|
destPR.x = 0;
|
|
|
|
destPR.y = 0;
|
|
|
|
destPR.w = area->width;
|
|
|
|
destPR.h = area->height;
|
1997-11-25 06:05:25 +08:00
|
|
|
destPR.rowstride = area->width * destPR.bytes;
|
2000-11-05 01:54:01 +08:00
|
|
|
destPR.data = temp_buf_data (area);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-11-13 09:02:27 +08:00
|
|
|
if (pressure_options->rate)
|
|
|
|
rate = rate * 2.0 * paint_core->curpressure;
|
|
|
|
|
|
|
|
calculate_matrix (type, rate);
|
2000-11-05 01:54:01 +08:00
|
|
|
|
|
|
|
/* Image region near edges? If so, paint area will be clipped */
|
|
|
|
/* with respect to brush mask + 1 pixel border (# 19285) */
|
|
|
|
|
|
|
|
if((marginx = (gint)paint_core->curx - paint_core->brush->mask->width/2 - 1) != area->x)
|
|
|
|
area_hclip = CONVOLVE_NCLIP;
|
|
|
|
else
|
|
|
|
if((marginx = area->width - paint_core->brush->mask->width - 2) != 0)
|
|
|
|
area_hclip = CONVOLVE_PCLIP;
|
|
|
|
|
|
|
|
if((marginy = (gint)paint_core->cury - paint_core->brush->mask->height/2 - 1) != area->y)
|
|
|
|
area_vclip = CONVOLVE_NCLIP;
|
|
|
|
else
|
|
|
|
if((marginy = area->height - paint_core->brush->mask->height - 2) != 0)
|
|
|
|
area_vclip = CONVOLVE_PCLIP;
|
1999-02-05 07:28:09 +08:00
|
|
|
|
2000-11-05 01:54:01 +08:00
|
|
|
/* Has the TempBuf been clipped by a canvas edge or two ? */
|
|
|
|
if((area_hclip == CONVOLVE_NOT_CLIPPED) && (area_vclip == CONVOLVE_NOT_CLIPPED))
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-11-05 01:54:01 +08:00
|
|
|
/* No clipping... */
|
|
|
|
/* Standard case: copy src to temp. convolve temp to dest. */
|
|
|
|
/* Brush defines pipe size and no edge adjustments are needed. */
|
|
|
|
|
|
|
|
/* If the source has no alpha, then add alpha pixels */
|
|
|
|
/* Because paint_core.c is alpha-only code. See below. */
|
|
|
|
|
|
|
|
PixelRegion tempPR;
|
|
|
|
|
|
|
|
tempPR.x = 0;
|
|
|
|
tempPR.y = 0;
|
|
|
|
tempPR.w = area->width;
|
|
|
|
tempPR.h = area->height;
|
|
|
|
tempPR.tiles = NULL;
|
|
|
|
|
1998-01-22 15:02:57 +08:00
|
|
|
if (!drawable_has_alpha (drawable))
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
2000-11-05 01:54:01 +08:00
|
|
|
/* note: this particular approach needlessly convolves the totally-
|
1997-12-08 09:13:10 +08:00
|
|
|
opaque alpha channel. A faster approach would be to keep
|
|
|
|
tempPR the same number of bytes as srcPR, and extend the
|
|
|
|
paint_core_replace_canvas API to handle non-alpha images. */
|
|
|
|
|
2000-11-05 01:54:01 +08:00
|
|
|
tempPR.bytes = srcPR.bytes + 1;
|
1997-11-25 06:05:25 +08:00
|
|
|
tempPR.rowstride = tempPR.bytes * tempPR.w;
|
2000-11-05 01:54:01 +08:00
|
|
|
temp_data = g_malloc (tempPR.h * tempPR.rowstride);
|
|
|
|
tempPR.data = temp_data;
|
1997-11-25 06:05:25 +08:00
|
|
|
add_alpha_region (&srcPR, &tempPR);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2000-11-05 01:54:01 +08:00
|
|
|
tempPR.bytes = srcPR.bytes;
|
1997-11-25 06:05:25 +08:00
|
|
|
tempPR.rowstride = tempPR.bytes * tempPR.w;
|
2000-11-05 01:54:01 +08:00
|
|
|
temp_data = g_malloc (tempPR.h * tempPR.rowstride);
|
|
|
|
tempPR.data = temp_data;
|
1997-11-25 06:05:25 +08:00
|
|
|
copy_region (&srcPR, &tempPR);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Convolve the region */
|
2000-11-05 01:54:01 +08:00
|
|
|
|
|
|
|
tempPR.x = 0;
|
|
|
|
tempPR.y = 0;
|
|
|
|
tempPR.w = area->width;
|
|
|
|
tempPR.h = area->height;
|
|
|
|
tempPR.data = temp_data;
|
1997-11-25 06:05:25 +08:00
|
|
|
convolve_region (&tempPR, &destPR, matrix, matrix_size,
|
Actually use the enum types GimpImageType, GimpImageBaseType,
* app/*.[ch]: Actually use the enum types GimpImageType,
GimpImageBaseType, LayerModeEffects, PaintApplicationMode,
BrushApplicationMode, GimpFillType and ConvertPaletteType, instead
of just int or gint. Hopefully I catched most of the places
where these should be used.
Add an enum ConvolutionType, suffix the too general constants
NORMAL, ABSOLUTE and NEGATIVE with _CONVOL. Use NORMAL_MODE
instead of NORMAL in some places (this was what was intended). Fix
some minor gccisms.
* app/apptypes.h: New file. This file contains the above
enumeration types, and some opaque struct typedefs. It was
necessary to collect these in one header that doesn't include
other headers, because when we started using the above mentioned
types in the headers, all hell broke loose because of the
spaghetti-like cross-inclusion mess between headers.
(An example: Header A includes header B, which includes header C
which includes A. B uses a type defined in A. This is not defined,
because A hasn't defined it yet at the point where it includes B,
and A included from B of course is skipped as we already are
reading A.)
1999-08-19 07:41:39 +08:00
|
|
|
matrix_divisor, NORMAL_CONVOL);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* Free the allocated temp space */
|
|
|
|
g_free (temp_data);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2000-11-05 01:54:01 +08:00
|
|
|
/* TempBuf clipping has occured on at least one edge... */
|
|
|
|
/* Edge case: expand area under brush margin px on near edge(s), convolve */
|
|
|
|
/* expanded buffers. copy src -> ovrsz1 convolve ovrsz1 -> ovrsz2 */
|
|
|
|
/* copy-with-crop ovrsz2 -> dest */
|
|
|
|
|
|
|
|
PixelRegion ovrsz1PR;
|
|
|
|
PixelRegion ovrsz2PR;
|
|
|
|
guchar *ovrsz1_data = NULL;
|
|
|
|
guchar *ovrsz2_data = NULL;
|
|
|
|
guchar *fillcolor = gimp_drawable_get_color_at (drawable,
|
|
|
|
CLAMP ((gint) paint_core->curx, 0, gimp_drawable_width (drawable) - 1),
|
|
|
|
CLAMP ((gint) paint_core->cury, 0, gimp_drawable_height (drawable) - 1));
|
|
|
|
|
|
|
|
marginx *= (marginx < 0) ? -1 : 0;
|
|
|
|
marginy *= (marginy < 0) ? -1 : 0;
|
|
|
|
|
|
|
|
ovrsz2PR.x = 0;
|
|
|
|
ovrsz2PR.y = 0;
|
|
|
|
ovrsz2PR.w = area->width + marginx;
|
|
|
|
ovrsz2PR.h = area->height + marginy;
|
|
|
|
ovrsz2PR.bytes = (drawable_has_alpha (drawable))? srcPR.bytes : srcPR.bytes + 1;
|
|
|
|
ovrsz2PR.offx = 0;
|
|
|
|
ovrsz2PR.offy = 0;
|
|
|
|
ovrsz2PR.rowstride = ovrsz2PR.bytes * ovrsz2PR.w;
|
|
|
|
ovrsz2PR.tiles = NULL;
|
|
|
|
ovrsz2_data = g_malloc (ovrsz2PR.h * ovrsz2PR.rowstride);
|
|
|
|
ovrsz2PR.data = ovrsz2_data;
|
|
|
|
|
|
|
|
ovrsz1PR.x = 0;
|
|
|
|
ovrsz1PR.y = 0;
|
|
|
|
ovrsz1PR.w = area->width + marginx;
|
|
|
|
ovrsz1PR.h = area->height + marginy;
|
|
|
|
ovrsz1PR.bytes = (drawable_has_alpha (drawable))? srcPR.bytes : srcPR.bytes + 1;
|
|
|
|
ovrsz1PR.offx = 0;
|
|
|
|
ovrsz1PR.offy = 0;
|
|
|
|
ovrsz1PR.rowstride = ovrsz2PR.bytes * ovrsz2PR.w;
|
|
|
|
ovrsz1PR.tiles = NULL;
|
|
|
|
ovrsz1_data = g_malloc (ovrsz1PR.h * ovrsz1PR.rowstride);
|
|
|
|
ovrsz1PR.data = ovrsz1_data;
|
|
|
|
color_region (&ovrsz1PR, (const guchar *)fillcolor);
|
|
|
|
|
|
|
|
ovrsz1PR.x = (area_hclip == CONVOLVE_NCLIP)? marginx : 0;
|
|
|
|
ovrsz1PR.y = (area_vclip == CONVOLVE_NCLIP)? marginy : 0;
|
|
|
|
ovrsz1PR.w = area->width;
|
|
|
|
ovrsz1PR.h = area->height;
|
|
|
|
ovrsz1PR.data = ovrsz1_data + (ovrsz1PR.rowstride * ovrsz1PR.y) + (ovrsz1PR.bytes * ovrsz1PR.x);
|
|
|
|
|
|
|
|
if (!(drawable_has_alpha (drawable)))
|
|
|
|
add_alpha_region (&srcPR, &ovrsz1PR);
|
1997-11-25 06:05:25 +08:00
|
|
|
else
|
2000-11-05 01:54:01 +08:00
|
|
|
copy_region (&srcPR, &ovrsz1PR);
|
|
|
|
|
|
|
|
/* Convolve the region */
|
|
|
|
|
|
|
|
ovrsz1PR.x = 0;
|
|
|
|
ovrsz1PR.y = 0;
|
|
|
|
ovrsz1PR.w = area->width + marginx;
|
|
|
|
ovrsz1PR.h = area->height + marginy;
|
|
|
|
ovrsz1PR.data = ovrsz1_data;
|
|
|
|
convolve_region (&ovrsz1PR, &ovrsz2PR, matrix, matrix_size,
|
|
|
|
matrix_divisor, NORMAL_CONVOL);
|
|
|
|
|
|
|
|
/* Crop and copy to destination */
|
|
|
|
|
|
|
|
ovrsz2PR.x = (area_hclip == CONVOLVE_NCLIP)? marginx : 0;
|
|
|
|
ovrsz2PR.y = (area_vclip == CONVOLVE_NCLIP)? marginy : 0;
|
|
|
|
ovrsz2PR.w = area->width;
|
|
|
|
ovrsz2PR.h = area->height;
|
|
|
|
ovrsz2PR.data = ovrsz2_data + (ovrsz2PR.rowstride * ovrsz2PR.y) + (ovrsz2PR.bytes * ovrsz2PR.x);
|
|
|
|
copy_region (&ovrsz2PR, &destPR);
|
|
|
|
g_free(ovrsz1_data);
|
|
|
|
g_free(ovrsz2_data);
|
|
|
|
g_free(fillcolor);
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* paste the newly painted canvas to the gimage which is being worked on */
|
1998-01-25 09:24:46 +08:00
|
|
|
paint_core_replace_canvas (paint_core, drawable, OPAQUE_OPACITY,
|
1999-07-06 23:18:25 +08:00
|
|
|
(int) (gimp_context_get_opacity (NULL) * 255),
|
1999-11-13 09:02:27 +08:00
|
|
|
pressure_options->pressure ? PRESSURE : SOFT,
|
|
|
|
scale, INCREMENTAL);
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
calculate_matrix (ConvolveType type,
|
1999-11-13 09:02:27 +08:00
|
|
|
double rate)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
|
|
|
float percent;
|
|
|
|
|
|
|
|
/* find percent of tool pressure */
|
1999-11-13 09:02:27 +08:00
|
|
|
percent = MIN (rate / 100.0, 1.0);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
/* get the appropriate convolution matrix and size and divisor */
|
|
|
|
switch (type)
|
|
|
|
{
|
1999-04-19 05:22:41 +08:00
|
|
|
case BLUR_CONVOLVE:
|
1997-11-25 06:05:25 +08:00
|
|
|
matrix_size = 5;
|
|
|
|
blur_matrix [12] = MIN_BLUR + percent * (MAX_BLUR - MIN_BLUR);
|
|
|
|
copy_matrix (blur_matrix, custom_matrix, matrix_size);
|
|
|
|
break;
|
|
|
|
|
1999-04-19 05:22:41 +08:00
|
|
|
case SHARPEN_CONVOLVE:
|
1997-11-25 06:05:25 +08:00
|
|
|
matrix_size = 5;
|
|
|
|
sharpen_matrix [12] = MIN_SHARPEN + percent * (MAX_SHARPEN - MIN_SHARPEN);
|
|
|
|
copy_matrix (sharpen_matrix, custom_matrix, matrix_size);
|
|
|
|
break;
|
|
|
|
|
1999-04-19 05:22:41 +08:00
|
|
|
case CUSTOM_CONVOLVE:
|
1997-11-25 06:05:25 +08:00
|
|
|
matrix_size = 5;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
integer_matrix (custom_matrix, matrix, matrix_size);
|
|
|
|
matrix_divisor = sum_matrix (matrix, matrix_size);
|
|
|
|
|
|
|
|
if (!matrix_divisor)
|
|
|
|
matrix_divisor = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
integer_matrix (float *source,
|
|
|
|
int *dest,
|
|
|
|
int size)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
#define PRECISION 10000
|
|
|
|
|
|
|
|
for (i = 0; i < size*size; i++)
|
|
|
|
*dest++ = (int) (*source ++ * PRECISION);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
copy_matrix (float *src,
|
|
|
|
float *dest,
|
|
|
|
int size)
|
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
|
|
|
for (i = 0; i < size*size; i++)
|
|
|
|
*dest++ = *src++;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
|
|
|
sum_matrix (int *matrix,
|
|
|
|
int size)
|
|
|
|
{
|
|
|
|
int sum = 0;
|
|
|
|
|
|
|
|
size *= size;
|
|
|
|
|
|
|
|
while (size --)
|
|
|
|
sum += *matrix++;
|
|
|
|
|
|
|
|
return sum;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void *
|
|
|
|
convolve_non_gui_paint_func (PaintCore *paint_core,
|
1998-01-22 15:02:57 +08:00
|
|
|
GimpDrawable *drawable,
|
1997-11-25 06:05:25 +08:00
|
|
|
int state)
|
|
|
|
{
|
1999-09-09 09:47:54 +08:00
|
|
|
convolve_motion (paint_core, drawable, &non_gui_pressure_options,
|
1999-11-13 09:02:27 +08:00
|
|
|
non_gui_type, non_gui_rate);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
1999-07-20 06:42:49 +08:00
|
|
|
gboolean
|
|
|
|
convolve_non_gui_default (GimpDrawable *drawable,
|
|
|
|
int num_strokes,
|
|
|
|
double *stroke_array)
|
|
|
|
{
|
1999-11-13 09:02:27 +08:00
|
|
|
double rate = DEFAULT_CONVOLVE_RATE;
|
1999-07-20 06:42:49 +08:00
|
|
|
ConvolveType type = DEFAULT_CONVOLVE_TYPE;
|
|
|
|
ConvolveOptions *options = convolve_options;
|
|
|
|
|
1999-11-13 09:02:27 +08:00
|
|
|
if (options)
|
1999-07-20 06:42:49 +08:00
|
|
|
{
|
1999-11-13 09:02:27 +08:00
|
|
|
rate = options->rate;
|
1999-07-20 06:42:49 +08:00
|
|
|
type = options->type;
|
|
|
|
}
|
|
|
|
|
1999-11-13 09:02:27 +08:00
|
|
|
return convolve_non_gui (drawable, rate, type, num_strokes, stroke_array);
|
1999-07-20 06:42:49 +08:00
|
|
|
}
|
|
|
|
|
1999-04-19 05:22:41 +08:00
|
|
|
gboolean
|
|
|
|
convolve_non_gui (GimpDrawable *drawable,
|
1999-11-13 09:02:27 +08:00
|
|
|
double rate,
|
1999-07-20 06:42:49 +08:00
|
|
|
ConvolveType type,
|
1999-04-19 05:22:41 +08:00
|
|
|
int num_strokes,
|
|
|
|
double *stroke_array)
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
1999-04-19 05:22:41 +08:00
|
|
|
if (paint_core_init (&non_gui_paint_core, drawable,
|
|
|
|
stroke_array[0], stroke_array[1]))
|
1997-11-25 06:05:25 +08:00
|
|
|
{
|
1999-04-19 05:22:41 +08:00
|
|
|
/* Set the paint core's paint func */
|
1997-11-25 06:05:25 +08:00
|
|
|
non_gui_paint_core.paint_func = convolve_non_gui_paint_func;
|
1999-07-20 06:42:49 +08:00
|
|
|
|
|
|
|
non_gui_type = type;
|
1999-11-13 09:02:27 +08:00
|
|
|
non_gui_rate = rate;
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
non_gui_paint_core.startx = non_gui_paint_core.lastx = stroke_array[0];
|
|
|
|
non_gui_paint_core.starty = non_gui_paint_core.lasty = stroke_array[1];
|
|
|
|
|
1999-07-23 07:11:46 +08:00
|
|
|
convolve_non_gui_paint_func (&non_gui_paint_core, drawable, 0);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
for (i = 1; i < num_strokes; i++)
|
|
|
|
{
|
|
|
|
non_gui_paint_core.curx = stroke_array[i * 2 + 0];
|
|
|
|
non_gui_paint_core.cury = stroke_array[i * 2 + 1];
|
|
|
|
|
1998-01-22 15:02:57 +08:00
|
|
|
paint_core_interpolate (&non_gui_paint_core, drawable);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
|
|
|
non_gui_paint_core.lastx = non_gui_paint_core.curx;
|
|
|
|
non_gui_paint_core.lasty = non_gui_paint_core.cury;
|
|
|
|
}
|
|
|
|
|
1999-04-19 05:22:41 +08:00
|
|
|
/* Finish the painting */
|
1998-01-22 15:02:57 +08:00
|
|
|
paint_core_finish (&non_gui_paint_core, drawable, -1);
|
1997-11-25 06:05:25 +08:00
|
|
|
|
1999-04-19 05:22:41 +08:00
|
|
|
/* Cleanup */
|
1997-11-25 06:05:25 +08:00
|
|
|
paint_core_cleanup ();
|
1999-04-19 05:22:41 +08:00
|
|
|
return TRUE;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|
1999-04-19 05:22:41 +08:00
|
|
|
else
|
|
|
|
return FALSE;
|
1997-11-25 06:05:25 +08:00
|
|
|
}
|