9c7afe0c5b
Timelines no longer work in terms of a frame rate and a number of frames but instead just have a duration in milliseconds. This better matches the working of the master clock where if any timelines are running it will redraw as fast as possible rather than limiting to the lowest rated timeline. Most applications will just create animations and expect them to finish in a certain amount of time without caring about how many frames are drawn. If a frame is going to be drawn it might as well update all of the animations to some fraction of the total animation rather than rounding to the nearest whole frame. The 'frame_num' parameter of the new-frame signal is now 'msecs' which is a number of milliseconds progressed along the timeline. Applications should use clutter_timeline_get_progress instead of the frame number. Markers can now only be attached at a time value. The position is stored in milliseconds rather than at a frame number. test-timeline-smoothness and test-timeline-dup-frames have been removed because they no longer make sense.
77 lines
2.1 KiB
C
77 lines
2.1 KiB
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
|
|
#include <glib.h>
|
|
#include <gmodule.h>
|
|
|
|
#include <clutter/clutter.h>
|
|
|
|
G_MODULE_EXPORT int
|
|
test_rotate_main (int argc, char *argv[])
|
|
{
|
|
ClutterTimeline *timeline;
|
|
ClutterAlpha *alpha;
|
|
ClutterBehaviour *r_behave;
|
|
ClutterActor *stage;
|
|
ClutterActor *hand, *label;
|
|
ClutterColor stage_color = { 0xcc, 0xcc, 0xcc, 0xff };
|
|
|
|
clutter_init (&argc, &argv);
|
|
|
|
stage = clutter_stage_get_default ();
|
|
|
|
clutter_stage_set_color (CLUTTER_STAGE (stage),
|
|
&stage_color);
|
|
|
|
/* Make a hand */
|
|
hand = clutter_texture_new_from_file ("redhand.png", NULL);
|
|
if (!hand)
|
|
g_error("pixbuf load failed");
|
|
|
|
clutter_actor_set_position (hand, 240, 140);
|
|
clutter_actor_show (hand);
|
|
clutter_container_add_actor (CLUTTER_CONTAINER (stage), hand);
|
|
|
|
label = clutter_text_new_with_text ("Mono 16",
|
|
"The Wonder\n"
|
|
"of the\n"
|
|
"Spinning Hand");
|
|
clutter_text_set_line_alignment (CLUTTER_TEXT (label), PANGO_ALIGN_CENTER);
|
|
clutter_actor_set_position (label, 150, 150);
|
|
clutter_actor_set_size (label, 500, 100);
|
|
clutter_actor_show (label);
|
|
clutter_container_add_actor (CLUTTER_CONTAINER (stage), label);
|
|
|
|
/* Make a timeline */
|
|
timeline = clutter_timeline_new (7692); /* num frames, fps */
|
|
clutter_timeline_set_loop (timeline, TRUE);
|
|
|
|
/* Set an alpha func to power behaviour */
|
|
alpha = clutter_alpha_new_full (timeline, CLUTTER_LINEAR);
|
|
|
|
/* Create a behaviour for that alpha */
|
|
r_behave = clutter_behaviour_rotate_new (alpha,
|
|
CLUTTER_Z_AXIS,
|
|
CLUTTER_ROTATE_CW,
|
|
0.0, 360.0);
|
|
|
|
clutter_behaviour_rotate_set_center (CLUTTER_BEHAVIOUR_ROTATE (r_behave),
|
|
86, 125, 0);
|
|
|
|
/* Apply it to our actor */
|
|
clutter_behaviour_apply (r_behave, hand);
|
|
clutter_behaviour_apply (r_behave, label);
|
|
|
|
/* start the timeline and thus the animations */
|
|
clutter_timeline_start (timeline);
|
|
|
|
clutter_actor_show_all (stage);
|
|
|
|
clutter_main();
|
|
|
|
g_object_unref (r_behave);
|
|
|
|
return 0;
|
|
}
|