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
*/
# include <stdlib.h>
1998-12-16 19:23:30 +08:00
# include <stdio.h>
1997-11-25 06:05:25 +08:00
# include <math.h>
# include "appenv.h"
1998-07-09 13:31:06 +08:00
# include "gimpbrushlist.h"
1997-11-25 06:05:25 +08:00
# include "drawable.h"
# include "errors.h"
# include "gdisplay.h"
1999-03-17 13:40:16 +08:00
# include "gradient.h"
1997-11-25 06:05:25 +08:00
# include "paint_funcs.h"
# include "paint_core.h"
# include "palette.h"
# include "paintbrush.h"
# include "selection.h"
# include "tools.h"
1998-12-16 08:37:09 +08:00
# include "libgimp/gimpintl.h"
1997-11-25 06:05:25 +08:00
/* forward function declarations */
1999-03-17 13:40:16 +08:00
static void paintbrush_motion ( PaintCore * , GimpDrawable * , double , double , gboolean ) ;
1997-11-25 06:05:25 +08:00
static Argument * paintbrush_invoker ( Argument * ) ;
1998-03-01 09:18:45 +08:00
static Argument * paintbrush_extended_invoker ( Argument * ) ;
1999-03-17 13:40:16 +08:00
static Argument * paintbrush_extended_gradient_invoker ( Argument * ) ;
static double non_gui_fade_out , non_gui_gradient_length , non_gui_incremental ;
1997-11-25 06:05:25 +08:00
/* defines */
# define PAINT_LEFT_THRESHOLD 0.05
typedef struct _PaintOptions PaintOptions ;
struct _PaintOptions
{
double fade_out ;
1999-03-17 13:40:16 +08:00
double gradient_length ;
1998-03-01 09:18:45 +08:00
gboolean incremental ;
1997-11-25 06:05:25 +08:00
} ;
/* local variables */
static PaintOptions * paint_options = NULL ;
1998-03-01 09:18:45 +08:00
static void
paintbrush_toggle_update ( GtkWidget * w ,
gpointer data )
{
gboolean * toggle_val ;
toggle_val = ( gboolean * ) data ;
if ( GTK_TOGGLE_BUTTON ( w ) - > active )
* toggle_val = TRUE ;
else
* toggle_val = FALSE ;
}
1997-11-25 06:05:25 +08:00
static void
paintbrush_scale_update ( GtkAdjustment * adjustment ,
1999-03-19 08:42:27 +08:00
PaintOptions * options )
1997-11-25 06:05:25 +08:00
{
1999-03-19 08:42:27 +08:00
options - > gradient_length = adjustment - > value ;
if ( options - > gradient_length > 0.0 )
options - > incremental = INCREMENTAL ;
1997-11-25 06:05:25 +08:00
}
1999-03-22 12:10:58 +08:00
static void
paintbrush_fade_update ( GtkAdjustment * adjustment ,
PaintOptions * options )
{
options - > fade_out = adjustment - > value ;
}
1997-11-25 06:05:25 +08:00
static PaintOptions *
create_paint_options ( void )
{
PaintOptions * options ;
GtkWidget * vbox ;
GtkWidget * hbox ;
GtkWidget * label ;
GtkWidget * fade_out_scale ;
GtkObject * fade_out_scale_data ;
1999-03-17 13:40:16 +08:00
GtkWidget * gradient_length_scale ;
GtkObject * gradient_length_scale_data ;
1998-03-01 09:18:45 +08:00
GtkWidget * incremental_toggle ;
1997-11-25 06:05:25 +08:00
1999-03-19 08:42:27 +08:00
1997-11-25 06:05:25 +08:00
/* the new options structure */
options = ( PaintOptions * ) g_malloc ( sizeof ( PaintOptions ) ) ;
options - > fade_out = 0.0 ;
1998-03-01 09:18:45 +08:00
options - > incremental = FALSE ;
1999-03-17 13:40:16 +08:00
options - > gradient_length = 0.0 ;
1997-11-25 06:05:25 +08:00
/* the main vbox */
vbox = gtk_vbox_new ( FALSE , 1 ) ;
/* the main label */
1998-12-16 08:37:09 +08:00
label = gtk_label_new ( _ ( " Paintbrush Options " ) ) ;
1997-11-25 06:05:25 +08:00
gtk_box_pack_start ( GTK_BOX ( vbox ) , label , FALSE , FALSE , 0 ) ;
gtk_widget_show ( label ) ;
/* the fade-out scale */
hbox = gtk_hbox_new ( FALSE , 1 ) ;
gtk_box_pack_start ( GTK_BOX ( vbox ) , hbox , FALSE , FALSE , 0 ) ;
1998-12-16 08:37:09 +08:00
label = gtk_label_new ( _ ( " Fade Out " ) ) ;
1997-11-25 06:05:25 +08:00
gtk_box_pack_start ( GTK_BOX ( hbox ) , label , FALSE , FALSE , 0 ) ;
gtk_widget_show ( label ) ;
fade_out_scale_data = gtk_adjustment_new ( 0.0 , 0.0 , 1000.0 , 1.0 , 1.0 , 0.0 ) ;
fade_out_scale = gtk_hscale_new ( GTK_ADJUSTMENT ( fade_out_scale_data ) ) ;
gtk_box_pack_start ( GTK_BOX ( hbox ) , fade_out_scale , TRUE , TRUE , 0 ) ;
gtk_scale_set_value_pos ( GTK_SCALE ( fade_out_scale ) , GTK_POS_TOP ) ;
gtk_range_set_update_policy ( GTK_RANGE ( fade_out_scale ) , GTK_UPDATE_DELAYED ) ;
gtk_signal_connect ( GTK_OBJECT ( fade_out_scale_data ) , " value_changed " ,
1999-03-22 12:10:58 +08:00
( GtkSignalFunc ) paintbrush_fade_update ,
options ) ;
1997-11-25 06:05:25 +08:00
gtk_widget_show ( fade_out_scale ) ;
gtk_widget_show ( hbox ) ;
1999-03-17 13:40:16 +08:00
/* gradient thingamajig */
/* this is a little unintuitive, probabaly put the slider */
/* in a frame later with a checkbutton for "use gradients" */
/* and default the gradient length to 10 or something */
1999-03-19 08:42:27 +08:00
// hbox = gtk_hbox_new (FALSE, 1);
//gtk_box_pack_start (GTK_BOX (vbox), hbox, FALSE, FALSE, 0);
//gtk_widget_show(hbox);
1999-03-17 13:40:16 +08:00
label = gtk_label_new ( _ ( " Gradient Length " ) ) ;
1999-03-19 08:42:27 +08:00
gtk_box_pack_start ( GTK_BOX ( vbox ) , label , FALSE , FALSE , 0 ) ;
1999-03-17 13:40:16 +08:00
gtk_widget_show ( label ) ;
gradient_length_scale_data = gtk_adjustment_new ( 0.0 , 0.0 , 1000.0 , 1.0 , 1.0 , 0.0 ) ;
gradient_length_scale = gtk_hscale_new ( GTK_ADJUSTMENT ( gradient_length_scale_data ) ) ;
1999-03-19 08:42:27 +08:00
gtk_box_pack_start ( GTK_BOX ( vbox ) , gradient_length_scale , TRUE , TRUE , 0 ) ;
1999-03-17 13:40:16 +08:00
gtk_scale_set_value_pos ( GTK_SCALE ( gradient_length_scale ) , GTK_POS_TOP ) ;
gtk_range_set_update_policy ( GTK_RANGE ( gradient_length_scale ) , GTK_UPDATE_DELAYED ) ;
gtk_signal_connect ( GTK_OBJECT ( gradient_length_scale_data ) , " value_changed " ,
( GtkSignalFunc ) paintbrush_scale_update ,
1999-03-19 08:42:27 +08:00
options ) ;
1999-03-17 13:40:16 +08:00
gtk_widget_show ( gradient_length_scale ) ;
gtk_widget_show ( hbox ) ;
1998-03-01 09:18:45 +08:00
/* the incremental toggle */
1998-12-16 08:37:09 +08:00
incremental_toggle = gtk_check_button_new_with_label ( _ ( " Incremental " ) ) ;
1998-03-01 09:18:45 +08:00
gtk_box_pack_start ( GTK_BOX ( vbox ) , incremental_toggle , FALSE , FALSE , 0 ) ;
gtk_signal_connect ( GTK_OBJECT ( incremental_toggle ) , " toggled " ,
( GtkSignalFunc ) paintbrush_toggle_update ,
& options - > incremental ) ;
1999-01-16 01:35:04 +08:00
gtk_toggle_button_set_active ( GTK_TOGGLE_BUTTON ( incremental_toggle ) , options - > incremental ) ;
1998-03-01 09:18:45 +08:00
gtk_widget_show ( incremental_toggle ) ;
1997-11-25 06:05:25 +08:00
/* Register this selection options widget with the main tools options dialog */
tools_register_options ( PAINTBRUSH , vbox ) ;
return options ;
}
1999-03-19 08:42:27 +08:00
1998-12-16 19:23:30 +08:00
# define USE_SPEEDSHOP_CALIPERS 0
# define TIMED_BRUSH 0
# if USE_SPEEDSHOP_CALIPERS
# include <SpeedShop/api.h>
# endif
1997-11-25 06:05:25 +08:00
void *
paintbrush_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 )
{
1998-12-16 19:23:30 +08:00
# if TIMED_BRUSH
static GTimer * timer ;
# endif
1997-11-25 06:05:25 +08:00
switch ( state )
{
case INIT_PAINT :
1998-12-16 19:23:30 +08:00
# if TIMED_BRUSH
timer = g_timer_new ( ) ;
g_timer_start ( timer ) ;
# if USE_SPEEDSHOP_CALIPERS
ssrt_caliper_point ( 0 , " Painting " ) ;
# endif /* USE_SPEEDSHOP_CALIPERS */
# endif /* TIMED_BRUSH */
1997-11-25 06:05:25 +08:00
break ;
case MOTION_PAINT :
1999-03-17 13:40:16 +08:00
paintbrush_motion ( paint_core , drawable ,
paint_options - > fade_out ,
paint_options - > gradient_length ,
paint_options - > incremental ) ;
1997-11-25 06:05:25 +08:00
break ;
case FINISH_PAINT :
1998-12-16 19:23:30 +08:00
# if TIMED_BRUSH
# if USE_SPEEDSHOP_CALIPERS
ssrt_caliper_point ( 0 , " Not Painting Anymore " ) ;
# endif /* USE_SPEEDSHOP_CALIPERS */
g_timer_stop ( timer ) ;
printf ( " painting took %f: \n " , g_timer_elapsed ( timer , NULL ) ) ;
g_timer_destroy ( timer ) ;
# endif /* TIMED_BRUSH */
1997-11-25 06:05:25 +08:00
break ;
default :
break ;
}
return NULL ;
}
Tool *
tools_new_paintbrush ( )
{
Tool * tool ;
PaintCore * private ;
if ( ! paint_options )
paint_options = create_paint_options ( ) ;
tool = paint_core_new ( PAINTBRUSH ) ;
private = ( PaintCore * ) tool - > private ;
private - > paint_func = paintbrush_paint_func ;
return tool ;
}
void
tools_free_paintbrush ( Tool * tool )
{
paint_core_free ( tool ) ;
}
1998-03-19 06:35:31 +08:00
static void
1997-11-25 06:05:25 +08:00
paintbrush_motion ( PaintCore * paint_core ,
1998-01-22 15:02:57 +08:00
GimpDrawable * drawable ,
1998-03-01 09:18:45 +08:00
double fade_out ,
1999-03-17 13:40:16 +08:00
double gradient_length ,
1998-03-01 09:18:45 +08:00
gboolean incremental )
1997-11-25 06:05:25 +08:00
{
GImage * gimage ;
TempBuf * area ;
double x , paint_left ;
1999-03-19 08:42:27 +08:00
double position ;
unsigned char local_blend = OPAQUE_OPACITY ;
1999-03-17 13:40:16 +08:00
unsigned char temp_blend = OPAQUE_OPACITY ;
1997-11-25 06:05:25 +08:00
unsigned char col [ MAX_CHANNELS ] ;
1999-03-17 13:40:16 +08:00
double r , g , b , a ;
1999-03-19 08:42:27 +08:00
int mode ;
1997-11-25 06:05:25 +08:00
1999-03-17 13:40:16 +08:00
position = 0.0 ;
1998-01-22 15:02:57 +08:00
if ( ! ( gimage = drawable_gimage ( drawable ) ) )
1997-11-25 06:05:25 +08:00
return ;
1998-01-22 15:02:57 +08:00
gimage_get_foreground ( gimage , drawable , col ) ;
1997-11-25 06:05:25 +08:00
1999-03-19 08:42:27 +08:00
/* Get a region which can be used to p\\aint to */
1998-01-22 15:02:57 +08:00
if ( ! ( area = paint_core_get_paint_area ( paint_core , drawable ) ) )
1997-11-25 06:05:25 +08:00
return ;
/* factor in the fade out value */
if ( fade_out )
{
/* Model the amount of paint left as a gaussian curve */
x = ( ( double ) paint_core - > distance / fade_out ) ;
paint_left = exp ( - x * x * 0.5 ) ;
1999-03-19 08:42:27 +08:00
local_blend = ( int ) ( 255 * paint_left ) ;
1999-03-17 13:40:16 +08:00
}
1999-03-19 08:42:27 +08:00
if ( local_blend )
1997-11-25 06:05:25 +08:00
{
/* set the alpha channel */
1998-01-25 09:24:46 +08:00
col [ area - > bytes - 1 ] = OPAQUE_OPACITY ;
1999-03-19 08:42:27 +08:00
temp_blend = local_blend ;
1999-03-17 13:40:16 +08:00
1999-03-19 08:42:27 +08:00
/* hard core to mode LOOP_TRIANGLE */
/* need to maek a gui to handle this */
mode = LOOP_TRIANGLE ;
if ( gradient_length )
1999-03-17 13:40:16 +08:00
{
1999-03-19 08:42:27 +08:00
paint_core_get_color_from_gradient ( paint_core , gradient_length , & r , & g , & b , & a , mode ) ;
1999-03-17 13:40:16 +08:00
r = r * 255.0 ;
g = g * 255.0 ;
b = b * 255.0 ;
a = a * 255.0 ;
1999-03-19 08:42:27 +08:00
temp_blend = ( gint ) ( ( a * local_blend ) / 255 ) ;
1999-03-17 13:40:16 +08:00
col [ 0 ] = ( gint ) r ;
col [ 1 ] = ( gint ) g ;
col [ 2 ] = ( gint ) b ;
1999-03-19 08:42:27 +08:00
/* always use incremental mode with gradients */
/* make the gui cool later */
incremental = INCREMENTAL ;
1999-03-17 13:40:16 +08:00
}
1999-03-19 08:42:27 +08:00
/* just leave this because I know as soon as i delete it i'll find a bug */
/* printf("temp_blend: %u grad_len: %f distance: %f \n",temp_blend, gradient_length, distance); */
1999-03-17 13:40:16 +08:00
1997-11-25 06:05:25 +08:00
/* color the pixels */
color_pixels ( temp_buf_data ( area ) , col ,
area - > width * area - > height , area - > bytes ) ;
/* paste the newly painted canvas to the gimage which is being worked on */
1999-03-17 13:40:16 +08:00
paint_core_paste_canvas ( paint_core , drawable , temp_blend ,
1998-07-09 13:31:06 +08:00
( int ) ( gimp_brush_get_opacity ( ) * 255 ) ,
gimp_brush_get_paint_mode ( ) , PRESSURE ,
1998-03-01 09:18:45 +08:00
incremental ? INCREMENTAL : CONSTANT ) ;
1997-11-25 06:05:25 +08:00
}
}
static void *
paintbrush_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 )
1998-03-01 09:18:45 +08:00
{
1999-03-17 13:40:16 +08:00
paintbrush_motion ( paint_core , drawable , non_gui_fade_out , non_gui_gradient_length , non_gui_incremental ) ;
1997-11-25 06:05:25 +08:00
return NULL ;
}
/* The paintbrush procedure definition */
ProcArg paintbrush_args [ ] =
{
{ PDB_DRAWABLE ,
" drawable " ,
" the drawable "
} ,
{ PDB_FLOAT ,
" fade_out " ,
" fade out parameter: fade_out > 0 "
} ,
{ PDB_INT32 ,
" num_strokes " ,
" number of stroke control points (count each coordinate as 2 points) "
} ,
{ PDB_FLOATARRAY ,
" strokes " ,
" array of stroke coordinates: {s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y} "
}
} ;
1998-03-01 09:18:45 +08:00
ProcArg paintbrush_extended_args [ ] =
{
{ PDB_DRAWABLE ,
" drawable " ,
" the drawable "
} ,
{ PDB_FLOAT ,
" fade_out " ,
" fade out parameter: fade_out > 0 "
} ,
{ PDB_INT32 ,
" num_strokes " ,
" number of stroke control points (count each coordinate as 2 points) "
} ,
{ PDB_FLOATARRAY ,
" strokes " ,
" array of stroke coordinates: {s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y} "
} ,
{ PDB_INT32 ,
" method " ,
" CONTINUOUS(0) or INCREMENTAL(1) "
}
} ;
1999-03-17 13:40:16 +08:00
ProcArg paintbrush_extended_gradient_args [ ] =
{
{ PDB_DRAWABLE ,
" drawable " ,
" the drawable "
} ,
{ PDB_FLOAT ,
" fade_out " ,
" fade out parameter: fade_out > 0 "
} ,
{ PDB_FLOAT ,
" gradient_length " ,
" Length of gradient to draw: gradient_lengtth >0 "
} ,
{ PDB_INT32 ,
" num_strokes " ,
" number of stroke control points (count each coordinate as 2 points) "
} ,
{ PDB_FLOATARRAY ,
" strokes " ,
" array of stroke coordinates: {s1.x, s1.y, s2.x, s2.y, ..., sn.x, sn.y} "
} ,
{ PDB_INT32 ,
" method " ,
" CONTINUOUS(0) or INCREMENTAL(1) "
}
} ;
1997-11-25 06:05:25 +08:00
ProcRecord paintbrush_proc =
{
" gimp_paintbrush " ,
" Paint in the current brush with optional fade out parameter " ,
" This tool is the standard paintbrush. It draws linearly interpolated lines through the specified stroke coordinates. It operates on the specified drawable in the foreground color with the active brush. The \" fade_out \" parameter is measured in pixels and allows the brush stroke to linearly fall off. The pressure is set to the maximum at the beginning of the stroke. As the distance of the stroke nears the fade_out value, the pressure will approach zero. " ,
" Spencer Kimball & Peter Mattis " ,
" Spencer Kimball & Peter Mattis " ,
" 1995-1996 " ,
PDB_INTERNAL ,
/* Input arguments */
API-mega-break-it-all patch part one: removed the unnecessary PDB_IMAGE
* airbrush.c, blend.c, brightness_contrast.c, bucket_fill.c
by_color_select.c, channel_ops.c, clone.c, color_balance.c
color_picker.c, convolve.c, curves.c, desaturate.c, edit_cmds.c
equalize.c, eraser.c, flip_tool.c, fuzzy_select.c,
gimage_mask_cmds.c histogram_tool.c, hue_saturation.c, invert.c,
levels.c, pencil.c paintbrush.c, perspective_tool.c, posterize.c,
rotate_tool.c scale_tool.c, shear_tool.c, text_tool.c, threshold.c:
API-mega-break-it-all patch part one: removed the unnecessary
PDB_IMAGE argument from many functions.
Affected functions:
gimp_airbrush gimp_blend gimp_brightness_contrast gimp_bucket_fill
gimp_by_color_select gimp_channel_ops_offset gimp_clone gimp_color_balance
gimp_color_picker gimp_convolve gimp_curves_explicit gimp_curves_spline
gimp_desaturate gimp_edit_clear gimp_edit_copy gimp_edit_cut gimp_edit_fill
gimp_edit_paste gimp_edit_stroke gimp_equalize gimp_eraser
gimp_eraser_extended gimp_flip gimp_fuzzy_select gimp_histogram
gimp_hue_saturation gimp_invert gimp_levels gimp_paintbrush
gimp_paintbrush_extended gimp_pencil gimp_perspective gimp_posterize
gimp_rotate gimp_scale gimp_selection_float gimp_selection_layer_alpha
gimp_selection_load gimp_shear gimp_threshold
1998-11-14 04:40:00 +08:00
4 ,
1997-11-25 06:05:25 +08:00
paintbrush_args ,
/* Output arguments */
0 ,
NULL ,
/* Exec method */
{ { paintbrush_invoker } } ,
} ;
1998-03-01 09:18:45 +08:00
ProcRecord paintbrush_extended_proc =
{
1998-03-01 14:06:19 +08:00
" gimp_paintbrush_extended " ,
1998-03-01 09:18:45 +08:00
" Paint in the current brush with optional fade out parameter " ,
" This tool is the standard paintbrush. It draws linearly interpolated lines through the specified stroke coordinates. It operates on the specified drawable in the foreground color with the active brush. The \" fade_out \" parameter is measured in pixels and allows the brush stroke to linearly fall off. The pressure is set to the maximum at the beginning of the stroke. As the distance of the stroke nears the fade_out value, the pressure will approach zero. " ,
" Spencer Kimball & Peter Mattis " ,
" Spencer Kimball & Peter Mattis " ,
" 1995-1996 " ,
PDB_INTERNAL ,
/* Input arguments */
API-mega-break-it-all patch part one: removed the unnecessary PDB_IMAGE
* airbrush.c, blend.c, brightness_contrast.c, bucket_fill.c
by_color_select.c, channel_ops.c, clone.c, color_balance.c
color_picker.c, convolve.c, curves.c, desaturate.c, edit_cmds.c
equalize.c, eraser.c, flip_tool.c, fuzzy_select.c,
gimage_mask_cmds.c histogram_tool.c, hue_saturation.c, invert.c,
levels.c, pencil.c paintbrush.c, perspective_tool.c, posterize.c,
rotate_tool.c scale_tool.c, shear_tool.c, text_tool.c, threshold.c:
API-mega-break-it-all patch part one: removed the unnecessary
PDB_IMAGE argument from many functions.
Affected functions:
gimp_airbrush gimp_blend gimp_brightness_contrast gimp_bucket_fill
gimp_by_color_select gimp_channel_ops_offset gimp_clone gimp_color_balance
gimp_color_picker gimp_convolve gimp_curves_explicit gimp_curves_spline
gimp_desaturate gimp_edit_clear gimp_edit_copy gimp_edit_cut gimp_edit_fill
gimp_edit_paste gimp_edit_stroke gimp_equalize gimp_eraser
gimp_eraser_extended gimp_flip gimp_fuzzy_select gimp_histogram
gimp_hue_saturation gimp_invert gimp_levels gimp_paintbrush
gimp_paintbrush_extended gimp_pencil gimp_perspective gimp_posterize
gimp_rotate gimp_scale gimp_selection_float gimp_selection_layer_alpha
gimp_selection_load gimp_shear gimp_threshold
1998-11-14 04:40:00 +08:00
5 ,
1998-03-01 09:18:45 +08:00
paintbrush_extended_args ,
/* Output arguments */
0 ,
NULL ,
/* Exec method */
{ { paintbrush_extended_invoker } } ,
} ;
1999-03-17 13:40:16 +08:00
ProcRecord paintbrush_extended_gradient_proc =
{
" gimp_paintbrush_extended_gradient " ,
" Paint in the current brush with optional fade out parameter and a pull colors from a gradient " ,
" This tool is the gradient paintbrush. It draws linearly interpolated lines through the specified stroke coordinates. It operates on the specified drawable with colors drawn from the current active gradient with the active brush. The \" fade_out \" parameter is measured in pixels and allows the brush stroke to linearly fall off. The pressure is set to the maximum at the beginning of the stroke. As the distance of the stroke nears the fade_out value, the pressure will approach zero. The gradient_length is the distance to spread the gradient over. It is measured in pixels. " ,
" Spencer Kimball & Peter Mattis " ,
" Spencer Kimball & Peter Mattis " ,
" 1995-1996 " ,
PDB_INTERNAL ,
/* Input arguments */
6 ,
paintbrush_extended_gradient_args ,
/* Output arguments */
0 ,
NULL ,
/* Exec method */
{ { paintbrush_extended_gradient_invoker } } ,
} ;
1997-11-25 06:05:25 +08:00
static Argument *
paintbrush_invoker ( Argument * args )
{
int success = TRUE ;
GImage * gimage ;
1998-01-22 15:02:57 +08:00
GimpDrawable * drawable ;
1997-11-25 06:05:25 +08:00
int num_strokes ;
double * stroke_array ;
int int_value ;
double fp_value ;
int i ;
1998-01-22 15:02:57 +08:00
drawable = NULL ;
1997-11-25 06:05:25 +08:00
num_strokes = 0 ;
/* the drawable */
if ( success )
{
API-mega-break-it-all patch part one: removed the unnecessary PDB_IMAGE
* airbrush.c, blend.c, brightness_contrast.c, bucket_fill.c
by_color_select.c, channel_ops.c, clone.c, color_balance.c
color_picker.c, convolve.c, curves.c, desaturate.c, edit_cmds.c
equalize.c, eraser.c, flip_tool.c, fuzzy_select.c,
gimage_mask_cmds.c histogram_tool.c, hue_saturation.c, invert.c,
levels.c, pencil.c paintbrush.c, perspective_tool.c, posterize.c,
rotate_tool.c scale_tool.c, shear_tool.c, text_tool.c, threshold.c:
API-mega-break-it-all patch part one: removed the unnecessary
PDB_IMAGE argument from many functions.
Affected functions:
gimp_airbrush gimp_blend gimp_brightness_contrast gimp_bucket_fill
gimp_by_color_select gimp_channel_ops_offset gimp_clone gimp_color_balance
gimp_color_picker gimp_convolve gimp_curves_explicit gimp_curves_spline
gimp_desaturate gimp_edit_clear gimp_edit_copy gimp_edit_cut gimp_edit_fill
gimp_edit_paste gimp_edit_stroke gimp_equalize gimp_eraser
gimp_eraser_extended gimp_flip gimp_fuzzy_select gimp_histogram
gimp_hue_saturation gimp_invert gimp_levels gimp_paintbrush
gimp_paintbrush_extended gimp_pencil gimp_perspective gimp_posterize
gimp_rotate gimp_scale gimp_selection_float gimp_selection_layer_alpha
gimp_selection_load gimp_shear gimp_threshold
1998-11-14 04:40:00 +08:00
int_value = args [ 0 ] . value . pdb_int ;
1998-01-22 15:02:57 +08:00
drawable = drawable_get_ID ( int_value ) ;
API-mega-break-it-all patch part one: removed the unnecessary PDB_IMAGE
* airbrush.c, blend.c, brightness_contrast.c, bucket_fill.c
by_color_select.c, channel_ops.c, clone.c, color_balance.c
color_picker.c, convolve.c, curves.c, desaturate.c, edit_cmds.c
equalize.c, eraser.c, flip_tool.c, fuzzy_select.c,
gimage_mask_cmds.c histogram_tool.c, hue_saturation.c, invert.c,
levels.c, pencil.c paintbrush.c, perspective_tool.c, posterize.c,
rotate_tool.c scale_tool.c, shear_tool.c, text_tool.c, threshold.c:
API-mega-break-it-all patch part one: removed the unnecessary
PDB_IMAGE argument from many functions.
Affected functions:
gimp_airbrush gimp_blend gimp_brightness_contrast gimp_bucket_fill
gimp_by_color_select gimp_channel_ops_offset gimp_clone gimp_color_balance
gimp_color_picker gimp_convolve gimp_curves_explicit gimp_curves_spline
gimp_desaturate gimp_edit_clear gimp_edit_copy gimp_edit_cut gimp_edit_fill
gimp_edit_paste gimp_edit_stroke gimp_equalize gimp_eraser
gimp_eraser_extended gimp_flip gimp_fuzzy_select gimp_histogram
gimp_hue_saturation gimp_invert gimp_levels gimp_paintbrush
gimp_paintbrush_extended gimp_pencil gimp_perspective gimp_posterize
gimp_rotate gimp_scale gimp_selection_float gimp_selection_layer_alpha
gimp_selection_load gimp_shear gimp_threshold
1998-11-14 04:40:00 +08:00
if ( drawable = = NULL )
success = FALSE ;
else
gimage = drawable_gimage ( drawable ) ;
1997-11-25 06:05:25 +08:00
}
/* fade out */
if ( success )
{
API-mega-break-it-all patch part one: removed the unnecessary PDB_IMAGE
* airbrush.c, blend.c, brightness_contrast.c, bucket_fill.c
by_color_select.c, channel_ops.c, clone.c, color_balance.c
color_picker.c, convolve.c, curves.c, desaturate.c, edit_cmds.c
equalize.c, eraser.c, flip_tool.c, fuzzy_select.c,
gimage_mask_cmds.c histogram_tool.c, hue_saturation.c, invert.c,
levels.c, pencil.c paintbrush.c, perspective_tool.c, posterize.c,
rotate_tool.c scale_tool.c, shear_tool.c, text_tool.c, threshold.c:
API-mega-break-it-all patch part one: removed the unnecessary
PDB_IMAGE argument from many functions.
Affected functions:
gimp_airbrush gimp_blend gimp_brightness_contrast gimp_bucket_fill
gimp_by_color_select gimp_channel_ops_offset gimp_clone gimp_color_balance
gimp_color_picker gimp_convolve gimp_curves_explicit gimp_curves_spline
gimp_desaturate gimp_edit_clear gimp_edit_copy gimp_edit_cut gimp_edit_fill
gimp_edit_paste gimp_edit_stroke gimp_equalize gimp_eraser
gimp_eraser_extended gimp_flip gimp_fuzzy_select gimp_histogram
gimp_hue_saturation gimp_invert gimp_levels gimp_paintbrush
gimp_paintbrush_extended gimp_pencil gimp_perspective gimp_posterize
gimp_rotate gimp_scale gimp_selection_float gimp_selection_layer_alpha
gimp_selection_load gimp_shear gimp_threshold
1998-11-14 04:40:00 +08:00
fp_value = args [ 1 ] . value . pdb_float ;
1997-11-25 06:05:25 +08:00
if ( fp_value > = 0.0 )
non_gui_fade_out = fp_value ;
else
success = FALSE ;
}
1999-03-17 13:40:16 +08:00
/* FIXME FIXME FIXME */
/* but we need to change the pdb call to gimp_paintbrush...ouch!! */
/* should this be enough to do this without breaking PDB? */
if ( success )
{
non_gui_gradient_length = 0.0 ;
}
1997-11-25 06:05:25 +08:00
/* num strokes */
if ( success )
{
API-mega-break-it-all patch part one: removed the unnecessary PDB_IMAGE
* airbrush.c, blend.c, brightness_contrast.c, bucket_fill.c
by_color_select.c, channel_ops.c, clone.c, color_balance.c
color_picker.c, convolve.c, curves.c, desaturate.c, edit_cmds.c
equalize.c, eraser.c, flip_tool.c, fuzzy_select.c,
gimage_mask_cmds.c histogram_tool.c, hue_saturation.c, invert.c,
levels.c, pencil.c paintbrush.c, perspective_tool.c, posterize.c,
rotate_tool.c scale_tool.c, shear_tool.c, text_tool.c, threshold.c:
API-mega-break-it-all patch part one: removed the unnecessary
PDB_IMAGE argument from many functions.
Affected functions:
gimp_airbrush gimp_blend gimp_brightness_contrast gimp_bucket_fill
gimp_by_color_select gimp_channel_ops_offset gimp_clone gimp_color_balance
gimp_color_picker gimp_convolve gimp_curves_explicit gimp_curves_spline
gimp_desaturate gimp_edit_clear gimp_edit_copy gimp_edit_cut gimp_edit_fill
gimp_edit_paste gimp_edit_stroke gimp_equalize gimp_eraser
gimp_eraser_extended gimp_flip gimp_fuzzy_select gimp_histogram
gimp_hue_saturation gimp_invert gimp_levels gimp_paintbrush
gimp_paintbrush_extended gimp_pencil gimp_perspective gimp_posterize
gimp_rotate gimp_scale gimp_selection_float gimp_selection_layer_alpha
gimp_selection_load gimp_shear gimp_threshold
1998-11-14 04:40:00 +08:00
int_value = args [ 2 ] . value . pdb_int ;
1997-11-25 06:05:25 +08:00
if ( int_value > 0 )
num_strokes = int_value / 2 ;
else
success = FALSE ;
}
/* point array */
if ( success )
API-mega-break-it-all patch part one: removed the unnecessary PDB_IMAGE
* airbrush.c, blend.c, brightness_contrast.c, bucket_fill.c
by_color_select.c, channel_ops.c, clone.c, color_balance.c
color_picker.c, convolve.c, curves.c, desaturate.c, edit_cmds.c
equalize.c, eraser.c, flip_tool.c, fuzzy_select.c,
gimage_mask_cmds.c histogram_tool.c, hue_saturation.c, invert.c,
levels.c, pencil.c paintbrush.c, perspective_tool.c, posterize.c,
rotate_tool.c scale_tool.c, shear_tool.c, text_tool.c, threshold.c:
API-mega-break-it-all patch part one: removed the unnecessary
PDB_IMAGE argument from many functions.
Affected functions:
gimp_airbrush gimp_blend gimp_brightness_contrast gimp_bucket_fill
gimp_by_color_select gimp_channel_ops_offset gimp_clone gimp_color_balance
gimp_color_picker gimp_convolve gimp_curves_explicit gimp_curves_spline
gimp_desaturate gimp_edit_clear gimp_edit_copy gimp_edit_cut gimp_edit_fill
gimp_edit_paste gimp_edit_stroke gimp_equalize gimp_eraser
gimp_eraser_extended gimp_flip gimp_fuzzy_select gimp_histogram
gimp_hue_saturation gimp_invert gimp_levels gimp_paintbrush
gimp_paintbrush_extended gimp_pencil gimp_perspective gimp_posterize
gimp_rotate gimp_scale gimp_selection_float gimp_selection_layer_alpha
gimp_selection_load gimp_shear gimp_threshold
1998-11-14 04:40:00 +08:00
stroke_array = ( double * ) args [ 3 ] . value . pdb_pointer ;
1997-11-25 06:05:25 +08:00
if ( success )
/* init the paint core */
1998-01-22 15:02:57 +08:00
success = paint_core_init ( & non_gui_paint_core , drawable ,
1997-11-25 06:05:25 +08:00
stroke_array [ 0 ] , stroke_array [ 1 ] ) ;
if ( success )
{
1998-03-01 09:18:45 +08:00
non_gui_incremental = 0 ;
/* set the paint core's paint func */
non_gui_paint_core . paint_func = paintbrush_non_gui_paint_func ;
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 ] ;
if ( num_strokes = = 1 )
paintbrush_non_gui_paint_func ( & non_gui_paint_core , drawable , 0 ) ;
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 ] ;
paint_core_interpolate ( & non_gui_paint_core , drawable ) ;
non_gui_paint_core . lastx = non_gui_paint_core . curx ;
non_gui_paint_core . lasty = non_gui_paint_core . cury ;
}
/* finish the painting */
paint_core_finish ( & non_gui_paint_core , drawable , - 1 ) ;
/* cleanup */
paint_core_cleanup ( ) ;
}
return procedural_db_return_args ( & paintbrush_proc , success ) ;
}
1999-03-17 13:40:16 +08:00
1998-03-01 09:18:45 +08:00
static Argument *
paintbrush_extended_invoker ( Argument * args )
{
int success = TRUE ;
GImage * gimage ;
GimpDrawable * drawable ;
int num_strokes ;
double * stroke_array ;
int int_value ;
double fp_value ;
int i ;
drawable = NULL ;
num_strokes = 0 ;
/* the drawable */
if ( success )
{
API-mega-break-it-all patch part one: removed the unnecessary PDB_IMAGE
* airbrush.c, blend.c, brightness_contrast.c, bucket_fill.c
by_color_select.c, channel_ops.c, clone.c, color_balance.c
color_picker.c, convolve.c, curves.c, desaturate.c, edit_cmds.c
equalize.c, eraser.c, flip_tool.c, fuzzy_select.c,
gimage_mask_cmds.c histogram_tool.c, hue_saturation.c, invert.c,
levels.c, pencil.c paintbrush.c, perspective_tool.c, posterize.c,
rotate_tool.c scale_tool.c, shear_tool.c, text_tool.c, threshold.c:
API-mega-break-it-all patch part one: removed the unnecessary
PDB_IMAGE argument from many functions.
Affected functions:
gimp_airbrush gimp_blend gimp_brightness_contrast gimp_bucket_fill
gimp_by_color_select gimp_channel_ops_offset gimp_clone gimp_color_balance
gimp_color_picker gimp_convolve gimp_curves_explicit gimp_curves_spline
gimp_desaturate gimp_edit_clear gimp_edit_copy gimp_edit_cut gimp_edit_fill
gimp_edit_paste gimp_edit_stroke gimp_equalize gimp_eraser
gimp_eraser_extended gimp_flip gimp_fuzzy_select gimp_histogram
gimp_hue_saturation gimp_invert gimp_levels gimp_paintbrush
gimp_paintbrush_extended gimp_pencil gimp_perspective gimp_posterize
gimp_rotate gimp_scale gimp_selection_float gimp_selection_layer_alpha
gimp_selection_load gimp_shear gimp_threshold
1998-11-14 04:40:00 +08:00
int_value = args [ 0 ] . value . pdb_int ;
1998-03-01 09:18:45 +08:00
drawable = drawable_get_ID ( int_value ) ;
API-mega-break-it-all patch part one: removed the unnecessary PDB_IMAGE
* airbrush.c, blend.c, brightness_contrast.c, bucket_fill.c
by_color_select.c, channel_ops.c, clone.c, color_balance.c
color_picker.c, convolve.c, curves.c, desaturate.c, edit_cmds.c
equalize.c, eraser.c, flip_tool.c, fuzzy_select.c,
gimage_mask_cmds.c histogram_tool.c, hue_saturation.c, invert.c,
levels.c, pencil.c paintbrush.c, perspective_tool.c, posterize.c,
rotate_tool.c scale_tool.c, shear_tool.c, text_tool.c, threshold.c:
API-mega-break-it-all patch part one: removed the unnecessary
PDB_IMAGE argument from many functions.
Affected functions:
gimp_airbrush gimp_blend gimp_brightness_contrast gimp_bucket_fill
gimp_by_color_select gimp_channel_ops_offset gimp_clone gimp_color_balance
gimp_color_picker gimp_convolve gimp_curves_explicit gimp_curves_spline
gimp_desaturate gimp_edit_clear gimp_edit_copy gimp_edit_cut gimp_edit_fill
gimp_edit_paste gimp_edit_stroke gimp_equalize gimp_eraser
gimp_eraser_extended gimp_flip gimp_fuzzy_select gimp_histogram
gimp_hue_saturation gimp_invert gimp_levels gimp_paintbrush
gimp_paintbrush_extended gimp_pencil gimp_perspective gimp_posterize
gimp_rotate gimp_scale gimp_selection_float gimp_selection_layer_alpha
gimp_selection_load gimp_shear gimp_threshold
1998-11-14 04:40:00 +08:00
if ( drawable = = NULL )
success = FALSE ;
else
gimage = drawable_gimage ( drawable ) ;
1998-03-01 09:18:45 +08:00
}
/* fade out */
if ( success )
{
API-mega-break-it-all patch part one: removed the unnecessary PDB_IMAGE
* airbrush.c, blend.c, brightness_contrast.c, bucket_fill.c
by_color_select.c, channel_ops.c, clone.c, color_balance.c
color_picker.c, convolve.c, curves.c, desaturate.c, edit_cmds.c
equalize.c, eraser.c, flip_tool.c, fuzzy_select.c,
gimage_mask_cmds.c histogram_tool.c, hue_saturation.c, invert.c,
levels.c, pencil.c paintbrush.c, perspective_tool.c, posterize.c,
rotate_tool.c scale_tool.c, shear_tool.c, text_tool.c, threshold.c:
API-mega-break-it-all patch part one: removed the unnecessary
PDB_IMAGE argument from many functions.
Affected functions:
gimp_airbrush gimp_blend gimp_brightness_contrast gimp_bucket_fill
gimp_by_color_select gimp_channel_ops_offset gimp_clone gimp_color_balance
gimp_color_picker gimp_convolve gimp_curves_explicit gimp_curves_spline
gimp_desaturate gimp_edit_clear gimp_edit_copy gimp_edit_cut gimp_edit_fill
gimp_edit_paste gimp_edit_stroke gimp_equalize gimp_eraser
gimp_eraser_extended gimp_flip gimp_fuzzy_select gimp_histogram
gimp_hue_saturation gimp_invert gimp_levels gimp_paintbrush
gimp_paintbrush_extended gimp_pencil gimp_perspective gimp_posterize
gimp_rotate gimp_scale gimp_selection_float gimp_selection_layer_alpha
gimp_selection_load gimp_shear gimp_threshold
1998-11-14 04:40:00 +08:00
fp_value = args [ 1 ] . value . pdb_float ;
1998-03-01 09:18:45 +08:00
if ( fp_value > = 0.0 )
non_gui_fade_out = fp_value ;
else
success = FALSE ;
}
1999-03-17 13:40:16 +08:00
/* FIXME FIXME FIXME */
/* but we need to change the pdb call to gimp_paintbrush...ouch!! */
/* should this be enough to do this without breaking PDB? */
if ( success )
{
non_gui_gradient_length = 0.0 ;
}
1998-03-01 09:18:45 +08:00
/* num strokes */
if ( success )
{
API-mega-break-it-all patch part one: removed the unnecessary PDB_IMAGE
* airbrush.c, blend.c, brightness_contrast.c, bucket_fill.c
by_color_select.c, channel_ops.c, clone.c, color_balance.c
color_picker.c, convolve.c, curves.c, desaturate.c, edit_cmds.c
equalize.c, eraser.c, flip_tool.c, fuzzy_select.c,
gimage_mask_cmds.c histogram_tool.c, hue_saturation.c, invert.c,
levels.c, pencil.c paintbrush.c, perspective_tool.c, posterize.c,
rotate_tool.c scale_tool.c, shear_tool.c, text_tool.c, threshold.c:
API-mega-break-it-all patch part one: removed the unnecessary
PDB_IMAGE argument from many functions.
Affected functions:
gimp_airbrush gimp_blend gimp_brightness_contrast gimp_bucket_fill
gimp_by_color_select gimp_channel_ops_offset gimp_clone gimp_color_balance
gimp_color_picker gimp_convolve gimp_curves_explicit gimp_curves_spline
gimp_desaturate gimp_edit_clear gimp_edit_copy gimp_edit_cut gimp_edit_fill
gimp_edit_paste gimp_edit_stroke gimp_equalize gimp_eraser
gimp_eraser_extended gimp_flip gimp_fuzzy_select gimp_histogram
gimp_hue_saturation gimp_invert gimp_levels gimp_paintbrush
gimp_paintbrush_extended gimp_pencil gimp_perspective gimp_posterize
gimp_rotate gimp_scale gimp_selection_float gimp_selection_layer_alpha
gimp_selection_load gimp_shear gimp_threshold
1998-11-14 04:40:00 +08:00
int_value = args [ 2 ] . value . pdb_int ;
1998-03-01 09:18:45 +08:00
if ( int_value > 0 )
num_strokes = int_value / 2 ;
else
success = FALSE ;
}
/* point array */
if ( success )
API-mega-break-it-all patch part one: removed the unnecessary PDB_IMAGE
* airbrush.c, blend.c, brightness_contrast.c, bucket_fill.c
by_color_select.c, channel_ops.c, clone.c, color_balance.c
color_picker.c, convolve.c, curves.c, desaturate.c, edit_cmds.c
equalize.c, eraser.c, flip_tool.c, fuzzy_select.c,
gimage_mask_cmds.c histogram_tool.c, hue_saturation.c, invert.c,
levels.c, pencil.c paintbrush.c, perspective_tool.c, posterize.c,
rotate_tool.c scale_tool.c, shear_tool.c, text_tool.c, threshold.c:
API-mega-break-it-all patch part one: removed the unnecessary
PDB_IMAGE argument from many functions.
Affected functions:
gimp_airbrush gimp_blend gimp_brightness_contrast gimp_bucket_fill
gimp_by_color_select gimp_channel_ops_offset gimp_clone gimp_color_balance
gimp_color_picker gimp_convolve gimp_curves_explicit gimp_curves_spline
gimp_desaturate gimp_edit_clear gimp_edit_copy gimp_edit_cut gimp_edit_fill
gimp_edit_paste gimp_edit_stroke gimp_equalize gimp_eraser
gimp_eraser_extended gimp_flip gimp_fuzzy_select gimp_histogram
gimp_hue_saturation gimp_invert gimp_levels gimp_paintbrush
gimp_paintbrush_extended gimp_pencil gimp_perspective gimp_posterize
gimp_rotate gimp_scale gimp_selection_float gimp_selection_layer_alpha
gimp_selection_load gimp_shear gimp_threshold
1998-11-14 04:40:00 +08:00
stroke_array = ( double * ) args [ 3 ] . value . pdb_pointer ;
1998-03-01 09:18:45 +08:00
if ( success )
/* init the paint core */
success = paint_core_init ( & non_gui_paint_core , drawable ,
stroke_array [ 0 ] , stroke_array [ 1 ] ) ;
if ( success )
{
API-mega-break-it-all patch part one: removed the unnecessary PDB_IMAGE
* airbrush.c, blend.c, brightness_contrast.c, bucket_fill.c
by_color_select.c, channel_ops.c, clone.c, color_balance.c
color_picker.c, convolve.c, curves.c, desaturate.c, edit_cmds.c
equalize.c, eraser.c, flip_tool.c, fuzzy_select.c,
gimage_mask_cmds.c histogram_tool.c, hue_saturation.c, invert.c,
levels.c, pencil.c paintbrush.c, perspective_tool.c, posterize.c,
rotate_tool.c scale_tool.c, shear_tool.c, text_tool.c, threshold.c:
API-mega-break-it-all patch part one: removed the unnecessary
PDB_IMAGE argument from many functions.
Affected functions:
gimp_airbrush gimp_blend gimp_brightness_contrast gimp_bucket_fill
gimp_by_color_select gimp_channel_ops_offset gimp_clone gimp_color_balance
gimp_color_picker gimp_convolve gimp_curves_explicit gimp_curves_spline
gimp_desaturate gimp_edit_clear gimp_edit_copy gimp_edit_cut gimp_edit_fill
gimp_edit_paste gimp_edit_stroke gimp_equalize gimp_eraser
gimp_eraser_extended gimp_flip gimp_fuzzy_select gimp_histogram
gimp_hue_saturation gimp_invert gimp_levels gimp_paintbrush
gimp_paintbrush_extended gimp_pencil gimp_perspective gimp_posterize
gimp_rotate gimp_scale gimp_selection_float gimp_selection_layer_alpha
gimp_selection_load gimp_shear gimp_threshold
1998-11-14 04:40:00 +08:00
non_gui_incremental = args [ 4 ] . value . pdb_int ;
1997-11-25 06:05:25 +08:00
/* set the paint core's paint func */
non_gui_paint_core . paint_func = paintbrush_non_gui_paint_func ;
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 ] ;
if ( num_strokes = = 1 )
1998-01-22 15:02:57 +08:00
paintbrush_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 ;
}
/* 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
/* cleanup */
paint_core_cleanup ( ) ;
}
1999-03-17 13:40:16 +08:00
return procedural_db_return_args ( & paintbrush_extended_proc , success ) ;
}
static Argument *
paintbrush_extended_gradient_invoker ( Argument * args )
{
int success = TRUE ;
GImage * gimage ;
GimpDrawable * drawable ;
int num_strokes ;
double * stroke_array ;
int int_value ;
double fp_value ;
int i ;
drawable = NULL ;
num_strokes = 0 ;
/* the drawable */
if ( success )
{
int_value = args [ 0 ] . value . pdb_int ;
drawable = drawable_get_ID ( int_value ) ;
if ( drawable = = NULL )
success = FALSE ;
else
gimage = drawable_gimage ( drawable ) ;
}
/* fade out */
if ( success )
{
fp_value = args [ 1 ] . value . pdb_float ;
if ( fp_value > = 0.0 )
non_gui_fade_out = fp_value ;
else
success = FALSE ;
}
/* gradient length */
if ( success )
{
fp_value = args [ 2 ] . value . pdb_float ;
if ( fp_value > = 0.0 )
non_gui_gradient_length = fp_value ;
else
success = FALSE ;
}
/* num strokes */
if ( success )
{
int_value = args [ 3 ] . value . pdb_int ;
if ( int_value > 0 )
num_strokes = int_value / 2 ;
else
success = FALSE ;
}
/* point array */
if ( success )
stroke_array = ( double * ) args [ 4 ] . value . pdb_pointer ;
if ( success )
/* init the paint core */
success = paint_core_init ( & non_gui_paint_core , drawable ,
stroke_array [ 0 ] , stroke_array [ 1 ] ) ;
if ( success )
{
non_gui_incremental = args [ 5 ] . value . pdb_int ;
/* set the paint core's paint func */
non_gui_paint_core . paint_func = paintbrush_non_gui_paint_func ;
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 ] ;
if ( num_strokes = = 1 )
paintbrush_non_gui_paint_func ( & non_gui_paint_core , drawable , 0 ) ;
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 ] ;
paint_core_interpolate ( & non_gui_paint_core , drawable ) ;
non_gui_paint_core . lastx = non_gui_paint_core . curx ;
non_gui_paint_core . lasty = non_gui_paint_core . cury ;
}
/* finish the painting */
paint_core_finish ( & non_gui_paint_core , drawable , - 1 ) ;
/* cleanup */
paint_core_cleanup ( ) ;
}
return procedural_db_return_args ( & paintbrush_extended_gradient_proc , success ) ;
1997-11-25 06:05:25 +08:00
}