Difference between revisions of "Documentation/Engine/Units"

From SCS Modding Wiki
Jump to navigation Jump to search
(What is unit?)
 
(47 intermediate revisions by 3 users not shown)
Line 1: Line 1:
 
=What is unit?=
 
=What is unit?=
  
Units are objects in Prism3d that have ability to be serialized or deserialized.
+
Units are objects inside SCS game engine. One of their core abilities is so they can be serialized or deserialized making it a perfect tool to give content creators a way to define various parts of the games.
  
Units has:
+
Unit has:
  
* Name - units can be nameless or have some specified name names are divided into components which are 12-char tokens separated by dot - for example correct unit name will be <code>vehicle.dummy.truck</code> however in most cases you should not use them as in case engine detects two units with the same name it will fail so in case some mod is using name <code>vehicle.dummy.truck</code> and you will also use this your mod will fail to load. To create nameless unit simply use dot as the prefix for your unit name for example <code>.my_mod.nameless.units</code>
+
* Name - units can be nameless or have some specified name. Unit names are divided into components which are 12-char tokens separated by dot - for example correct unit name will be <code>vehicle.dummy.truck</code> incorrect will be <code>vehicledummytruck</code> however in most cases you should not use them, in case some mod is using name <code>vehicle.dummy.truck</code> and you will also use this your mod will fail to load. To create nameless unit simply use dot as the prefix for your unit name for example <code>.my_mod.nameless.units</code>
* Attributes - attributes is a set of the data unit can store, it can be number, text, other unit connection, set of them etc. Some units are failing in case they contain serialized some attribute that is no longer supported however some of them have special flag in the engine to allow loading not allowed attributes.
+
* Attributes - attributes are set of the data that unit can store, it can be number, text, other unit connection, set of them etc.
  
 
== SII files ==
 
== SII files ==
  
Units are stored in SII files. There are two versions of this file supported by engine textual and binary however only textual form is used for definitions.
+
Units are stored in SII files. There are two versions of this file supported by the game engine: plain-text and binary. However, only the plain-text format is used for definitions.
  
=== Struture ===
+
=== Structure ===
  
The magic mark - used to check if file is real SII file or not.
+
The magic mark &ndash; used to check if the file is a real SII file or not.
  
<pre>SiiNUnit</pre>
+
<pre>SiiNunit</pre>
 
The opening bracket used to explicitly show the global file scope start
 
The opening bracket used to explicitly show the global file scope start
  
Line 26: Line 26:
 
     attribute_number: 40
 
     attribute_number: 40
 
     attribute_string: &quot;TEST STRING&quot;
 
     attribute_string: &quot;TEST STRING&quot;
     attribute_token: TEST
+
     attribute_unit: test.unit
     attribute_vector3: (1.0, 1.0, 1.0)
+
     attribute_float3: (1.0, 1.0, 1.0)
 
     attribute_float_number_ieee754: &amp;40490f5a
 
     attribute_float_number_ieee754: &amp;40490f5a
 
}</pre>
 
}</pre>
The closing bracked for the SiiNUnit
+
The closing bracket for the SiiNunit
  
 
<pre>}</pre>
 
<pre>}</pre>
It's always good to add one blank line at the end of the file
+
 
 +
It's always good to add one blank line at the end of the file.
  
 
=== Unit definition entry ===
 
=== Unit definition entry ===
Line 66: Line 67:
 
=== Includes ===
 
=== Includes ===
  
You can also include other files into another. To do this you need to use SII preprocessor directives <code>@include</code>.
+
You can also include the contents of other files using the SII preprocessor directive - <code>@include</code>. The contents of the included file will be read as if they were in the file itself.
 +
 
 +
'''Example:'''<br />
 +
''some_file_using_include.sii''
 +
<pre>SiiNunit
 +
{
 +
example: doing.includes
 +
{
 +
    foo: &quot;bar&quot;
 +
    over: 9000
 +
@include &quot;some_file_to_include.sui&quot;
 +
}
 +
}
 +
</pre>
 +
''some_file_to_include.sui:''
 +
<pre>    ninjas: true</pre>
 +
''How the game &ldquo;sees&rdquo; some_file_using_include.sii:''
 +
<pre>SiiNunit
 +
{
 +
example: doing.includes
 +
{
 +
    foo: &quot;bar&quot;
 +
    over: 9000
 +
    ninjas: true
 +
}
 +
}
 +
</pre>
 +
You may notice usage of the new extension - '''.sui'''. It's used for unit serialized files without magic mark <code>SiiNunit</code> that are included somewhere in different files. We recommend you also use this extension.
  
'''Example:'''
+
{{Note|The <code>@include</code> directive must appear at the beginning of a new line with no whitespace (space, tab, etc) before it. The following examples will '''not''' work:
 +
<pre>SiiNunit
 +
{
 +
bad_examples: just.the.worst {
 +
    foo: &quot;bar&quot;
 +
    @include &quot;dont_get_too_attached_to_indents.sui&quot;
  
<pre>@include &quot;some_file_to_include.sui&quot;</pre>
+
    foo: @include &quot;you_definitely_cannot_use_it_inline.sui&quot;
You may notice usage of the new extension - '''.sui'''. It's used for unit serialized files without magic mark <code>SiiNUnit</code> that are included somewhere in different files. We recommend you also using this extension.
+
}
 +
}
 +
</pre>}}
  
 
== Attribute types ==
 
== Attribute types ==
 
<pre>TODO: arrays</pre>
 
 
{| class="wikitable"  width="100%"
 
{| class="wikitable"  width="100%"
!width="19%"| Type
+
! Type
!width="25%"| Value
+
! Value
!width="55%"| Example
+
! Example
 +
! Notes
 
|-
 
|-
 
| string
 
| string
 
| &quot;x&quot;
 
| &quot;x&quot;
 
| attribute: &quot;String value&quot;
 
| attribute: &quot;String value&quot;
 +
|
 
|-
 
|-
 
| float
 
| float
 
| x
 
| x
 
| attribute: 1.0 // Using normal float-notation<br>attribute: &amp;3f800000 // using ieee754 hexa notation
 
| attribute: 1.0 // Using normal float-notation<br>attribute: &amp;3f800000 // using ieee754 hexa notation
 +
|
 
|-
 
|-
 
| float2
 
| float2
 
| (x, y)
 
| (x, y)
 
| attribute: (1.0, 2.0)
 
| attribute: (1.0, 2.0)
 +
|
 
|-
 
|-
 
| float3
 
| float3
 
| (x, y, z)
 
| (x, y, z)
 
| attribute: (1.0, 5.0, 3.0)
 
| attribute: (1.0, 5.0, 3.0)
 +
|
 
|-
 
|-
 
| float4
 
| float4
 
| (x, y, z, w)
 
| (x, y, z, w)
 
| attribute: (1.0, 5.0, 3.0, 9.0)
 
| attribute: (1.0, 5.0, 3.0, 9.0)
 +
|
 
|-
 
|-
| float4x4
+
| placement
| ?
+
| (x, y, z) (w; x, y, z)
| ?
+
| attribute: (0, 0, 0) (1; 0, 0, 0)
 +
|
 
|-
 
|-
 
| fixed
 
| fixed
 
| x
 
| x
| ?
+
| attribute: 10
 +
|
 
|-
 
|-
 
| fixed2
 
| fixed2
 
| (x, y)
 
| (x, y)
| ?
+
| attribute: (10, 22)
 +
|
 
|-
 
|-
 
| fixed3
 
| fixed3
 
| (x, y, z)
 
| (x, y, z)
| ?
+
| attribute: (10, 22, 33)
 +
|
 
|-
 
|-
 
| fixed4
 
| fixed4
 
| (x, y, z, w)
 
| (x, y, z, w)
| ?
+
| attribute: (10, 22, 33, 44)
 +
|
 
|-
 
|-
 
| int2
 
| int2
 
| (x, y)
 
| (x, y)
 
| attribute: (20, 69)
 
| attribute: (20, 69)
 +
|
 
|-
 
|-
 
| quaternion
 
| quaternion
 
| (w, x, y, z)
 
| (w, x, y, z)
 
| attribute: (1.0, 0.0, 0.0, 0.0)
 
| attribute: (1.0, 0.0, 0.0, 0.0)
|-
+
|
| placement
 
| ?
 
| ?
 
|-
 
| placement_scale
 
| ?
 
| ?
 
|-
 
| placement_nonuniform
 
| ?
 
| ?
 
|-
 
| plane
 
| ?
 
| ?
 
|-
 
| aabox
 
| ?
 
| ?
 
|-
 
| token
 
| x
 
| attribute: value
 
 
|-
 
|-
 
| s16
 
| s16
 
| x
 
| x
 
| attribute: -15
 
| attribute: -15
 +
|
 
|-
 
|-
 
| s32
 
| s32
 
| x
 
| x
 
| attribute: -15
 
| attribute: -15
 +
|
 
|-
 
|-
 
| s64
 
| s64
 
| x
 
| x
 
| attribute: -15
 
| attribute: -15
 +
|
 
|-
 
|-
 
| u16
 
| u16
 
| x
 
| x
 
| attribute: 15
 
| attribute: 15
 +
|
 
|-
 
|-
 
| u32
 
| u32
 
| x
 
| x
 
| attribute: 15
 
| attribute: 15
 +
|
 
|-
 
|-
 
| u64
 
| u64
 
| x
 
| x
 
| attribute: 15
 
| attribute: 15
 +
|
 +
|-
 +
| bool (boolean)
 +
| x
 +
| attribute: true
 +
 +
attribute: false
 +
|
 +
|-
 +
| <span id="attribute_type_token">token</span>
 +
| x
 +
| attribute: value
 +
| Token is a string of maximum length of 12 characters, only lowercase alphanumeric characters and underscore can be used [<code>a-z0-9_</code>]
 
|-
 
|-
| bool
+
| owner pointer (owner_ptr)
 
| x
 
| x
| attribute: true<br>attribute: false
+
| attribute: .some.nameless.unit
 +
| '''owner_ptr''' refers to unit defined within the same SiiNunit (eg. <code>.trailer.tchassis</code>)
 
|-
 
|-
| unit
+
| link pointer (link_ptr)
 
| x
 
| x
| attribute: my.unit
+
| attribute: some.named.unit
 +
| '''link_ptr''' refers to a named unit that is defined elsewhere (eg. <code>cabin_a.brand.model.cabin</code>)
 +
|-
 +
| resource_tie
 +
| "x"
 +
| attribute: "path/to/some/resource.pma"
 +
| '''resource_tie''' is typically used to bind animations to animated models. The syntax is the same as for 'string' type attributes.
 
|}
 
|}
 +
 +
===Arrays===
 +
 +
You can also use arrays of the values. The array syntax is:
 +
 +
<pre>
 +
attribute_name[]: value
 +
attribute_name[]: value2
 +
attribute_name[]: value3
 +
</pre>
 +
 +
In some cases you may notice fixed-arrays written in this format:
 +
 +
<pre>
 +
attribute_name: 3          <-- Size of the array.
 +
attribute_name[0]: 1        <-- 1st element
 +
attribute_name[1]: 5        <-- 2nd element
 +
attribute_name[2]: 9        <-- 3rd element
 +
</pre>
 +
 +
=Documented Unit Types=
 +
{{Special:PrefixIndex/Documentation/Engine/Units/|hideredirects=1|stripprefix=1}}

Latest revision as of 01:40, 19 December 2018

What is unit?

Units are objects inside SCS game engine. One of their core abilities is so they can be serialized or deserialized making it a perfect tool to give content creators a way to define various parts of the games.

Unit has:

  • Name - units can be nameless or have some specified name. Unit names are divided into components which are 12-char tokens separated by dot - for example correct unit name will be vehicle.dummy.truck incorrect will be vehicledummytruck however in most cases you should not use them, in case some mod is using name vehicle.dummy.truck and you will also use this your mod will fail to load. To create nameless unit simply use dot as the prefix for your unit name for example .my_mod.nameless.units
  • Attributes - attributes are set of the data that unit can store, it can be number, text, other unit connection, set of them etc.

SII files

Units are stored in SII files. There are two versions of this file supported by the game engine: plain-text and binary. However, only the plain-text format is used for definitions.

Structure

The magic mark – used to check if the file is a real SII file or not.

SiiNunit

The opening bracket used to explicitly show the global file scope start

{

Here you put your unit definitions

some_unit : .my_mod.unit
{
    attribute_number: 40
    attribute_string: "TEST STRING"
    attribute_unit: test.unit
    attribute_float3: (1.0, 1.0, 1.0)
    attribute_float_number_ieee754: &40490f5a
}

The closing bracket for the SiiNunit

}

It's always good to add one blank line at the end of the file.

Unit definition entry

Unit definition entry format is:

class name : unit name
{
    attributes
}

Comments

You can comment some of your data using C-like multi-line comments syntax starting from /* and ending with */.

Example:

/* Definition of some unit.
 *
 * Author: You */
some_unit : .my_mod.unit
{
}

Also you can use one-line comments those are starting from # or //.

Example:

some_unit : .my_mod.unit // Some unit
{
    # This value should be tweaked after users feedback
    some_value: 45.875
}

Includes

You can also include the contents of other files using the SII preprocessor directive - @include. The contents of the included file will be read as if they were in the file itself.

Example:
some_file_using_include.sii

SiiNunit
{
example: doing.includes
{
    foo: "bar"
    over: 9000
@include "some_file_to_include.sui"
}
}

some_file_to_include.sui:

    ninjas: true

How the game “sees” some_file_using_include.sii:

SiiNunit
{
example: doing.includes
{
    foo: "bar"
    over: 9000
    ninjas: true
}
}

You may notice usage of the new extension - .sui. It's used for unit serialized files without magic mark SiiNunit that are included somewhere in different files. We recommend you also use this extension.

Note: The @include directive must appear at the beginning of a new line with no whitespace (space, tab, etc) before it. The following examples will not work:

SiiNunit
{
bad_examples: just.the.worst {
    foo: "bar"
    @include "dont_get_too_attached_to_indents.sui"

    foo: @include "you_definitely_cannot_use_it_inline.sui"
}
}

Attribute types

Type Value Example Notes
string "x" attribute: "String value"
float x attribute: 1.0 // Using normal float-notation
attribute: &3f800000 // using ieee754 hexa notation
float2 (x, y) attribute: (1.0, 2.0)
float3 (x, y, z) attribute: (1.0, 5.0, 3.0)
float4 (x, y, z, w) attribute: (1.0, 5.0, 3.0, 9.0)
placement (x, y, z) (w; x, y, z) attribute: (0, 0, 0) (1; 0, 0, 0)
fixed x attribute: 10
fixed2 (x, y) attribute: (10, 22)
fixed3 (x, y, z) attribute: (10, 22, 33)
fixed4 (x, y, z, w) attribute: (10, 22, 33, 44)
int2 (x, y) attribute: (20, 69)
quaternion (w, x, y, z) attribute: (1.0, 0.0, 0.0, 0.0)
s16 x attribute: -15
s32 x attribute: -15
s64 x attribute: -15
u16 x attribute: 15
u32 x attribute: 15
u64 x attribute: 15
bool (boolean) x attribute: true

attribute: false

token x attribute: value Token is a string of maximum length of 12 characters, only lowercase alphanumeric characters and underscore can be used [a-z0-9_]
owner pointer (owner_ptr) x attribute: .some.nameless.unit owner_ptr refers to unit defined within the same SiiNunit (eg. .trailer.tchassis)
link pointer (link_ptr) x attribute: some.named.unit link_ptr refers to a named unit that is defined elsewhere (eg. cabin_a.brand.model.cabin)
resource_tie "x" attribute: "path/to/some/resource.pma" resource_tie is typically used to bind animations to animated models. The syntax is the same as for 'string' type attributes.

Arrays

You can also use arrays of the values. The array syntax is:

attribute_name[]: value
attribute_name[]: value2
attribute_name[]: value3

In some cases you may notice fixed-arrays written in this format:

attribute_name: 3           <-- Size of the array.
attribute_name[0]: 1        <-- 1st element
attribute_name[1]: 5        <-- 2nd element
attribute_name[2]: 9        <-- 3rd element

Documented Unit Types