2007-11-02 20:18:50 +08:00
|
|
|
/* GIMP - The GNU 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
|
|
|
|
#include <glib-object.h>
|
|
|
|
|
|
|
|
#include "libgimpmath/gimpmath.h"
|
|
|
|
|
|
|
|
#include "core-types.h"
|
|
|
|
|
|
|
|
#include "gimpcurve.h"
|
|
|
|
#include "gimpcurve-load.h"
|
|
|
|
#include "gimpcurve-save.h"
|
|
|
|
|
|
|
|
#include "gimp-intl.h"
|
|
|
|
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
2007-11-03 00:51:18 +08:00
|
|
|
PROP_CURVE_TYPE,
|
|
|
|
PROP_POINTS,
|
|
|
|
PROP_CURVE
|
2007-11-02 20:18:50 +08:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/* local function prototypes */
|
|
|
|
|
|
|
|
static void gimp_curve_finalize (GObject *object);
|
|
|
|
static void gimp_curve_set_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
static void gimp_curve_get_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec);
|
|
|
|
|
|
|
|
static gint64 gimp_curve_get_memsize (GimpObject *object,
|
|
|
|
gint64 *gui_size);
|
|
|
|
|
|
|
|
static void gimp_curve_get_preview_size (GimpViewable *viewable,
|
|
|
|
gint size,
|
|
|
|
gboolean popup,
|
|
|
|
gboolean dot_for_dot,
|
|
|
|
gint *width,
|
|
|
|
gint *height);
|
|
|
|
static gboolean gimp_curve_get_popup_size (GimpViewable *viewable,
|
|
|
|
gint width,
|
|
|
|
gint height,
|
|
|
|
gboolean dot_for_dot,
|
|
|
|
gint *popup_width,
|
|
|
|
gint *popup_height);
|
|
|
|
static TempBuf * gimp_curve_get_new_preview (GimpViewable *viewable,
|
|
|
|
GimpContext *context,
|
|
|
|
gint width,
|
|
|
|
gint height);
|
|
|
|
static gchar * gimp_curve_get_description (GimpViewable *viewable,
|
|
|
|
gchar **tooltip);
|
2007-11-05 18:02:20 +08:00
|
|
|
|
|
|
|
static void gimp_curve_dirty (GimpData *data);
|
2007-11-02 20:18:50 +08:00
|
|
|
static gchar * gimp_curve_get_extension (GimpData *data);
|
|
|
|
static GimpData * gimp_curve_duplicate (GimpData *data);
|
|
|
|
|
2007-11-05 18:02:20 +08:00
|
|
|
static void gimp_curve_calculate (GimpCurve *curve);
|
2007-11-02 20:18:50 +08:00
|
|
|
static void gimp_curve_plot (GimpCurve *curve,
|
|
|
|
gint p1,
|
|
|
|
gint p2,
|
|
|
|
gint p3,
|
|
|
|
gint p4);
|
|
|
|
|
|
|
|
|
|
|
|
G_DEFINE_TYPE (GimpCurve, gimp_curve, GIMP_TYPE_DATA)
|
|
|
|
|
|
|
|
#define parent_class gimp_curve_parent_class
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_curve_class_init (GimpCurveClass *klass)
|
|
|
|
{
|
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
GimpObjectClass *gimp_object_class = GIMP_OBJECT_CLASS (klass);
|
|
|
|
GimpViewableClass *viewable_class = GIMP_VIEWABLE_CLASS (klass);
|
|
|
|
GimpDataClass *data_class = GIMP_DATA_CLASS (klass);
|
|
|
|
|
|
|
|
object_class->finalize = gimp_curve_finalize;
|
|
|
|
object_class->set_property = gimp_curve_set_property;
|
|
|
|
object_class->get_property = gimp_curve_get_property;
|
|
|
|
|
|
|
|
gimp_object_class->get_memsize = gimp_curve_get_memsize;
|
|
|
|
|
|
|
|
viewable_class->default_stock_id = "FIXME";
|
|
|
|
viewable_class->get_preview_size = gimp_curve_get_preview_size;
|
|
|
|
viewable_class->get_popup_size = gimp_curve_get_popup_size;
|
|
|
|
viewable_class->get_new_preview = gimp_curve_get_new_preview;
|
|
|
|
viewable_class->get_description = gimp_curve_get_description;
|
|
|
|
|
2007-11-05 18:02:20 +08:00
|
|
|
data_class->dirty = gimp_curve_dirty;
|
2007-11-02 20:18:50 +08:00
|
|
|
data_class->save = gimp_curve_save;
|
|
|
|
data_class->get_extension = gimp_curve_get_extension;
|
|
|
|
data_class->duplicate = gimp_curve_duplicate;
|
|
|
|
|
|
|
|
g_object_class_install_property (object_class, PROP_CURVE_TYPE,
|
|
|
|
g_param_spec_enum ("curve-type", NULL, NULL,
|
|
|
|
GIMP_TYPE_CURVE_TYPE,
|
|
|
|
GIMP_CURVE_SMOOTH,
|
|
|
|
GIMP_PARAM_READWRITE |
|
|
|
|
G_PARAM_CONSTRUCT));
|
2007-11-03 00:51:18 +08:00
|
|
|
|
|
|
|
g_object_class_install_property (object_class, PROP_POINTS,
|
|
|
|
g_param_spec_boolean ("points", NULL, NULL,
|
|
|
|
FALSE,
|
|
|
|
GIMP_PARAM_READWRITE |
|
|
|
|
G_PARAM_CONSTRUCT));
|
|
|
|
|
|
|
|
g_object_class_install_property (object_class, PROP_CURVE,
|
|
|
|
g_param_spec_boolean ("curve", NULL, NULL,
|
|
|
|
FALSE,
|
|
|
|
GIMP_PARAM_READWRITE |
|
|
|
|
G_PARAM_CONSTRUCT));
|
2007-11-02 20:18:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_curve_init (GimpCurve *curve)
|
|
|
|
{
|
|
|
|
gimp_curve_reset (curve, TRUE);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_curve_finalize (GObject *object)
|
|
|
|
{
|
|
|
|
GimpCurve *curve = GIMP_CURVE (object);
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (parent_class)->finalize (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_curve_set_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GimpCurve *curve = GIMP_CURVE (object);
|
|
|
|
|
|
|
|
switch (property_id)
|
|
|
|
{
|
|
|
|
case PROP_CURVE_TYPE:
|
|
|
|
gimp_curve_set_curve_type (curve, g_value_get_enum (value));
|
|
|
|
break;
|
|
|
|
|
2007-11-03 00:51:18 +08:00
|
|
|
case PROP_POINTS:
|
|
|
|
case PROP_CURVE:
|
|
|
|
break;
|
|
|
|
|
2007-11-02 20:18:50 +08:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_curve_get_property (GObject *object,
|
|
|
|
guint property_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
GimpCurve *curve = GIMP_CURVE (object);
|
|
|
|
|
|
|
|
switch (property_id)
|
|
|
|
{
|
|
|
|
case PROP_CURVE_TYPE:
|
|
|
|
g_value_set_enum (value, curve->curve_type);
|
|
|
|
break;
|
|
|
|
|
2007-11-03 00:51:18 +08:00
|
|
|
case PROP_POINTS:
|
|
|
|
case PROP_CURVE:
|
|
|
|
break;
|
|
|
|
|
2007-11-02 20:18:50 +08:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, property_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static gint64
|
|
|
|
gimp_curve_get_memsize (GimpObject *object,
|
|
|
|
gint64 *gui_size)
|
|
|
|
{
|
|
|
|
GimpCurve *curve = GIMP_CURVE (object);
|
|
|
|
gint64 memsize = 0;
|
|
|
|
|
|
|
|
return memsize + GIMP_OBJECT_CLASS (parent_class)->get_memsize (object,
|
|
|
|
gui_size);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
gimp_curve_get_preview_size (GimpViewable *viewable,
|
|
|
|
gint size,
|
|
|
|
gboolean popup,
|
|
|
|
gboolean dot_for_dot,
|
|
|
|
gint *width,
|
|
|
|
gint *height)
|
|
|
|
{
|
|
|
|
*width = size;
|
|
|
|
*height = size;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
gimp_curve_get_popup_size (GimpViewable *viewable,
|
|
|
|
gint width,
|
|
|
|
gint height,
|
|
|
|
gboolean dot_for_dot,
|
|
|
|
gint *popup_width,
|
|
|
|
gint *popup_height)
|
|
|
|
{
|
|
|
|
GimpCurve *curve = GIMP_CURVE (viewable);
|
|
|
|
|
|
|
|
*popup_width = width * 2;
|
|
|
|
*popup_height = height * 2;
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
static TempBuf *
|
|
|
|
gimp_curve_get_new_preview (GimpViewable *viewable,
|
|
|
|
GimpContext *context,
|
|
|
|
gint width,
|
|
|
|
gint height)
|
|
|
|
{
|
|
|
|
GimpCurve *curve = GIMP_CURVE (viewable);
|
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
static gchar *
|
|
|
|
gimp_curve_get_description (GimpViewable *viewable,
|
|
|
|
gchar **tooltip)
|
|
|
|
{
|
|
|
|
GimpCurve *curve = GIMP_CURVE (viewable);
|
|
|
|
|
|
|
|
return g_strdup_printf ("%s", GIMP_OBJECT (curve)->name);
|
|
|
|
}
|
|
|
|
|
2007-11-05 18:02:20 +08:00
|
|
|
static void
|
|
|
|
gimp_curve_dirty (GimpData *data)
|
|
|
|
{
|
|
|
|
gimp_curve_calculate (GIMP_CURVE (data));
|
|
|
|
|
|
|
|
GIMP_DATA_CLASS (parent_class)->dirty (data);
|
|
|
|
}
|
2007-11-02 20:18:50 +08:00
|
|
|
|
|
|
|
static gchar *
|
|
|
|
gimp_curve_get_extension (GimpData *data)
|
|
|
|
{
|
|
|
|
return GIMP_CURVE_FILE_EXTENSION;
|
|
|
|
}
|
|
|
|
|
|
|
|
static GimpData *
|
|
|
|
gimp_curve_duplicate (GimpData *data)
|
|
|
|
{
|
|
|
|
GimpCurve *curve = GIMP_CURVE (data);
|
|
|
|
GimpCurve *new;
|
|
|
|
|
|
|
|
new = g_object_new (GIMP_TYPE_CURVE,
|
|
|
|
"curve-type", curve->curve_type,
|
|
|
|
NULL);
|
|
|
|
|
|
|
|
return GIMP_DATA (new);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* public functions */
|
|
|
|
|
|
|
|
GimpData *
|
|
|
|
gimp_curve_new (const gchar *name)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (name != NULL, NULL);
|
|
|
|
g_return_val_if_fail (*name != '\0', NULL);
|
|
|
|
|
|
|
|
return g_object_new (GIMP_TYPE_CURVE,
|
|
|
|
"name", name,
|
|
|
|
NULL);
|
|
|
|
}
|
|
|
|
|
|
|
|
GimpData *
|
|
|
|
gimp_curve_get_standard (void)
|
|
|
|
{
|
|
|
|
static GimpData *standard_curve = NULL;
|
|
|
|
|
|
|
|
if (! standard_curve)
|
|
|
|
{
|
|
|
|
standard_curve = gimp_curve_new ("Standard");
|
|
|
|
|
|
|
|
standard_curve->dirty = FALSE;
|
|
|
|
gimp_data_make_internal (standard_curve);
|
|
|
|
|
|
|
|
g_object_ref (standard_curve);
|
|
|
|
}
|
|
|
|
|
|
|
|
return standard_curve;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gimp_curve_reset (GimpCurve *curve,
|
|
|
|
gboolean reset_type)
|
|
|
|
{
|
|
|
|
gint i;
|
|
|
|
|
|
|
|
g_return_if_fail (GIMP_IS_CURVE (curve));
|
|
|
|
|
|
|
|
if (reset_type)
|
|
|
|
curve->curve_type = GIMP_CURVE_SMOOTH;
|
|
|
|
|
|
|
|
for (i = 0; i < 256; i++)
|
2008-02-09 18:01:51 +08:00
|
|
|
curve->curve[i] = (gdouble) i / 255.0;
|
2007-11-02 20:18:50 +08:00
|
|
|
|
|
|
|
for (i = 0; i < GIMP_CURVE_NUM_POINTS; i++)
|
|
|
|
{
|
2008-02-10 01:40:57 +08:00
|
|
|
curve->points[i].x = -1.0;
|
|
|
|
curve->points[i].y = -1.0;
|
2007-11-02 20:18:50 +08:00
|
|
|
}
|
|
|
|
|
2008-02-10 01:40:57 +08:00
|
|
|
curve->points[0].x = 0.0;
|
|
|
|
curve->points[0].y = 0.0;
|
|
|
|
curve->points[GIMP_CURVE_NUM_POINTS - 1].x = 1.0;
|
|
|
|
curve->points[GIMP_CURVE_NUM_POINTS - 1].y = 1.0;
|
2007-11-02 20:18:50 +08:00
|
|
|
|
|
|
|
g_object_freeze_notify (G_OBJECT (curve));
|
|
|
|
|
2007-11-03 00:51:18 +08:00
|
|
|
g_object_notify (G_OBJECT (curve), "points");
|
|
|
|
g_object_notify (G_OBJECT (curve), "curve");
|
|
|
|
|
|
|
|
if (reset_type)
|
|
|
|
g_object_notify (G_OBJECT (curve), "curve-type");
|
2007-11-02 20:18:50 +08:00
|
|
|
|
|
|
|
g_object_thaw_notify (G_OBJECT (curve));
|
2007-11-05 18:02:20 +08:00
|
|
|
|
|
|
|
gimp_data_dirty (GIMP_DATA (curve));
|
2007-11-02 20:18:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gimp_curve_set_curve_type (GimpCurve *curve,
|
|
|
|
GimpCurveType curve_type)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GIMP_IS_CURVE (curve));
|
|
|
|
|
|
|
|
if (curve->curve_type != curve_type)
|
|
|
|
{
|
2007-11-03 00:51:18 +08:00
|
|
|
g_object_freeze_notify (G_OBJECT (curve));
|
|
|
|
|
2007-11-02 20:18:50 +08:00
|
|
|
curve->curve_type = curve_type;
|
|
|
|
|
|
|
|
if (curve_type == GIMP_CURVE_SMOOTH)
|
|
|
|
{
|
2008-02-09 18:01:51 +08:00
|
|
|
gint i;
|
2007-11-02 20:18:50 +08:00
|
|
|
|
|
|
|
/* pick representative points from the curve and make them
|
|
|
|
* control points
|
|
|
|
*/
|
|
|
|
for (i = 0; i <= 8; i++)
|
|
|
|
{
|
2008-02-09 18:01:51 +08:00
|
|
|
gint32 index = CLAMP0255 (i * 32);
|
2007-11-02 20:18:50 +08:00
|
|
|
|
2008-02-10 01:40:57 +08:00
|
|
|
curve->points[i * 2].x = (gdouble) index / 255.0;
|
|
|
|
curve->points[i * 2].y = curve->curve[index];
|
2007-11-02 20:18:50 +08:00
|
|
|
}
|
|
|
|
|
2007-11-05 18:02:20 +08:00
|
|
|
g_object_notify (G_OBJECT (curve), "points");
|
|
|
|
}
|
2007-11-02 20:18:50 +08:00
|
|
|
|
|
|
|
g_object_notify (G_OBJECT (curve), "curve-type");
|
2007-11-03 00:51:18 +08:00
|
|
|
|
|
|
|
g_object_thaw_notify (G_OBJECT (curve));
|
|
|
|
|
2007-11-02 20:18:50 +08:00
|
|
|
gimp_data_dirty (GIMP_DATA (curve));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
GimpCurveType
|
|
|
|
gimp_curve_get_curve_type (GimpCurve *curve)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (GIMP_IS_CURVE (curve), GIMP_CURVE_SMOOTH);
|
|
|
|
|
|
|
|
return curve->curve_type;
|
|
|
|
}
|
|
|
|
|
2008-02-09 18:01:51 +08:00
|
|
|
#define MIN_DISTANCE (8.0 / 255.0)
|
2007-11-02 20:18:50 +08:00
|
|
|
|
|
|
|
gint
|
|
|
|
gimp_curve_get_closest_point (GimpCurve *curve,
|
2008-02-09 18:01:51 +08:00
|
|
|
gdouble x)
|
2007-11-02 20:18:50 +08:00
|
|
|
{
|
2008-02-09 18:01:51 +08:00
|
|
|
gint closest_point = 0;
|
|
|
|
gdouble distance = G_MAXDOUBLE;
|
|
|
|
gint i;
|
2007-11-02 20:18:50 +08:00
|
|
|
|
|
|
|
g_return_val_if_fail (GIMP_IS_CURVE (curve), 0);
|
|
|
|
|
|
|
|
for (i = 0; i < GIMP_CURVE_NUM_POINTS; i++)
|
|
|
|
{
|
2008-02-10 01:40:57 +08:00
|
|
|
if (curve->points[i].x >= 0.0 &&
|
|
|
|
fabs (x - curve->points[i].x) < distance)
|
|
|
|
{
|
|
|
|
distance = fabs (x - curve->points[i].x);
|
|
|
|
closest_point = i;
|
|
|
|
}
|
2007-11-02 20:18:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
if (distance > MIN_DISTANCE)
|
2008-02-09 18:01:51 +08:00
|
|
|
closest_point = ((gint) (x * 255.999) + 8) / 16;
|
2007-11-02 20:18:50 +08:00
|
|
|
|
|
|
|
return closest_point;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gimp_curve_set_point (GimpCurve *curve,
|
|
|
|
gint point,
|
2008-02-09 18:01:51 +08:00
|
|
|
gdouble x,
|
|
|
|
gdouble y)
|
2007-11-02 20:18:50 +08:00
|
|
|
{
|
|
|
|
g_return_if_fail (GIMP_IS_CURVE (curve));
|
2008-02-20 21:48:37 +08:00
|
|
|
g_return_if_fail (point >= 0 && point < GIMP_CURVE_NUM_POINTS);
|
|
|
|
g_return_if_fail (x == -1.0 || (x >= 0 && x <= 1.0));
|
|
|
|
g_return_if_fail (y == -1.0 || (y >= 0 && y <= 1.0));
|
2007-11-02 20:18:50 +08:00
|
|
|
|
|
|
|
if (curve->curve_type == GIMP_CURVE_FREE)
|
|
|
|
return;
|
|
|
|
|
2007-11-03 00:51:18 +08:00
|
|
|
g_object_freeze_notify (G_OBJECT (curve));
|
|
|
|
|
2008-02-10 01:40:57 +08:00
|
|
|
curve->points[point].x = x;
|
|
|
|
curve->points[point].y = y;
|
2007-11-02 20:18:50 +08:00
|
|
|
|
2007-11-03 00:51:18 +08:00
|
|
|
g_object_notify (G_OBJECT (curve), "points");
|
|
|
|
|
|
|
|
g_object_thaw_notify (G_OBJECT (curve));
|
2007-11-05 18:02:20 +08:00
|
|
|
|
|
|
|
gimp_data_dirty (GIMP_DATA (curve));
|
2007-11-02 20:18:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
gimp_curve_move_point (GimpCurve *curve,
|
|
|
|
gint point,
|
2008-02-09 18:01:51 +08:00
|
|
|
gdouble y)
|
2007-11-02 20:18:50 +08:00
|
|
|
{
|
|
|
|
g_return_if_fail (GIMP_IS_CURVE (curve));
|
2008-02-20 21:48:37 +08:00
|
|
|
g_return_if_fail (point >= 0 && point < GIMP_CURVE_NUM_POINTS);
|
|
|
|
g_return_if_fail (y >= 0 && y <= 1.0);
|
2007-11-02 20:18:50 +08:00
|
|
|
|
|
|
|
if (curve->curve_type == GIMP_CURVE_FREE)
|
|
|
|
return;
|
|
|
|
|
2007-11-03 00:51:18 +08:00
|
|
|
g_object_freeze_notify (G_OBJECT (curve));
|
|
|
|
|
2008-02-10 01:40:57 +08:00
|
|
|
curve->points[point].y = y;
|
2007-11-02 20:18:50 +08:00
|
|
|
|
2007-11-03 00:51:18 +08:00
|
|
|
g_object_notify (G_OBJECT (curve), "points");
|
|
|
|
|
|
|
|
g_object_thaw_notify (G_OBJECT (curve));
|
2007-11-05 18:02:20 +08:00
|
|
|
|
|
|
|
gimp_data_dirty (GIMP_DATA (curve));
|
2007-11-03 00:51:18 +08:00
|
|
|
}
|
|
|
|
|
2008-02-11 18:22:59 +08:00
|
|
|
void
|
|
|
|
gimp_curve_get_point (GimpCurve *curve,
|
|
|
|
gint point,
|
|
|
|
gdouble *x,
|
|
|
|
gdouble *y)
|
|
|
|
{
|
|
|
|
g_return_if_fail (GIMP_IS_CURVE (curve));
|
2008-02-20 21:48:37 +08:00
|
|
|
g_return_if_fail (point >= 0 && point < GIMP_CURVE_NUM_POINTS);
|
2008-02-11 18:22:59 +08:00
|
|
|
|
|
|
|
if (curve->curve_type == GIMP_CURVE_FREE)
|
|
|
|
return;
|
|
|
|
|
|
|
|
if (x) *x = curve->points[point].x;
|
|
|
|
if (y) *y = curve->points[point].y;
|
|
|
|
}
|
|
|
|
|
2007-11-03 00:51:18 +08:00
|
|
|
void
|
|
|
|
gimp_curve_set_curve (GimpCurve *curve,
|
2008-02-09 18:01:51 +08:00
|
|
|
gdouble x,
|
|
|
|
gdouble y)
|
2007-11-03 00:51:18 +08:00
|
|
|
{
|
|
|
|
g_return_if_fail (GIMP_IS_CURVE (curve));
|
2008-02-20 21:48:37 +08:00
|
|
|
g_return_if_fail (x >= 0 && x <= 1.0);
|
|
|
|
g_return_if_fail (y >= 0 && y <= 1.0);
|
2007-11-03 00:51:18 +08:00
|
|
|
|
|
|
|
if (curve->curve_type == GIMP_CURVE_SMOOTH)
|
|
|
|
return;
|
|
|
|
|
|
|
|
g_object_freeze_notify (G_OBJECT (curve));
|
|
|
|
|
2008-02-09 18:01:51 +08:00
|
|
|
curve->curve[(gint) (x * 255.999)] = y;
|
2007-11-03 00:51:18 +08:00
|
|
|
|
|
|
|
g_object_notify (G_OBJECT (curve), "curve");
|
|
|
|
|
|
|
|
g_object_thaw_notify (G_OBJECT (curve));
|
2007-11-05 18:02:20 +08:00
|
|
|
|
|
|
|
gimp_data_dirty (GIMP_DATA (curve));
|
2007-11-02 20:18:50 +08:00
|
|
|
}
|
|
|
|
|
2008-02-09 18:01:51 +08:00
|
|
|
gdouble
|
|
|
|
gimp_curve_map (GimpCurve *curve,
|
|
|
|
gdouble x)
|
|
|
|
{
|
|
|
|
gdouble value;
|
|
|
|
|
|
|
|
g_return_val_if_fail (GIMP_IS_CURVE (curve), 0.0);
|
|
|
|
|
|
|
|
if (x < 0.0)
|
|
|
|
{
|
|
|
|
value = curve->curve[0];
|
|
|
|
}
|
|
|
|
else if (x >= 1.0)
|
|
|
|
{
|
|
|
|
value = curve->curve[255];
|
|
|
|
}
|
|
|
|
else /* interpolate the curve */
|
|
|
|
{
|
|
|
|
gint index = floor (x * 255.0);
|
|
|
|
gdouble f = x * 255.0 - index;
|
|
|
|
|
|
|
|
value = ((1.0 - f) * curve->curve[index ] +
|
|
|
|
f * curve->curve[index + 1]);
|
|
|
|
}
|
|
|
|
|
|
|
|
return value;
|
|
|
|
}
|
|
|
|
|
2007-11-02 20:18:50 +08:00
|
|
|
void
|
|
|
|
gimp_curve_get_uchar (GimpCurve *curve,
|
|
|
|
guchar *dest_array)
|
|
|
|
{
|
2008-02-09 18:01:51 +08:00
|
|
|
gint i;
|
|
|
|
|
2007-11-02 20:18:50 +08:00
|
|
|
g_return_if_fail (GIMP_IS_CURVE (curve));
|
|
|
|
g_return_if_fail (dest_array != NULL);
|
|
|
|
|
2008-02-09 18:01:51 +08:00
|
|
|
for (i = 0; i < 256; i++)
|
|
|
|
dest_array[i] = curve->curve[i] * 255.999;
|
2007-11-02 20:18:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/* private functions */
|
|
|
|
|
2007-11-05 18:02:20 +08:00
|
|
|
static void
|
2007-11-02 20:18:50 +08:00
|
|
|
gimp_curve_calculate (GimpCurve *curve)
|
|
|
|
{
|
|
|
|
gint i;
|
|
|
|
gint points[GIMP_CURVE_NUM_POINTS];
|
|
|
|
gint num_pts;
|
|
|
|
gint p1, p2, p3, p4;
|
|
|
|
|
2007-11-05 18:02:20 +08:00
|
|
|
if (GIMP_DATA (curve)->freeze_count > 0)
|
|
|
|
return;
|
|
|
|
|
2007-11-02 20:18:50 +08:00
|
|
|
switch (curve->curve_type)
|
|
|
|
{
|
|
|
|
case GIMP_CURVE_SMOOTH:
|
|
|
|
/* cycle through the curves */
|
|
|
|
num_pts = 0;
|
|
|
|
for (i = 0; i < GIMP_CURVE_NUM_POINTS; i++)
|
2008-02-10 01:40:57 +08:00
|
|
|
if (curve->points[i].x >= 0.0)
|
2007-11-02 20:18:50 +08:00
|
|
|
points[num_pts++] = i;
|
|
|
|
|
|
|
|
/* Initialize boundary curve points */
|
|
|
|
if (num_pts != 0)
|
|
|
|
{
|
2008-02-10 01:40:57 +08:00
|
|
|
for (i = 0; i < (gint) (curve->points[points[0]].x * 255.999); i++)
|
|
|
|
curve->curve[i] = curve->points[points[0]].y;
|
2007-11-02 20:18:50 +08:00
|
|
|
|
2008-02-10 01:40:57 +08:00
|
|
|
for (i = (gint) (curve->points[points[num_pts - 1]].x * 255.999); i < 256; i++)
|
|
|
|
curve->curve[i] = curve->points[points[num_pts - 1]].y;
|
2007-11-02 20:18:50 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
for (i = 0; i < num_pts - 1; i++)
|
|
|
|
{
|
|
|
|
p1 = points[MAX (i - 1, 0)];
|
|
|
|
p2 = points[i];
|
|
|
|
p3 = points[i + 1];
|
|
|
|
p4 = points[MIN (i + 2, num_pts - 1)];
|
|
|
|
|
|
|
|
gimp_curve_plot (curve, p1, p2, p3, p4);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* ensure that the control points are used exactly */
|
|
|
|
for (i = 0; i < num_pts; i++)
|
|
|
|
{
|
2008-02-10 01:40:57 +08:00
|
|
|
gdouble x = curve->points[points[i]].x;
|
|
|
|
gdouble y = curve->points[points[i]].y;
|
2007-11-02 20:18:50 +08:00
|
|
|
|
2008-02-09 18:01:51 +08:00
|
|
|
curve->curve[(gint) (x * 255.999)] = y;
|
2007-11-02 20:18:50 +08:00
|
|
|
}
|
2007-11-03 00:51:18 +08:00
|
|
|
|
|
|
|
g_object_notify (G_OBJECT (curve), "curve");
|
2007-11-02 20:18:50 +08:00
|
|
|
break;
|
|
|
|
|
|
|
|
case GIMP_CURVE_FREE:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* This function calculates the curve values between the control points
|
|
|
|
* p2 and p3, taking the potentially existing neighbors p1 and p4 into
|
|
|
|
* account.
|
|
|
|
*
|
|
|
|
* This function uses a cubic bezier curve for the individual segments and
|
|
|
|
* calculates the necessary intermediate control points depending on the
|
|
|
|
* neighbor curve control points.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
gimp_curve_plot (GimpCurve *curve,
|
|
|
|
gint p1,
|
|
|
|
gint p2,
|
|
|
|
gint p3,
|
|
|
|
gint p4)
|
|
|
|
{
|
|
|
|
gint i;
|
|
|
|
gdouble x0, x3;
|
|
|
|
gdouble y0, y1, y2, y3;
|
|
|
|
gdouble dx, dy;
|
|
|
|
gdouble y, t;
|
|
|
|
gdouble slope;
|
|
|
|
|
|
|
|
/* the outer control points for the bezier curve. */
|
2008-02-10 01:40:57 +08:00
|
|
|
x0 = curve->points[p2].x;
|
|
|
|
y0 = curve->points[p2].y;
|
|
|
|
x3 = curve->points[p3].x;
|
|
|
|
y3 = curve->points[p3].y;
|
2007-11-02 20:18:50 +08:00
|
|
|
|
|
|
|
/*
|
|
|
|
* the x values of the inner control points are fixed at
|
|
|
|
* x1 = 1/3*x0 + 2/3*x3 and x2 = 2/3*x0 + 1/3*x3
|
|
|
|
* this ensures that the x values increase linearily with the
|
|
|
|
* parameter t and enables us to skip the calculation of the x
|
|
|
|
* values altogehter - just calculate y(t) evenly spaced.
|
|
|
|
*/
|
|
|
|
|
|
|
|
dx = x3 - x0;
|
|
|
|
dy = y3 - y0;
|
|
|
|
|
|
|
|
g_return_if_fail (dx > 0);
|
|
|
|
|
|
|
|
if (p1 == p2 && p3 == p4)
|
|
|
|
{
|
|
|
|
/* No information about the neighbors,
|
|
|
|
* calculate y1 and y2 to get a straight line
|
|
|
|
*/
|
|
|
|
y1 = y0 + dy / 3.0;
|
|
|
|
y2 = y0 + dy * 2.0 / 3.0;
|
|
|
|
}
|
|
|
|
else if (p1 == p2 && p3 != p4)
|
|
|
|
{
|
|
|
|
/* only the right neighbor is available. Make the tangent at the
|
|
|
|
* right endpoint parallel to the line between the left endpoint
|
|
|
|
* and the right neighbor. Then point the tangent at the left towards
|
|
|
|
* the control handle of the right tangent, to ensure that the curve
|
|
|
|
* does not have an inflection point.
|
|
|
|
*/
|
2008-02-10 01:40:57 +08:00
|
|
|
slope = (curve->points[p4].y - y0) /
|
|
|
|
(curve->points[p4].x - x0);
|
2007-11-02 20:18:50 +08:00
|
|
|
|
|
|
|
y2 = y3 - slope * dx / 3.0;
|
|
|
|
y1 = y0 + (y2 - y0) / 2.0;
|
|
|
|
}
|
|
|
|
else if (p1 != p2 && p3 == p4)
|
|
|
|
{
|
|
|
|
/* see previous case */
|
2008-02-10 01:40:57 +08:00
|
|
|
slope = (y3 - curve->points[p1].y) /
|
|
|
|
(x3 - curve->points[p1].x);
|
2007-11-02 20:18:50 +08:00
|
|
|
|
|
|
|
y1 = y0 + slope * dx / 3.0;
|
|
|
|
y2 = y3 + (y1 - y3) / 2.0;
|
|
|
|
}
|
|
|
|
else /* (p1 != p2 && p3 != p4) */
|
|
|
|
{
|
|
|
|
/* Both neighbors are available. Make the tangents at the endpoints
|
|
|
|
* parallel to the line between the opposite endpoint and the adjacent
|
|
|
|
* neighbor.
|
|
|
|
*/
|
2008-02-10 01:40:57 +08:00
|
|
|
slope = (y3 - curve->points[p1].y) /
|
|
|
|
(x3 - curve->points[p1].x);
|
2007-11-02 20:18:50 +08:00
|
|
|
|
|
|
|
y1 = y0 + slope * dx / 3.0;
|
|
|
|
|
2008-02-10 01:40:57 +08:00
|
|
|
slope = (curve->points[p4].y - y0) /
|
|
|
|
(curve->points[p4].x - x0);
|
2007-11-02 20:18:50 +08:00
|
|
|
|
|
|
|
y2 = y3 - slope * dx / 3.0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* finally calculate the y(t) values for the given bezier values. We can
|
|
|
|
* use homogenously distributed values for t, since x(t) increases linearily.
|
|
|
|
*/
|
2008-02-09 18:01:51 +08:00
|
|
|
for (i = 0; i <= (gint) (dx * 255.999); i++)
|
2007-11-02 20:18:50 +08:00
|
|
|
{
|
2008-02-09 18:01:51 +08:00
|
|
|
t = i / dx / 255.0;
|
2007-11-02 20:18:50 +08:00
|
|
|
y = y0 * (1-t) * (1-t) * (1-t) +
|
|
|
|
3 * y1 * (1-t) * (1-t) * t +
|
|
|
|
3 * y2 * (1-t) * t * t +
|
|
|
|
y3 * t * t * t;
|
|
|
|
|
2008-02-09 18:01:51 +08:00
|
|
|
curve->curve[(gint) (x0 * 255.999) + i] = CLAMP (y, 0.0, 1.0);
|
2007-11-02 20:18:50 +08:00
|
|
|
}
|
|
|
|
}
|