PIKApp/app/core/pikabrushpipe.c

425 lines
14 KiB
C
Raw Permalink Normal View History

2023-09-26 00:35:21 +02:00
/* PIKA - Photo and Image Kooker Application
* a rebranding of The GNU Image Manipulation Program (created with heckimp)
* A derived work which may be trivial. However, any changes may be (C)2023 by Aldercone Studio
*
* Original copyright, applying to most contents (license remains unchanged):
* Copyright (C) 1995 Spencer Kimball and Peter Mattis
* Copyright (C) 1999 Adrian Likins and Tor Lillqvist
*
* 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 3 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, see <https://www.gnu.org/licenses/>.
*/
#include "config.h"
#include <gdk-pixbuf/gdk-pixbuf.h>
#include <gegl.h>
#include "libpikabase/pikaparasiteio.h"
#include "libpikamath/pikamath.h"
#include "core-types.h"
#include "pikabrush-private.h"
#include "pikabrushpipe.h"
#include "pikabrushpipe-load.h"
#include "pikabrushpipe-save.h"
#include "pikatempbuf.h"
static void pika_brush_pipe_finalize (GObject *object);
static gint64 pika_brush_pipe_get_memsize (PikaObject *object,
gint64 *gui_size);
static gboolean pika_brush_pipe_get_popup_size (PikaViewable *viewable,
gint width,
gint height,
gboolean dot_for_dot,
gint *popup_width,
gint *popup_height);
static const gchar * pika_brush_pipe_get_extension (PikaData *data);
static void pika_brush_pipe_copy (PikaData *data,
PikaData *src_data);
static void pika_brush_pipe_begin_use (PikaBrush *brush);
static void pika_brush_pipe_end_use (PikaBrush *brush);
static PikaBrush * pika_brush_pipe_select_brush (PikaBrush *brush,
const PikaCoords *last_coords,
const PikaCoords *current_coords);
static gboolean pika_brush_pipe_want_null_motion (PikaBrush *brush,
const PikaCoords *last_coords,
const PikaCoords *current_coords);
G_DEFINE_TYPE (PikaBrushPipe, pika_brush_pipe, PIKA_TYPE_BRUSH);
#define parent_class pika_brush_pipe_parent_class
static void
pika_brush_pipe_class_init (PikaBrushPipeClass *klass)
{
GObjectClass *object_class = G_OBJECT_CLASS (klass);
PikaObjectClass *pika_object_class = PIKA_OBJECT_CLASS (klass);
PikaViewableClass *viewable_class = PIKA_VIEWABLE_CLASS (klass);
PikaDataClass *data_class = PIKA_DATA_CLASS (klass);
PikaBrushClass *brush_class = PIKA_BRUSH_CLASS (klass);
object_class->finalize = pika_brush_pipe_finalize;
pika_object_class->get_memsize = pika_brush_pipe_get_memsize;
viewable_class->get_popup_size = pika_brush_pipe_get_popup_size;
data_class->save = pika_brush_pipe_save;
data_class->get_extension = pika_brush_pipe_get_extension;
data_class->copy = pika_brush_pipe_copy;
brush_class->begin_use = pika_brush_pipe_begin_use;
brush_class->end_use = pika_brush_pipe_end_use;
brush_class->select_brush = pika_brush_pipe_select_brush;
brush_class->want_null_motion = pika_brush_pipe_want_null_motion;
}
static void
pika_brush_pipe_init (PikaBrushPipe *pipe)
{
pipe->current = NULL;
pipe->dimension = 0;
pipe->rank = NULL;
pipe->stride = NULL;
pipe->n_brushes = 0;
pipe->brushes = NULL;
pipe->select = NULL;
pipe->index = NULL;
}
static void
pika_brush_pipe_finalize (GObject *object)
{
PikaBrushPipe *pipe = PIKA_BRUSH_PIPE (object);
g_clear_pointer (&pipe->rank, g_free);
g_clear_pointer (&pipe->stride, g_free);
g_clear_pointer (&pipe->select, g_free);
g_clear_pointer (&pipe->index, g_free);
g_clear_pointer (&pipe->params, g_free);
if (pipe->brushes)
{
gint i;
for (i = 0; i < pipe->n_brushes; i++)
if (pipe->brushes[i])
g_object_unref (pipe->brushes[i]);
g_clear_pointer (&pipe->brushes, g_free);
}
PIKA_BRUSH (pipe)->priv->mask = NULL;
PIKA_BRUSH (pipe)->priv->pixmap = NULL;
G_OBJECT_CLASS (parent_class)->finalize (object);
}
static gint64
pika_brush_pipe_get_memsize (PikaObject *object,
gint64 *gui_size)
{
PikaBrushPipe *pipe = PIKA_BRUSH_PIPE (object);
gint64 memsize = 0;
gint i;
memsize += pipe->dimension * (sizeof (gint) /* rank */ +
sizeof (gint) /* stride */ +
sizeof (PipeSelectModes));
for (i = 0; i < pipe->n_brushes; i++)
memsize += pika_object_get_memsize (PIKA_OBJECT (pipe->brushes[i]),
gui_size);
return memsize + PIKA_OBJECT_CLASS (parent_class)->get_memsize (object,
gui_size);
}
static gboolean
pika_brush_pipe_get_popup_size (PikaViewable *viewable,
gint width,
gint height,
gboolean dot_for_dot,
gint *popup_width,
gint *popup_height)
{
return pika_viewable_get_size (viewable, popup_width, popup_height);
}
static const gchar *
pika_brush_pipe_get_extension (PikaData *data)
{
return PIKA_BRUSH_PIPE_FILE_EXTENSION;
}
static void
pika_brush_pipe_copy (PikaData *data,
PikaData *src_data)
{
PikaBrushPipe *pipe = PIKA_BRUSH_PIPE (data);
PikaBrushPipe *src_pipe = PIKA_BRUSH_PIPE (src_data);
gint i;
pipe->dimension = src_pipe->dimension;
g_clear_pointer (&pipe->rank, g_free);
pipe->rank = g_memdup2 (src_pipe->rank,
pipe->dimension * sizeof (gint));
g_clear_pointer (&pipe->stride, g_free);
pipe->stride = g_memdup2 (src_pipe->stride,
pipe->dimension * sizeof (gint));
g_clear_pointer (&pipe->select, g_free);
pipe->select = g_memdup2 (src_pipe->select,
pipe->dimension * sizeof (PipeSelectModes));
g_clear_pointer (&pipe->index, g_free);
pipe->index = g_memdup2 (src_pipe->index,
pipe->dimension * sizeof (gint));
for (i = 0; i < pipe->n_brushes; i++)
if (pipe->brushes[i])
g_object_unref (pipe->brushes[i]);
g_clear_pointer (&pipe->brushes, g_free);
pipe->n_brushes = src_pipe->n_brushes;
pipe->brushes = g_new0 (PikaBrush *, pipe->n_brushes);
for (i = 0; i < pipe->n_brushes; i++)
if (src_pipe->brushes[i])
{
pipe->brushes[i] =
PIKA_BRUSH (pika_data_duplicate (PIKA_DATA (src_pipe->brushes[i])));
pika_object_set_name (PIKA_OBJECT (pipe->brushes[i]),
pika_object_get_name (src_pipe->brushes[i]));
}
g_clear_pointer (&pipe->params, g_free);
pipe->params = g_strdup (src_pipe->params);
pipe->current = pipe->brushes[0];
PIKA_BRUSH (pipe)->priv->spacing = pipe->current->priv->spacing;
PIKA_BRUSH (pipe)->priv->x_axis = pipe->current->priv->x_axis;
PIKA_BRUSH (pipe)->priv->y_axis = pipe->current->priv->y_axis;
PIKA_BRUSH (pipe)->priv->mask = pipe->current->priv->mask;
PIKA_BRUSH (pipe)->priv->pixmap = pipe->current->priv->pixmap;
pika_data_dirty (data);
}
static void
pika_brush_pipe_begin_use (PikaBrush *brush)
{
PikaBrushPipe *pipe = PIKA_BRUSH_PIPE (brush);
gint i;
PIKA_BRUSH_CLASS (parent_class)->begin_use (brush);
for (i = 0; i < pipe->n_brushes; i++)
if (pipe->brushes[i])
pika_brush_begin_use (pipe->brushes[i]);
}
static void
pika_brush_pipe_end_use (PikaBrush *brush)
{
PikaBrushPipe *pipe = PIKA_BRUSH_PIPE (brush);
gint i;
PIKA_BRUSH_CLASS (parent_class)->end_use (brush);
for (i = 0; i < pipe->n_brushes; i++)
if (pipe->brushes[i])
pika_brush_end_use (pipe->brushes[i]);
}
static PikaBrush *
pika_brush_pipe_select_brush (PikaBrush *brush,
const PikaCoords *last_coords,
const PikaCoords *current_coords)
{
PikaBrushPipe *pipe = PIKA_BRUSH_PIPE (brush);
gint i, brushix, ix;
if (pipe->n_brushes == 1)
return PIKA_BRUSH (pipe->current);
brushix = 0;
for (i = 0; i < pipe->dimension; i++)
{
switch (pipe->select[i])
{
case PIPE_SELECT_INCREMENTAL:
ix = (pipe->index[i] + 1) % pipe->rank[i];
break;
case PIPE_SELECT_ANGULAR:
/* Coords angle is already nomalized,
* offset by 90 degrees is still needed
* because hoses were made PS compatible*/
ix = (gint) RINT ((1.0 - current_coords->direction + 0.25) * pipe->rank[i]) % pipe->rank[i];
break;
case PIPE_SELECT_VELOCITY:
ix = ROUND (current_coords->velocity * pipe->rank[i]);
break;
case PIPE_SELECT_RANDOM:
/* This probably isn't the right way */
ix = g_random_int_range (0, pipe->rank[i]);
break;
case PIPE_SELECT_PRESSURE:
ix = RINT (current_coords->pressure * (pipe->rank[i] - 1));
break;
case PIPE_SELECT_TILT_X:
ix = RINT (current_coords->xtilt / 2.0 * pipe->rank[i]) + pipe->rank[i] / 2;
break;
case PIPE_SELECT_TILT_Y:
ix = RINT (current_coords->ytilt / 2.0 * pipe->rank[i]) + pipe->rank[i] / 2;
break;
case PIPE_SELECT_CONSTANT:
default:
ix = pipe->index[i];
break;
}
pipe->index[i] = CLAMP (ix, 0, pipe->rank[i] - 1);
brushix += pipe->stride[i] * pipe->index[i];
}
/* Make sure is inside bounds */
brushix = CLAMP (brushix, 0, pipe->n_brushes - 1);
pipe->current = pipe->brushes[brushix];
return PIKA_BRUSH (pipe->current);
}
static gboolean
pika_brush_pipe_want_null_motion (PikaBrush *brush,
const PikaCoords *last_coords,
const PikaCoords *current_coords)
{
PikaBrushPipe *pipe = PIKA_BRUSH_PIPE (brush);
gint i;
if (pipe->n_brushes == 1)
return TRUE;
for (i = 0; i < pipe->dimension; i++)
if (pipe->select[i] == PIPE_SELECT_ANGULAR)
return FALSE;
return TRUE;
}
/* public functions */
gboolean
pika_brush_pipe_set_params (PikaBrushPipe *pipe,
const gchar *paramstring)
{
gint totalcells;
gint i;
g_return_val_if_fail (PIKA_IS_BRUSH_PIPE (pipe), FALSE);
g_return_val_if_fail (pipe->dimension == 0, FALSE); /* only on a new pipe! */
if (paramstring && *paramstring)
{
PikaPixPipeParams params;
pika_pixpipe_params_init (&params);
pika_pixpipe_params_parse (paramstring, &params);
pipe->dimension = params.dim;
pipe->rank = g_new0 (gint, pipe->dimension);
pipe->select = g_new0 (PipeSelectModes, pipe->dimension);
pipe->index = g_new0 (gint, pipe->dimension);
/* placement is not used at all ?? */
for (i = 0; i < pipe->dimension; i++)
{
pipe->rank[i] = MAX (1, params.rank[i]);
if (strcmp (params.selection[i], "incremental") == 0)
pipe->select[i] = PIPE_SELECT_INCREMENTAL;
else if (strcmp (params.selection[i], "angular") == 0)
pipe->select[i] = PIPE_SELECT_ANGULAR;
else if (strcmp (params.selection[i], "velocity") == 0)
pipe->select[i] = PIPE_SELECT_VELOCITY;
else if (strcmp (params.selection[i], "random") == 0)
pipe->select[i] = PIPE_SELECT_RANDOM;
else if (strcmp (params.selection[i], "pressure") == 0)
pipe->select[i] = PIPE_SELECT_PRESSURE;
else if (strcmp (params.selection[i], "xtilt") == 0)
pipe->select[i] = PIPE_SELECT_TILT_X;
else if (strcmp (params.selection[i], "ytilt") == 0)
pipe->select[i] = PIPE_SELECT_TILT_Y;
else
pipe->select[i] = PIPE_SELECT_CONSTANT;
pipe->index[i] = 0;
}
pika_pixpipe_params_free (&params);
pipe->params = g_strdup (paramstring);
}
else
{
pipe->dimension = 1;
pipe->rank = g_new (gint, 1);
pipe->rank[0] = pipe->n_brushes;
pipe->select = g_new (PipeSelectModes, 1);
pipe->select[0] = PIPE_SELECT_INCREMENTAL;
pipe->index = g_new (gint, 1);
pipe->index[0] = 0;
}
totalcells = 1; /* Not all necessarily present, maybe */
for (i = 0; i < pipe->dimension; i++)
totalcells *= pipe->rank[i];
pipe->stride = g_new0 (gint, pipe->dimension);
for (i = 0; i < pipe->dimension; i++)
{
if (i == 0)
pipe->stride[i] = totalcells / pipe->rank[i];
else
pipe->stride[i] = pipe->stride[i-1] / pipe->rank[i];
}
if (pipe->stride[pipe->dimension - 1] != 1)
return FALSE;
return TRUE;
}