2008-03-05 11:04:06 -05:00
|
|
|
#include <stdlib.h>
|
|
|
|
#include <glib.h>
|
|
|
|
#include <clutter/clutter.h>
|
|
|
|
|
2008-11-07 14:32:28 -05:00
|
|
|
#include "test-conform-common.h"
|
|
|
|
|
2008-03-05 11:04:06 -05:00
|
|
|
/* We use a nice slow timeline for this test since we
|
|
|
|
* dont want the timeouts to interpolate the timeline
|
|
|
|
* forward multiple frames */
|
|
|
|
#define TEST_TIMELINE_FPS 10
|
|
|
|
#define TEST_TIMELINE_FRAME_COUNT 20
|
|
|
|
|
|
|
|
typedef struct _TestState {
|
|
|
|
ClutterTimeline *timeline;
|
|
|
|
gint prev_frame;
|
|
|
|
gint completion_count;
|
|
|
|
gint passed;
|
|
|
|
}TestState;
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
new_frame_cb (ClutterTimeline *timeline,
|
|
|
|
gint frame_num,
|
|
|
|
TestState *state)
|
|
|
|
{
|
|
|
|
gint current_frame = clutter_timeline_get_current_frame (state->timeline);
|
|
|
|
|
2008-11-07 14:32:28 -05:00
|
|
|
if (state->prev_frame
|
|
|
|
!= clutter_timeline_get_current_frame (state->timeline))
|
2008-03-05 11:04:06 -05:00
|
|
|
{
|
2008-11-07 14:32:28 -05:00
|
|
|
g_test_message ("timeline previous frame=%-4i "
|
|
|
|
"actual frame=%-4i (OK)\n",
|
|
|
|
state->prev_frame,
|
|
|
|
current_frame);
|
2008-03-05 11:04:06 -05:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2008-11-07 14:32:28 -05:00
|
|
|
g_test_message ("timeline previous frame=%-4i "
|
|
|
|
"actual frame=%-4i (FAILED)\n",
|
|
|
|
state->prev_frame,
|
|
|
|
current_frame);
|
2008-03-05 11:04:06 -05:00
|
|
|
|
|
|
|
state->passed = FALSE;
|
|
|
|
}
|
|
|
|
|
|
|
|
state->prev_frame = current_frame;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
completed_cb (ClutterTimeline *timeline,
|
2008-11-07 14:32:28 -05:00
|
|
|
TestState *state)
|
2008-03-05 11:04:06 -05:00
|
|
|
{
|
|
|
|
state->completion_count++;
|
|
|
|
|
|
|
|
if (state->completion_count == 2)
|
|
|
|
{
|
2008-11-07 14:32:28 -05:00
|
|
|
if (state->passed)
|
|
|
|
{
|
|
|
|
g_test_message ("Passed\n");
|
|
|
|
clutter_main_quit ();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
g_test_message ("Failed\n");
|
|
|
|
exit (EXIT_FAILURE);
|
|
|
|
}
|
2008-03-05 11:04:06 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2008-11-07 14:32:28 -05:00
|
|
|
void
|
|
|
|
test_timeline_dup_frames (TestConformSimpleFixture *fixture,
|
|
|
|
gconstpointer data)
|
2008-03-05 11:04:06 -05:00
|
|
|
{
|
|
|
|
TestState state;
|
|
|
|
|
|
|
|
state.timeline =
|
|
|
|
clutter_timeline_new (TEST_TIMELINE_FRAME_COUNT,
|
2008-11-07 14:32:28 -05:00
|
|
|
TEST_TIMELINE_FPS);
|
2008-03-05 11:04:06 -05:00
|
|
|
clutter_timeline_set_loop (state.timeline, TRUE);
|
|
|
|
g_signal_connect (G_OBJECT(state.timeline),
|
2008-11-07 14:32:28 -05:00
|
|
|
"new-frame",
|
|
|
|
G_CALLBACK(new_frame_cb),
|
|
|
|
&state);
|
2008-03-05 11:04:06 -05:00
|
|
|
g_signal_connect (G_OBJECT(state.timeline),
|
2008-11-07 14:32:28 -05:00
|
|
|
"completed",
|
|
|
|
G_CALLBACK(completed_cb),
|
|
|
|
&state);
|
2008-03-05 11:04:06 -05:00
|
|
|
|
|
|
|
state.prev_frame = -1;
|
|
|
|
state.completion_count = 0;
|
|
|
|
state.passed = TRUE;
|
|
|
|
|
|
|
|
clutter_timeline_start (state.timeline);
|
2008-11-07 14:32:28 -05:00
|
|
|
|
2008-03-05 11:04:06 -05:00
|
|
|
clutter_main();
|
2008-11-07 14:32:28 -05:00
|
|
|
|
|
|
|
g_object_unref (state.timeline);
|
2008-03-05 11:04:06 -05:00
|
|
|
}
|
|
|
|
|