2006-05-29 04:59:36 -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.
|
|
|
|
*/
|
|
|
|
|
2006-06-21 18:34:25 -04:00
|
|
|
/**
|
|
|
|
* SECTION:clutter-timeline
|
|
|
|
* @short_description: A base class for managing time based events such
|
|
|
|
* as animations.
|
|
|
|
*
|
|
|
|
* #ClutterTimeline is a base class for managing time based events such
|
|
|
|
* as animations.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
2006-05-29 04:59:36 -04:00
|
|
|
#include "clutter-timeline.h"
|
|
|
|
#include "clutter-main.h"
|
|
|
|
#include "clutter-private.h" /* for DBG */
|
2006-06-22 08:05:51 -04:00
|
|
|
#include "clutter-marshal.h"
|
2006-05-29 04:59:36 -04:00
|
|
|
|
|
|
|
G_DEFINE_TYPE (ClutterTimeline, clutter_timeline, G_TYPE_OBJECT);
|
|
|
|
|
|
|
|
#define FPS_TO_INTERVAL(f) (1000/f)
|
|
|
|
|
|
|
|
struct ClutterTimelinePrivate
|
|
|
|
{
|
2006-08-13 19:55:52 -04:00
|
|
|
guint timeout_id;
|
|
|
|
guint fps;
|
|
|
|
guint nframes;
|
|
|
|
guint current_frame_num;
|
|
|
|
gulong last_frame_msecs;
|
|
|
|
gulong start_frame_secs;
|
|
|
|
|
|
|
|
guint32 alpha;
|
|
|
|
ClutterTimelineAlphaFunc alpha_func;
|
2006-06-22 08:05:51 -04:00
|
|
|
|
2006-08-13 19:55:52 -04:00
|
|
|
guint loop : 1;
|
2006-05-29 04:59:36 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
PROP_0,
|
|
|
|
PROP_FPS,
|
|
|
|
PROP_NFRAMES,
|
2006-08-13 19:55:52 -04:00
|
|
|
PROP_LOOP,
|
|
|
|
PROP_ALPHA
|
2006-05-29 04:59:36 -04:00
|
|
|
};
|
|
|
|
|
|
|
|
enum
|
|
|
|
{
|
|
|
|
SIGNAL_NEW_FRAME,
|
2006-06-22 08:05:51 -04:00
|
|
|
SIGNAL_STARTED,
|
|
|
|
SIGNAL_PAUSED,
|
2006-05-29 04:59:36 -04:00
|
|
|
SIGNAL_COMPLETED,
|
|
|
|
LAST_SIGNAL
|
|
|
|
};
|
|
|
|
|
|
|
|
static int timeline_signals[LAST_SIGNAL] = { 0 };
|
|
|
|
|
2006-08-13 19:55:52 -04:00
|
|
|
/* Alpha funcs */
|
|
|
|
|
|
|
|
guint32
|
|
|
|
clutter_timeline_alpha_ramp_inc_func (ClutterTimeline *timeline)
|
|
|
|
{
|
|
|
|
return (timeline->priv->current_frame_num * CLUTTER_TIMELINE_MAX_ALPHA)
|
|
|
|
/ timeline->priv->nframes;
|
|
|
|
}
|
|
|
|
|
2006-08-15 16:28:41 -04:00
|
|
|
guint32
|
|
|
|
clutter_timeline_alpha_ramp_dec_func (ClutterTimeline *timeline)
|
|
|
|
{
|
|
|
|
return ((timeline->priv->nframes - timeline->priv->current_frame_num)
|
|
|
|
* CLUTTER_TIMELINE_MAX_ALPHA)
|
|
|
|
/ timeline->priv->nframes;
|
|
|
|
}
|
|
|
|
|
|
|
|
guint32
|
|
|
|
clutter_timeline_alpha_ramp_func (ClutterTimeline *timeline)
|
|
|
|
{
|
|
|
|
|
|
|
|
if (timeline->priv->current_frame_num > (timeline->priv->nframes/2))
|
|
|
|
{
|
|
|
|
return (((timeline->priv->nframes) - timeline->priv->current_frame_num)
|
|
|
|
* CLUTTER_TIMELINE_MAX_ALPHA)
|
|
|
|
/ (timeline->priv->nframes/2);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
return (timeline->priv->current_frame_num * CLUTTER_TIMELINE_MAX_ALPHA)
|
|
|
|
/ (timeline->priv->nframes/2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-08-13 19:55:52 -04:00
|
|
|
/* Object */
|
|
|
|
|
2006-05-29 04:59:36 -04:00
|
|
|
static void
|
|
|
|
clutter_timeline_set_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
const GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
ClutterTimeline *timeline;
|
|
|
|
ClutterTimelinePrivate *priv;
|
|
|
|
|
|
|
|
timeline = CLUTTER_TIMELINE(object);
|
|
|
|
priv = timeline->priv;
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
|
|
|
case PROP_FPS:
|
|
|
|
clutter_timeline_set_speed (timeline, g_value_get_int (value));
|
|
|
|
break;
|
|
|
|
case PROP_NFRAMES:
|
|
|
|
priv->nframes = g_value_get_int (value);
|
|
|
|
break;
|
2006-08-13 19:55:52 -04:00
|
|
|
case PROP_ALPHA:
|
|
|
|
priv->alpha = g_value_get_int (value);
|
|
|
|
break;
|
2006-05-29 04:59:36 -04:00
|
|
|
case PROP_LOOP:
|
|
|
|
priv->loop = g_value_get_boolean (value);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clutter_timeline_get_property (GObject *object,
|
|
|
|
guint prop_id,
|
|
|
|
GValue *value,
|
|
|
|
GParamSpec *pspec)
|
|
|
|
{
|
|
|
|
ClutterTimeline *timeline;
|
|
|
|
ClutterTimelinePrivate *priv;
|
|
|
|
|
|
|
|
timeline = CLUTTER_TIMELINE(object);
|
|
|
|
priv = timeline->priv;
|
|
|
|
|
|
|
|
switch (prop_id)
|
|
|
|
{
|
|
|
|
case PROP_FPS:
|
|
|
|
g_value_set_int (value, priv->fps);
|
|
|
|
break;
|
|
|
|
case PROP_NFRAMES:
|
|
|
|
g_value_set_int (value, priv->nframes);
|
|
|
|
break;
|
|
|
|
case PROP_LOOP:
|
|
|
|
g_value_set_boolean (value, priv->loop);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
G_OBJECT_WARN_INVALID_PROPERTY_ID (object, prop_id, pspec);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clutter_timeline_finalize (GObject *object)
|
|
|
|
{
|
|
|
|
G_OBJECT_CLASS (clutter_timeline_parent_class)->finalize (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clutter_timeline_dispose (GObject *object)
|
|
|
|
{
|
|
|
|
ClutterTimeline *self = CLUTTER_TIMELINE(object);
|
|
|
|
ClutterTimelinePrivate *priv;
|
|
|
|
|
|
|
|
priv = self->priv;
|
|
|
|
|
|
|
|
if (priv != NULL)
|
|
|
|
{
|
|
|
|
if (priv->timeout_id)
|
|
|
|
{
|
|
|
|
g_source_remove (priv->timeout_id);
|
|
|
|
priv->timeout_id = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
G_OBJECT_CLASS (clutter_timeline_parent_class)->dispose (object);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
clutter_timeline_class_init (ClutterTimelineClass *klass)
|
|
|
|
{
|
|
|
|
GObjectClass *object_class;
|
|
|
|
|
|
|
|
object_class = (GObjectClass*) klass;
|
|
|
|
|
|
|
|
object_class->set_property = clutter_timeline_set_property;
|
|
|
|
object_class->get_property = clutter_timeline_get_property;
|
|
|
|
object_class->finalize = clutter_timeline_finalize;
|
|
|
|
object_class->dispose = clutter_timeline_dispose;
|
|
|
|
|
|
|
|
g_type_class_add_private (klass, sizeof (ClutterTimelinePrivate));
|
|
|
|
|
|
|
|
g_object_class_install_property
|
|
|
|
(object_class, PROP_FPS,
|
|
|
|
g_param_spec_int ("fps",
|
|
|
|
"Frames Per Second",
|
|
|
|
"Timeline frames per second",
|
|
|
|
0,
|
|
|
|
1000,
|
|
|
|
50,
|
|
|
|
G_PARAM_CONSTRUCT | G_PARAM_READWRITE));
|
|
|
|
|
2006-08-13 19:55:52 -04:00
|
|
|
g_object_class_install_property
|
|
|
|
(object_class, PROP_ALPHA,
|
|
|
|
g_param_spec_int ("alpha",
|
|
|
|
"Alpha value for timeline",
|
|
|
|
"Alpha value for timeline",
|
|
|
|
0,
|
|
|
|
CLUTTER_TIMELINE_MAX_ALPHA,
|
|
|
|
0,
|
|
|
|
G_PARAM_READABLE));
|
|
|
|
|
2006-05-29 04:59:36 -04:00
|
|
|
g_object_class_install_property
|
|
|
|
(object_class, PROP_NFRAMES,
|
|
|
|
g_param_spec_int ("num-frames",
|
|
|
|
"Total number of frames",
|
|
|
|
"Timelines total number of frames",
|
|
|
|
0,
|
|
|
|
G_MAXINT,
|
|
|
|
0,
|
2006-08-13 19:55:52 -04:00
|
|
|
G_PARAM_READWRITE));
|
2006-05-29 04:59:36 -04:00
|
|
|
|
|
|
|
g_object_class_install_property
|
|
|
|
(object_class, PROP_LOOP,
|
|
|
|
g_param_spec_boolean ("loop",
|
|
|
|
"Loop",
|
|
|
|
"Should the timeline automatically restart",
|
|
|
|
FALSE,
|
|
|
|
G_PARAM_CONSTRUCT | G_PARAM_READWRITE));
|
|
|
|
|
|
|
|
timeline_signals[SIGNAL_NEW_FRAME] =
|
|
|
|
g_signal_new ("new-frame",
|
|
|
|
G_TYPE_FROM_CLASS (object_class),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
G_STRUCT_OFFSET (ClutterTimelineClass, new_frame),
|
|
|
|
NULL, NULL,
|
2006-06-22 08:05:51 -04:00
|
|
|
clutter_marshal_VOID__INT,
|
2006-05-29 04:59:36 -04:00
|
|
|
G_TYPE_NONE,
|
|
|
|
1, G_TYPE_INT);
|
|
|
|
timeline_signals[SIGNAL_COMPLETED] =
|
|
|
|
g_signal_new ("completed",
|
|
|
|
G_TYPE_FROM_CLASS (object_class),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
G_STRUCT_OFFSET (ClutterTimelineClass, completed),
|
|
|
|
NULL, NULL,
|
2006-06-22 08:05:51 -04:00
|
|
|
clutter_marshal_VOID__VOID,
|
|
|
|
G_TYPE_NONE, 0);
|
|
|
|
timeline_signals[SIGNAL_STARTED] =
|
|
|
|
g_signal_new ("started",
|
|
|
|
G_TYPE_FROM_CLASS (object_class),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
G_STRUCT_OFFSET (ClutterTimelineClass, started),
|
|
|
|
NULL, NULL,
|
|
|
|
clutter_marshal_VOID__VOID,
|
|
|
|
G_TYPE_NONE, 0);
|
|
|
|
timeline_signals[SIGNAL_PAUSED] =
|
|
|
|
g_signal_new ("paused",
|
|
|
|
G_TYPE_FROM_CLASS (object_class),
|
|
|
|
G_SIGNAL_RUN_LAST,
|
|
|
|
G_STRUCT_OFFSET (ClutterTimelineClass, paused),
|
|
|
|
NULL, NULL,
|
|
|
|
clutter_marshal_VOID__VOID,
|
2006-05-29 04:59:36 -04:00
|
|
|
G_TYPE_NONE, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
|
|
|
clutter_timeline_init (ClutterTimeline *self)
|
|
|
|
{
|
|
|
|
self->priv = G_TYPE_INSTANCE_GET_PRIVATE(self,
|
|
|
|
CLUTTER_TYPE_TIMELINE,
|
|
|
|
ClutterTimelinePrivate);
|
2006-08-15 16:28:41 -04:00
|
|
|
|
|
|
|
self->priv->alpha_func = CLUTTER_ALPHA_RAMP_INC;
|
2006-05-29 04:59:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
static gboolean
|
|
|
|
timeline_timeout_func (gpointer data)
|
|
|
|
{
|
|
|
|
ClutterTimeline *timeline = CLUTTER_TIMELINE(data);
|
|
|
|
ClutterTimelinePrivate *priv;
|
|
|
|
GTimeVal timeval;
|
|
|
|
gint nframes;
|
|
|
|
gulong msecs;
|
|
|
|
|
|
|
|
priv = timeline->priv;
|
|
|
|
|
|
|
|
/* Figure out potential frame skips */
|
|
|
|
g_get_current_time (&timeval);
|
|
|
|
|
|
|
|
/* Fire off signal */
|
|
|
|
g_signal_emit (timeline, timeline_signals[SIGNAL_NEW_FRAME],
|
|
|
|
0, priv->current_frame_num);
|
|
|
|
|
|
|
|
/* Signal frees timeline ? */
|
|
|
|
if (timeline == NULL)
|
|
|
|
return FALSE;
|
|
|
|
|
|
|
|
/* Signal removes source ? */
|
|
|
|
if (!priv->timeout_id)
|
|
|
|
{
|
|
|
|
clutter_timeline_stop (timeline);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (priv->last_frame_msecs)
|
|
|
|
{
|
|
|
|
/* Check time diff from out last call and adjust number
|
|
|
|
* of frames to advance accordingly.
|
|
|
|
*/
|
|
|
|
msecs = ((timeval.tv_sec - priv->start_frame_secs) * 1000)
|
|
|
|
+ (timeval.tv_usec / 1000);
|
|
|
|
nframes = (msecs - priv->last_frame_msecs ) / (1000 / priv->fps);
|
|
|
|
if (nframes < 0) nframes = 1;
|
|
|
|
|
|
|
|
if (nframes > 1)
|
|
|
|
CLUTTER_DBG("*** Skipping %i frames ***", nframes);
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
/* First frame, set up timings.*/
|
|
|
|
priv->start_frame_secs = timeval.tv_sec;
|
|
|
|
msecs = timeval.tv_usec / 1000;
|
|
|
|
nframes = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
priv->last_frame_msecs = msecs;
|
|
|
|
|
2006-08-13 19:55:52 -04:00
|
|
|
/* Update alpha value */
|
|
|
|
if (priv->alpha_func)
|
|
|
|
priv->alpha = priv->alpha_func(timeline);
|
|
|
|
|
2006-08-15 16:28:41 -04:00
|
|
|
/* Advance frames */
|
|
|
|
priv->current_frame_num += nframes;;
|
|
|
|
|
2006-05-29 04:59:36 -04:00
|
|
|
/* Handle loop or stop */
|
|
|
|
if (priv->current_frame_num > priv->nframes)
|
|
|
|
{
|
|
|
|
priv->current_frame_num = priv->nframes;
|
|
|
|
|
|
|
|
if (nframes > 1)
|
2006-08-15 16:28:41 -04:00
|
|
|
{
|
|
|
|
g_signal_emit (timeline, timeline_signals[SIGNAL_NEW_FRAME],
|
|
|
|
0, priv->current_frame_num);
|
|
|
|
}
|
2006-05-29 04:59:36 -04:00
|
|
|
|
|
|
|
if (priv->loop)
|
|
|
|
clutter_timeline_rewind (timeline);
|
|
|
|
else
|
|
|
|
{
|
|
|
|
clutter_timeline_stop (timeline);
|
|
|
|
g_signal_emit (timeline, timeline_signals[SIGNAL_COMPLETED], 0);
|
|
|
|
return FALSE;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return TRUE;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* clutter_timeline_start:
|
|
|
|
* @timeline: A #ClutterTimeline
|
|
|
|
*
|
|
|
|
* Starts the #ClutterTimeline playing.
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
clutter_timeline_start (ClutterTimeline *timeline)
|
|
|
|
{
|
|
|
|
ClutterTimelinePrivate *priv;
|
|
|
|
|
2006-06-22 08:05:51 -04:00
|
|
|
g_return_if_fail (CLUTTER_IS_TIMELINE (timeline));
|
|
|
|
|
2006-05-29 04:59:36 -04:00
|
|
|
priv = timeline->priv;
|
|
|
|
|
|
|
|
if (!priv->timeout_id)
|
|
|
|
priv->timeout_id = g_timeout_add (FPS_TO_INTERVAL(priv->fps),
|
|
|
|
timeline_timeout_func,
|
|
|
|
(gpointer)timeline);
|
2006-06-22 08:05:51 -04:00
|
|
|
|
|
|
|
g_signal_emit (timeline, timeline_signals[SIGNAL_STARTED], 0);
|
2006-05-29 04:59:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* clutter_timeline_pause:
|
|
|
|
* @timeline: A #ClutterTimeline
|
|
|
|
*
|
|
|
|
* Pauses the #ClutterTimeline on current frame
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
clutter_timeline_pause (ClutterTimeline *timeline)
|
|
|
|
{
|
|
|
|
g_return_if_fail (CLUTTER_IS_TIMELINE (timeline));
|
|
|
|
|
|
|
|
if (timeline->priv->timeout_id)
|
|
|
|
g_source_remove (timeline->priv->timeout_id);
|
|
|
|
|
|
|
|
timeline->priv->timeout_id = 0;
|
|
|
|
timeline->priv->last_frame_msecs = 0;
|
2006-06-22 08:05:51 -04:00
|
|
|
|
|
|
|
g_signal_emit (timeline, timeline_signals[SIGNAL_PAUSED], 0);
|
2006-05-29 04:59:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* clutter_timeline_stop:
|
|
|
|
* @timeline: A #ClutterTimeline
|
|
|
|
*
|
|
|
|
* Stops the #ClutterTimeline and moves to frame 0
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
clutter_timeline_stop (ClutterTimeline *timeline)
|
|
|
|
{
|
|
|
|
clutter_timeline_pause (timeline);
|
|
|
|
clutter_timeline_rewind (timeline);
|
|
|
|
}
|
|
|
|
|
2006-06-22 08:05:51 -04:00
|
|
|
/**
|
|
|
|
* clutter_timeline_set_loop:
|
|
|
|
* @timeline: a #ClutterTimeline
|
|
|
|
* @loop: %TRUE for enable looping
|
|
|
|
*
|
|
|
|
* Sets whether @timeline should loop.
|
|
|
|
*/
|
2006-05-29 04:59:36 -04:00
|
|
|
void
|
2006-06-22 08:05:51 -04:00
|
|
|
clutter_timeline_set_loop (ClutterTimeline *timeline,
|
|
|
|
gboolean loop)
|
2006-05-29 04:59:36 -04:00
|
|
|
{
|
2006-06-22 08:05:51 -04:00
|
|
|
g_return_if_fail (CLUTTER_IS_TIMELINE (timeline));
|
|
|
|
|
|
|
|
if (timeline->priv->loop != loop)
|
|
|
|
{
|
|
|
|
timeline->priv->loop = loop;
|
|
|
|
|
|
|
|
g_object_notify (G_OBJECT (timeline), "loop");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* clutter_timeline_get_loop:
|
|
|
|
* @timeline: a #ClutterTimeline
|
|
|
|
*
|
|
|
|
* Gets whether @timeline is looping
|
|
|
|
*
|
|
|
|
* Return value: %TRUE if the timeline is looping
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
clutter_timeline_get_loop (ClutterTimeline *timeline)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (CLUTTER_IS_TIMELINE (timeline), FALSE);
|
|
|
|
|
|
|
|
return timeline->priv->loop;
|
2006-05-29 04:59:36 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* clutter_timeline_rewind:
|
|
|
|
* @timeline: A #ClutterTimeline
|
|
|
|
*
|
|
|
|
* Rewinds #ClutterTimeline to frame 0.
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
clutter_timeline_rewind (ClutterTimeline *timeline)
|
|
|
|
{
|
2006-06-22 08:05:51 -04:00
|
|
|
g_return_if_fail (CLUTTER_IS_TIMELINE (timeline));
|
|
|
|
|
2006-05-29 04:59:36 -04:00
|
|
|
clutter_timeline_advance (timeline, 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2006-06-22 09:56:04 -04:00
|
|
|
* clutter_timeline_skip:
|
2006-05-29 04:59:36 -04:00
|
|
|
* @timeline: A #ClutterTimeline
|
|
|
|
* @nframes: Number of frames to skip
|
|
|
|
*
|
|
|
|
* Advance timeline by requested number of frames.
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
clutter_timeline_skip (ClutterTimeline *timeline, guint nframes)
|
|
|
|
{
|
|
|
|
ClutterTimelinePrivate *priv;
|
|
|
|
|
|
|
|
g_return_if_fail (CLUTTER_IS_TIMELINE (timeline));
|
|
|
|
|
|
|
|
priv = timeline->priv;
|
|
|
|
|
|
|
|
priv->current_frame_num += nframes;
|
|
|
|
|
|
|
|
if (priv->current_frame_num > priv->nframes)
|
|
|
|
priv->current_frame_num = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* clutter_timeline_advance:
|
|
|
|
* @timeline: A #ClutterTimeline
|
|
|
|
* @frame_num: Frame number to advance to
|
|
|
|
*
|
|
|
|
* Advance timeline to requested frame number
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
clutter_timeline_advance (ClutterTimeline *timeline, guint frame_num)
|
|
|
|
{
|
|
|
|
ClutterTimelinePrivate *priv;
|
|
|
|
|
|
|
|
g_return_if_fail (CLUTTER_IS_TIMELINE (timeline));
|
|
|
|
|
|
|
|
priv = timeline->priv;
|
|
|
|
|
|
|
|
if (frame_num < priv->nframes)
|
|
|
|
priv->current_frame_num = frame_num;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* clutter_timeline_get_current_frame:
|
|
|
|
* @timeline: A #ClutterTimeline
|
|
|
|
*
|
|
|
|
* Request the current frame number of the timeline.
|
|
|
|
*
|
|
|
|
* Return Value: current frame number
|
|
|
|
**/
|
|
|
|
gint
|
|
|
|
clutter_timeline_get_current_frame (ClutterTimeline *timeline)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (CLUTTER_IS_TIMELINE (timeline), 0);
|
|
|
|
|
|
|
|
return timeline->priv->current_frame_num;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* clutter_timeline_get_n_frames:
|
|
|
|
* @timeline: A #ClutterTimeline
|
|
|
|
*
|
|
|
|
* Request the totle number of frames for the #ClutterTimeline.
|
|
|
|
*
|
|
|
|
* Return Value: Number of frames for this #ClutterTimeline.
|
|
|
|
**/
|
|
|
|
guint
|
|
|
|
clutter_timeline_get_n_frames (ClutterTimeline *timeline)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (CLUTTER_IS_TIMELINE (timeline), 0);
|
|
|
|
|
|
|
|
return timeline->priv->nframes;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2006-06-22 05:14:35 -04:00
|
|
|
* clutter_timeline_set_speed:
|
2006-05-29 04:59:36 -04:00
|
|
|
* @timeline: A #ClutterTimeline
|
|
|
|
* @fps: New speed of timeline as frames per second
|
|
|
|
*
|
|
|
|
* Set the speed in frames per second of the timeline.
|
|
|
|
**/
|
|
|
|
void
|
|
|
|
clutter_timeline_set_speed (ClutterTimeline *timeline, guint fps)
|
|
|
|
{
|
|
|
|
ClutterTimelinePrivate *priv;
|
|
|
|
|
|
|
|
g_return_if_fail (CLUTTER_IS_TIMELINE (timeline));
|
|
|
|
|
|
|
|
priv = timeline->priv;
|
|
|
|
|
|
|
|
priv->fps = fps;
|
|
|
|
|
|
|
|
/* if the timeline is playing restart */
|
|
|
|
if (priv->timeout_id)
|
|
|
|
{
|
|
|
|
g_source_remove (priv->timeout_id);
|
|
|
|
priv->timeout_id = g_timeout_add (FPS_TO_INTERVAL(priv->fps),
|
|
|
|
timeline_timeout_func,
|
|
|
|
(gpointer)timeline);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2006-06-01 17:37:28 -04:00
|
|
|
/**
|
|
|
|
* clutter_timeline_is_playing:
|
|
|
|
* @timeline: A #ClutterTimeline
|
|
|
|
*
|
|
|
|
* Query state of a #ClutterTimeline instance.
|
|
|
|
*
|
|
|
|
* Return Value: TRUE if timeline is currently playing, FALSE if not.
|
|
|
|
*/
|
|
|
|
gboolean
|
|
|
|
clutter_timeline_is_playing (ClutterTimeline *timeline)
|
|
|
|
{
|
2006-06-22 08:05:51 -04:00
|
|
|
g_return_val_if_fail (CLUTTER_IS_TIMELINE (timeline), FALSE);
|
|
|
|
|
2006-06-01 17:37:28 -04:00
|
|
|
return (timeline->priv->timeout_id != 0);
|
|
|
|
}
|
|
|
|
|
2006-08-13 19:55:52 -04:00
|
|
|
/**
|
|
|
|
* clutter_timeline_get_alpha:
|
|
|
|
* @timeline: A #ClutterTimeline
|
|
|
|
*
|
|
|
|
* Query the timelines current alpha value.
|
|
|
|
*
|
|
|
|
* Return Value: The current alpha value for the timeline
|
|
|
|
*/
|
|
|
|
gint32
|
|
|
|
clutter_timeline_get_alpha (ClutterTimeline *timeline)
|
|
|
|
{
|
|
|
|
g_return_val_if_fail (CLUTTER_IS_TIMELINE (timeline), FALSE);
|
|
|
|
|
|
|
|
return timeline->priv->alpha;
|
|
|
|
}
|
2006-06-01 17:37:28 -04:00
|
|
|
|
2006-08-15 16:28:41 -04:00
|
|
|
/**
|
|
|
|
* clutter_timeline_set_alpha_func:
|
|
|
|
* @timeline: A #ClutterTimeline
|
|
|
|
* @func: A #ClutterTimelineAlphaFunc
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
clutter_timeline_set_alpha_func (ClutterTimeline *timeline,
|
|
|
|
ClutterTimelineAlphaFunc func)
|
|
|
|
{
|
|
|
|
timeline->priv->alpha_func = func;
|
|
|
|
}
|
|
|
|
|
2006-05-29 04:59:36 -04:00
|
|
|
/**
|
|
|
|
* clutter_timeline_new:
|
|
|
|
* @nframes: #ClutterTimeline number of frames
|
|
|
|
* @fps: #ClutterTimeline frames per second
|
|
|
|
*
|
|
|
|
* Create a new #ClutterTimeline instance.
|
|
|
|
*
|
|
|
|
* Return Value: a new #ClutterTimeline
|
|
|
|
*/
|
2006-06-06 16:40:40 -04:00
|
|
|
ClutterTimeline*
|
2006-05-29 04:59:36 -04:00
|
|
|
clutter_timeline_new (guint nframes,
|
|
|
|
guint fps)
|
|
|
|
{
|
|
|
|
return g_object_new (CLUTTER_TYPE_TIMELINE,
|
|
|
|
"fps", fps,
|
|
|
|
"num-frames", nframes,
|
|
|
|
NULL);
|
|
|
|
}
|