OBD:TRAM/raw0x34
Here's the minimal structure of the body animation tracks for a TRAM file
(The example below is for SHINZOMidle1)
The global stucture is 19 bone tracks, preceded by a list of their offsets (the "header").
Information required to read this part :
- number of body parts (0x16A in the dat)
- "compression size" (0x160 in the dat)
- frame count (0x16C in the dat)
The size of a bone track is not known in advance. See "General info" below.
Header
0x00-0x23 : list of the offsets of the 19 bone tracks
Offset | Body part | Raw hex | Value (offset of orientation track) |
---|---|---|---|
0x00 | Pelvis | 2600 | 0x26 |
0x02 | Lt Thigh | 3300 | 0x33 |
0x04 | Lt Calf | 4000 | 0x40 |
0x06 | Lt Foot | 4D00 | 0x4D |
0x08 | Rt Thigh | 5A00 | 0x5A |
0x0A | Rt Calf | 6700 | 0x67 |
0x0C | Rt Foot | 7400 | 0x74 |
0x0E | Mid | 8100 | 0x81 |
0x10 | Chest | 8E00 | 0x8E |
0x12 | Neck | 9B00 | 0x9B |
0x14 | Head | A800 | 0xA8 |
0x16 | Lt Shoulder | B500 | 0xB5 |
0x18 | Lt Arm | C200 | 0xC2 |
0x1A | Lt Wrist | CF00 | 0xCF |
0x1C | Lt Fist | DC00 | 0xDC |
0x1E | Rt Shoulder | E900 | 0xE9 |
0x20 | Rt Arm | F600 | 0xF6 |
0x22 | Rt Wrist | 0301 | 0x103 |
0x24 | Rt Fist | 1001 | 0x110 |
Bone tracks
General info
An orientation track is a succession of keyframe fields (either 6 or 16 bytes depending on the "compression size") defining the orientation of the bone at a key moment. Every pair of keyframes is separated by an interval field (one byte) defining the number of frames between the two key moments. Orientation is interpolated linearly between two keyframes over the interval between them. If the cumulated intervals reach the total frame count of the animation (minus 1) then the next keyframe is the final one.
Thus the length of the track is determined upon reading
Compression size 6
Angle | Short | Raw hex |
---|---|---|
0° | 0x0 | 0x0000 |
45° | 0x2000 | 0x0020 |
90° | 0x4000 | 0x0040 |
180° | 0x8000 | 0x0080 |
270° | 0xC000 | 0x00C0 |
An orientation consists of three angles, each of them a 2-byte integer (short).
The example here is the SHINZOMidle1 animation (10 frames long)
Offset | Body part | Raw hex | from | over | to |
---|---|---|---|---|---|
0x26 | Pelvis | 5F45 F93D B6FA 09 5F45 F93D B6FA | (97°, 87°, 352°) | 9 frames | (97°, 87°, 352°) |
0x33 | Lt Thigh | 1839 1B34 8877 09 1839 1B34 8877 | (°, °, °) | 9 frames | (°, °, °) |
0x40 | Lt Calf | 0000 0000 96AB 09 0000 0000 96AB | (0°, 0°, °) | 9 frames | (0°, 0°, °) |
0x4D | Lt Foot | 9436 DFFB 3E15 09 9436 DFFB 3E15 | (°, °, °) | 9 frames | (°, °, °) |
0x5A | Rt Thigh | 5351 3D13 DC9C 09 5351 3D13 DC9C | (°, °, °) | 9 frames | (°, °, °) |
0x67 | Rt Calf | 0000 0000 D5E7 09 0000 0000 D5E7 | (0°, 0°, °) | 9 frames | (0°, 0°, °) |
0x74 | Rt Foot | 5703 30FA ACF4 09 5703 30FA ACF4 | (°, °, °) | 9 frames | (°, °, °) |
0x81 | Mid | 1302 6301 6DFE 09 1302 6301 6DFE | (°, °, °) | 9 frames | (°, °, °) |
0x8E | Chest | 0402 9F06 7FF4 09 0402 9F06 7FF4 | (°, °, °) | 9 frames | (°, °, °) |
0x9B | Neck | 0000 FEFF 496F 09 0000 FEFF 496F | (0°, °, °) | 9 frames | (0°, °, °) |
0xA8 | Head | 90FB 2504 639B 09 90FB 2504 639B | (°, °, °) | 9 frames | (°, °, °) |
0xB5 | Lt Shoulder | 6548 B4DF 1677 09 6548 B4DF 1677 | (°, °, °) | 9 frames | (°, °, °) |
0xC2 | Lt Arm | 90E2 360D 48E5 09 90E2 360D 48E5 | (°, °, °) | 9 frames | (°, °, °) |
0xCF | Lt Wrist | 0000 0000 D7E4 09 0000 0000 D7E4 | (0°, 0°, °) | 9 frames | (0°, 0°, °) |
0xDC | Lt Fist | 1ABD 51EB D718 09 1ABD 51EB D718 | (°, °, °) | 9 frames | (°, °, °) |
0xE9 | Rt Shoulder | AD8B 592B 0D5E 09 AD8B 592B 0D5E | (°, °, °) | 9 frames | (°, °, °) |
0xF6 | Rt Arm | 2C1C 1116 40D7 09 2C1C 1116 40D7 | (°, °, °) | 9 frames | (°, °, °) |
0x103 | Rt Wrist | 0000 0000 1734 09 0000 0000 1734 | (0°, 0°, °) | 9 frames | (0°, 0°, °) |
0x110 | Rt Fist | 2341 5404 53EE 09 2341 5404 53EE | (°, °, °) | 9 frames | (°, °, °) |
There are only two keyframes for every bone, and the orientation is identical for both keyframes.
In fact, Shinatama remains frozen during the whole anim.
Origin and direction of the angles
If the (0°, 0°, 0°) orientation is set for every bone, then all the bones point along the x axis of the character (from left to right) and face upwards
Viewed from above, you get something like this (yeah, the shoulders are attached to the neck)
o-5-o-6-o-7 o-16-o-17-o-18-o-19 | | 1-o-8-o-9-o-10-o-11 | | o-2-o-3-o-4 o-12-o-13-o-14-o-15
More, later...