Difference between revisions of "Modding Tutorials/XML file structure"

From RimWorld Wiki
Jump to navigation Jump to search
Line 79: Line 79:
 
===Basegun ThingDef===
 
===Basegun ThingDef===
  
The first thing in ''Weapons_Guns.xml'' is a '''<ThingDef>''' with a Name and Abstract ''type'':<br/>
+
The first thing in ''ThingDefs_Misc\Weapons\BaseWeapons.xml'' is a '''<ThingDef>''' with a Name and Abstract ''type'':<br/>
<source lang="xml"><ThingDef Name="BaseGun" Abstract="True"></source><br/>
+
<source lang="xml"><ThingDef Abstract="True" Name="BaseWeapon"></source><br/>
  
The Abstract type means that contents of this '''<ThingDef>''' will not be loaded into the game, that after reading and processing the information in this tag it (the game) will finish reading the XML file ('''entire mod folder as of Alpha 13''') and '''discard''' this tag and its contents, leaving alone (not discarding) anything that might have copied (taken, inherited) the contents of it. All of this is done with this tag:<br/>
+
The Abstract type means that contents of this '''<ThingDef>''' will not be loaded into the game, that after reading and processing the information in this tag it (the game) will finish reading the XML files and '''discard''' this tag and its contents, leaving alone (not discarding) anything that might have copied (taken, inherited) the contents of it. All of this is done with this tag:<br/>
 
<source lang="xml"><ThingDef Abstract="True"></source><br/>
 
<source lang="xml"><ThingDef Abstract="True"></source><br/>
  
So what that means is that all the ''contents'' of <code lang="xml"><ThingDef Name="BaseGun" Abstract="True"></code> can be used over and over in the various guns, but '''BaseGun''' itself does not exist in the game - it's an abstract idea!<br/>
+
So what that means is that all the ''contents'' of <code lang="xml"><ThingDef Abstract="True" Name="BaseWeapon"></code> can be used over and over in the various guns, but '''BaseWeapon''' itself does not exist in the game - it's an abstract idea!<br/>
  
 
The Name type means the contents of this '''<ThingDef>''' can be ''inherited'' by (read: copied by) another '''<ThingDef>'''. This way you can write everything you're going to repeat a lot throughout the file in a single location, such as the following:<br/>
 
The Name type means the contents of this '''<ThingDef>''' can be ''inherited'' by (read: copied by) another '''<ThingDef>'''. This way you can write everything you're going to repeat a lot throughout the file in a single location, such as the following:<br/>
Line 91: Line 91:
  
 
Which notifies that this '''<ThingDef>''' is of the ''Item'' category, as opposed to those of the ''Building'' category. Because there's a lot of ''tags'' repeated throughout every thing, this greatly compacts the XML file.<br/>
 
Which notifies that this '''<ThingDef>''' is of the ''Item'' category, as opposed to those of the ''Building'' category. Because there's a lot of ''tags'' repeated throughout every thing, this greatly compacts the XML file.<br/>
The full BaseGun parent only has to be defined once in a file, and can then be inherited (copied) with:<br/>
+
The full BaseWeapon parent only has to be defined once in a file, and can then be inherited (copied) with:<br/>
<source lang="xml"><ThingDef ParentName="BaseGun"></source><br/><br/>
+
<source lang="xml"><ThingDef ParentName="BaseWeapon"></source><br/><br/>
  
 
'''<ThingDef ParentName="Parent">''' inherits all contents from '''<ThingDef Name="Parent">'''. <br/>
 
'''<ThingDef ParentName="Parent">''' inherits all contents from '''<ThingDef Name="Parent">'''. <br/>
Line 98: Line 98:
 
<source lang="xml"><useHitPoints>False</useHitPoints></source><br/>
 
<source lang="xml"><useHitPoints>False</useHitPoints></source><br/>
  
The last '''<ThingDef>''' on top of the file is one with the Name type ''BaseHumanGun'' and the ParentName type ''BaseGun''. It inherits the contents of BaseGun and is inherited by everything with '''<ThingDef ParentName="BaseHumanGun">''':<br/>
+
The next '''<ThingDef>''' in the file is one with the Name type ''BaseGun'' and the ParentName type ''BaseWeapon''. It inherits the contents of BaseGun and is inherited by everything with '''<ThingDef ParentName="BaseGun">''':<br/>
<source lang="xml"><ThingDef Name="BaseHumanGun" ParentName="BaseGun" Abstract="True"></source><br/><br/>
+
<source lang="xml"><ThingDef Name="BaseGun" Abstract="True" ParentName="BaseWeapon"></source><br/><br/>
 +
 
 +
It might help to think of each ''<ThingDef Name ="...">'' as a sort of template. BaseWeapon contains the basic information which is true for all weapons: they can be hauled, equipped, selected. BaseGun contains the information which is true for all weapons: they're part of the WeaponsRanged category, they can be smelted, they can have art. BaseMakeableGun in turns contains info to make the gun.
  
 
A list representation of how inheritance works in Rimworld's XML might help you out, either early on or to collect your thoughts after reading the above.<br/><br/>
 
A list representation of how inheritance works in Rimworld's XML might help you out, either early on or to collect your thoughts after reading the above.<br/><br/>
Line 113: Line 115:
 
##* All interfering content from parents is now overwritten
 
##* All interfering content from parents is now overwritten
 
## Now that all <Def>s know their contents, ABSTRACT type defs are discarded and therefore ignored by the game
 
## Now that all <Def>s know their contents, ABSTRACT type defs are discarded and therefore ignored by the game
## All <Def>s and their contents finish loading
+
## All <Def>s and their contents finish loading
 
# Game finishes loading mods<br/><br/>
 
# Game finishes loading mods<br/><br/>
  
 
===Breakdown===
 
===Breakdown===
 +
{| class="wikitable"
 +
|-
 +
! What you write !! What the game sees
 +
|-
 +
| <source lang="xml"><ThingDef Name="BaseGun" Abstract="True">
 +
    <exampleTagOne>true</exampleTagOne>
 +
</ThingDef>
  
Let's break down the inheritance chunks of the BaseGun code:<br/>
+
<ThingDef Name="BaseHumanGun" ParentName="BaseGun" Abstract="True">
<source lang="xml"><ThingDef Name="BaseGun" Abstract="True">
+
    <someOtherTag>12</someOtherTag>
 +
</ThingDef>
 +
</source>|| <source lang="xml"><ThingDef Name="BaseGun" Abstract="True">
 +
    <exampleTagOne>true</exampleTagOne>
 
</ThingDef>
 
</ThingDef>
  
 
<ThingDef Name="BaseHumanGun" ParentName="BaseGun" Abstract="True">
 
<ThingDef Name="BaseHumanGun" ParentName="BaseGun" Abstract="True">
 +
    <exampleTagOne>true</exampleTagOne>
 +
    <someOtherTag>12</someOtherTag>
 
</ThingDef>
 
</ThingDef>
 +
</source>
 +
|}
  
<ThingDef Name="BaseBullet" Abstract="True">
 
</ThingDef></source>
 
  
 
{| class="wikitable"
 
{| class="wikitable"

Revision as of 21:56, 8 February 2019

Modding Tutorials

In this tutorial we will start learning the XML syntax, why the base game uses it and what everything about it does.

What you'll learn

You'll learn the default structure of def files:

<?xml version="1.0" encoding="utf-8"?>
<Defs>
	<Def Name="Parent" Abstract="True">
	</Def>

	<Def ParentName="Parent">
	</Def>

	<!-- more <Def>'s -->
</Defs>


.. Along with how inheritance using Name, ParentName and Abstract works.

Default Def structure

Standard defs

Find a Def .xml file in the Core folder, for example ThingDefs_Misc/Weapons_Guns.xml:

 Core/
   Defs/
     ThingDefs_Misc/
       Weapons_Guns.xml
../Mods/Core/Defs/ThingDefs_Misc/Weapons_Guns.xml


The first thing in this file is the following line:

<?xml version="1.0" encoding="utf-8"?>


Which tells us this .xml files uses UTF-8 encoding and XML version 1.0, which are the default values for these fields - some XML editors choose to hide this line on editing and then save it on top of the document without ever asking the user about it.

After that, the structure of the file consists of <Defs> and <Def> tags:

<Defs>
	<Def>
	</Def>

	<!-- more <Def>'s -->

	<Def>
	</Def>
</Defs>


Each <Def> contains something's def (or definition), which can be used to specify each and every modifiable property, e.g for a certain thing (ThingDef). The rootnode of every def in the game is <Defs>, followed by the exact type of def (e.g. ThingDef, RecipeDef, BiomeDef, etc).

Full code

It is important that your file follows this structure to the point where mods won't work with multiple <Defs>, or a <Def> outside of <Defs>:

<?xml version="1.0" encoding="utf-8"?>
<Defs>
	<Def>
	</Def>

	<!-- more <Def>'s -->

	<Def>
	</Def>
</Defs>


Inheritance

Summary: In XML, inheritance is used to decrease redundancy. If something has a ParentName="YourParentName", it takes all contents from Name="YourParentName". In case this ParentName is incomplete this will crash the game, and you stop it from being loaded into the game with Abstract="True".

Note that after update A15, abstracts have been directly inheritable from the core and from other mods. Redefining the core abstracts is common cause for mod compatibility issues, because any mod loaded after the abstract has been redefined will use the modified version instead of the core. Therefore, when defining abstracts for a mod, it's advisable to try to avoid overwriting the core abstracts and to instead use unique names that are unlikely to be accidentally used by other mods.

Note that you can stop a child inheriting a specific tag's content by specifying Inherit="False" in the tag, like so:

    <weaponTags Inherit="False">
      <li>SniperRifle</li>
    </weaponTags>

The above example would only have SniperRifle as a weaponTag, none of the parent's weaponTags. This is particularly useful for lists.

Basegun ThingDef

The first thing in ThingDefs_Misc\Weapons\BaseWeapons.xml is a <ThingDef> with a Name and Abstract type:

<ThingDef Abstract="True" Name="BaseWeapon">


The Abstract type means that contents of this <ThingDef> will not be loaded into the game, that after reading and processing the information in this tag it (the game) will finish reading the XML files and discard this tag and its contents, leaving alone (not discarding) anything that might have copied (taken, inherited) the contents of it. All of this is done with this tag:

<ThingDef Abstract="True">


So what that means is that all the contents of <ThingDef Abstract="True" Name="BaseWeapon"> can be used over and over in the various guns, but BaseWeapon itself does not exist in the game - it's an abstract idea!

The Name type means the contents of this <ThingDef> can be inherited by (read: copied by) another <ThingDef>. This way you can write everything you're going to repeat a lot throughout the file in a single location, such as the following:

<category>Item</category>


Which notifies that this <ThingDef> is of the Item category, as opposed to those of the Building category. Because there's a lot of tags repeated throughout every thing, this greatly compacts the XML file.
The full BaseWeapon parent only has to be defined once in a file, and can then be inherited (copied) with:

<ThingDef ParentName="BaseWeapon">



<ThingDef ParentName="Parent"> inherits all contents from <ThingDef Name="Parent">.
Another parent is BaseBullet which holds every standard bullet's commonly repeated properties, such as the property that bullets don't use hitpoints:

<useHitPoints>False</useHitPoints>


The next <ThingDef> in the file is one with the Name type BaseGun and the ParentName type BaseWeapon. It inherits the contents of BaseGun and is inherited by everything with <ThingDef ParentName="BaseGun">:

<ThingDef Name="BaseGun" Abstract="True" ParentName="BaseWeapon">



It might help to think of each <ThingDef Name ="..."> as a sort of template. BaseWeapon contains the basic information which is true for all weapons: they can be hauled, equipped, selected. BaseGun contains the information which is true for all weapons: they're part of the WeaponsRanged category, they can be smelted, they can have art. BaseMakeableGun in turns contains info to make the gun.

A list representation of how inheritance works in Rimworld's XML might help you out, either early on or to collect your thoughts after reading the above.

  1. Game launches
  2. Game loads mods individually:
    1. Inheritance information is taken from each tag
    2. Anything with a PARENTNAME type inherits (read: copies) and applies all content from its associated NAME type
      • Anything that gets content is a child
      • Anything that sends it is a parent
      • It's possible to be both of these
    3. Content information (read: everything between the <ThingDef>) is taken and applied for each tag
      • All interfering content from parents is now overwritten
    4. Now that all <Def>s know their contents, ABSTRACT type defs are discarded and therefore ignored by the game
    5. All <Def>s and their contents finish loading
  3. Game finishes loading mods

Breakdown

What you write What the game sees
<ThingDef Name="BaseGun" Abstract="True">
    <exampleTagOne>true</exampleTagOne>
</ThingDef>

<ThingDef Name="BaseHumanGun" ParentName="BaseGun" Abstract="True">
    <someOtherTag>12</someOtherTag>
</ThingDef>
<ThingDef Name="BaseGun" Abstract="True">
    <exampleTagOne>true</exampleTagOne>
</ThingDef>

<ThingDef Name="BaseHumanGun" ParentName="BaseGun" Abstract="True">
    <exampleTagOne>true</exampleTagOne>
    <someOtherTag>12</someOtherTag>
</ThingDef>


<ThingDef Name="BaseGun" Abstract="True">
<ThingDef> The name of this tag, which is read by the game and processed into a correct definition based on this name.
All tags in ../Mods/Core/Defs/ThingDefs/ use the <ThingDef> tag.
Name="BaseGun" The Name type of this tag. This tag is a parent with the Name value of "BaseGun".
Abstract="True" The Abstract type of this tag is True.
This makes it so that the contents of this tag aren't instantiated, which in practice means the contents of it can only be inherited by other tags and won't be loaded into the game because its only purpose is in inheritance, in being a parent.

"Is the only use of this <ThingDef> to be inherited from? Yes: add Abstract="True". No: don't."
<ThingDef Name="BaseHumanGun" ParentName="BaseGun" Abstract="True">
ParentName="BaseGun" The ParentName type of this tag. This tag inherits from a parent with the Name value of "BaseGun".


Full code

After the addition of inheritance, our XML file structure looks like this:

<?xml version="1.0" encoding="utf-8"?>
<Defs>
	<Def Name="Parent" Abstract="True">
	</Def>

	<Def ParentName="Parent">
	</Def>

	<!-- more <Def>'s -->
</Defs>


  • <Defs> is the rootnode and this uniformity is enforced.
  • <Def> has to have a specific name, matching a Type in C#.

Next up

  • Weapons_Guns.xml continues explanations on the BaseGun parent, the tags inside its <ThingDef>'s and further information on modding in weaponry.