1999-07-02 00:52:50 +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
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
2000-12-29 23:22:01 +08:00
|
|
|
|
1999-07-27 08:14:14 +08:00
|
|
|
#include "config.h"
|
app/appenv.h New file. Includes <math.h>. Move G_PI, RINT(), ROUND() etc
1999-09-01 Tor Lillqvist <tml@iki.fi>
* app/appenv.h
* libgimp/gimpmath.h: New file. Includes <math.h>. Move G_PI,
RINT(), ROUND() etc from app/appenv.h here, so plug-ins can
use them, too. Remove some commented-out old stuff in appenv.h.
* libgimp/gimp.h: Include gimpmath.h.
* libgimp/gimp.c (gimp_main): Win32: Don't install signal
handlers, we can't do anything useful in the handler ourselves
anyway (it would be nice to print out a backtrace, but that seems
pretty hard to do, even if not impossible). Let Windows inform the
user about the crash. If the plug-in was compiled with MSVC, and
the user also has it, she is offered a chance to start the
debugger automatically anyway.
* app/*several*.c: Include gimpmath.h for G_PI etc. Don't include
<math.h>, as gimpmath.h includes it.
* plug-ins/*/*many*.c: Include config.h. Don't include <math.h>.
Remove all the duplicated definitions of G_PI and rint(). Use
RINT() instead of rint().
* app/app_procs.[ch]: app_exit() takes a gboolean.
* app/batch.c
* app/commands.c
* app/interface.c: Call app_exit() with FALSE or TRUE.
* app/main.c (on_error): Call gimp_fatal_error. (main): Don't
install any signal handler on Win32 here, either.
* app/errors.c (gimp_fatal_error, gimp_terminate): Win32: Format
the message and call MessageBox with it. g_on_error_query doesn't
do anything useful on Win32, and printf'ing a message to stdout or
stderr doesn't do anything, either, in a windowing application.
1999-09-02 04:30:56 +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>
|
app/appenv.h New file. Includes <math.h>. Move G_PI, RINT(), ROUND() etc
1999-09-01 Tor Lillqvist <tml@iki.fi>
* app/appenv.h
* libgimp/gimpmath.h: New file. Includes <math.h>. Move G_PI,
RINT(), ROUND() etc from app/appenv.h here, so plug-ins can
use them, too. Remove some commented-out old stuff in appenv.h.
* libgimp/gimp.h: Include gimpmath.h.
* libgimp/gimp.c (gimp_main): Win32: Don't install signal
handlers, we can't do anything useful in the handler ourselves
anyway (it would be nice to print out a backtrace, but that seems
pretty hard to do, even if not impossible). Let Windows inform the
user about the crash. If the plug-in was compiled with MSVC, and
the user also has it, she is offered a chance to start the
debugger automatically anyway.
* app/*several*.c: Include gimpmath.h for G_PI etc. Don't include
<math.h>, as gimpmath.h includes it.
* plug-ins/*/*many*.c: Include config.h. Don't include <math.h>.
Remove all the duplicated definitions of G_PI and rint(). Use
RINT() instead of rint().
* app/app_procs.[ch]: app_exit() takes a gboolean.
* app/batch.c
* app/commands.c
* app/interface.c: Call app_exit() with FALSE or TRUE.
* app/main.c (on_error): Call gimp_fatal_error. (main): Don't
install any signal handler on Win32 here, either.
* app/errors.c (gimp_fatal_error, gimp_terminate): Win32: Format
the message and call MessageBox with it. g_on_error_query doesn't
do anything useful on Win32, and printf'ing a message to stdout or
stderr doesn't do anything, either, in a windowing application.
1999-09-02 04:30:56 +08:00
|
|
|
|
2001-01-24 07:56:18 +08:00
|
|
|
#include "libgimpmath/gimpmath.h"
|
2001-01-25 06:36:18 +08:00
|
|
|
#include "libgimpwidgets/gimpwidgets.h"
|
2001-01-24 07:56:18 +08:00
|
|
|
|
2000-12-17 05:37:03 +08:00
|
|
|
#include "apptypes.h"
|
|
|
|
|
1999-07-02 00:52:50 +08:00
|
|
|
#include "drawable.h"
|
|
|
|
#include "gdisplay.h"
|
2001-01-25 06:36:18 +08:00
|
|
|
#include "gimage.h"
|
1999-07-02 00:52:50 +08:00
|
|
|
#include "gimplut.h"
|
2000-12-29 23:22:01 +08:00
|
|
|
#include "gimpcontext.h"
|
1999-07-02 00:52:50 +08:00
|
|
|
#include "paint_funcs.h"
|
2000-12-29 23:22:01 +08:00
|
|
|
#include "pixel_region.h"
|
1999-07-02 00:52:50 +08:00
|
|
|
#include "selection.h"
|
2000-12-29 23:22:01 +08:00
|
|
|
#include "temp_buf.h"
|
2001-01-25 06:36:18 +08:00
|
|
|
|
2001-03-24 10:27:16 +08:00
|
|
|
#include "gimpdodgeburntool.h"
|
|
|
|
#include "gimppainttool.h"
|
2001-01-25 06:36:18 +08:00
|
|
|
#include "paint_options.h"
|
2001-03-24 10:27:16 +08:00
|
|
|
#include "gimptool.h"
|
|
|
|
#include "tool_manager.h"
|
1999-07-02 00:52:50 +08:00
|
|
|
|
2001-03-24 10:27:16 +08:00
|
|
|
#include "pixmaps2.h"
|
2000-04-28 01:27:28 +08:00
|
|
|
|
2001-03-24 10:27:16 +08:00
|
|
|
#include "libgimp/gimpintl.h"
|
2000-04-28 01:27:28 +08:00
|
|
|
|
2000-12-31 12:07:42 +08:00
|
|
|
/* Default values */
|
|
|
|
|
|
|
|
#define DODGEBURN_DEFAULT_TYPE DODGE
|
|
|
|
#define DODGEBURN_DEFAULT_EXPOSURE 50.0
|
|
|
|
#define DODGEBURN_DEFAULT_MODE DODGEBURN_HIGHLIGHTS
|
|
|
|
|
1999-07-02 00:52:50 +08:00
|
|
|
/* the dodgeburn structures */
|
|
|
|
|
|
|
|
typedef struct _DodgeBurnOptions DodgeBurnOptions;
|
2000-01-14 20:41:00 +08:00
|
|
|
|
1999-07-02 00:52:50 +08:00
|
|
|
struct _DodgeBurnOptions
|
|
|
|
{
|
1999-09-09 09:47:54 +08:00
|
|
|
PaintOptions paint_options;
|
1999-07-02 00:52:50 +08:00
|
|
|
|
|
|
|
DodgeBurnType type;
|
|
|
|
DodgeBurnType type_d;
|
1999-09-09 09:47:54 +08:00
|
|
|
GtkWidget *type_w[2];
|
1999-07-02 00:52:50 +08:00
|
|
|
|
1999-11-13 09:02:27 +08:00
|
|
|
DodgeBurnMode mode; /*highlights, midtones, shadows*/
|
1999-07-02 00:52:50 +08:00
|
|
|
DodgeBurnMode mode_d;
|
1999-09-09 09:47:54 +08:00
|
|
|
GtkWidget *mode_w[3];
|
1999-07-02 00:52:50 +08:00
|
|
|
|
2000-01-14 20:41:00 +08:00
|
|
|
gdouble exposure;
|
|
|
|
gdouble exposure_d;
|
1999-09-09 09:47:54 +08:00
|
|
|
GtkObject *exposure_w;
|
1999-07-02 00:52:50 +08:00
|
|
|
|
1999-09-09 09:47:54 +08:00
|
|
|
GimpLut *lut;
|
1999-07-02 00:52:50 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
2001-03-31 23:45:05 +08:00
|
|
|
static void gimp_dodgeburn_tool_class_init (GimpDodgeBurnToolClass *klass);
|
|
|
|
static void gimp_dodgeburn_tool_init (GimpDodgeBurnTool *dodgeburn);
|
|
|
|
|
|
|
|
static void gimp_dodgeburn_tool_make_luts (GimpPaintTool *paint_tool,
|
|
|
|
gdouble db_exposure,
|
|
|
|
DodgeBurnType type,
|
|
|
|
DodgeBurnMode mode,
|
|
|
|
GimpLut *lut,
|
|
|
|
GimpDrawable *drawable);
|
|
|
|
|
|
|
|
static void gimp_dodgeburn_tool_modifier_key (GimpTool *tool,
|
|
|
|
GdkEventKey *kevent,
|
|
|
|
GDisplay *gdisp);
|
|
|
|
static void gimp_dodgeburn_tool_cursor_update (GimpTool *tool,
|
|
|
|
GdkEventMotion *mevent,
|
|
|
|
GDisplay *gdisp);
|
|
|
|
|
|
|
|
static void gimp_dodgeburn_tool_paint (GimpPaintTool *paint_tool,
|
|
|
|
GimpDrawable *drawable,
|
|
|
|
PaintState state);
|
2000-12-31 12:07:42 +08:00
|
|
|
|
2001-03-24 10:27:16 +08:00
|
|
|
static gfloat gimp_dodgeburn_tool_highlights_lut_func (gpointer user_data,
|
|
|
|
gint nchannels,
|
|
|
|
gint channel,
|
|
|
|
gfloat value);
|
|
|
|
static gfloat gimp_dodgeburn_tool_midtones_lut_func (gpointer user_data,
|
|
|
|
gint nchannels,
|
|
|
|
gint channel,
|
|
|
|
gfloat value);
|
|
|
|
static gfloat gimp_dodgeburn_tool_shadows_lut_func (gpointer user_data,
|
|
|
|
gint nchannels,
|
|
|
|
gint channel,
|
|
|
|
gfloat value);
|
|
|
|
|
2001-03-31 23:45:05 +08:00
|
|
|
static void gimp_dodgeburn_tool_motion (GimpPaintTool *paint_tool,
|
|
|
|
PaintPressureOptions *pressure_options,
|
|
|
|
gdouble dodgeburn_exposure,
|
|
|
|
GimpLut *lut,
|
|
|
|
GimpDrawable *drawable);
|
|
|
|
static void gimp_dodgeburn_tool_init (GimpDodgeBurnTool *tool);
|
|
|
|
static void gimp_dodgeburn_tool_finish (GimpPaintTool *paint_tool,
|
|
|
|
GimpDrawable *drawable);
|
1999-07-02 00:52:50 +08:00
|
|
|
|
|
|
|
|
|
|
|
/* the dodgeburn tool options */
|
|
|
|
static DodgeBurnOptions * dodgeburn_options = NULL;
|
2001-03-31 23:45:05 +08:00
|
|
|
|
2001-03-24 10:27:16 +08:00
|
|
|
static GimpPaintToolClass *parent_class = NULL;
|
1999-07-02 00:52:50 +08:00
|
|
|
|
1999-07-20 06:42:49 +08:00
|
|
|
/* Non gui function */
|
2001-03-24 10:27:16 +08:00
|
|
|
/* FIXME: non-gui
|
|
|
|
* static gdouble non_gui_exposure;
|
|
|
|
* static GimpLut *non_gui_lut;
|
|
|
|
* static gint non_gui_dodeburn;
|
|
|
|
*/
|
1999-07-02 00:52:50 +08:00
|
|
|
|
|
|
|
/* functions */
|
|
|
|
|
2001-03-31 23:45:05 +08:00
|
|
|
void
|
|
|
|
gimp_dodgeburn_tool_register (void)
|
|
|
|
{
|
|
|
|
tool_manager_register_tool (GIMP_TYPE_DODGEBURN_TOOL,
|
|
|
|
TRUE,
|
|
|
|
"gimp:dodgeburn_tool",
|
|
|
|
_("Dodge/Burn"),
|
|
|
|
_("Dodge or Burn strokes"),
|
|
|
|
N_("/Tools/Paint Tools/DodgeBurn"), "<shift>D",
|
|
|
|
NULL, "tools/dodgeburn.html",
|
|
|
|
(const gchar **) dodge_bits);
|
|
|
|
}
|
|
|
|
|
|
|
|
GtkType
|
|
|
|
gimp_dodgeburn_tool_get_type (void)
|
|
|
|
{
|
|
|
|
static GtkType tool_type = 0;
|
|
|
|
|
|
|
|
if (!tool_type)
|
|
|
|
{
|
|
|
|
GtkTypeInfo tool_info =
|
|
|
|
{
|
|
|
|
"GimpDodgeBurnTool",
|
|
|
|
sizeof(GimpDodgeBurnTool),
|
|
|
|
sizeof(GimpDodgeBurnToolClass),
|
|
|
|
(GtkClassInitFunc) gimp_dodgeburn_tool_class_init,
|
|
|
|
(GtkObjectInitFunc) gimp_dodgeburn_tool_init,
|
|
|
|
/* reserved_1 */ NULL,
|
|
|
|
/* reserved_2 */ NULL,
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
tool_type = gtk_type_unique (GIMP_TYPE_PAINT_TOOL, &tool_info);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return tool_type;
|
|
|
|
}
|
|
|
|
|
1999-07-02 00:52:50 +08:00
|
|
|
static void
|
2001-04-01 04:41:39 +08:00
|
|
|
gimp_dodgeburn_tool_options_reset (ToolOptions *tool_options)
|
1999-07-02 00:52:50 +08:00
|
|
|
{
|
2001-04-01 04:41:39 +08:00
|
|
|
DodgeBurnOptions *options;
|
|
|
|
|
|
|
|
options = (DodgeBurnOptions *) tool_options;
|
1999-07-02 00:52:50 +08:00
|
|
|
|
2001-04-01 04:41:39 +08:00
|
|
|
paint_options_reset (tool_options);
|
1999-07-02 00:52:50 +08:00
|
|
|
|
|
|
|
gtk_adjustment_set_value (GTK_ADJUSTMENT (options->exposure_w),
|
|
|
|
options->exposure_d);
|
|
|
|
|
|
|
|
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (options->type_w[options->type_d]), TRUE);
|
|
|
|
|
|
|
|
gtk_toggle_button_set_active (GTK_TOGGLE_BUTTON (options->mode_w[options->mode_d]), TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
static DodgeBurnOptions *
|
2001-03-24 10:27:16 +08:00
|
|
|
gimp_dodgeburn_tool_options_new (void)
|
1999-07-02 00:52:50 +08:00
|
|
|
{
|
|
|
|
DodgeBurnOptions *options;
|
|
|
|
|
|
|
|
GtkWidget *vbox;
|
|
|
|
GtkWidget *hbox;
|
|
|
|
GtkWidget *label;
|
|
|
|
GtkWidget *scale;
|
|
|
|
GtkWidget *frame;
|
|
|
|
|
2001-03-31 23:45:05 +08:00
|
|
|
options = g_new0 (DodgeBurnOptions, 1);
|
1999-07-02 00:52:50 +08:00
|
|
|
paint_options_init ((PaintOptions *) options,
|
2001-03-24 10:27:16 +08:00
|
|
|
GIMP_TYPE_DODGEBURN_TOOL,
|
|
|
|
gimp_dodgeburn_tool_options_reset);
|
1999-07-02 00:52:50 +08:00
|
|
|
|
1999-07-20 06:42:49 +08:00
|
|
|
options->type = options->type_d = DODGEBURN_DEFAULT_TYPE;
|
|
|
|
options->exposure = options->exposure_d = DODGEBURN_DEFAULT_EXPOSURE;
|
|
|
|
options->mode = options->mode_d = DODGEBURN_DEFAULT_MODE;
|
1999-07-02 00:52:50 +08:00
|
|
|
|
|
|
|
/* the main vbox */
|
|
|
|
vbox = ((ToolOptions *) options)->main_vbox;
|
|
|
|
|
|
|
|
/* the exposure scale */
|
|
|
|
hbox = gtk_hbox_new (FALSE, 4);
|
|
|
|
gtk_box_pack_start (GTK_BOX (vbox), hbox, FALSE, FALSE, 0);
|
|
|
|
|
|
|
|
label = gtk_label_new (_("Exposure:"));
|
|
|
|
gtk_misc_set_alignment (GTK_MISC (label), 1.0, 1.0);
|
|
|
|
gtk_box_pack_start (GTK_BOX (hbox), label, FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (label);
|
|
|
|
|
|
|
|
options->exposure_w =
|
|
|
|
gtk_adjustment_new (options->exposure_d, 0.0, 100.0, 1.0, 1.0, 0.0);
|
|
|
|
scale = gtk_hscale_new (GTK_ADJUSTMENT (options->exposure_w));
|
|
|
|
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);
|
|
|
|
|
|
|
|
gtk_signal_connect (GTK_OBJECT (options->exposure_w), "value_changed",
|
2000-01-14 20:41:00 +08:00
|
|
|
GTK_SIGNAL_FUNC (gimp_double_adjustment_update),
|
1999-07-02 00:52:50 +08:00
|
|
|
&options->exposure);
|
|
|
|
|
|
|
|
gtk_widget_show (scale);
|
|
|
|
gtk_widget_show (hbox);
|
|
|
|
|
|
|
|
/* the type (dodge or burn) */
|
2000-01-14 20:41:00 +08:00
|
|
|
frame = gimp_radio_group_new2 (TRUE, _("Type"),
|
|
|
|
gimp_radio_button_update,
|
|
|
|
&options->type, (gpointer) options->type,
|
|
|
|
|
|
|
|
_("Dodge"), (gpointer) DODGE,
|
|
|
|
&options->type_w[0],
|
|
|
|
_("Burn"), (gpointer) BURN,
|
|
|
|
&options->type_w[1],
|
|
|
|
|
|
|
|
NULL);
|
|
|
|
|
1999-07-02 00:52:50 +08:00
|
|
|
gtk_box_pack_start (GTK_BOX (vbox), frame, FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (frame);
|
|
|
|
|
|
|
|
/* mode (highlights, midtones, or shadows) */
|
2000-01-14 20:41:00 +08:00
|
|
|
frame =
|
|
|
|
gimp_radio_group_new2 (TRUE, _("Mode"),
|
|
|
|
gimp_radio_button_update,
|
|
|
|
&options->mode, (gpointer) options->mode,
|
|
|
|
|
|
|
|
_("Highlights"), (gpointer) DODGEBURN_HIGHLIGHTS,
|
|
|
|
&options->mode_w[0],
|
|
|
|
_("Midtones"), (gpointer) DODGEBURN_MIDTONES,
|
|
|
|
&options->mode_w[1],
|
|
|
|
_("Shadows"), (gpointer) DODGEBURN_SHADOWS,
|
|
|
|
&options->mode_w[2],
|
|
|
|
|
|
|
|
NULL);
|
|
|
|
|
1999-07-02 00:52:50 +08:00
|
|
|
gtk_box_pack_start (GTK_BOX (vbox), frame, FALSE, FALSE, 0);
|
|
|
|
gtk_widget_show (frame);
|
|
|
|
|
|
|
|
return options;
|
|
|
|
}
|
|
|
|
|
2001-03-24 10:27:16 +08:00
|
|
|
static void
|
|
|
|
gimp_dodgeburn_tool_paint (GimpPaintTool *paint_tool,
|
|
|
|
GimpDrawable *drawable,
|
|
|
|
PaintState state)
|
1999-07-02 00:52:50 +08:00
|
|
|
{
|
|
|
|
switch (state)
|
|
|
|
{
|
|
|
|
case INIT_PAINT:
|
2001-03-31 23:45:05 +08:00
|
|
|
/* gimp_dodgeburn_tool_init (paint_tool); */
|
|
|
|
dodgeburn_options->lut = gimp_lut_new ();
|
|
|
|
gimp_dodgeburn_tool_make_luts (paint_tool,
|
|
|
|
dodgeburn_options->exposure,
|
|
|
|
dodgeburn_options->type,
|
|
|
|
dodgeburn_options->mode,
|
|
|
|
dodgeburn_options->lut,
|
|
|
|
drawable);
|
1999-07-02 00:52:50 +08:00
|
|
|
break;
|
2000-12-31 12:07:42 +08:00
|
|
|
|
1999-07-02 00:52:50 +08:00
|
|
|
case MOTION_PAINT:
|
2001-03-24 10:27:16 +08:00
|
|
|
gimp_dodgeburn_tool_motion (paint_tool,
|
|
|
|
dodgeburn_options->paint_options.pressure_options,
|
|
|
|
dodgeburn_options->exposure,
|
2001-04-01 04:41:39 +08:00
|
|
|
dodgeburn_options->lut,
|
|
|
|
drawable);
|
1999-07-02 00:52:50 +08:00
|
|
|
break;
|
2000-12-31 12:07:42 +08:00
|
|
|
|
1999-07-02 00:52:50 +08:00
|
|
|
case FINISH_PAINT:
|
2001-03-24 10:27:16 +08:00
|
|
|
gimp_dodgeburn_tool_finish (paint_tool, drawable);
|
1999-07-02 00:52:50 +08:00
|
|
|
break;
|
2000-12-31 12:07:42 +08:00
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
1999-07-02 00:52:50 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-03-31 23:45:05 +08:00
|
|
|
gimp_dodgeburn_tool_finish (GimpPaintTool *paint_tool,
|
|
|
|
GimpDrawable *drawable)
|
1999-07-02 00:52:50 +08:00
|
|
|
{
|
|
|
|
/* Here we destroy the luts to do the painting with.*/
|
|
|
|
if (dodgeburn_options->lut)
|
2001-03-31 23:45:05 +08:00
|
|
|
{
|
|
|
|
gimp_lut_free (dodgeburn_options->lut);
|
|
|
|
dodgeburn_options->lut = NULL;
|
|
|
|
}
|
1999-07-02 00:52:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-03-24 10:27:16 +08:00
|
|
|
gimp_dodgeburn_tool_class_init (GimpDodgeBurnToolClass *klass)
|
|
|
|
{
|
2001-03-31 23:45:05 +08:00
|
|
|
GimpToolClass *tool_class;
|
|
|
|
GimpPaintToolClass *paint_tool_class;
|
2001-03-24 10:27:16 +08:00
|
|
|
|
2001-03-31 23:45:05 +08:00
|
|
|
tool_class = (GimpToolClass *) klass;
|
|
|
|
paint_tool_class = (GimpPaintToolClass *) klass;
|
2001-03-24 10:27:16 +08:00
|
|
|
|
|
|
|
parent_class = gtk_type_class (GIMP_TYPE_PAINT_TOOL);
|
|
|
|
|
2001-03-31 23:45:05 +08:00
|
|
|
tool_class->modifier_key = gimp_dodgeburn_tool_modifier_key;
|
|
|
|
tool_class->cursor_update = gimp_dodgeburn_tool_cursor_update;
|
2001-03-24 10:27:16 +08:00
|
|
|
|
2001-03-31 23:45:05 +08:00
|
|
|
paint_tool_class->paint = gimp_dodgeburn_tool_paint;
|
|
|
|
}
|
2001-03-24 10:27:16 +08:00
|
|
|
|
|
|
|
static void
|
2001-03-31 23:45:05 +08:00
|
|
|
gimp_dodgeburn_tool_init (GimpDodgeBurnTool *dodgeburn)
|
1999-07-02 00:52:50 +08:00
|
|
|
{
|
2001-03-24 10:27:16 +08:00
|
|
|
GimpTool *tool;
|
|
|
|
GimpPaintTool *paint_tool;
|
|
|
|
|
|
|
|
tool = GIMP_TOOL (dodgeburn);
|
|
|
|
paint_tool = GIMP_PAINT_TOOL (dodgeburn);
|
|
|
|
|
|
|
|
if (! dodgeburn_options)
|
|
|
|
{
|
2001-03-31 23:45:05 +08:00
|
|
|
dodgeburn_options = gimp_dodgeburn_tool_options_new ();
|
|
|
|
|
2001-03-24 10:27:16 +08:00
|
|
|
tool_manager_register_tool_options (GIMP_TYPE_DODGEBURN_TOOL,
|
|
|
|
(ToolOptions *) dodgeburn_options);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-07-02 00:52:50 +08:00
|
|
|
/* Here we create the luts to do the painting with.*/
|
2001-03-24 10:27:16 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* gimp_dodgeburn_tool_make_luts (paint_tool,
|
|
|
|
dodgeburn_options->exposure,
|
|
|
|
dodgeburn_options->type,
|
|
|
|
dodgeburn_options->mode,
|
|
|
|
dodgeburn_options->lut,
|
|
|
|
drawable);
|
|
|
|
*/
|
2001-03-31 23:45:05 +08:00
|
|
|
|
|
|
|
tool->tool_cursor = GIMP_DODGE_TOOL_CURSOR;
|
|
|
|
tool->toggle_cursor = GIMP_BURN_TOOL_CURSOR;
|
|
|
|
|
2001-03-24 10:27:16 +08:00
|
|
|
paint_tool->flags |= TOOL_CAN_HANDLE_CHANGING_BRUSH;
|
1999-07-02 00:52:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-03-24 10:27:16 +08:00
|
|
|
gimp_dodgeburn_tool_make_luts (GimpPaintTool *paint_tool,
|
|
|
|
gdouble db_exposure,
|
|
|
|
DodgeBurnType type,
|
|
|
|
DodgeBurnMode mode,
|
|
|
|
GimpLut *lut,
|
|
|
|
GimpDrawable *drawable)
|
1999-07-02 00:52:50 +08:00
|
|
|
{
|
2000-12-31 12:07:42 +08:00
|
|
|
GimpLutFunc lut_func;
|
|
|
|
gint nchannels = gimp_drawable_bytes (drawable);
|
1999-07-20 06:42:49 +08:00
|
|
|
static gfloat exposure;
|
|
|
|
|
2000-12-31 12:07:42 +08:00
|
|
|
exposure = db_exposure / 100.0;
|
1999-07-02 00:52:50 +08:00
|
|
|
|
|
|
|
/* make the exposure negative if burn for luts*/
|
1999-07-20 06:42:49 +08:00
|
|
|
if (type == BURN)
|
1999-07-02 00:52:50 +08:00
|
|
|
exposure = -exposure;
|
|
|
|
|
1999-07-20 06:42:49 +08:00
|
|
|
switch (mode)
|
1999-07-02 00:52:50 +08:00
|
|
|
{
|
|
|
|
case DODGEBURN_HIGHLIGHTS:
|
2001-03-24 10:27:16 +08:00
|
|
|
lut_func = gimp_dodgeburn_tool_highlights_lut_func;
|
1999-07-02 00:52:50 +08:00
|
|
|
break;
|
|
|
|
case DODGEBURN_MIDTONES:
|
2001-03-24 10:27:16 +08:00
|
|
|
lut_func = gimp_dodgeburn_tool_midtones_lut_func;
|
1999-07-02 00:52:50 +08:00
|
|
|
break;
|
|
|
|
case DODGEBURN_SHADOWS:
|
2001-03-24 10:27:16 +08:00
|
|
|
lut_func = gimp_dodgeburn_tool_shadows_lut_func;
|
1999-07-02 00:52:50 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
lut_func = NULL;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
2000-12-31 12:07:42 +08:00
|
|
|
gimp_lut_setup_exact (lut,
|
|
|
|
lut_func, (gpointer) &exposure,
|
|
|
|
nchannels);
|
1999-07-02 00:52:50 +08:00
|
|
|
}
|
2001-03-31 23:45:05 +08:00
|
|
|
|
1999-07-02 00:52:50 +08:00
|
|
|
static void
|
2001-03-31 23:45:05 +08:00
|
|
|
gimp_dodgeburn_tool_modifier_key (GimpTool *tool,
|
|
|
|
GdkEventKey *kevent,
|
|
|
|
GDisplay *gdisp)
|
1999-07-02 00:52:50 +08:00
|
|
|
{
|
|
|
|
switch (kevent->keyval)
|
|
|
|
{
|
1999-11-20 08:30:41 +08:00
|
|
|
case GDK_Alt_L:
|
|
|
|
case GDK_Alt_R:
|
1999-07-02 00:52:50 +08:00
|
|
|
break;
|
2001-03-31 23:45:05 +08:00
|
|
|
|
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 (dodgeburn_options->type)
|
|
|
|
{
|
|
|
|
case BURN:
|
2000-06-14 22:22:47 +08:00
|
|
|
gtk_toggle_button_set_active
|
|
|
|
(GTK_TOGGLE_BUTTON (dodgeburn_options->type_w[DODGE]), TRUE);
|
1999-11-20 08:30:41 +08:00
|
|
|
break;
|
|
|
|
case DODGE:
|
2000-06-14 22:22:47 +08:00
|
|
|
gtk_toggle_button_set_active
|
|
|
|
(GTK_TOGGLE_BUTTON (dodgeburn_options->type_w[BURN]), TRUE);
|
1999-11-20 08:30:41 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
1999-07-03 02:08:58 +08:00
|
|
|
break;
|
2001-03-31 23:45:05 +08:00
|
|
|
|
|
|
|
case GDK_Control_L:
|
1999-11-20 08:30:41 +08:00
|
|
|
case GDK_Control_R:
|
2000-12-31 12:07:42 +08:00
|
|
|
if (! (kevent->state & GDK_SHIFT_MASK)) /* shift enables line draw mode */
|
1999-07-02 00:52:50 +08:00
|
|
|
{
|
1999-11-20 08:30:41 +08:00
|
|
|
switch (dodgeburn_options->type)
|
|
|
|
{
|
|
|
|
case BURN:
|
2000-06-14 22:22:47 +08:00
|
|
|
gtk_toggle_button_set_active
|
|
|
|
(GTK_TOGGLE_BUTTON (dodgeburn_options->type_w[DODGE]), TRUE);
|
1999-11-20 08:30:41 +08:00
|
|
|
break;
|
|
|
|
case DODGE:
|
2000-06-14 22:22:47 +08:00
|
|
|
gtk_toggle_button_set_active
|
|
|
|
(GTK_TOGGLE_BUTTON (dodgeburn_options->type_w[BURN]), TRUE);
|
1999-11-20 08:30:41 +08:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
1999-07-02 00:52:50 +08:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2000-06-14 22:22:47 +08:00
|
|
|
|
|
|
|
tool->toggled = (dodgeburn_options->type == BURN);
|
1999-07-02 00:52:50 +08:00
|
|
|
}
|
|
|
|
|
2000-07-30 00:12:40 +08:00
|
|
|
static void
|
2001-03-31 23:45:05 +08:00
|
|
|
gimp_dodgeburn_tool_cursor_update (GimpTool *tool,
|
|
|
|
GdkEventMotion *mevent,
|
|
|
|
GDisplay *gdisp)
|
2000-07-30 00:12:40 +08:00
|
|
|
{
|
|
|
|
tool->toggled = (dodgeburn_options->type == BURN);
|
|
|
|
|
2001-03-31 23:45:05 +08:00
|
|
|
if (GIMP_TOOL_CLASS (parent_class)->cursor_update)
|
|
|
|
GIMP_TOOL_CLASS (parent_class)->cursor_update (tool, mevent, gdisp);
|
1999-07-02 00:52:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2001-03-31 23:45:05 +08:00
|
|
|
gimp_dodgeburn_tool_motion (GimpPaintTool *paint_tool,
|
2001-03-24 10:27:16 +08:00
|
|
|
PaintPressureOptions *pressure_options,
|
|
|
|
double dodgeburn_exposure,
|
|
|
|
GimpLut *lut,
|
|
|
|
GimpDrawable *drawable)
|
1999-07-02 00:52:50 +08:00
|
|
|
{
|
2001-03-24 10:27:16 +08:00
|
|
|
GimpImage *gimage;
|
|
|
|
TempBuf *area;
|
|
|
|
TempBuf *orig;
|
|
|
|
PixelRegion srcPR, destPR, tempPR;
|
|
|
|
guchar *temp_data;
|
|
|
|
gint opacity;
|
|
|
|
gdouble scale;
|
1999-07-02 00:52:50 +08:00
|
|
|
|
2001-01-15 05:11:52 +08:00
|
|
|
if (! (gimage = gimp_drawable_gimage (drawable)))
|
1999-07-02 00:52:50 +08:00
|
|
|
return;
|
|
|
|
|
|
|
|
/* If the image type is indexed, don't dodgeburn */
|
2001-01-15 05:11:52 +08:00
|
|
|
if ((gimp_drawable_type (drawable) == INDEXED_GIMAGE) ||
|
|
|
|
(gimp_drawable_type (drawable) == INDEXEDA_GIMAGE))
|
1999-07-02 00:52:50 +08:00
|
|
|
return;
|
|
|
|
|
1999-09-09 09:47:54 +08:00
|
|
|
if (pressure_options->size)
|
2001-03-24 10:27:16 +08:00
|
|
|
scale = paint_tool->curpressure;
|
1999-09-09 09:47:54 +08:00
|
|
|
else
|
|
|
|
scale = 1.0;
|
|
|
|
|
1999-07-02 00:52:50 +08:00
|
|
|
/* Get a region which can be used to paint to */
|
2001-03-24 10:27:16 +08:00
|
|
|
if (! (area = gimp_paint_tool_get_paint_area (paint_tool, drawable, scale)))
|
1999-07-02 00:52:50 +08:00
|
|
|
return;
|
|
|
|
|
2001-03-31 23:45:05 +08:00
|
|
|
/* Constant painting --get a copy of the orig drawable (with no
|
|
|
|
* paint from this stroke yet)
|
|
|
|
*/
|
1999-07-02 00:52:50 +08:00
|
|
|
{
|
2000-12-31 12:07:42 +08:00
|
|
|
gint x1, y1, x2, y2;
|
|
|
|
|
2001-01-15 05:11:52 +08:00
|
|
|
x1 = CLAMP (area->x, 0, gimp_drawable_width (drawable));
|
|
|
|
y1 = CLAMP (area->y, 0, gimp_drawable_height (drawable));
|
|
|
|
x2 = CLAMP (area->x + area->width, 0, gimp_drawable_width (drawable));
|
|
|
|
y2 = CLAMP (area->y + area->height, 0, gimp_drawable_height (drawable));
|
2000-12-31 12:07:42 +08:00
|
|
|
|
|
|
|
if (!(x2 - x1) || !(y2 - y1))
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* get the original untouched image */
|
2001-03-24 10:27:16 +08:00
|
|
|
orig = gimp_paint_tool_get_orig_image (paint_tool, drawable, x1, y1, x2, y2);
|
2000-12-31 12:07:42 +08:00
|
|
|
srcPR.bytes = orig->bytes;
|
|
|
|
srcPR.x = 0;
|
|
|
|
srcPR.y = 0;
|
|
|
|
srcPR.w = x2 - x1;
|
|
|
|
srcPR.h = y2 - y1;
|
|
|
|
srcPR.rowstride = srcPR.bytes * orig->width;
|
|
|
|
srcPR.data = temp_buf_data (orig);
|
|
|
|
}
|
1999-07-02 00:52:50 +08:00
|
|
|
|
|
|
|
/* tempPR will hold the dodgeburned region*/
|
|
|
|
tempPR.bytes = srcPR.bytes;
|
|
|
|
tempPR.x = srcPR.x;
|
|
|
|
tempPR.y = srcPR.y;
|
|
|
|
tempPR.w = srcPR.w;
|
|
|
|
tempPR.h = srcPR.h;
|
|
|
|
tempPR.rowstride = tempPR.bytes * tempPR.w;
|
|
|
|
temp_data = g_malloc (tempPR.h * tempPR.rowstride);
|
|
|
|
tempPR.data = temp_data;
|
|
|
|
|
|
|
|
/* DodgeBurn the region */
|
1999-07-20 06:42:49 +08:00
|
|
|
gimp_lut_process (lut, &srcPR, &tempPR);
|
1999-07-02 00:52:50 +08:00
|
|
|
|
|
|
|
/* The dest is the paint area we got above (= canvas_buf) */
|
|
|
|
destPR.bytes = area->bytes;
|
|
|
|
destPR.x = 0; destPR.y = 0;
|
|
|
|
destPR.w = area->width;
|
|
|
|
destPR.h = area->height;
|
|
|
|
destPR.rowstride = area->width * destPR.bytes;
|
|
|
|
destPR.data = temp_buf_data (area);
|
|
|
|
|
|
|
|
/* Now add an alpha to the dodgeburned region
|
|
|
|
and put this in area = canvas_buf */
|
2001-01-15 05:11:52 +08:00
|
|
|
if (! gimp_drawable_has_alpha (drawable))
|
1999-07-02 00:52:50 +08:00
|
|
|
add_alpha_region (&tempPR, &destPR);
|
|
|
|
else
|
1999-11-13 09:02:27 +08:00
|
|
|
copy_region (&tempPR, &destPR);
|
1999-07-02 00:52:50 +08:00
|
|
|
|
1999-09-09 09:47:54 +08:00
|
|
|
opacity = 255 * gimp_context_get_opacity (NULL);
|
|
|
|
if (pressure_options->opacity)
|
2001-03-24 10:27:16 +08:00
|
|
|
opacity = opacity * 2.0 * paint_tool->curpressure;
|
1999-09-09 09:47:54 +08:00
|
|
|
|
1999-11-13 09:02:27 +08:00
|
|
|
/* Replace the newly dodgedburned area (canvas_buf) to the gimage*/
|
2001-03-24 10:27:16 +08:00
|
|
|
gimp_paint_tool_replace_canvas (paint_tool, drawable,
|
|
|
|
MIN (opacity, 255),
|
|
|
|
OPAQUE_OPACITY,
|
|
|
|
pressure_options->pressure ? PRESSURE : SOFT,
|
|
|
|
scale, CONSTANT);
|
1999-07-02 00:52:50 +08:00
|
|
|
|
|
|
|
g_free (temp_data);
|
|
|
|
}
|
|
|
|
|
2001-03-24 10:27:16 +08:00
|
|
|
/* FIXME: non-gui */
|
1999-07-02 00:52:50 +08:00
|
|
|
|
2001-03-24 10:27:16 +08:00
|
|
|
#if 0
|
|
|
|
|
|
|
|
static gpointer
|
2001-03-31 23:45:05 +08:00
|
|
|
gimp_dodgeburn_tool_non_gui_paint (GimpPaintTool *paint_tool,
|
2001-03-24 10:27:16 +08:00
|
|
|
GimpDrawable *drawable,
|
|
|
|
PaintState state)
|
2001-03-31 23:45:05 +08:00
|
|
|
{
|
|
|
|
gimp_dodgeburn_tool_motion (paint_tool, &non_gui_pressure_options,
|
2001-03-24 10:27:16 +08:00
|
|
|
non_gui_exposure, non_gui_lut, drawable);
|
2001-03-31 23:45:05 +08:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
1999-07-02 00:52:50 +08:00
|
|
|
|
1999-07-20 06:42:49 +08:00
|
|
|
gboolean
|
2001-03-24 10:27:16 +08:00
|
|
|
gimp_dodgeburn_tool_non_gui_default (GimpDrawable *drawable,
|
|
|
|
gint num_strokes,
|
|
|
|
gdouble *stroke_array)
|
1999-07-20 06:42:49 +08:00
|
|
|
{
|
2000-12-31 12:07:42 +08:00
|
|
|
gdouble exposure = DODGEBURN_DEFAULT_TYPE;
|
|
|
|
DodgeBurnType type = DODGEBURN_DEFAULT_TYPE;
|
|
|
|
DodgeBurnMode mode = DODGEBURN_DEFAULT_MODE;
|
|
|
|
DodgeBurnOptions *options = dodgeburn_options;
|
1999-07-20 06:42:49 +08:00
|
|
|
|
2000-04-28 01:27:28 +08:00
|
|
|
if (options)
|
1999-07-20 06:42:49 +08:00
|
|
|
{
|
|
|
|
exposure = dodgeburn_options->exposure;
|
|
|
|
type = dodgeburn_options->type;
|
|
|
|
mode = dodgeburn_options->mode;
|
|
|
|
}
|
|
|
|
|
2001-03-24 10:27:16 +08:00
|
|
|
return gimp_dodgeburn_tool_non_gui (drawable, exposure, type, mode,
|
|
|
|
num_strokes, stroke_array);
|
1999-07-20 06:42:49 +08:00
|
|
|
}
|
|
|
|
|
1999-07-02 00:52:50 +08:00
|
|
|
gboolean
|
2001-03-24 10:27:16 +08:00
|
|
|
gimp_dodgeburn_tool_non_gui (GimpDrawable *drawable,
|
|
|
|
gdouble exposure,
|
|
|
|
DodgeBurnType type,
|
|
|
|
DodgeBurnMode mode,
|
|
|
|
gint num_strokes,
|
|
|
|
gdouble *stroke_array)
|
1999-07-02 00:52:50 +08:00
|
|
|
{
|
2001-03-24 10:27:16 +08:00
|
|
|
GimpPaintTool *paint_tool;
|
2000-12-31 12:07:42 +08:00
|
|
|
gint i;
|
1999-07-02 00:52:50 +08:00
|
|
|
|
2001-03-24 10:27:16 +08:00
|
|
|
if (! non_gui_dodgeburn)
|
|
|
|
{
|
|
|
|
non_gui_dodgeburn = gtk_type_new (GIMP_TYPE_DODGEBURN_TOOL);
|
|
|
|
}
|
|
|
|
|
|
|
|
paint_tool = GIMP_PAINT_TOOL (non_gui_dodgeburn);
|
|
|
|
|
|
|
|
if (gimp_paint_tool_init (paint_tool, drawable,
|
|
|
|
stroke_array[0],
|
|
|
|
stroke_array[1]))
|
1999-07-02 00:52:50 +08:00
|
|
|
{
|
|
|
|
/* Set the paint core's paint func */
|
2001-03-24 10:27:16 +08:00
|
|
|
paint_tool->paint_func = gimp_dodgeburn_tool_non_gui_paint;
|
1999-07-02 00:52:50 +08:00
|
|
|
|
1999-07-20 06:42:49 +08:00
|
|
|
non_gui_exposure = exposure;
|
|
|
|
non_gui_lut = gimp_lut_new();
|
2001-03-24 10:27:16 +08:00
|
|
|
gimp_dodgeburn_tool_make_luts (paint_tool,
|
|
|
|
exposure,
|
|
|
|
type,
|
|
|
|
mode,
|
|
|
|
non_gui_lut,
|
|
|
|
drawable);
|
1999-07-20 06:42:49 +08:00
|
|
|
|
2001-03-24 10:27:16 +08:00
|
|
|
paint_tool->startx = paint_tool->lastx = stroke_array[0];
|
|
|
|
paint_tool->starty = paint_tool->lasty = stroke_array[1];
|
1999-07-02 00:52:50 +08:00
|
|
|
|
2001-03-24 10:27:16 +08:00
|
|
|
gimp_dodgeburn_tool_non_gui_paint (paint_tool, drawable, 0);
|
1999-07-02 00:52:50 +08:00
|
|
|
|
|
|
|
for (i = 1; i < num_strokes; i++)
|
|
|
|
{
|
2001-03-24 10:27:16 +08:00
|
|
|
paint_tool->curx = stroke_array[i * 2 + 0];
|
|
|
|
paint_tool->cury = stroke_array[i * 2 + 1];
|
1999-07-02 00:52:50 +08:00
|
|
|
|
2001-03-24 10:27:16 +08:00
|
|
|
gimp_paint_tool_interpolate (paint_tool, drawable);
|
1999-07-02 00:52:50 +08:00
|
|
|
|
2001-03-24 10:27:16 +08:00
|
|
|
paint_tool->lastx = paint_tool->curx;
|
|
|
|
paint_tool->lasty = paint_tool->cury;
|
1999-07-02 00:52:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Finish the painting */
|
2001-03-24 10:27:16 +08:00
|
|
|
gimp_paint_tool_finish (paint_tool, drawable, -1);
|
|
|
|
|
1999-07-20 06:42:49 +08:00
|
|
|
gimp_lut_free (non_gui_lut);
|
|
|
|
|
1999-07-02 00:52:50 +08:00
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
2001-03-24 10:27:16 +08:00
|
|
|
#endif /* 0 */
|
|
|
|
|
1999-07-02 00:52:50 +08:00
|
|
|
static gfloat
|
2001-03-24 10:27:16 +08:00
|
|
|
gimp_dodgeburn_tool_highlights_lut_func (gpointer user_data,
|
|
|
|
gint nchannels,
|
|
|
|
gint channel,
|
|
|
|
gfloat value)
|
1999-07-02 00:52:50 +08:00
|
|
|
{
|
2001-03-31 23:45:05 +08:00
|
|
|
gfloat *exposure_ptr = (gfloat *) user_data;
|
|
|
|
gfloat exposure = *exposure_ptr;
|
|
|
|
gfloat factor = 1.0 + exposure * (.333333);
|
2000-12-31 12:07:42 +08:00
|
|
|
|
2000-04-28 01:27:28 +08:00
|
|
|
if ((nchannels == 2 && channel == 1) ||
|
|
|
|
(nchannels == 4 && channel == 3))
|
1999-07-02 00:52:50 +08:00
|
|
|
return value;
|
|
|
|
|
2001-03-31 23:45:05 +08:00
|
|
|
return factor * value;
|
1999-07-02 00:52:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static gfloat
|
2001-03-24 10:27:16 +08:00
|
|
|
gimp_dodgeburn_tool_midtones_lut_func (gpointer user_data,
|
|
|
|
gint nchannels,
|
|
|
|
gint channel,
|
|
|
|
gfloat value)
|
1999-07-02 00:52:50 +08:00
|
|
|
{
|
2001-03-31 23:45:05 +08:00
|
|
|
gfloat *exposure_ptr = (gfloat *) user_data;
|
|
|
|
gfloat exposure = *exposure_ptr;
|
|
|
|
gfloat factor;
|
1999-07-02 00:52:50 +08:00
|
|
|
|
2000-04-28 01:27:28 +08:00
|
|
|
if ((nchannels == 2 && channel == 1) ||
|
|
|
|
(nchannels == 4 && channel == 3))
|
1999-07-02 00:52:50 +08:00
|
|
|
return value;
|
|
|
|
|
2001-03-31 23:45:05 +08:00
|
|
|
if (exposure < 0)
|
|
|
|
factor = 1.0 - exposure * (.333333);
|
|
|
|
else
|
|
|
|
factor = 1/(1.0 + exposure);
|
2000-12-31 12:07:42 +08:00
|
|
|
|
2001-03-31 23:45:05 +08:00
|
|
|
return pow (value, factor);
|
1999-07-02 00:52:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static gfloat
|
2001-03-24 10:27:16 +08:00
|
|
|
gimp_dodgeburn_tool_shadows_lut_func (gpointer user_data,
|
|
|
|
gint nchannels,
|
|
|
|
gint channel,
|
|
|
|
gfloat value)
|
1999-07-02 00:52:50 +08:00
|
|
|
{
|
2000-12-31 12:07:42 +08:00
|
|
|
gfloat *exposure_ptr = (gfloat *) user_data;
|
|
|
|
gfloat exposure = *exposure_ptr;
|
|
|
|
gfloat new_value;
|
|
|
|
gfloat factor;
|
2000-04-28 01:27:28 +08:00
|
|
|
|
2001-03-31 23:45:05 +08:00
|
|
|
if ((nchannels == 2 && channel == 1) ||
|
|
|
|
(nchannels == 4 && channel == 3))
|
1999-07-02 00:52:50 +08:00
|
|
|
return value;
|
|
|
|
|
|
|
|
if (exposure >= 0)
|
2000-04-28 01:27:28 +08:00
|
|
|
{
|
|
|
|
factor = 0.333333 * exposure;
|
|
|
|
new_value = factor + value - factor * value;
|
|
|
|
}
|
1999-07-02 00:52:50 +08:00
|
|
|
else /* exposure < 0 */
|
2000-04-28 01:27:28 +08:00
|
|
|
{
|
|
|
|
factor = -0.333333 * exposure;
|
|
|
|
if (value < factor)
|
|
|
|
new_value = 0;
|
|
|
|
else /*factor <= value <=1*/
|
|
|
|
new_value = (value - factor)/(1 - factor);
|
|
|
|
}
|
|
|
|
|
1999-07-02 00:52:50 +08:00
|
|
|
return new_value;
|
|
|
|
}
|
2001-03-24 10:27:16 +08:00
|
|
|
|
|
|
|
/* FIXME: do someting usefule here */
|
|
|
|
|
2001-03-31 23:45:05 +08:00
|
|
|
gboolean
|
|
|
|
dodgeburn_non_gui (GimpDrawable *drawable,
|
|
|
|
gdouble exposure,
|
|
|
|
DodgeBurnType type,
|
|
|
|
DodgeBurnMode mode,
|
|
|
|
gint num_strokes,
|
|
|
|
gdouble *stroke_array)
|
2001-03-24 10:27:16 +08:00
|
|
|
{
|
2001-03-31 23:45:05 +08:00
|
|
|
g_message ("gimp_dodgeburn_tool_non_gui not implemented yet\n");
|
2001-03-24 10:27:16 +08:00
|
|
|
|
2001-03-31 23:45:05 +08:00
|
|
|
return FALSE;
|
2001-03-24 10:27:16 +08:00
|
|
|
}
|
|
|
|
|
2001-03-31 23:45:05 +08:00
|
|
|
gboolean
|
|
|
|
dodgeburn_non_gui_default (GimpDrawable *drawable,
|
|
|
|
gint num_strokes,
|
|
|
|
gdouble *stroke_array)
|
2001-03-24 10:27:16 +08:00
|
|
|
{
|
2001-03-31 23:45:05 +08:00
|
|
|
g_message ("gimp_dodgeburn_tool_non_gui not implemented yet\n");
|
2001-03-24 10:27:16 +08:00
|
|
|
|
2001-03-31 23:45:05 +08:00
|
|
|
return FALSE;
|
2001-03-24 10:27:16 +08:00
|
|
|
}
|