OBD talk:TRAM
Hello all ONI fans, This is not guide how to edit TRAM, it is only TRAM explained in more detail in order to help those who would like to modify it. I see it all the time that you discover already discovered and it is MY FAULT because I didn't share my knowledge X_X. Shame on me. --Loser 19:50, 20 August 2008 (CEST)
P.S.: And I am comguy (smart@$$ and coward), not striker ^_^
GENERAL:
- We need hexeditor or OUP and some decimal to hex (Windows calculator) and decimal to float (see HERE) converters.
- normal number are written as usual, when I want to write HEx number, I use prefix 0x. so 0x10 means 16.
- Next here comes explanation of storage types (that is "type" column in table). Storage type is how this value is saved and how can be read by Oni. Types in TRAM which interests us are:
- Offset: tells us that value points to the exact location in raw file where is something stored. Offset is a bit tricky. It is written in Little endian. So when in offset field is written A0|B4|80|00 , then something starts in raw at position 00|80|B4|A0 . See? Order of bytes is reversed. Keep this in mind. This can be helpful if we need to add some part to the TRAM which is originally not present for this TRAM (usually particles). You add this part (in correct form of course!) to the end of raw file, extending it (HEXeditor needed! Cannot do this with OUP!) and then you note where it begins (offset is usually written on the side) and write it into correct offset field in correct form for Oni(reverse bytes). A few examples of tricky offsets:
- C5|A6|70|00 means 00|70|A6|C5, so something in raw starts at line 00|70|A6|C0 on the byte 05 (so it is 6th byte from the right, 0 is counted as well!!!).
- 40|89|14|01 means 01|14|89|40, so something in raw starts at that line. Tricky part is the LAST byte when it is YOU who tries to reverse bytes in order to write them into TRAM ^_~.
- Link: it tells us (and engine) that we should find some other file to use for something. Link contains internal number of the file we should search for,its res_ID. Usually first 4 bytes of file are this number.
- Bitset: this is field of some optional possibilites. Each one has its own (hardcoded) number. Numbers are powers of 2 : 0,1,2,4,8,16 (0x10 in hex),32 (0x20 in hex),64 (0x40 in hex),128 (0x80 in hex)
- Int: integer, it is some value written in hex (not generally, just for this purpose. Generally integer is defined as numeric value which can contain only whole numbers). Beware, again little endian. So if you want to change some "short" field, then type value you want into calculator, convert to hexadecimal. Then fill it in in reverse order (Little endian).
- Float: field which can contain real number value. Beware, again Little endian. In order to decipher float, use some "float to decimal" converter (maybe the one I have suggested above? ^_^)
- Char: some word, usually it is name of something. Howgh
Offset | Type | Raw Hex | Value | Description | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0x000 | res_id | 01 49 07 00 | 1532 | 01865-KONCOMpunch_heavy.TRAM | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x004 | lev_id | 01 00 00 00 | 0 | level 0 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x008 | int32 | 00 00 00 00 | 0 | unknown; always zero | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x00C | offset | A0 B4 80 00 | 00 80 B4 A0 | at this position starts the "Y-positions of the pelvis" in the raw file.It looks like this:
This part contains Y-axis position (height) of pelvis in EACH frame of animation. If we need to "lower" or "elevate" character (we adopted some TRAM from other character and while performing, our char is "sinking" or "floating") this is place where we go. Beware: wrong values cause Oni to hang. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x010 | offset | E0 B5 80 00 | 00 80 B5 E0 | at this position starts the "X/Z - velocities of the pelvis" in the raw file. It looks like this:
Z+ is forward, Z- is back, X+ is left, X- is right | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x014 | offset | 60 B8 80 00 | 00 80 B8 60 | at this position starts attack part in the raw file:
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x018 | offset | 00 00 00 00 | unused | at this position starts the damage part in the raw file; only tgt (target) animations use it, BEWARE, without ThrowTarget bit (see 0x3C TRAM) it causes Loser's bug No.1 (Oni crashes). Raw:
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x1C | offset | A0 B8 80 00 | 00 80 B8 A0 | at this position starts the motion blur in the raw file, nothing intersting here for us, it is just eye candy | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x20 | offset | C0 B8 80 00 | 00 80 B8 C0 | at this position starts the shortcut part in the raw file:
This is important part. thanks to this we can perform specials as well as other movements (run, sprint). If you are messing around with TRAM and it does NOT want to be performed while all other things see OK, try to think if it has correct shortcut or if another animation related to this one has correct shortcut. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x24 | offset | 00 00 00 00 | unused | at this position starts throw part in the raw file:
Loser's bug No.2: Wrong throw animation is ocasionally performed. That is caused by fact that parent throw is IN distance for throw but our TRAC's throw is not. So engine iniciates throw and plays parent's TRAC throw animation and our TRAC thrown animation. Mess ^_^ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x28 | offset | E0 B8 80 00 | 00 80 B8 E0 | at this position starts the footstep part in the raw file. Nothing to add. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x2C | offset | 00 B9 80 00 | 00 80 B9 00 | at this position starts the particle part in the raw file:
Beware of the fact that ONCP particle name is NOT general name of the particle. "Kontrail" is ONCP particle name. "h2h_strtrail_e01" is general name of the particle. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x30 | offset | 60 B9 80 00 | 00 80 B9 60 | at this position starts the position part in the raw file. Don't mess with it. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x34 | offset | 00 BD 80 00 | 00 80 BD 00 | at this position starts the bodyparts animation part in the raw file. Read its section if you want. Until we can export/import animations and edit them in some program, I encourage you to leave this part alone. I know that sometnig CAN be done by hand work, but it is too time consuming. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x38 | offset | 00 00 00 00 | unused | at this position starts the sound part in the raw file. Howgh | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x3C | bitset32 | 90 00 08 00 | 144, 0, 8, 0 | TRAM bitset collection; the following bits are possible /values in hex):
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x040 | link | 00 00 00 00 | unused | direct animation 0 (link to another TRAM file) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x044 | link | 00 00 00 00 | unused | direct animation 1 (link to another TRAM file), these two do NOT ensure that this animation can link, they only allow you to write two animations which can follow immediately, without applying soft pause, see below for more. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x048 | bitset32 | 00 00 00 00 | 0 | used parts; Aiming screen TRAMs "use" several bones here. Other overlay TRAMs use only "chest". Non-overlay TRAMs use none. So we can ignore this part. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x04C | bitset32 | 00 00 00 00 | 0 | replaced parts; same legend as above; only overlay TRAMs other than aiming-screen ones "replace" parts. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x050 | float | 00 00 00 00 | 0.000000 | final rotation in radians (for anims that make you turn), note that if you are hurt and this animation stopped, you are immediately forced back into your original direction. So if you make Konoko's running punch throw that thrown victim can be hurt and then you punch him, he reverses back to original rotation, "slides on his spin". Looks awful. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x054 | int16 | 01 00 | 1 | move direction; the following directions are possible:
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x056 | int16 | 06 00 | 6 | attack sound ("Rising fury!"); the number belongs to the sound slot in the ONCC file | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x058 | float | 8D 87 CF 41 | 25.941187 | max horizontal extent of the attack
-extents are for AI2s. Thanks to these AI2 knows reach of technique (general and then in represented ranges around body) and can attack with it or guard it correctly. You can adjust it a bit if you feel it really needs to, but I don't recommend it as you cannot directly see what changed and if it is for good or for bad. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x05C | float | DE E9 1A 40 | 2.420524 | min Y of the attack | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x060 | float | 95 34 D3 41 | 26.400675 | max Y of the attack | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x064 | float | 8D 87 CF 41 | 25.941187 | max horizontal extent at 0° (front) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
... | ... | ... | ... | ... | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x088 | float | DF 37 87 40 | 4.225570 | max horizontal extent at 90° (left) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
... | ... | ... | ... | ... | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x0AC | float | 5A D8 6D 40 | 3.716330 | max horizontal extent at 180° (back) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
... | ... | ... | ... | ... | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x0D0 | float | 98 95 E3 40 | 7.112011 | max horizontal extent at 270° (right) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
... | ... | ... | ... | ... | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x0F0 | float | 8D 87 CF 41 | 25.941187 | max horizontal extent at 350° | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x0F4 | int16 | 05 00 | 5 | unknown; indicator for the seven floats below; always -1 if the attack part doesn't exist | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x0F6 | int8 | 00 | 0 | unknown; always zero | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x0F7 | int8 | 00 | 0 | unknown; always zero | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x0F8 | float | 00 00 00 BF | -0.500000 | unknown; always zero if the indicator is -1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x0FC | float | 1E 85 6B BF | -0.920000 | unknown; always zero if the indicator is -1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x100 | float | 19 47 0C 41 | 8.767358 | unknown; always zero if the indicator is -1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x104 | float | EB 51 F0 40 | 7.510000 | unknown; always zero if the indicator is -1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x108 | float | D7 A3 14 41 | 9.290000 | unknown; always zero if the indicator is -1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x10C | float | 0A D7 3B 41 | 11.740000 | unknown; always zero if the indicator is -1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x110 | float | 5E 93 BF 40 | 5.986739 | unknown; always zero if the indicator is -1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x114 | int16 | 2F 00 | 47 | unknown; indicator for the two bytes and seven floats below; always -1 if the attack part doesn't exist or the attack part exists and it's a tgt animation (tgt = target) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x116 | int8 | 01 | 1 | unknown | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x117 | int8 | 16 | 22 | unknown | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x118 | float | 85 EB 51 BF | -1.850000 | unknown; always zero if the indicator is -1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x11C | float | E1 7A 7C C1 | -3.900000 | unknown; always zero if the indicator is -1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x120 | float | 69 61 BF 40 | 16.874636 | unknown; always zero if the indicator is -1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x124 | float | 70 3D 22 41 | 10.510000 | unknown; always zero if the indicator is -1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x128 | float | 47 E1 3A 40 | 8.860000 | unknown; always zero if the indicator is -1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x12C | float | 33 33 DB 40 | 18.460000 | unknown; always zero if the indicator is -1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x130 | float | F7 C0 2E 3E | 0.055320 | unknown; always zero if the indicator is -1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x134 | int32 | 00 00 00 00 | 0 | unknown; always zero | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x138 | int32 | 18 00 00 00 | 24 | amount of elements of the extent part; only used if the attack part exists | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x13C | offset | E0 BB 80 00 | 00 80 BB E0 | at this position starts the extent part in the raw file; only used if the attack part exists.
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x140 | char[16] | konflash1 | impact particle name (reference to 01018-.ONIA, which is called up in the ONCC file) | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x150 | int16 | 00 00 | 0 | hard pause in 1/60 seconds | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x152 | int16 | 12 00 | 18 | soft pause in 1/60 seconds, this pause is forced after animation ends. You simply stand, cannot do a thing. Only if this animaton links to some other one (links means it has correct ID Anim Type so it CAN be followed) this pause is ignored | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x154 | int32 | 00 00 00 00 | 0 | amount of packages of the sound part | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x158 | int32 | 00 00 00 00 | 0 | runtime: pointer to the sound for this animation (initialised from SABD) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x15C | int16 | 00 00 | 0 | runtime: sound start frame (initialised from SABD) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x15E | int16 | 3C 00 | 60 | frames per second | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x160 | int16 | 06 00 | 6 | compression size | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x162 | int16 | 16 00 | 22 | animation type from anim_types. See Molten's PDF. This number determines which keypress combination is required to call this animation, if animation can link to other one and many more | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x164 | int16 | 16 00 | 6 | aiming animation type from anim_types.StNA | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x166 | int16 | 00 00 | 0 | from state, this tells engine from which state this animation can be called. Thanks to this you can perform kick, getup kick and crouch kick. All done by same action, only animation state differs. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x168 | int16 | 07 00 | 7 | to state, this is state in which animation ends. Should correspond so next animation transits smoothly. ^_^ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x16A | int16 | 13 00 | 19 | bodyparts | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x16C | int16 | 50 00 | 80 | frames, you cannot extend frames (Oni will hang) but you can shorten animation if you need. Only be aware that there are some parts of TRAM which can be harmed by shorting TRAM below their end frame. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x16E | int16 | 50 00 | 80 | duration in in 1/60 seconds, the same as above | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x170 | bitset16 | 00 02 | 0, 2 | varient, the following bits are possible:
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x172 | char[2] | AD DE | dead | varient end; unused | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x174 | int16 | 00 00 | 0 | atomic start, you can set only part of the TRAM to be atomic (cannot be affected by user) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x176 | int16 | FF FF | -1 | atomic end, same | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x178 | int16 | 00 00 | 0 | end interpolation, in frames, beware, too big interpolation looks bad. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x17A | int16 | FF FF | -1 | maximal interpolation | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x17C | int16 | FF FF | -1 | action frame, frame where action happens. Action is weapon theft in disarm animations, action is when Mukade actually teleports(changes place), and many other things | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x17E | int16 | 0A 00 | 10 | first level | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x180 | uint8 | 01 | 1 | first "invulnerable" frame, you can set only part of the TRAM to be invulnerable | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x181 | uint8 | 1C | 28 | last "invulnerable" frame, same | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x182 | uint8 | 02 | 2 | amount of elements in the attack part | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x183 | uint8 | 00 | 0 | amount of elements in the take damage part | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x184 | uint8 | 01 | 1 | amount of elements in the motion blur part | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x185 | uint8 | 01 | 1 | amount of elements in the shortcut part | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x186 | uint8 | 02 | 2 | amount of elements in the footstep part | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x187 | uint8 | 04 | 4 | amount of elements in the particle part | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
0x188 | char[24] | AD DE | dead | unused |
Beware, setting wrong values in those "amount of elements" fields may make Oni crash/hang.
--Loser 19:50, 20 August 2008 (CEST)
TRAM complex of running
Example on Striker's moves.
Run cancel:
- STRIKEidle1 / another idle animation
- STRIKErun1stepa
- STRIKErun1stepb
- STRIKEidle1 / another idle animation
Run:
- STRIKEidle1 / another idle animation
- STRIKErun1stepa
- STRIKErunstart
- STRIKErun_rt
- (STRIKErun_lt)
- STRIKErunstop
- STRIKEidle1 / another idle animation
XML stuff
adding colorful trails
Open the xml formated TRAM and search for the "Particles" tag and insert your code.
First example: TRAMSTRCOMcomb_p_p.xml
<Particles> <Particle> <StartFrame>0</StartFrame> <EndFrame>12</EndFrame> <Bone>LeftFist</Bone> <Name>contrail</Name> </Particle> </Particles>
"contrail" is looked up by the used character class (ONCC) which lunch the actual particle, here it is "h2h_strtrail_e01".
Second example is about two different contrails in one TRAM at same time. The animation is "TRAMSTRCOMpunch_heavy.xml".
<Particles> <Particle> <StartFrame>0</StartFrame> <EndFrame>54</EndFrame> <Bone>RightWrist</Bone> <Name>contrail</Name> </Particle> <Particle> <StartFrame>0</StartFrame> <EndFrame>54</EndFrame> <Bone>LeftWrist</Bone> <Name>contrail_2</Name> </Particle> </Particles>
Note that you need to register the second contrail in the used ONCC as well. Using your own contrail particle is also possible, just insert it's name between the <Type> tags.
<ONCPParticle> <Name>contrail</Name> <Type>h2h_strtrail_e01</Type> <BodyPart>-1</BodyPart> </ONCPParticle> <ONCPParticle> <Name>contrail_2</Name> <Type>h2h_murtrail_e01</Type> <BodyPart>-1</BodyPart> </ONCPParticle>