ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/deliantra/server/common/anim.C
(Generate patch)

Comparing deliantra/server/common/anim.C (file contents):
Revision 1.40 by root, Mon Oct 29 23:55:52 2012 UTC vs.
Revision 1.41 by root, Wed Nov 14 06:21:39 2012 UTC

56 animhash.insert (std::make_pair (anim.name, anim.number)); 56 animhash.insert (std::make_pair (anim.name, anim.number));
57 57
58 return anim; 58 return anim;
59} 59}
60 60
61/* Tries to find the animation id that matches name. Returns an integer match
62 * 0 if no match found (animation 0 is initialised as the 'bug' face
63 */
61animation & 64animation &
62animation::find (const char *name) 65animation::find (const char *name)
63{ 66{
64 if (!name) 67 if (!name)
65 return animations [0]; 68 return animations [0];
71void 74void
72init_anim () 75init_anim ()
73{ 76{
74 animation &anim0 = animation::create ("none", 1, 0); 77 animation &anim0 = animation::create ("none", 1, 0);
75 anim0.faces [0] = 0; 78 anim0.faces [0] = 0;
76}
77
78/* Tries to find the animation id that matches name. Returns an integer match
79 * 0 if no match found (animation 0 is initialised as the 'bug' face
80 */
81//TODO: nuke this function and replace all occurences by animations::find
82int
83find_animation (const char *name)
84{
85 return animation::find (name).number;
86} 79}
87 80
88/* 81/*
89 * animate_object(object) updates the face-variable of an object. 82 * animate_object(object) updates the face-variable of an object.
90 * If the object is the head of a multi-object, all objects are animated. 83 * If the object is the head of a multi-object, all objects are animated.

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines