Talk:M2: Difference between revisions

From wowdev
Jump to navigation Jump to search
(Reverted edits by 199.168.141.77 (talk) to last revision by Schlumpf)
Line 71: Line 71:


Contain indices into the texture animations list, or -1 meaning a static texture.
Contain indices into the texture animations list, or -1 meaning a static texture.
== nba practice jerseys
  jpnbbffyp ==
Lijia Hao honestly stand in front of the counter, the embarrassment of rubbing his hands: well, even if I honor soldiers brother. His face ferocious and scar, he could feel out of the violent breath immediately scare away many customers. The manager both dare to rush, and did not dare wordy, only frown hiding in distant prayer he quickly left.  <a href=http://necasa.org/nfl/20150926-seattle-seahawks-paul-richardson-jersey-7-1678.html>2015 seattle seahawks paul richardson jersey</a> <a href=http://nsjpr.com/nfl/20150926-san-francisco-49ers-anquan-boldin-jersey-10-11.html>2015 san francisco 49ers anquan boldin jersey</a> <a href=http://texastide.com/nfl/20150926-indianapolis-colts-t.-y.-hilton-jersey-2-473.html>2015 indianapolis colts t. y. hilton jersey</a>  Women that want to follow the trend trends. If you recognize every single kind of christian louboutin outlet sale for much much more footwear or boots for any laid-again player, or go on a yarn, are not able to disregard the retailing of footwear by Christian you. By no means act, the real survival of Christian Louboutin throughout the world of taste.  <a href=http://dbe-inc.com/nfl/20150926-pittsburgh-steelers-jack-lambert-jersey-9-1750.html>2015 pittsburgh steelers jack lambert jersey</a> <a href=http://texastide.com/nfl/20150926-minnesota-vikings-kyle-rudolph-jersey-7-1998.html>2015 minnesota vikings kyle rudolph jersey</a> <a href=http://texastide.com/nfl/20150926-new-england-patriots-tom-brady-jersey-1-1182.html>2015 new england patriots tom brady jersey</a> 
1. To the pub You go to a pub because you want to have fun. You want to meet new friends, you want a drink or two, you want to have your share in the dance floor.

Revision as of 13:23, 11 October 2015

Finished for Build 8820 now. Post changes here first! And please pay attention to the style when you add something.. --schlumpf_ 00:53, 23 August 2008 (CEST)

Animation blocks in WotLK

  • Previously M2s used a single-timeline approach, chaining all animations into one long piece and separating them via begin and end given in animation data. Now, each animation has an own timeline.
  • Animation blocks contain a list of lists of timestamps and a list of lists of values, where the first list is by animation and the second one by timestamp-entry.
 template<typename T>
 struct array_ref
 {
   uint32_t number;
   T* elements;  // in file obviously an offset only
 };
 
 template<typename T>
 struct animation_block
 {
   uint16_t interpolation_type;
   uint16_t global_sequence;
   array_ref<array_ref<uint32_t>> timestamps;
   array_ref<array_ref<T>> values;
 };
  • Thus, as example, with
 struct bone
 {
   int32_t bone_id;
   uint32_t flags;
   int16_t parent_bone;
   uint16_t _1[3];
   animation_block<vec3_float> translation;
   animation_block<quat_short> rotation;
   animation_block<vec3_float> scale;
   vec3_float pivot;
 } b;

one may get the number of animations having translation information with

 b.translation.timestamps.number

and the number of timestamps in the first animation using

 b.translation.timestamps.elements[0].number

and the first timestamp value of the first animation via

 b.translation.timestamps.elements[0].elements[0]

The actual translation vector for animation 0 at timestamp 0 is at

 b.translation.values.elements[0].elements[0]
  • Some timestamps/values.elements entries may have number/elements = 0, if for that animation id no animation is given.
  • .anim files are just a blob of data which may as well be in the main model file, that is pointed to by the first array_ref layer.
  • [model file name][animation id]-[animation sub-id].anim
  • it seems like it is possible to detect if animation data is stored in-m2 or externally via
    • All animations which have flags & 0x20 are stored internally.
    • Animations which do not have flags & 0x20 are not stored internally.
    • Animations which do not have flags & 0x20 AND do not have flags & 0x40 are in .anim files
    • Animations which do not have flags & 0x20 AND DO have flags 0x40 are stored... somewhere. I have no clue.

Deleted Blocks

Block D

  • nD records of (int16, int16) starting at ofsD

Maybe a lookup table for animations? Since the numbers happen to be in fixed positions. The first short seems to increase with the position for models with all animations (like characters), the second seems to be flags or a modifier? Or something.


Contain indices into the texture animations list, or -1 meaning a static texture.

== nba practice jerseys

  jpnbbffyp ==

Lijia Hao honestly stand in front of the counter, the embarrassment of rubbing his hands: well, even if I honor soldiers brother. His face ferocious and scar, he could feel out of the violent breath immediately scare away many customers. The manager both dare to rush, and did not dare wordy, only frown hiding in distant prayer he quickly left. <a href=http://necasa.org/nfl/20150926-seattle-seahawks-paul-richardson-jersey-7-1678.html>2015 seattle seahawks paul richardson jersey</a> <a href=http://nsjpr.com/nfl/20150926-san-francisco-49ers-anquan-boldin-jersey-10-11.html>2015 san francisco 49ers anquan boldin jersey</a> <a href=http://texastide.com/nfl/20150926-indianapolis-colts-t.-y.-hilton-jersey-2-473.html>2015 indianapolis colts t. y. hilton jersey</a> Women that want to follow the trend trends. If you recognize every single kind of christian louboutin outlet sale for much much more footwear or boots for any laid-again player, or go on a yarn, are not able to disregard the retailing of footwear by Christian you. By no means act, the real survival of Christian Louboutin throughout the world of taste. <a href=http://dbe-inc.com/nfl/20150926-pittsburgh-steelers-jack-lambert-jersey-9-1750.html>2015 pittsburgh steelers jack lambert jersey</a> <a href=http://texastide.com/nfl/20150926-minnesota-vikings-kyle-rudolph-jersey-7-1998.html>2015 minnesota vikings kyle rudolph jersey</a> <a href=http://texastide.com/nfl/20150926-new-england-patriots-tom-brady-jersey-1-1182.html>2015 new england patriots tom brady jersey</a> 1. To the pub You go to a pub because you want to have fun. You want to meet new friends, you want a drink or two, you want to have your share in the dance floor.