XML:XML Modding Lessons: Difference between revisions

From OniGalore
Jump to navigation Jump to search
m (ignore this)
m (link fix)
 
(12 intermediate revisions by 3 users not shown)
Line 1: Line 1:
[[Image:XML.png|right]]
[[Image:XML.png|right]]
:''This article builds on the general introduction to modding found at [[Modding Oni]].''
{{Hatnote|This article builds on [[Introduction to modding|this general introduction to modding]].}}
The '''XML''' namespace is devoted to explaining Oni's data types in plainer language than the technical documentation at [[OBD]] and also provides tutorials in XML-based modding.


The '''XML''' namespace is devoted to explaining Oni's data types in plainer English than the technical documentation at [[OBD]], and provides tutorials in XML modding.
==Introduction==
Oni's resources could be separated into one of two categories: media (such as models, textures and sounds), and non-media (such as character class data). Most of the non-media data can be exported to XML. This allows much easier modding than the hex-editing of the old days (compare the two methods [[Adding spawnable characters|here]]). Some media resources can also be "edited as XML", referring to the fact that an XML file will be created alongside the media file(s) when the resources are exported from the game data, and this XML companion file will contain metadata about the media files that allows [[OniSplit]] to re-import them properly when you are done editing them.


Oni's resources could be separated into one of two categories: media (such as textures and sounds), and non-media (such as character class data). Most of the non-media data can be exported to XML. This allows much easier modding than the hex-editing of the old days (compare the two methods [[Adding_spawnable_characters|here]]). Some media resources can also be edited as "XML", referring to the fact that an XML file will be created alongside the resource's image/sound file when it is exported from the game data, and this XML companion file contains metadata about the media resource that allows [[OniSplit]] to re-import the resource when you are done editing it.
To learn what all the resource types do, and to see which types can be edited through XML, see the link to the database below. Though XML modding can generally be done with nothing more than OniSplit's command line interface and a text editor, the tutorials linked below are written with the [[Anniversary Edition]] in mind because the AE provides modding tools (including a GUI for OniSplit) and a framework for testing your mod package, and globalizes more of Oni's data so that it can be used in any level.


To learn what the different resource types do, and to see which types can be edited through XML, see the database link below. Though XML modding can generally be done with nothing more than OniSplit's command line interface and a text editor, the tutorials linked to below are written with the [[Anniversary Edition]] in mind, because the AE provides modding tools (including a GUI for OniSplit), gives you a framework for testing your mod package, and globalizes more of Oni's data so it can be used in any level.
{{Divhide|Introduction to XML format}}
==Working with XML files==
==Working with XML files==
[[wikipedia:XML|E'''X'''tensible '''M'''arkup '''L'''anguage]] is a plain-text file format designed to be both human-readable and machine-readable. It stores data in-between tags, e.g. <tt><Data>Some data here.</Data></tt>, and these tags can be arranged in a hierarchy to keep things organized. The only technical difference between a normal text file and an XML file is that the file ends in ".xml" instead of ".txt" and that it typically begins with the string <tt><?xml version="1.0" encoding="UTF-8" ?></tt>. You can thus edit an XML file in any text editor, such as Notepad in Windows and TextEdit on the Mac.
{{Divhide|Beginners will find this useful}}
[[Image:Visual Studio collapsed code.png|thumb|right|Code folding in Visual Studio 2019.]]
[[Image:Xcode collapsed code.png|thumb|right|Xcode 12. If you don't see the code folding ribbon, see Preferences… > Text Editing > Display > Code folding ribbon.]]
[[wikipedia:XML|E'''X'''tensible '''M'''arkup '''L'''anguage]] is a plain-text file format designed to be both human-readable and machine-readable. It stores data in-between tags, e.g. <tt><nowiki><TagName>Some data here</TagName></nowiki></tt>, and these tags can be arranged in a hierarchy to keep things organized. The only technical difference between a normal text file and an XML file is that the file name ends in ".xml" instead of ".txt" and that it typically begins with the string <tt><?xml version="1.0" encoding="UTF-8" ?></tt>. You can thus edit an XML file in any text editor, such as Notepad in Windows and TextEdit on the Mac.


* '''See the tutorials''' below to learn how to extract game data as XML, modify it, and get it back into Oni.
* '''[[#Starter_tutorials|See the tutorials]]''' below to learn how to extract game data as XML, modify it, and get it back into Oni.
* '''Capitalization matters''': OniSplit is case-sensitive when it processes the XML.
* '''Capitalization matters''': OniSplit is case-sensitive when it processes the XML.
* '''Text indentation''': most tags have some indentation (tabs). It is not needed by OniSplit but it helps one get an understanding of the hierarchy. Example:
* '''Text indentation''': Most tags have some indentation (tabs). It is not required by OniSplit but it helps one get an understanding of the hierarchy. Two examples:
good:
 
Good:
     <Instance id="4" type="IGSA">
     <Instance id="4" type="IGSA">
         <Strings>
         <Strings>
Line 21: Line 24:
         </Strings>
         </Strings>
     </Instance>
     </Instance>
bad:
 
Bad:
     <Instance id="4" type="IGSA"><Strings><Link>#7</Link></Strings></Instance>
     <Instance id="4" type="IGSA"><Strings><Link>#7</Link></Strings></Instance>


* '''Code folding''': A simple text editor (and good use of the search function) is actually enough to work with Oni's XML. But big files might be easier to handle with what programmers call "code folding". Code folding is found in [[wikipedia:IDE|IDEs]] like [http://www.microsoft.com/visualstudio/express Microsoft Visual Studio] (Windows) and [http://developer.apple.com/technology/Xcode.html Xcode] (Mac). Both are free.
* '''Code folding''': A simple text editor (and good use of the search function) is actually enough to work with Oni's XML. But big files might be easier to handle with what programmers call "code folding". Code folding allows you to collapse tags in order to get a better sense of the overall file structure, and is found in [[wikipedia:IDE|IDEs]] like [https://visualstudio.microsoft.com Microsoft Visual Studio] (Windows) and [https://developer.apple.com/xcode/ Xcode] (Mac). Both programs are free.
: This allows you to fold whole instances and parent tags. Folded code can be previewed in Microsoft Visual Studio applications. Xcode provides an extra scroll popup.
 
<gallery>
Image:Visual_Studio_collapsed_code.png|Visual Studio 2008
Image:Xcode.png|Xcode
</gallery>


* '''File comparison''': For comparing two versions of an XML file to find the changes, you can use [https://winmerge.org/ WinMerge] (Windows) or FileMerge (Mac, comes with Xcode). Note that if one of the two files has passed through Oni and been re-exported, the data may have been totally reordered and cannot be diff-gazed effectively.
{{Divhide|end}}
{{Divhide|end}}
==Knowledge database==
*[[XML:File types|XML resource type database]]


==Directory==
==Starter tutorials==
*[[XML:File types|Database of Oni's resource types]]
*[[XML:Basic tutorial|Basic tutorial]]
*[[XML:Basic tutorial|Basic tutorial]]
*[[XML:Advanced tutorial|Advanced tutorial]]
*[[XML:Advanced tutorial|Advanced tutorial]]
*[[Making a patch mod]] (read before expert tutorial)
*[[XML:Expert tutorial|Expert tutorial]]
*[[XML:Expert tutorial|Expert tutorial]]
*[[Making a patch mod]]
 
==Additional tutorials==
*[[Creating a level]]
*[[Modifying an existing level]]
*[[Adding spawnable characters|Adding spawnable characters to a level]]
*[[XML:Adding Daodan powers to a character|Adding Daodan powers to a character]]
*[[XML:TRAM#Color_trails|Adding colored contrails to combat moves]]


{{XML}}
{{XML}}

Latest revision as of 19:17, 9 November 2023

XML.png
This article builds on this general introduction to modding.

The XML namespace is devoted to explaining Oni's data types in plainer language than the technical documentation at OBD and also provides tutorials in XML-based modding.

Introduction

Oni's resources could be separated into one of two categories: media (such as models, textures and sounds), and non-media (such as character class data). Most of the non-media data can be exported to XML. This allows much easier modding than the hex-editing of the old days (compare the two methods here). Some media resources can also be "edited as XML", referring to the fact that an XML file will be created alongside the media file(s) when the resources are exported from the game data, and this XML companion file will contain metadata about the media files that allows OniSplit to re-import them properly when you are done editing them.

To learn what all the resource types do, and to see which types can be edited through XML, see the link to the database below. Though XML modding can generally be done with nothing more than OniSplit's command line interface and a text editor, the tutorials linked below are written with the Anniversary Edition in mind because the AE provides modding tools (including a GUI for OniSplit) and a framework for testing your mod package, and globalizes more of Oni's data so that it can be used in any level.

Working with XML files

Knowledge database

Starter tutorials

Additional tutorials