[TOC]
You can import 3 types of items
Static objects are placed on maps, and are part of the static data of the map.
Dynamic objects and Characters can be placed on maps, as hints for the scripts, but are created / destroyed by scripts during gameplay.
To import a item, you must create a .item.xml file describing how to import it.
The asset files to import must be located in the folder :
{maniaplanet_user_dir}/Work/Items/{sub_folder_you_want}
To import an item, type the command :
NadeoImporter Item {Item.xml_Filename_Relative_To_WorkFolder}
Note 1 : For items using meshes and shapes, (static & dynamic objects), those must have been imported before Item import.
see the dedicated page : [mesh import](importer_mesh.html)
Note 2 : Once you have imported and item, the only way to play online with it to do it through a Title (add the items to the title during title creation)
Note 3 : Icon : if you want to see an icon for your item in the editor, you need to provide a icon file.
Unlike the other files which are explicitly referenced in the item.xml file, the icon file is automatically retrieved and imported.
The icon must be a tga 64x64, it must have the same base name than the item.xml file and be placed in a sub folder icon
.
see sample : Work/Items/Samples/DynamicObjects/Icon
<Item>
root node attributes :
Type
: mandatory. item type"StaticObject","DynaObject","Character"
<Item Type="StaticObject" >
AuthorName
: optional : author name<Item Type="StaticObject" AuthorName="NadeoSamples">
Collection
: optional. collection of the item. (if one of its meshes use collection materials)"Storm", "Canyon", "Stadium", "Valley", "SMCommon"
Archetype
: mandatory for character items. archetype of the character
value : filename of the archetype
available archetypes for shootmania :
"ShootMania/Items/Characters/ArenaPlayer.Item.gbx"
"ShootMania/Items/Characters/ArenaPlayerSmall.Item.gbx"
"ShootMania/Items/Characters/Minion.Item.gbx"
ex : <Item Archetype="ShootMania/Items/Characters/ArenaPlayer.Item.gbx">
DefaultSkin
: mandatory for character items. name of the default skin for this item.SkinFolder
: mandatory for character items. folder where to browse skins for this item. recap example for character items:
<Item Type="Character" Archetype="ShootMania\Items\Characters\ArenaPlayer.Item.gbx"
DefaultSkin="Skins\Models\StormManBig\A.zip" SkinFolder="Models\StormManBig"
Collection="SMCommon" AuthorName="NadeoSamples">
A item can be placed freely (without the grid system) in the map editor if the option has been activated in the advanced option (experimental part) of the map editor. Then, like the mixmapping, you have to click twice on the little tree of the map editor interface to activate the free placement.
The physical and visual parts, <Phy>
and <Vis>
tags depends on the type of the item (see below).
Inside the <Phy>
tag, there is all the information needed for the "physical" simulation of the item (ie : what will be simulated on client and on dedicated server).
Inside the <Vis>
tag, there is all the information needed for the "visual" simulation of the item (ie : what will necessary only on client : meshes, lights, sounds, particles).
Referenced .Mesh.gbx and .Shape.gbx files that must be already imported.
Shape.gbx files are automatically generated along the the mesh.gbx when you import static meshes.
<Phy>
<MoveShape>
: the physical part of a static object conains the "moveshape" (ie : the "hard" collision shape).Type
: shape type. "mesh" for static meshes. File
: the shape filename. ex : File="Meshes/Checkpoint.Shape.gbx"
<TriggerShape>
: if your static object needs has a trigger (for checkpoints or finishs).
attributes :
Type
: shape type. "mesh" for static meshes File
: the shape filename. ex : File="Meshes/CheckpointTrigger.Shape.gbx
<Vis>
<Mesh>
: the displayed mesh. attributes :
File
: the mesh filename. ex : File="Meshes/Checkpoint.Mesh.gbx"
<Waypoint>
: use this node for defining start, checkpoints, & finishs.
attributes :
Type
: values : "Start", "Finish", "Checkpoint", "StartFinish"
recap example for static object :
<Item Type="StaticObject" Collection="Common" AuthorName="NadeoSamples">
<Waypoint Type="Checkpoint"/>
<Phy>
<TriggerShape Type="mesh" File="Meshes/CheckpointTrigger.Shape.gbx"/>
<MoveShape Type="mesh" File="Meshes/Checkpoint.Shape.gbx"/>
</Phy>
<Vis>
<Mesh File="Meshes/Checkpoint.Mesh.gbx"/>
</Vis>
</Item>
<Phy>
<DynaPointModel>
: this tag allow the object to move according to the "point dynamics" (a ball not rolling).
attributes :
Center
: relative center of the dynamic pointRadius
: fake ball radius in metersRestitution
: restitution coef, between 0 and 1Friction
: friction coef, between 0 and 1GravityCoef
: coef to make objects fall faster or slower<TriggerShape>
: the shape (currently AABB only) that will be used for object interaction. when a player touches this box, a event will be sent to the script.
Type
: currently only AABBMin
: min coord of AABB (in case of AABB)Max
: max coord of AABB (in case of AABB)<Vis>
<Mesh>
: the displayed mesh.File
: the mesh filename. ex : <Mesh File="Meshes/SampleArmor.Mesh.gbx"
<LightBallSimple>
: a simple light following the dynamic object.Radius
: radius in meters sRgb
: color in sRgb Pos
: relative position of the light, vector in meters <LocAnimSimple>
: simple rotation+translation animation (used for pickups).
attributes :
RotPeriod
rotation period in millisecondsTransPeriod
translation period millisecondsTransY
translation distance in metersrecap example for dynamic object :
<Item Type="DynaObject" Collection="SMCommon">
<Phy>
<TriggerShape Type="AABB" min="-0.4 0 -0.4" max="0.4 0.8 0.4"/>
</Phy>
<Vis>
<Mesh File="Meshes/SampleArmor.Mesh.gbx"/>
<LightBallSimple Radius="2" sRgb="0 1 0" Pos="0 0.3 0"/>
<LocAnimSimple RotPeriod="1000" TransPeriod="1000" TransY="0.1"/>
</Vis>
</Item>
a character inherits the physics from its archetype. however, you can tune some parameters:
<Phy>
<CharPhyCustom>
: optional customisation of the inherited character physics
Radius
: radius of the character EyesHeight
: height of the eyes of the character (ie : where the camera is placed in first person, and also where the bullets are sent from) SpeedCoef
: the speed coef from the archetype there is no <vis>
node for characters. the display is defined by the DefaultSkin attribute of the <Item>
node.
recap example for character :
<Item Type="Character" Archetype="ShootMania/Items/Characters/ArenaPlayer.Item.gbx"
DefaultSkin="Skins/Models/StormManBig/A.zip" SkinFolder="Models/StormManBig"
Collection="SMCommon" AuthorName="NadeoSamples">
<Phy>
<CharPhyCustom Radius="1.2" EyesHeight="4.8" SpeedCoef="3"/>
</Phy>
</Item>
in order to facilitate the item placement in the editor, you can define parameters
<Pivots>
: pivot points (instead of the origin of the object), first and third parameters are horizontal axes and second parameter is vertical axis
<Pivots>
<Pivot Pos="0 0 0"/>
<Pivot Pos="0 0 -1.5"/>
<Pivot Pos="0 0 1.5"/>
</Pivots>
Note : In the editor, since the Beta2 release, the pivot is chosen automatically according to the surface under the mouse pointer (if you are pointing at ground for instance, it will choose the lowest pivot).
Sometimes, several pivots are chosen: you can switch from one to another using the numpad '.' key or 'Q' key ('A' for azerty keyboards).
<GridSnap>
: the object can be placed every x meters
<GridSnap HStep="8" VStep="4" />
<GridSnap HStep="1" VStep="1" />
<GridSnap HStep="1" VStep="1" HOffset="0.5" VOffset="0.3"/>
<Levitation>
: the object can be placed not only on the ground and on blocks/items but also in the air every x meters)
<Levitation VStep="2"/>
<Levitation VStep="2" VOffset="1"/>
<Levitation VStep="4" GhostMode="true" />
<Cube>
special objects with a specific snappig system, easy to place; try to use them in Royal Exp title!
<Cube Center="1 1 1" Size="2" />
<PivotSnap>
: when you are about to place a new item B next to an already placed item A, with the mouse cursor on A, B may be offseted in order that B's pivot and A's nearest pivot coincide
<PivotSnap Distance="0.25" />
<PivotSnap Distance="0" />
<PivotSnap Distance="-1" />
Note: If the item you are about to place (B) and the item which is already placed (A) do not have the same pivot-snapping distance value, only the lowest distance is used.
<Options>
: other placement options (default values are "false"). attributes
NotOnItem
: prevents the object from being placed on another item (boolean, default = false) OneAxisRotation
: prevents the item from being rotated with arrow keys (you can rotate it around the vertical axis only, with right click, '+' key and '-' key) ManualPivotSwitch
: the pivot used to place the object won't change automatically; the only way to change it is to press numpad '.' key or 'Q' key ('A' for azerty keyboards) "AutoRotation
: the object rotates automatically according to the surface pointed by the mouse cursor <Options OneAxisRotation="true" AutoRotation="true" />
<Options NotOnItem="true" ManualPivotSwitch="true" />
You can also create Start/CheckPoint/Finish items for both Trackmania² and Shootmania.
First the xml of the file should looks something like this:
<Item Type="StaticObject" Collection="Common" AuthorName="NadeoSamples">
<Waypoint Type="Finish"/>
<Phy>
<TriggerShape Type="mesh" File="Meshes/FinishTrigger.Shape.gbx"/>
<MoveShape Type="mesh" File="Meshes/Finish.Shape.gbx"/>
</Phy>
<Vis>
<Mesh File="Meshes/Finish.Mesh.gbx"/>
</Vis>
</Item>
And then you mustn't forget to give a trigger shape to your item that can be reach by a car or a character.
In the map editor, you just need to put the item on the map to use it.
Few examples are available in the importer files.