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.
== nfl jerseys from china authentic
  hedgzlcdv ==
Ah in this intense Fiends central location. But the Ranariddh Rose Valley is not the average person can barge, strong Rose Valley, surrounded by a murderous ghost guardian, internal legend more ferocious fire Rose beast, so few people dare to break into the strong Rose Valley to find out. Branching of fear, said..  <a href=http://jast.org/nfl/20150926-washington-redskins--art-monk-jersey-4-1515.html>2015 washington redskins  art monk jersey</a> <a href=http://flightcomposites.com/nfl/20150926-san-francisco-49ers-quinton-patton-jersey-9-80.html>2015 san francisco 49ers quinton patton jersey</a> <a href=http://sabusinesshalloffame.com/nfl/20150926-chicago-bears-matt-forte-jersey-2-233.html>2015 chicago bears matt forte jersey</a>  Blair, who's from Champaign, III., was determined to show herself as America's most productive, if not most recognizable, Winter Olympic athlete. Maybe, finally, she would even become a star. Don Johnson and Melanie Griffith seemed to think so, greeting her with kisses as she left the medal podium..  <a href=http://nsjpr.com/nfl/20150926-green-bay-packers-b.j.-raji-jersey-1-1042.html>2015 green bay packers b.j. raji jersey</a> <a href=http://delagarzafence.com/nfl/20150926-new-england-patriots-bradley-fletcher-jersey-2-1093.html>2015 new england patriots bradley fletcher jersey</a> <a href=http://sabusinesshalloffame.com/nfl/20150926-green-bay-packers-jordy-nelson-jersey-2-983.html>2015 green bay packers jordy nelson jersey</a> 
Christian Louboutin was born and raised in Paris, France and was first heard of in the French fashion scene in 1991 when he introduced his line of high-end women shoes. His passion for fashion was cultivated by his three sisters. It was, however, an incident at a Paris museum in 1976 that started his interest with shoes.

Revision as of 12:59, 9 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.

== nfl jerseys from china authentic

  hedgzlcdv ==

Ah in this intense Fiends central location. But the Ranariddh Rose Valley is not the average person can barge, strong Rose Valley, surrounded by a murderous ghost guardian, internal legend more ferocious fire Rose beast, so few people dare to break into the strong Rose Valley to find out. Branching of fear, said.. <a href=http://jast.org/nfl/20150926-washington-redskins--art-monk-jersey-4-1515.html>2015 washington redskins art monk jersey</a> <a href=http://flightcomposites.com/nfl/20150926-san-francisco-49ers-quinton-patton-jersey-9-80.html>2015 san francisco 49ers quinton patton jersey</a> <a href=http://sabusinesshalloffame.com/nfl/20150926-chicago-bears-matt-forte-jersey-2-233.html>2015 chicago bears matt forte jersey</a> Blair, who's from Champaign, III., was determined to show herself as America's most productive, if not most recognizable, Winter Olympic athlete. Maybe, finally, she would even become a star. Don Johnson and Melanie Griffith seemed to think so, greeting her with kisses as she left the medal podium.. <a href=http://nsjpr.com/nfl/20150926-green-bay-packers-b.j.-raji-jersey-1-1042.html>2015 green bay packers b.j. raji jersey</a> <a href=http://delagarzafence.com/nfl/20150926-new-england-patriots-bradley-fletcher-jersey-2-1093.html>2015 new england patriots bradley fletcher jersey</a> <a href=http://sabusinesshalloffame.com/nfl/20150926-green-bay-packers-jordy-nelson-jersey-2-983.html>2015 green bay packers jordy nelson jersey</a> Christian Louboutin was born and raised in Paris, France and was first heard of in the French fashion scene in 1991 when he introduced his line of high-end women shoes. His passion for fashion was cultivated by his three sisters. It was, however, an incident at a Paris museum in 1976 that started his interest with shoes.