2006-08-13 19:55:52 -04: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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* SECTION:clutter-behaviour
|
|
|
|
* @short_description: Class for providing behaviours to actors
|
|
|
|
*
|
2006-11-17 13:45:31 -05:00
|
|
|
* #ClutterBehaviour is the base class for implementing behaviours. A
|
|
|
|
* behaviour is a controller object for #ClutterActor<!-- -->s; you can
|
|
|
|
* use a behaviour to control one or more properties of an actor (such
|
|
|
|
* as its opacity, or its position). A #ClutterBehaviour is driven by
|
|
|
|
* an "alpha function" stored inside a #ClutterAlpha object; an alpha
|
|
|
|
* function is a function depending solely on time. The alpha function
|
|
|
|
* computes a value which is then applied to the properties of the
|
|
|
|
* actors driven by a behaviour.
|
|
|
|
*
|
|
|
|
* Clutter provides some pre-defined behaviours, like #ClutterBehaviourPath,
|
|
|
|
* which controls the position of a set of actors making them "walk" along
|
|
|
|
* a set of nodes; #ClutterBehaviourOpacity, which controls the opacity
|
|
|
|
* of a set of actors; #ClutterBehaviourScale, which controls the width
|
|
|
|
* and height of a set of actors.
|
|
|
|
*
|
|
|
|
* In order to implement a new behaviour you should subclass #ClutterBehaviour
|
|
|
|
* and override the "alpha_notify" virtual function; inside the overridden
|
|
|
|
* function you should obtain the alpha value from the #ClutterAlpha
|
|
|
|
* instance bound to the behaviour and apply it to the desiderd property
|
|
|
|
* (or properties) of every actor controlled by the behaviour.
|
2006-08-13 19:55:52 -04:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "config.h"
|
|
|
|
|
2006-08-15 16:28:41 -04:00
|
|
|
#include "clutter-actor.h"
|
|
|
|
#include "clutter-behaviour.h"
|
2006-08-13 19:55:52 -04:00
|
|
|
|
2006-11-14 09:12:56 -05:00
|
|
|
G_DEFINE_ABSTRACT_TYPE (ClutterBehaviour,
|
|
|
|
clutter_behaviour,
|
|
|
|
G_TYPE_OBJECT);
|
2006-09-08 16:52:38 -04:00
|
|
|
|
2006-11-14 09:12:56 -05:00
|
|
|
struct _ClutterBehaviourPrivate
|
2006-09-08 16:57:31 -04:00
|
|
|
{
|
2006-10-22 19:33:14 -04:00
|
|
|
ClutterAlpha *alpha;
|
2006-11-14 09:12:56 -05:00
|
|
|
|
|
|
|
guint notify_id;
|
|
|
|
GSList *actors;
|
2006-08-13 19:55:52 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
2006-10-22 19:33:14 -04:00
|
|
|
PROP_ALPHA
|
2006-08-13 19:55:52 -04:00
|
|
|
};
|
|
|
|
|
2006-09-08 16:57:31 -04:00
|
|
|
enum {
|
2006-08-29 Jorn Baayen <jorn@openedhand.com>
* clutter/clutter-behaviour.c: (_clutter_behaviour_finalize),
(_clutter_behaviour_set_property),
(_clutter_behaviour_get_property), (clutter_behaviour_class_init),
(clutter_behaviour_init), (clutter_behaviour_apply),
(clutter_behaviour_remove), (clutter_behaviour_remove_all),
(clutter_behaviour_actors_foreach):
* clutter/clutter-behaviour.h:
* clutter/clutter-behaviours.c:
(clutter_behaviour_property_change),
(clutter_behaviour_opacity_dispose),
(clutter_behaviour_opacity_finalize),
(clutter_behaviour_opacity_class_init),
(clutter_behaviour_opacity_init):
* clutter/clutter-behaviours.h:
* clutter/clutter-marshal.list:
* examples/behave.c: (main):
Behaviours track generic GObject properties.
* clutter/clutter-video-texture.h:
Remove signal prototypes - they are already specified in
clutter-media.h.
2006-08-29 09:20:29 -04:00
|
|
|
SIGNAL_LAST
|
|
|
|
};
|
|
|
|
|
|
|
|
|
2006-08-13 19:55:52 -04:00
|
|
|
#define CLUTTER_BEHAVIOUR_GET_PRIVATE(obj) \
|
|
|
|
(G_TYPE_INSTANCE_GET_PRIVATE ((obj), \
|
|
|
|
CLUTTER_TYPE_BEHAVIOUR, \
|
|
|
|
ClutterBehaviourPrivate))
|
|
|
|
|
2006-09-08 16:57:31 -04:00
|
|
|
static void
|
2006-11-14 09:12:56 -05:00
|
|
|
clutter_behaviour_finalize (GObject *object)
|
2006-09-08 16:52:38 -04:00
|
|
|
{
|
2006-11-14 09:12:56 -05:00
|
|
|
ClutterBehaviour *self = CLUTTER_BEHAVIOUR (object);
|
2006-08-13 19:55:52 -04:00
|
|
|
|
2006-11-14 09:12:56 -05:00
|
|
|
clutter_behaviour_set_alpha (self, NULL);
|
|
|
|
|
|
|
|
g_slist_foreach (self->priv->actors, (GFunc) g_object_unref, NULL);
|
|
|
|
g_slist_free (self->priv->actors);
|
2006-08-13 19:55:52 -04:00
|
|
|
|
|
|
|
G_OBJECT_CLASS (clutter_behaviour_parent_class)->finalize (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2006-11-14 09:12:56 -05:00
|
|
|
clutter_behaviour_set_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
2006-08-13 19:55:52 -04:00
|
|
|
{
|
2006-09-08 16:57:31 -04:00
|
|
|
ClutterBehaviour *behaviour;
|
|
|
|
|
|
|
|
behaviour = CLUTTER_BEHAVIOUR(object);
|
|
|
|
|
2006-08-13 19:55:52 -04:00
|
|
|
switch (prop_id)
|
|
|
|
{
|
2006-10-22 19:33:14 -04:00
|
|
|
case PROP_ALPHA:
|
|
|
|
clutter_behaviour_set_alpha (behaviour, g_value_get_object (value));
|
2006-09-08 16:57:31 -04:00
|
|
|
break;
|
2006-08-13 19:55:52 -04:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
2006-09-08 16:57:31 -04:00
|
|
|
}
|
2006-08-13 19:55:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2006-11-14 09:12:56 -05:00
|
|
|
clutter_behaviour_get_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
2006-08-13 19:55:52 -04:00
|
|
|
{
|
2006-09-08 16:57:31 -04:00
|
|
|
ClutterBehaviour *behaviour;
|
|
|
|
ClutterBehaviourPrivate *priv;
|
|
|
|
|
|
|
|
behaviour = CLUTTER_BEHAVIOUR(object);
|
|
|
|
priv = CLUTTER_BEHAVIOUR_GET_PRIVATE(behaviour);
|
|
|
|
|
2006-08-13 19:55:52 -04:00
|
|
|
switch (prop_id)
|
|
|
|
{
|
2006-10-22 19:33:14 -04:00
|
|
|
case PROP_ALPHA:
|
|
|
|
g_value_set_object (value, priv->alpha);
|
2006-09-08 16:57:31 -04:00
|
|
|
break;
|
2006-08-13 19:55:52 -04:00
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
clutter_behaviour_class_init (ClutterBehaviourClass *klass)
|
|
|
|
{
|
2006-11-14 09:12:56 -05:00
|
|
|
GObjectClass *object_class = G_OBJECT_CLASS (klass);
|
|
|
|
|
|
|
|
object_class->finalize = clutter_behaviour_finalize;
|
|
|
|
object_class->set_property = clutter_behaviour_set_property;
|
|
|
|
object_class->get_property = clutter_behaviour_get_property;
|
|
|
|
|
|
|
|
g_object_class_install_property (object_class,
|
|
|
|
PROP_ALPHA,
|
|
|
|
g_param_spec_object ("alpha",
|
|
|
|
"Alpha",
|
|
|
|
"Alpha Object to drive the behaviour",
|
|
|
|
CLUTTER_TYPE_ALPHA,
|
|
|
|
G_PARAM_CONSTRUCT |
|
|
|
|
G_PARAM_READWRITE));
|
|
|
|
|
|
|
|
g_type_class_add_private (klass, sizeof (ClutterBehaviourPrivate));
|
2006-08-13 19:55:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clutter_behaviour_init (ClutterBehaviour *self)
|
|
|
|
{
|
|
|
|
ClutterBehaviourPrivate *priv;
|
|
|
|
|
|
|
|
self->priv = priv = CLUTTER_BEHAVIOUR_GET_PRIVATE (self);
|
2006-09-08 16:57:31 -04:00
|
|
|
|
2006-08-13 19:55:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-11-14 09:12:56 -05:00
|
|
|
clutter_behaviour_apply (ClutterBehaviour *behave,
|
|
|
|
ClutterActor *actor)
|
2006-08-13 19:55:52 -04:00
|
|
|
{
|
2006-11-14 09:12:56 -05:00
|
|
|
g_return_if_fail (CLUTTER_IS_BEHAVIOUR (behave));
|
|
|
|
g_return_if_fail (CLUTTER_IS_ACTOR (actor));
|
2006-09-08 16:52:38 -04:00
|
|
|
|
2006-11-14 09:12:56 -05:00
|
|
|
if (g_slist_find (behave->priv->actors, actor))
|
|
|
|
{
|
|
|
|
g_warning ("The behaviour of type %s already applies "
|
|
|
|
"to the actor of type %s",
|
|
|
|
g_type_name (G_OBJECT_TYPE (behave)),
|
|
|
|
g_type_name (G_OBJECT_TYPE (actor)));
|
|
|
|
return;
|
|
|
|
}
|
2006-08-13 19:55:52 -04:00
|
|
|
|
|
|
|
g_object_ref (actor);
|
2006-11-14 09:12:56 -05:00
|
|
|
behave->priv->actors = g_slist_prepend (behave->priv->actors, actor);
|
2006-08-13 19:55:52 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2006-11-14 09:12:56 -05:00
|
|
|
clutter_behaviour_remove (ClutterBehaviour *behave,
|
|
|
|
ClutterActor *actor)
|
2006-08-13 19:55:52 -04:00
|
|
|
{
|
2006-11-14 09:12:56 -05:00
|
|
|
g_return_if_fail (CLUTTER_IS_BEHAVIOUR (behave));
|
|
|
|
g_return_if_fail (CLUTTER_IS_ACTOR (actor));
|
2006-08-13 19:55:52 -04:00
|
|
|
|
2006-11-14 09:12:56 -05:00
|
|
|
if (!g_slist_find (behave->priv->actors, actor))
|
2006-08-13 19:55:52 -04:00
|
|
|
{
|
2006-11-14 09:12:56 -05:00
|
|
|
g_warning ("The behaviour of type %s does not apply "
|
|
|
|
"to the actor of type %s",
|
|
|
|
g_type_name (G_OBJECT_TYPE (behave)),
|
|
|
|
g_type_name (G_OBJECT_TYPE (actor)));
|
|
|
|
return;
|
2006-08-13 19:55:52 -04:00
|
|
|
}
|
2006-11-14 09:12:56 -05:00
|
|
|
|
|
|
|
g_object_unref (actor);
|
|
|
|
behave->priv->actors = g_slist_remove (behave->priv->actors, actor);
|
2006-08-13 19:55:52 -04:00
|
|
|
}
|
|
|
|
|
2006-09-08 16:57:31 -04:00
|
|
|
void
|
|
|
|
clutter_behaviour_actors_foreach (ClutterBehaviour *behave,
|
|
|
|
GFunc func,
|
|
|
|
gpointer userdata)
|
2006-09-08 16:52:38 -04:00
|
|
|
{
|
2006-11-14 09:12:56 -05:00
|
|
|
g_return_if_fail (CLUTTER_IS_BEHAVIOUR (behave));
|
|
|
|
g_return_if_fail (func != NULL);
|
|
|
|
|
2006-09-08 16:57:31 -04:00
|
|
|
g_slist_foreach (behave->priv->actors, func, userdata);
|
2006-08-13 19:55:52 -04:00
|
|
|
}
|
|
|
|
|
2006-10-22 19:33:14 -04:00
|
|
|
ClutterAlpha*
|
|
|
|
clutter_behaviour_get_alpha (ClutterBehaviour *behave)
|
2006-08-29 Jorn Baayen <jorn@openedhand.com>
* clutter/clutter-behaviour.c: (_clutter_behaviour_finalize),
(_clutter_behaviour_set_property),
(_clutter_behaviour_get_property), (clutter_behaviour_class_init),
(clutter_behaviour_init), (clutter_behaviour_apply),
(clutter_behaviour_remove), (clutter_behaviour_remove_all),
(clutter_behaviour_actors_foreach):
* clutter/clutter-behaviour.h:
* clutter/clutter-behaviours.c:
(clutter_behaviour_property_change),
(clutter_behaviour_opacity_dispose),
(clutter_behaviour_opacity_finalize),
(clutter_behaviour_opacity_class_init),
(clutter_behaviour_opacity_init):
* clutter/clutter-behaviours.h:
* clutter/clutter-marshal.list:
* examples/behave.c: (main):
Behaviours track generic GObject properties.
* clutter/clutter-video-texture.h:
Remove signal prototypes - they are already specified in
clutter-media.h.
2006-08-29 09:20:29 -04:00
|
|
|
{
|
2006-11-14 09:12:56 -05:00
|
|
|
g_return_val_if_fail (CLUTTER_IS_BEHAVIOUR (behave), NULL);
|
|
|
|
|
2006-10-22 19:33:14 -04:00
|
|
|
return behave->priv->alpha;
|
2006-09-08 16:52:38 -04:00
|
|
|
}
|
|
|
|
|
2006-09-08 16:57:31 -04:00
|
|
|
static void
|
|
|
|
notify_cb (GObject *object,
|
|
|
|
GParamSpec *param_spec,
|
|
|
|
ClutterBehaviour *behave)
|
2006-09-08 16:52:38 -04:00
|
|
|
{
|
2006-11-17 13:45:31 -05:00
|
|
|
ClutterBehaviourClass *klass;
|
|
|
|
|
|
|
|
klass = CLUTTER_BEHAVIOUR_GET_CLASS (behave);
|
2006-10-22 19:33:14 -04:00
|
|
|
|
2006-11-17 13:45:31 -05:00
|
|
|
if (klass->alpha_notify)
|
|
|
|
{
|
|
|
|
guint32 alpha_value;
|
|
|
|
|
|
|
|
alpha_value = clutter_alpha_get_alpha (behave->priv->alpha);
|
2006-10-22 19:33:14 -04:00
|
|
|
|
2006-11-17 13:45:31 -05:00
|
|
|
klass->alpha_notify (behave, alpha_value);
|
|
|
|
}
|
2006-09-08 16:52:38 -04:00
|
|
|
}
|
|
|
|
|
2006-09-08 16:57:31 -04:00
|
|
|
void
|
2006-10-22 19:33:14 -04:00
|
|
|
clutter_behaviour_set_alpha (ClutterBehaviour *behave,
|
|
|
|
ClutterAlpha *alpha)
|
2006-09-08 16:52:38 -04:00
|
|
|
{
|
2006-11-14 09:12:56 -05:00
|
|
|
ClutterBehaviourPrivate *priv;
|
|
|
|
|
|
|
|
g_return_if_fail (CLUTTER_IS_BEHAVIOUR (behave));
|
|
|
|
g_return_if_fail (CLUTTER_IS_ALPHA (alpha));
|
|
|
|
|
|
|
|
priv = behave->priv;
|
|
|
|
|
|
|
|
if (priv->notify_id)
|
2006-09-08 16:57:31 -04:00
|
|
|
{
|
2006-11-14 09:12:56 -05:00
|
|
|
g_signal_handler_disconnect (priv->alpha, priv->notify_id);
|
|
|
|
priv->notify_id = 0;
|
2006-09-08 16:57:31 -04:00
|
|
|
}
|
2006-09-08 16:52:38 -04:00
|
|
|
|
2006-11-14 09:12:56 -05:00
|
|
|
if (priv->alpha)
|
2006-10-22 19:33:14 -04:00
|
|
|
{
|
2006-11-14 09:12:56 -05:00
|
|
|
g_object_unref (priv->alpha);
|
|
|
|
priv->alpha = NULL;
|
2006-10-22 19:33:14 -04:00
|
|
|
}
|
2006-09-08 16:52:38 -04:00
|
|
|
|
2006-10-22 19:33:14 -04:00
|
|
|
if (alpha)
|
2006-08-13 19:55:52 -04:00
|
|
|
{
|
2006-11-14 09:12:56 -05:00
|
|
|
priv->alpha = alpha;
|
|
|
|
g_object_ref_sink (priv->alpha);
|
2006-10-22 19:33:14 -04:00
|
|
|
|
2006-11-14 09:12:56 -05:00
|
|
|
priv->notify_id = g_signal_connect (priv->alpha, "notify::alpha",
|
|
|
|
G_CALLBACK(notify_cb),
|
|
|
|
behave);
|
2006-08-13 19:55:52 -04:00
|
|
|
}
|
|
|
|
}
|