]>
Dogcows Code - chaz/yoink/blob - src/Animation.hh
97e916d8b5f3a77ae502cd50c878b79733020355
2 /*] Copyright (c) 2009-2010, Charles McGarvey [**************************
3 **] All rights reserved.
7 * Distributable under the terms and conditions of the 2-clause BSD license;
8 * see the file COPYING for a complete text of the license.
10 **************************************************************************/
12 #ifndef _ANIMATION_HH_
13 #define _ANIMATION_HH_
22 #include <boost/shared_ptr.hpp>
24 #include <moof/math.hh>
28 typedef boost::shared_ptr
<Animation
> AnimationP
;
31 * A class to manage frame-based animation. Animation sequences can be
32 * loaded from file, then named sequences are started. The animation is
33 * updated periodically (each update cycle), and the correct current frame
34 * is determined. This class is generic enough that a frame can mean just
35 * about anything to whatever drawing context is used to render the frame.
42 Animation(const std::string
& name
);
44 static AnimationP
alloc(const std::string
& name
)
46 return AnimationP(new Animation(name
));
50 void startSequence(const std::string
& name
);
52 void update(moof::scalar t
, moof::scalar dt
);
53 unsigned getFrame() const;
59 boost::shared_ptr
<impl
> impl_
;
63 #endif // _ANIMATION_HH_
This page took 0.040155 seconds and 3 git commands to generate.