Click here to Skip to main content
5,788,212 members and growing! (18,100 online)
Email Password   helpLost your password?
Web Development » Silverlight » Controls     Beginner License: The Code Project Open License (CPOL)

Animation Along a Path for Silverlight

By lneir

Animates an object along a geometric path.
C#, Windows (WinXP, Vista, Windows), .NET (.NET 3.5, .NET), Silverlight, Dev, Design

Posted: 9 Nov 2008
Updated: 9 Nov 2008
Views: 7,280
Bookmarked: 34 times
Announcements
Loading...



Search    
Advanced Search
Sitemap
11 votes for this Article.
Popularity: 5.07 Rating: 4.87 out of 5
0 votes, 0.0%
1
0 votes, 0.0%
2
0 votes, 0.0%
3
1 vote, 9.1%
4
10 votes, 90.9%
5

Introduction

Silverlight provides a good animation foundation, but lacks a convenient method to animate an object along an arbitrary geometric path. Windows Presentation Foundation, which is a superset of Silverlight, provides the animation classes, DoubleAnimationUsingPath and PointAnimationUsingPath. With these classes, it is easy to animate an object along a geometric path. This article provides the equivalent animation classes for Silverlight. I suspect future versions of Silverlight will provide this functionality, but until then, the code provided here will do the job.

PathAnimPic.jpg

Background

Currently, Silverlight does not provide animation classes for animating an object along an arbitrary geometric path, but Silverlight does provide key frame animation classes. With the key frame animation classes, you specify beginning and ending values, and then the animation class uses interpolation to calculate all the values in between. A collection of key frames can be assembled together to describe a motion path, but manually building these key frames for each motion path is tedious.

To programmatically generate the key frames describing the motion path, a method to ‘flatten’ the geometric path is needed. Flattening basically means the geometry is described by a series of line segments. The figure below shows an example of a flattened Bezier segment. Once we have the flattened path, then we can easily build the key frames for the storyboard.

flattenedpath.PNG

About the code

SolnPic.JPG

The heart of the code is contained in the ‘PathAnimation’ project. In this project, the abstract BaseAnimationUsingPath class defines a number of dependency properties to control the animation (see below). Notice that this class inherits form DependencyObject rather than a Silverlight animation class. This is because most of the animation classes in Silverlight are sealed, and not extendable like the WPF animation classes. This has implications for the usage of the DoubleAnimationUsingPath and PointAnimationUsingPath animation classes, like they cannot be added to a Storyboard! They can be added as a Resource or created in the code-behind (example provided in the demo app).

BaseClassPic.JPG

The other important project here is ‘PathGeometryHelper’. This project implements the path flattening routine. Charles Petzold developed a path flattening method in his article and gave permission to reuse the code. Charles’ method was written for WPF, and so it needed to be ported to Silverlight. In porting this code to Silverlight, more missing functionality was found. Namely, Silverlight lacks some methods in the Matrix class. Also, Silverlight has no Vector class. Equivalent functionality for these classes (and a few others) has been provided in the ‘MatrixMathHelpers’ project.

An important point to make about the flattening routine is the ‘Tolerance’ parameter. This parameter has been exposed all the way up to the path animation classes. Basically, this parameter controls the number of segments used to approximate the original geometry path. The tolerance value must be greater than zero. A smaller tolerance value will yield greater accuracy (i.e., more line segments), and a larger value will yield less accuracy (i.e., poorer approximation of the geometry path). It is not recommended to make the tolerance too small because this will cause more key frames to be added to the storyboard, slow down the animation, and use too much memory. Play with the demo app and see how adjusting the tolerance affects the accuracy, but be careful not to set the value too small!

Another important piece of code is contained in PathConverter.cs. Currently, Silverlight has no built-in functionality to convert the mini-language string into a PathGeometry, but thankfully, a converter has been provided by and included here in PathConverter.cs. With this handy converter, we can feed the animation classes arbitrarily complicated geometries created with Blend or other tools.

Using the code

Two classes have been provided to animate an object along a geometric path: DoubleAnimationUsingPath and PointAnimationUsingPath. Both share a number of common dependency properties. These properties are equivalent to the Silverlight provided animation properties, so they should be familiar:

  • BeginTime: the time when the animation should start.
  • Duration: the duration/length of the animation.
  • AutoReverse: reverses the animation at end when true.
  • FillBehavior: hold the value at the end of the animation, or reset to the value before the animation started.
  • RepeatBehavior: number of times to repeat.
  • PathGeometry: specifies the geometry that the object will follow when animating.
  • TargetProperty: the property to animate.
  • Target: the name of the object to animate.
  • Tolerance: controls the accuracy of the path flattening; must be greater than zero; smaller values give more accuracy.

In addition to the properties above, all of the standard animation methods: Begin, Stop, Pause, Resume, and Seek have been provided.

DoubleAnimationUsingPath will only animate object properties of type double (e.g., height, width, X, Y, etc.). This animation class has one additional dependency property: Source. The Source property specifies to use either the X or Y output value of the PathGeometry to drive the animation.

As discussed in the previous section, the animation classes provided here cannot be used in a Storyboard like other Silverlight animation classes. They can, though, be added as a Resource or created in the code-behind (see the demo app for an example).

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

lneir


I work in the Bay Area developing software using .NET/C#, WPF, and Silverlight.
Occupation: Software Developer (Senior)
Company: Pinnacle Systems/Avid
Location: United States United States

Article Top
Sign Up to vote for this article
You must Sign In to use this message board.
FAQ FAQ Noise ToleranceSearch Search Messages 
 Layout  Per page   
 Msgs 1 to 16 of 16 (Total in Forum: 16) (Refresh)FirstPrevNext
GeneralCompleted Eventmemberdahlbyk16:59 11 Dec '08  
QuestionExcellent! One questionmemberGiancarlo Aguilera14:01 4 Dec '08  
AnswerRe: Excellent! One questionmemberlneir14:23 4 Dec '08  
GeneralIncreasing the speed of the animationmemberMember 12327886:05 3 Dec '08  
GeneralRe: Increasing the speed of the animationmemberlneir7:15 3 Dec '08  
GeneralExcellentmemberMohammad Dayyan10:07 26 Nov '08  
GeneralPath animation under silverlightmemberMember 40033679:05 11 Nov '08  
GeneralRe: Path animation under silverlightmemberlneir9:12 11 Nov '08  
GeneralVery NicememberPaul Conrad19:11 10 Nov '08  
GeneralLooked for this a long time!memberQ_bus0:40 10 Nov '08  
GeneralRe: Looked for this a long time!memberlneir7:00 10 Nov '08  
GeneralRe: Looked for this a long time!memberQ_bus9:37 10 Nov '08  
GeneralRe: Looked for this a long time!memberQ_bus10:11 10 Nov '08  
GeneralRe: Looked for this a long time!memberlneir16:59 10 Nov '08  
GeneralRe: Looked for this a long time!memberQ_bus21:45 10 Nov '08  
GeneralRe: Looked for this a long time!memberlneir6:24 11 Nov '08  

General General    News News    Question Question    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

PermaLink | Privacy | Terms of Use
Last Updated: 9 Nov 2008
Editor: Smitha Vijayan
Copyright 2008 by lneir
Everything else Copyright © CodeProject, 1999-2009
Web13 | Advertise on the Code Project