Internal Animation Format

From Second Life Wiki
Jump to navigation Jump to search
KBtip2.png Tip: You may find the contents of Anim File Format page helpful in addition to this page.

Tools

If you're coming here to find out about how to take advantage of Second Life's internal animation format (.anim), you may find the below tools of use.

.anim file format utilities
Name Notes
Anim-converter Converts .bvh files into Second Life .anim files.
Anim2BVH Inverse of the above, converts .anim files into .bvh files.
Anim Hacker Tool for manipulating .anim files. Can be used to edit joint priorities, add constraints, and more!
tanimbomb Python CLI tool for making simple bulk-edits to multiple anim files at once, especially joint removal and animation mirroring
AnimMaker Older tool, equivalent to AnimHacker. (Source Code available in archive)

Overview

From a programming perspective, there are several steps to uploading an animation from a BVH (BioVision Hierarchy) file:

  1. Read and parse the BVH file, creating an LLKeyframeMotion object containing the motion data.
  2. Gather input from the user (via the upload preview floater) for things like animation priority, facial expression, and looping; these settings are stored in the LLKeyframeMotion object.
  3. Serialize the LLKeyframeMotion object as LLSD.
  4. Upload the serialized data to the asset server.

Before other viewers can play an animation, they must:

  1. Download the serialized data from the asset server.
  2. Deserialize it to an LLKeyframeMotion object.

Relevant source files:

Note: the binary file is little endian.

KBwarning.png Warning: The asset uploader enforces a 250,000 byte limit on .anim files. Files larger than this will fail to upload, and will return an error.
Simplify your animation, then retry uploading.
Blender Users: You can use a built-in function called "Decimate" to simplify your animation. See this tutorial.

Header

The first part of the animation data is a header describing various details about the animation as a whole. The elements, in order, are:

field name description LLSD type C++ type Note
version integer U16
sub_version integer U16
base_priority integer S32 Is informational only, and does not affect the animation. The animation system always follows individual joint priority; Except for animations making use of constraints, in which case the constraint will be applied at priority defined by this value.
duration real F32
emote_name string char * NULL-terminated character sequence
loop_in_point real F32
loop_out_point real F32
loop integer S32 0: not looped, 1: looped
ease_in_duration real F32
ease_out_duration real F32
hand_pose integer U32 Enum defined in [1]
num_joints integer U32

Joint Data

After the header is data for each joint in the skeleton: Note: Unused bones need not be included in the file.

field name description LLSD type C++ type Note
joint_name string char * NULL-terminated character sequence
joint_priority integer S32

Joint Rotation Keys

At the start of the rotation data for each bone is the total number of rotation keys: If the bone has no rotation based keyframes, this value must be 0.

field name description LLSD type C++ type Note
num_rot_keys integer S32

Then, for each rotation key:

Note: These three values X Y Z appear to be the first three values of a truncated quaternion with the W term being calculated afterwards. Since a quaternion is X2 + Y2 + Z2 + W2 = 1 as long as you assume the W term has a consistent sign the X Y Z terms will be accurate.

field name description LLSD type C++ type Note
time integer U16 0: first frame, 65535: last frame
rot_x integer U16 0:-1, 32767:0, 65535:+1
rot_y integer U16
rot_z integer U16

Joint Position Keys

At the start of the position data is the total number of position keys: If the bone has no position based animations, this value must be 0.

field name description LLSD type C++ type Note
num_pos_keys integer S32


Then, for each position key, position data is measured from Avatar Center ( mPelvis ), not joint resting position ( IE [0,0,0] is not joint resting position, it'll be the bone's position in parent coordinate space) with the exception of the mPelvis bone which is stored in world space coordinates.:

field name description LLSD type C++ type Note
time integer U16 0: first frame, 65535: last frame
pos_x position measured from avatar root, not joint offset integer U16 0:-5m, 32767:0m, 65535:+5m (m for metres)
pos_y integer U16
pos_z integer U16

Constraints

After the joint data are a number of entries for joint constraints. Constraints can target an avatar's parts in relation to each other or the ground (IK).

field name description LLSD type C++ type Note
num_constraints integer S32

Then, for each joint constraint:

field name description LLSD type C++ type Note
chain_length integer U8 number of attached joints to include
constraint_type integer U8 0: point*, 1: plane
source_volume skeleton collision volume name string char[16] Always 16 bytes, but if shorter, it's interpreted as NULL-terminated and the remaining bytes ignored.
source_offset string (?) LLVector3
target_volume skeleton collision volume name string char[16] Always 16 bytes, but if shorter, it's interpreted as NULL-terminated and the remaining bytes ignored.
target_offset string (?) LLVector3
target_dir string (?) LLVector3 value is currently ignored
ease_in_start real F32
ease_in_stop real F32
ease_out_start real F32
ease_out_stop real F32

* The implementation of constraint type Point is incomplete, and is considered non-functional. Until further notice, all constraints should use the Plane type.

The above does not seem to be true, both types would seem to be working. (Jenna Huntsman tested 12 August 2022 )

Jenna's notes on constraints

  • chain_length is not inclusive of the source bone itself, so for example, if the source bone is R_HAND, setting a chain_length of 2 will use R_LOWER_ARM (elbow joint) and R_UPPER_ARM (shoulder joint).
    • Setting a chain_length of more than 4 will prevent the animation from playing - the animation will upload, but will not play.
    • Setting a chain_length of 4 (both constraint types) will cause the viewer to crash.
  • target_offset uses an axis layout of X+ forward, Y+ left, Z+ up.
    • Constraints only seem to work reliably if target_offset has a value of 1 on the Z axis. The values on the X and Y axis can be anything however.
  • source_offset uses an axis layout of X+ forward, Y+ left, Z+ up.
    • The distance units expected are of an unknown unit, however it does not seem to be meters or inches. (Also true of target_offset)
    • llkeyframemotion.cpp would seem to suggest that constraints are inherited from a BVH upon conversion to .anim, which would make the units be inches (as is standard for BVH animations in SL); however in-world testing casts doubt upon this.
  • target_dir is unused, however is likely a unit vector relative to the armature root.
    • As such, bone rotations can be manipulated by rot keys as normal, however the rotation will not be relative to the target volume.
    • It seems that while target_dir is present in the file format for constraints, it was never implemented (As per llkeyframemotion.cpp).
  • While GROUND is a recognized and implemented target volume, server-side checks prevent uploads of animations making use of this constraint target.
  • There seems to be a hard limit of 10 constraints per animation (as per llkeyframemotion.cpp).
  • Constraints always follow the shortest path from their source to their destination, irrespective of 'legal' joint rotations. (Meaning to say, constraints can cause bones to move in an odd way (e.g. an arm clipping inside your body) if that is the shortest path.)
  • Unlike regular animations, Constraints seem to require an intact armature from the skeleton root (mPelvis) to the source and target bones; Otherwise the animation will not play.
    • The bones do not need to be animated, they only need to be present in the .anim file.
  • Constraints do respect animation priority (The global animation priority, as defined by base_priority, not the per joint priority), meaning it's possible to stack constraints, but not within the same animation.