2006-11-15 18:37:53 -05:00
|
|
|
/*
|
|
|
|
* Clutter.
|
|
|
|
*
|
|
|
|
* An OpenGL based 'interactive canvas' library.
|
|
|
|
*
|
|
|
|
* Authored By Matthew Allum <mallum@openedhand.com>
|
|
|
|
*
|
|
|
|
* Copyright (C) 2006 OpenedHand
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library 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
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, write to the
|
|
|
|
* Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
|
|
* Boston, MA 02111-1307, USA.
|
|
|
|
*/
|
|
|
|
|
2006-11-17 13:24:28 -05:00
|
|
|
/**
|
|
|
|
* SECTION:clutter-behaviour-scale
|
|
|
|
* @short_description: A behaviour class interpolating actors size between
|
|
|
|
* two values.
|
|
|
|
*
|
2007-03-25 18:37:28 -04:00
|
|
|
* A #ClutterBehaviourScale interpolates actors size between two values.
|
2006-11-17 13:24:28 -05:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2006-11-15 18:37:53 -05:00
|
|
|
#ifdef HAVE_CONFIG_H
|
|
|
|
#include "config.h"
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "clutter-actor.h"
|
|
|
|
#include "clutter-behaviour.h"
|
|
|
|
#include "clutter-enum-types.h"
|
|
|
|
#include "clutter-main.h"
|
|
|
|
#include "clutter-fixed.h"
|
|
|
|
#include "clutter-behaviour-scale.h"
|
2006-11-21 Emmanuele Bassi <ebassi@openedhand.com>
* configure.ac: Enable debug messages also when
--enable-debug is set to "minimum".
* clutter/Makefile.am:
* clutter/clutter-debug.h: Move all debugging macros inside
this private header; make all debug macros depend on the
CLUTTER_ENABLE_DEBUG compile time define, controlled by
the --enable-debug configure switch; add G_LOG_DOMAIN define.
* clutter/clutter-main.c: Clean up the debug stuff; add
command line argument parsing using GOption; the debug
messages now are triggered like this:
CLUTTER_DEBUG=section:section:... clutter-app
or like this:
clutter-app --clutter-debug=section:section:...
where "section" is one of the sections listed in clutter-main.c,
or "all", for all sections; each section is bound to a flag,
which can be used to define a domain when adding a debug note
using the CLUTTER_NOTE() macro; the old CLUTTER_DBG() macro is
just a wrapper around that, under the CLUTTER_DEBUG_MISC domain;
CLUTTER_NOTE() is used like this:
CLUTTER_NOTE (DOMAIN, log-function);
where log function is g_printerr(), g_message(), g_warning(),
g_critical() or directly g_log() - for instance:
CLUTTER_NOTE (PANGO, g_warning ("Cache miss: %d", glyph));
will print the warning only if the "pango" flag has been
set to the CLUTTER_DEBUG envvar or passed to the --clutter-debug
command line argument.
similar to CLUTTER_SHOW_FPS, there's also the --clutter-show-fps
command line switch; also, the --display and --screen command
line switches have been added: the first overrides the DISPLAY
envvar and the second controls the X screen used by Clutter to
get the root window on the display.
* clutter/clutter-main.h:
* clutter/clutter-main.c: Add extended support for GOption
in Clutter; use clutter_init_with_args() to let Clutter
parse your own command line arguments; use instead
clutter_get_option_group() to get the GOptionGroup used by
Clutter if you want to do the parsing yourself with
g_option_context_parse(). The init sequence has been verified,
updated and moved into common functions where possible.
* clutter/pango/pangoclutter-render.c:
* clutter/*.c: Include "clutter-debug.h" where needed; use
CLUTTER_NOTE() instead of CLUTTER_DBG().
* examples/super-oh.c: Use the new clutter_init_with_args()
function, and add a --num-hands command line switch to
the SuperOH example code controlling the number of hands at
runtime.
2006-11-21 16:27:53 -05:00
|
|
|
#include "clutter-private.h"
|
|
|
|
#include "clutter-debug.h"
|
2006-11-15 18:37:53 -05:00
|
|
|
|
|
|
|
#include <math.h>
|
|
|
|
|
|
|
|
G_DEFINE_TYPE (ClutterBehaviourScale,
|
|
|
|
clutter_behaviour_scale,
|
|
|
|
CLUTTER_TYPE_BEHAVIOUR);
|
|
|
|
|
|
|
|
struct _ClutterBehaviourScalePrivate
|
|
|
|
{
|
2007-11-13 08:21:56 -05:00
|
|
|
ClutterFixed scale_start;
|
2006-11-15 18:37:53 -05:00
|
|
|
ClutterFixed scale_end;
|
|
|
|
|
|
|
|
ClutterGravity gravity;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define CLUTTER_BEHAVIOUR_SCALE_GET_PRIVATE(obj) \
|
|
|
|
(G_TYPE_INSTANCE_GET_PRIVATE ((obj), \
|
|
|
|
CLUTTER_TYPE_BEHAVIOUR_SCALE, \
|
|
|
|
ClutterBehaviourScalePrivate))
|
|
|
|
|
2006-12-04 11:26:35 -05:00
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
|
|
|
|
2007-11-13 08:21:56 -05:00
|
|
|
PROP_SCALE_START,
|
2006-12-04 11:26:35 -05:00
|
|
|
PROP_SCALE_END,
|
|
|
|
PROP_SCALE_GRAVITY
|
|
|
|
};
|
|
|
|
|
2006-11-15 18:37:53 -05:00
|
|
|
static void
|
2006-12-08 11:12:52 -05:00
|
|
|
scale_frame_foreach (ClutterBehaviour *behaviour,
|
|
|
|
ClutterActor *actor,
|
|
|
|
gpointer data)
|
2006-11-15 18:37:53 -05:00
|
|
|
{
|
2007-05-18 03:30:06 -04:00
|
|
|
ClutterBehaviourScalePrivate *priv =
|
|
|
|
CLUTTER_BEHAVIOUR_SCALE (behaviour)->priv;
|
|
|
|
ClutterFixed scale = GPOINTER_TO_UINT (data);
|
|
|
|
ClutterGravity gravity = priv->gravity;
|
2006-11-15 18:37:53 -05:00
|
|
|
|
2007-05-25 08:07:24 -04:00
|
|
|
clutter_actor_set_scale_with_gravityx (actor, scale, scale, gravity);
|
2006-11-15 18:37:53 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2006-11-17 13:45:31 -05:00
|
|
|
clutter_behaviour_scale_alpha_notify (ClutterBehaviour *behave,
|
|
|
|
guint32 alpha_value)
|
2006-11-15 18:37:53 -05:00
|
|
|
{
|
2007-03-25 18:37:28 -04:00
|
|
|
ClutterFixed scale, factor;
|
2006-12-08 11:12:52 -05:00
|
|
|
ClutterBehaviourScalePrivate *priv;
|
|
|
|
|
|
|
|
priv = CLUTTER_BEHAVIOUR_SCALE (behave)->priv;
|
|
|
|
|
2007-01-17 08:25:51 -05:00
|
|
|
factor = CLUTTER_INT_TO_FIXED (alpha_value) / CLUTTER_ALPHA_MAX_ALPHA;
|
2007-11-13 08:21:56 -05:00
|
|
|
scale = CLUTTER_FIXED_MUL (factor, (priv->scale_end - priv->scale_start));
|
|
|
|
scale += priv->scale_start;
|
2006-12-08 11:12:52 -05:00
|
|
|
|
2006-11-15 18:37:53 -05:00
|
|
|
clutter_behaviour_actors_foreach (behave,
|
2006-12-08 11:12:52 -05:00
|
|
|
scale_frame_foreach,
|
|
|
|
GUINT_TO_POINTER (scale));
|
2006-11-15 18:37:53 -05:00
|
|
|
}
|
|
|
|
|
2006-12-04 11:26:35 -05:00
|
|
|
static void
|
|
|
|
clutter_behaviour_scale_set_property (GObject *gobject,
|
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
ClutterBehaviourScalePrivate *priv;
|
|
|
|
|
|
|
|
priv = CLUTTER_BEHAVIOUR_SCALE (gobject)->priv;
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
2007-11-13 08:21:56 -05:00
|
|
|
case PROP_SCALE_START:
|
|
|
|
priv->scale_start = CLUTTER_FLOAT_TO_FIXED (g_value_get_double (value));
|
2006-12-04 11:26:35 -05:00
|
|
|
break;
|
|
|
|
case PROP_SCALE_END:
|
|
|
|
priv->scale_end = CLUTTER_FLOAT_TO_FIXED (g_value_get_double (value));
|
|
|
|
break;
|
|
|
|
case PROP_SCALE_GRAVITY:
|
|
|
|
priv->gravity = g_value_get_enum (value);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (gobject, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clutter_behaviour_scale_get_property (GObject *gobject,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
ClutterBehaviourScalePrivate *priv;
|
|
|
|
|
|
|
|
priv = CLUTTER_BEHAVIOUR_SCALE (gobject)->priv;
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
2007-11-13 08:21:56 -05:00
|
|
|
case PROP_SCALE_START:
|
|
|
|
g_value_set_double (value, CLUTTER_FIXED_TO_FLOAT (priv->scale_start));
|
2006-12-04 11:26:35 -05:00
|
|
|
break;
|
|
|
|
case PROP_SCALE_END:
|
|
|
|
g_value_set_double (value, CLUTTER_FIXED_TO_FLOAT (priv->scale_end));
|
|
|
|
break;
|
|
|
|
case PROP_SCALE_GRAVITY:
|
|
|
|
g_value_set_enum (value, priv->gravity);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (gobject, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-11-15 18:37:53 -05:00
|
|
|
static void
|
|
|
|
clutter_behaviour_scale_class_init (ClutterBehaviourScaleClass *klass)
|
|
|
|
{
|
2006-12-04 11:26:35 -05:00
|
|
|
GObjectClass *gobject_class = G_OBJECT_CLASS (klass);
|
|
|
|
ClutterBehaviourClass *behave_class = CLUTTER_BEHAVIOUR_CLASS (klass);
|
|
|
|
|
|
|
|
gobject_class->set_property = clutter_behaviour_scale_set_property;
|
|
|
|
gobject_class->get_property = clutter_behaviour_scale_get_property;
|
|
|
|
|
|
|
|
/**
|
2007-11-13 08:21:56 -05:00
|
|
|
* ClutterBehaviourScale:scale-start:
|
2006-12-04 11:26:35 -05:00
|
|
|
*
|
|
|
|
* The initial scaling factor for the actors.
|
|
|
|
*
|
|
|
|
* Since: 0.2
|
|
|
|
*/
|
|
|
|
g_object_class_install_property (gobject_class,
|
2007-11-13 08:21:56 -05:00
|
|
|
PROP_SCALE_START,
|
|
|
|
g_param_spec_double ("scale-start",
|
|
|
|
"Start Scale",
|
2006-12-04 11:26:35 -05:00
|
|
|
"Initial scale",
|
2007-01-04 14:56:01 -05:00
|
|
|
0.0, G_MAXDOUBLE,
|
2006-12-04 11:26:35 -05:00
|
|
|
1.0,
|
|
|
|
CLUTTER_PARAM_READWRITE));
|
|
|
|
/**
|
|
|
|
* ClutterBehaviourScale:scale-end:
|
|
|
|
*
|
|
|
|
* The final scaling factor for the actors.
|
|
|
|
*
|
|
|
|
* Since: 0.2
|
|
|
|
*/
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_SCALE_END,
|
|
|
|
g_param_spec_double ("scale-end",
|
2007-11-13 08:21:56 -05:00
|
|
|
"End Scale",
|
2006-12-04 11:26:35 -05:00
|
|
|
"Final scale",
|
2007-01-04 14:56:01 -05:00
|
|
|
0.0, G_MAXDOUBLE,
|
2006-12-04 11:26:35 -05:00
|
|
|
1.0,
|
|
|
|
CLUTTER_PARAM_READWRITE));
|
|
|
|
/**
|
|
|
|
* ClutterBehaviourScale:gravity:
|
|
|
|
*
|
|
|
|
* The gravity of the scaling.
|
|
|
|
*
|
|
|
|
* Since: 0.2
|
|
|
|
*/
|
|
|
|
g_object_class_install_property (gobject_class,
|
|
|
|
PROP_SCALE_GRAVITY,
|
|
|
|
g_param_spec_enum ("scale-gravity",
|
|
|
|
"Scale Gravity",
|
|
|
|
"The gravity of the scaling",
|
|
|
|
CLUTTER_TYPE_GRAVITY,
|
|
|
|
CLUTTER_GRAVITY_CENTER,
|
|
|
|
CLUTTER_PARAM_READWRITE));
|
2006-11-15 18:37:53 -05:00
|
|
|
|
|
|
|
|
|
|
|
behave_class->alpha_notify = clutter_behaviour_scale_alpha_notify;
|
|
|
|
|
|
|
|
g_type_class_add_private (klass, sizeof (ClutterBehaviourScalePrivate));
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clutter_behaviour_scale_init (ClutterBehaviourScale *self)
|
|
|
|
{
|
|
|
|
ClutterBehaviourScalePrivate *priv;
|
|
|
|
|
|
|
|
self->priv = priv = CLUTTER_BEHAVIOUR_SCALE_GET_PRIVATE (self);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* clutter_behaviour_scale_new:
|
|
|
|
* @alpha: a #ClutterAlpha
|
2007-11-13 08:21:56 -05:00
|
|
|
* @scale_start: initial scale factor
|
2006-11-17 13:24:28 -05:00
|
|
|
* @scale_end: final scale factor
|
2007-07-25 18:09:53 -04:00
|
|
|
* @gravity: a #ClutterGravity for the scale.
|
2006-11-15 18:37:53 -05:00
|
|
|
*
|
2006-11-17 13:24:28 -05:00
|
|
|
* Creates a new #ClutterBehaviourScale instance.
|
2006-11-15 18:37:53 -05:00
|
|
|
*
|
|
|
|
* Return value: the newly created #ClutterBehaviourScale
|
2006-11-17 13:24:28 -05:00
|
|
|
*
|
|
|
|
* Since: 0.2
|
2006-11-15 18:37:53 -05:00
|
|
|
*/
|
|
|
|
ClutterBehaviour *
|
|
|
|
clutter_behaviour_scale_new (ClutterAlpha *alpha,
|
2007-11-13 08:21:56 -05:00
|
|
|
gdouble scale_start,
|
2006-11-15 18:37:53 -05:00
|
|
|
gdouble scale_end,
|
|
|
|
ClutterGravity gravity)
|
2006-11-17 13:24:28 -05:00
|
|
|
{
|
2007-03-25 18:37:28 -04:00
|
|
|
g_return_val_if_fail (alpha == NULL || CLUTTER_IS_ALPHA (alpha), NULL);
|
|
|
|
|
2006-11-17 13:24:28 -05:00
|
|
|
return clutter_behaviour_scale_newx (alpha,
|
2007-11-13 08:21:56 -05:00
|
|
|
CLUTTER_FLOAT_TO_FIXED (scale_start),
|
2006-11-17 13:24:28 -05:00
|
|
|
CLUTTER_FLOAT_TO_FIXED (scale_end),
|
|
|
|
gravity);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* clutter_behaviour_scale_newx:
|
|
|
|
* @alpha: a #ClutterAlpha
|
2007-11-13 08:21:56 -05:00
|
|
|
* @scale_start: initial scale factor
|
2006-11-17 13:24:28 -05:00
|
|
|
* @scale_end: final scale factor
|
2007-07-25 18:09:53 -04:00
|
|
|
* @gravity: a #ClutterGravity for the scale.
|
2006-11-17 13:24:28 -05:00
|
|
|
*
|
|
|
|
* A fixed point implementation of clutter_behaviour_scale_new()
|
|
|
|
*
|
|
|
|
* Return value: the newly created #ClutterBehaviourScale
|
|
|
|
*
|
|
|
|
* Since: 0.2
|
|
|
|
*/
|
|
|
|
ClutterBehaviour *
|
|
|
|
clutter_behaviour_scale_newx (ClutterAlpha *alpha,
|
2007-11-13 08:21:56 -05:00
|
|
|
ClutterFixed scale_start,
|
2006-11-17 13:24:28 -05:00
|
|
|
ClutterFixed scale_end,
|
|
|
|
ClutterGravity gravity)
|
2006-11-15 18:37:53 -05:00
|
|
|
{
|
|
|
|
ClutterBehaviourScale *behave;
|
|
|
|
|
2007-03-25 18:37:28 -04:00
|
|
|
g_return_val_if_fail (alpha == NULL || CLUTTER_IS_ALPHA (alpha), NULL);
|
|
|
|
|
2006-11-15 18:37:53 -05:00
|
|
|
behave = g_object_new (CLUTTER_TYPE_BEHAVIOUR_SCALE,
|
|
|
|
"alpha", alpha,
|
|
|
|
NULL);
|
|
|
|
|
2007-11-13 08:21:56 -05:00
|
|
|
behave->priv->scale_start = scale_start;
|
2006-11-17 13:24:28 -05:00
|
|
|
behave->priv->scale_end = scale_end;
|
2006-11-15 18:37:53 -05:00
|
|
|
behave->priv->gravity = gravity;
|
|
|
|
|
|
|
|
return CLUTTER_BEHAVIOUR (behave);
|
|
|
|
}
|
2007-03-25 18:37:28 -04:00
|
|
|
|
|
|
|
/**
|
|
|
|
* clutter_behaviour_scale_get_bounds:
|
|
|
|
* @scale: a #ClutterBehaviourScale
|
2007-11-13 08:21:56 -05:00
|
|
|
* @scale_start: return location for the initial scale factor
|
2007-03-25 18:37:28 -04:00
|
|
|
* @scale_end: return location for the final scale factor
|
|
|
|
*
|
|
|
|
* Retrieves the bounds used by scale behaviour.
|
|
|
|
*
|
|
|
|
* Since: 0.4
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
clutter_behaviour_scale_get_bounds (ClutterBehaviourScale *scale,
|
2007-11-13 08:21:56 -05:00
|
|
|
gdouble *scale_start,
|
2007-03-25 18:37:28 -04:00
|
|
|
gdouble *scale_end)
|
|
|
|
{
|
|
|
|
ClutterBehaviourScalePrivate *priv;
|
|
|
|
|
|
|
|
g_return_if_fail (CLUTTER_IS_BEHAVIOUR_SCALE (scale));
|
|
|
|
|
|
|
|
priv = scale->priv;
|
|
|
|
|
2007-11-13 08:21:56 -05:00
|
|
|
if (scale_start)
|
|
|
|
*scale_start = CLUTTER_FIXED_TO_DOUBLE (priv->scale_start);
|
2007-03-25 18:37:28 -04:00
|
|
|
|
|
|
|
if (scale_end)
|
|
|
|
*scale_end = CLUTTER_FIXED_TO_DOUBLE (priv->scale_end);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* clutter_behaviour_scale_get_boundsx:
|
|
|
|
* @scale: a #ClutterBehaviourScale
|
2007-11-13 08:21:56 -05:00
|
|
|
* @scale_start: return location for the initial scale factor
|
2007-03-25 18:37:28 -04:00
|
|
|
* @scale_end: return location for the final scale factor
|
|
|
|
*
|
|
|
|
* Retrieves the bounds used by scale behaviour.
|
|
|
|
*
|
|
|
|
* Since: 0.4
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
clutter_behaviour_scale_get_boundsx (ClutterBehaviourScale *scale,
|
2007-11-13 08:21:56 -05:00
|
|
|
ClutterFixed *scale_start,
|
2007-03-25 18:37:28 -04:00
|
|
|
ClutterFixed *scale_end)
|
|
|
|
{
|
|
|
|
ClutterBehaviourScalePrivate *priv;
|
|
|
|
|
|
|
|
g_return_if_fail (CLUTTER_IS_BEHAVIOUR_SCALE (scale));
|
|
|
|
|
|
|
|
priv = scale->priv;
|
|
|
|
|
2007-11-13 08:21:56 -05:00
|
|
|
if (scale_start)
|
|
|
|
*scale_start = priv->scale_start;
|
2007-03-25 18:37:28 -04:00
|
|
|
|
|
|
|
if (scale_end)
|
|
|
|
*scale_end = priv->scale_end;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* clutter_behaviour_scale_get_gravity:
|
|
|
|
* @scale: a #ClutterBehaviourScale
|
|
|
|
*
|
|
|
|
* Retrieves the #ClutterGravity applied by the scale behaviour.
|
|
|
|
*
|
|
|
|
* Return value: the gravity used by the behaviour
|
|
|
|
*
|
|
|
|
* Since: 0.4
|
|
|
|
*/
|
|
|
|
ClutterGravity
|
|
|
|
clutter_behaviour_scale_get_gravity (ClutterBehaviourScale *scale)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (CLUTTER_IS_BEHAVIOUR_SCALE (scale), CLUTTER_GRAVITY_NONE);
|
|
|
|
|
|
|
|
return scale->priv->gravity;
|
|
|
|
}
|