Introduction to modding: Difference between revisions

From OniGalore
Jump to navigation Jump to search
m (fixing WP redirect; other link tweaks)
m (lots of wording tweaks; removed almost all mentions of specific tags, as introducing the tags is the job of OBD/XML:File types)
Line 3: Line 3:


==What is modding?==
==What is modding?==
[[Image:No_easy_button.png|150px|right]]
[[Image:No easy button.png|150px|right]]
Modifying, or "modding", a game is generally easier than creating one, because you might only be changing some of the game's existing elements, or creating a limited amount of new data. Nevertheless, modding can be an intimidating field to get into. Our community does not have the polished modding tools of the big engines like Unreal (but we're getting better). You should have a [[wiktionary:DIY|DIY]] personality and a high tolerance for technical details. We do not yet have any modding solutions with a big red button that says "easy".
Modifying, or "modding", a game is generally easier than creating one, because you might only be changing some of the game's existing elements, or creating a limited amount of new data. Nevertheless, modding can be an intimidating field to get into. Our community does not have the polished modding tools of the big engines like Unreal (but we're getting better). You should have a [[wikt:DIY|DIY]] personality and a high tolerance for technical details. We do not yet have any modding solutions with a big red button that says "easy".


Modding your first game is always the hardest, but after that you can more easily pick up new ones. If you take things one step at a time, you can learn a lot from Oni about how to make games in general; in fact, many game developers started out as modders. Additionally, there are lots of different ways for someone to mod; whether your interest is in coding, art, sound, 3D modeling, or general game design, there's something for you to do, and collaborating with others to divide the work according to your abilities can lead to a memorable, rewarding creative experience.
Modding your first game is always the hardest, but after that you can more easily pick up new ones. If you take things one step at a time, you can learn a lot from Oni about how to make games in general; in fact, many game developers started out as modders. Additionally, there are lots of different ways for someone to mod; whether your interest is in coding, art, sound, 3D modeling, or general game design, there's something for you to do, and collaborating with others to divide the work according to your abilities can lead to a memorable, rewarding creative experience.


*Go to the {{OMD}} to see what kinds of mods are available, or;
* Go to the {{OMD}} to see what kinds of mods are available, or;
*Install the [[Anniversary Edition]] to try out the mods, or;
* Install the [[Anniversary Edition]] to try out the mods, or;
*Continue reading to get an overview of the game engine.
* Continue reading to get an overview of the game engine.


==What engine does Oni run on?==
==What engine does Oni run on?==
Line 19: Line 19:
Altogether, we have identified over 100 types of resources (often called "file types" on this wiki, and "tags" in many other game modding communities) in the game data, however we only directly edit about half of these. It may sound intimidating at first, but depending on the kind of modding you want to do, you might be able to start working with only a little knowledge of the engine.
Altogether, we have identified over 100 types of resources (often called "file types" on this wiki, and "tags" in many other game modding communities) in the game data, however we only directly edit about half of these. It may sound intimidating at first, but depending on the kind of modding you want to do, you might be able to start working with only a little knowledge of the engine.


*Go to [[Oni]] for the full story on Oni's development, or;
* Go to [[Oni]] for the full story on Oni's development, or;
*Go to [[History of Oni modding]] to read about the community's accomplishments up until now, or;
* Go to [[History of Oni modding]] to read about the community's accomplishments up until now, or;
*Continue reading to learn about the game data files.
* Continue reading to learn about the game data files.


==How is the game data structured?==
==How is the game data structured?==
Line 28: Line 28:
In Oni's case, the stages, actors and music (and other sounds) are all packed together into files inside GameDataFolder/ that end in ".dat", ".raw", and, on Macs, ".sep". The level0_Final files provide resources for all levels, and when you load a Chapter, an additional set of data files provide the level-specific resources for that Chapter (e.g. level12_Final for Chapter 10). The scripts are stored in separate plain-text files ending in ".bsl" inside GameDataFolder/IGMD/. The player's progress is stored in persist.dat next to the Oni application.
In Oni's case, the stages, actors and music (and other sounds) are all packed together into files inside GameDataFolder/ that end in ".dat", ".raw", and, on Macs, ".sep". The level0_Final files provide resources for all levels, and when you load a Chapter, an additional set of data files provide the level-specific resources for that Chapter (e.g. level12_Final for Chapter 10). The scripts are stored in separate plain-text files ending in ".bsl" inside GameDataFolder/IGMD/. The player's progress is stored in persist.dat next to the Oni application.


*Go to [[Oni (folder)]] for information on each file, or;
* Go to [[Oni (folder)]] for information on each file, or;
*Go to [[Game data terminology]] to learn the precise terms for Oni's data, or;
* Go to [[Game data terminology]] to learn the precise terms for Oni's data, or;
*Continue reading to learn the general process of modding.
* Continue reading to learn the general process of modding.


==What is the workflow for modding?==
==What is the workflow for modding?==
The general order of events in creating a mod is (1) unpacking the resources you wish to edit, (2) editing them, and (3) re-packing them into Oni's level data. You can rely on the Anniversary Edition Installer to re-pack your data, which means that you just need to know how to create the kind of mod package that the AEI requires. If you are only creating a script mod, then you don't need to unpack any data, but you'll still need to know how to place your script(s) in a mod package.
The general order of events in creating a mod is (1) unpacking the resources you wish to edit, (2) editing them, and (3) re-packing them as Oni level data. You can rely on the Anniversary Edition Installer to re-pack your data; you simply create the mod package in the format that the AEI requires. If you are only creating a script mod, then you don't need to unpack any data, but you'll still need to know how to place your script(s) in a mod package.


===Data unpacking===
===Data unpacking===
The game data cannot be edited easily until our tools convert it into something more modder-friendly. Thus you will usually start by using OniSplit to break level data files (those .dat/.raw(/.sep) files) into their component resources (.oni files), then convert those resources into something editable. The editable format you arrive at will depend on the kind of data you're editing. It might be plain-text, XML, PNG, Collada, WAV, etc. The editors which you'll use on this data will be third-party programs.
The game data cannot be edited easily until our tools convert it into something more modder-friendly. You will usually start by using OniSplit to break level data files (those .dat/.raw(/.sep) files) into their component resources, which are saved as .oni files. Then you will need to convert those resources into something editable. The editable format you arrive at will depend on the kind of data you're editing. It might be plain text, XML, PNG, Collada, WAV, etc. The editors which you'll use on this data will be third-party programs suited for each file format.


===Third-party tools===
===Third-party tools===
If you are scripting, then you might need nothing more than a text editor. For editing textures, you might only need a free bitmap editor. For creating levels or characters, you'll need a full 3D modeling package. Since Oni doesn't have modern 3D graphics, you won't need to know as much about modeling as with a modern game, and there are free modelers available. Our recommendations for tools will be found under the subsections of "Modding resources" below.
If you are scripting, then you might need nothing more than a text editor. For editing textures, you might only need a free bitmap editor. For creating levels or characters, you'll need a full 3D modeling package. Since Oni doesn't have modern 3D graphics, you won't need to know as much about modeling/texturing as you would with a modern game, and there are free modelers available. Our recommendations for tools will be found under the subsections of "Modding resources" below.


===Community tools===
===Community tools===
Besides OniSplit, two of the key fan-made tools are Vago and XmlTools. Vago is a GUI for OniSplit which is much more user-friendly than using OniSplit on the command line. XmlTools is a technical tool that few modders need to use, but it allows the creation of patches (partial changes to a single resource which can stack on top of each other). Both tools can be installed from within the AE Installer. Once installed, they are found in AE/Tools/ alongside OniSplit.
Besides OniSplit, two of the key fan-made tools are Vago and XmlTools. Vago is a GUI for OniSplit which is much more user-friendly than using OniSplit on the command line. [[XmlTools]] is a technical tool that few modders need to use, but it allows the creation of patches (partial changes to a single resource which can stack on top of each other). Both tools can be installed from within the AE Installer. Once installed, they are found in AE/Tools/ alongside OniSplit.


===Mod creation===
===Mod creation===
To see how mods normally look and how they are distributed and installed, you should download the [[Anniversary Edition]] and choose to install some mods. You can then look at the packages that have been downloaded to AE/AEInstaller/packages/.
To see how mods normally look and how they're distributed and installed, you should download the [[Anniversary Edition]] and install some mods. You can then look at the packages that have been downloaded to AE/AEInstaller/packages/.


*Go to [[OniSplit]]'s page to learn how to unpack and reassemble the game data, or;
* Go to [[OniSplit]]'s page to learn how to unpack and reassemble the game data, or;
*Go to [[XmlTools]]' page to learn how to smartly alter the game data during mod installation, or;
* Go to [[Vago]]'s page to learn how to use this OniSplit GUI, or;
*Go to [[Making a mod package]] to learn how to assemble a mod, or;
* Go to [[Making a mod package]] to learn how to assemble a mod, or;
*Continue reading to learn about the types of modding you can perform.
* Continue reading to learn about the types of modding you can perform.


==Which resources should I be modding?==
==Which resources should I be modding?==
Oni assembles its game world from the scripts in the IGMD folder, game data in the .dat/.raw(/.sep) files in GameDataFolder, and [[persist.dat]]. It's easy to read the BSL scripts since they're plain-text, but how do you find the resource in the game data that you want to edit? Look under "Modding resources" below for a link to the XML database, which explains the function and location of each resource type.
Oni assembles its game world from the scripts in the IGMD folder, the game data in the .dat/.raw(/.sep) files in GameDataFolder, and [[persist.dat]]. It's easy to read the BSL scripts since they're plain-text, but how do you find the resource in the game data that you want to edit? Look under "Modding resources" below for a link to the XML database, which explains the function and location of each resource type.


===Editing scripts===
===Editing scripts===
The easiest kind of modding is scripting. Scripts are written in BSL, the BFW Scripting Language, and stored as plain-text files with the suffix .bsl in sub-folders inside GameDataFolder/IGMD/. Scripts take a lifeless level and spawn characters in it (Konoko and the AI-driven [[wp:Non-player character|NPC]]s), give the level a logical flow of events, drive cutscenes, make the AIs play certain roles, and alter the level's appearance.
The easiest kind of modding is scripting. Scripts are written in a unique language called BSL and stored as plain-text files with the suffix .bsl in sub-folders inside GameDataFolder/IGMD/. Scripts take a lifeless level and spawn characters in it, give it a logical flow of events, drive the cutscenes, make the AIs perform certain roles, and alter the level's appearance.


Scripting is the easiest way to mod because you only have to modify BSL files using a text editor. It's quick and easy to see the results of your work (just reload the level), and you have lots of accessible examples to learn from. That being said, scripts sometimes reference game resources in technical ways, so you will have to learn how certain data types work in order to script effectively.
Scripting is the easiest way to mod because you can modify BSL files using a text editor. It's quick and easy to see the results of your work (just reload the level), and you have lots of accessible examples to learn from. That being said, scripts sometimes reference game resources in technical ways, so you will have to learn how certain data types work in order to script effectively.


*Go to the [[BSL]] namespace to start learning about scripting, or;
* Go to the [[BSL]] namespace to start learning about scripting, or;
*Continue reading to learn what's involved with editing resources.
* Continue reading to learn what's involved with editing binary resources.


===Modding resources===
===Modding resources===
Broadly speaking, Oni's resources can be broken down as: '''environments''' (architecture, triggers, furniture), '''characters''' (class data, instance lists, 3D models), '''weapons''' (ditto), '''text''' (diary pages, objectives, subtitles), and '''sound''' (music, voice-overs, and sound effects). However, new levels do not require all this data to be made from scratch. You might decide to re-use a level or some of its resources, or make a new level populated with existing characters, etc.
Broadly speaking, Oni's resources can be broken down as: '''environments''' (architecture, triggers, furniture), '''characters''' (class data, instance lists, 3D models), '''weapons''' (ditto), '''text''' (diary pages, objectives, subtitles), and '''sound''' (music, voice-overs, and sound effects). However, new levels do not require all this data to be made from scratch. You might decide to re-use a level or some of its resources, or make a new level populated with existing characters, etc.


*Go to the [[XML]] namespace to get a simple introduction to the types of game data and learn the (relatively) user-friendly XML modding technique, or;
* Go to the [[XML]] namespace to get a simple introduction to the types of game data and learn the (relatively) user-friendly XML modding technique, or;
*Go to the [[OBD]] namespace to learn more technical details about the game data, or;
* Go to the [[OBD]] namespace to learn more technical details about the game data, or;
*Continue reading to start down the path to modding specific kinds of resources.
* Continue reading to start down the path to modding specific kinds of resources.


====Environments====
====Environments====
Levels are usually built in [[SketchUp tutorials and tips|SketchUp]]. [[Blender]] can be used for levels, objects, characters and animations. Formerly we preferred to do that work in [[Mod Tool]], but the support for Blender is continuing to improve, so that it should completely replace Mod Tool as our modeler of choice around 2022.
Levels are usually built in [[SketchUp tutorials and tips|SketchUp]]. The open-source tool [[Blender]] can be used for levels, objects, characters and animations. Formerly we preferred to do that work in [[Mod Tool]], but the community's support for Blender has continued to improve and it is now our modeler of choice.


* Tutorial: [http://oni.bungie.org/forum/viewtopic.php?id=2087 Creating the Lair - A level tutorial]
* Tutorial: [http://oni.bungie.org/forum/viewtopic.php?id=2087 Creating the Lair]
* Tutorial: [[Authoring custom camera animations]]
* Tutorial: [[Authoring custom camera animations]]


====Textures====
====Textures====
Modders have their own preference for which bitmap editor to use when editing/creating textures. On one end of the scale are expensive programs such as Photoshop, and on the other end are free editors like [https://www.gimp.org/ Gimp] and [https://www.getpaint.net/ Paint.NET].
Modders have their own preferred bitmap editors for changing/creating textures. On one end of the scale are expensive programs such as Photoshop, and on the other end are free editors like [https://www.gimp.org/ Gimp] and [https://www.getpaint.net/ Paint.NET].


Textures have dimensions always of "power of 2": their pixel sizes must be one of those numbers 2, 4, 8, 16, '''32, 64, 128, 256, 512'''. Mac supports a maximum of 1024 pixel per dimension: 1024 x 1024. For PC you can only use images as big as 512 x 512.
Textures have dimensions always of "power of 2": typically 32, 64, 128 or 256 pixels on a side. Mac Oni supports a maximum of 1024x1024 textures. Windows Oni supports textures up to 512x512.


A common question is how to create '''([[XML:TXMB|TXMB]])''' splash screens (level start screens), win level and lose level screens. Those images are made of smaller ones due to Oni's limitation in pixel dimension.
These textures can be static, animated, transparent or have a reflection map (usually used for armor). Splash screens (chapter start screens), win-level and lose-level screens are actually composite images made up of smaller textures due to Oni's limitation in texture size.


All other images use '''TXMP''' as file type. These can be static, animated, transparent or have an reflection map (env map, usually for character armor). Special properties like double sidedness for glass are set up in the [[XML:ONLV#.3CTextures.3E|level's master xml]] page.
* Tutorial: [[Modifying textures]]
 
* Tutorial: [[Modifying textures|Modifying textures (TXMP)]]
 
Modders using Macs can retrieve texture names when a weapon's laser pointer hits a surface. This is enabled by typing '''am_show_texturenames=1''' into the [[Developer_Mode#Using_the_console|developer console]].


====Characters====
====Characters====
[[Image:female_stun.jpg|right|thumb]]
[[Image:Female stun.jpg|right|300px]]
Characters in Oni are built with a simple 19-part skeleton. This skeleton (TRIA) is usually the same for all humanoid characters and simply tells Oni how the 3D meshes (TRBS) are put together. You cannot really compare this with the modern game industry's use of the term "skeleton". The meshes have individual textures (TXMP) stored in a list (TRMA).
Characters in Oni are built with a 19-part skeleton. This skeleton is the same for all humanoid characters and simply tells Oni how the individual parts with their own geometry and textures are assembled. You cannot really compare this with the modern game industry's use of the term "skeleton".
 
In its entirety, a character is defined by their class file (ONCC) which links also to the animation list (TRAC). The high modularity of character data allows Oni to share many resources between characters (especially animation collections and particles).
 
* Tutorial: [http://oni.bungie.org/forum/viewtopic.php?id=2423 Adding character classes] (ONCC)
* Tutorial: [[Importing character models]] (TRBS)
* Tutorial: [[OBD talk:TRAM|Tweak an individual animation]] (TRAM)
* Tutorial: [[Adding spawnable characters|Adding spawnable characters to a level]] (CHAR)


Some cutscenes require the character to use OBANs to overcome obstacles. These OBANs usually have a partner TRAM. The positions from character's animation data have been outsourced to OBAN to avoid effects of gravity. (See Griffin's helicopter scene in last level.)
A character's attributes are defined by their character class file which links also to the animation list that defines their moveset. The high modularity of character data allows Oni to share many resources between characters (especially animation collections and particles).


ONCC
* Tutorial: [http://oni.bungie.org/forum/viewtopic.php?id=2423 Adding character classes]
  |
* Tutorial: [[Importing character models]]
  +-- TRBS
* Tutorial: [[OBD talk:TRAM|Tweaking an individual animation]]
  |    |
* Tutorial: [[Adding spawnable characters|Adding spawnable characters to a level]]
  |   +-- TRIA (embedded)
  +-- TRMA
  |   |
  |    +-- TXMP
  +-- TRAC
      |
      +-- TRAM


====Weapons====
====Weapons====
Line 118: Line 100:


====Text====
====Text====
As long as you don't confuse IDs of instances and stick to the structure, these types shouldn't pose a problem.
The text-based resource types are fairly easy to edit as long as you don't get confused by the IDs which they use to link to each other.


Important text-related file type are:
The text-related resource types are:
* [[XML:DPge]] (Diary page)
* [[XML:HPge]] (Help page)
* [[XML:IPge]] (Item page)
* [[XML:OPge]] (Objective page)
* [[XML:OPge]] (Objective page)
* [[XML:DPge]] (Diary page)
* [[XML:WPge]] (Weapon page)
* [[XML:WPge]] (Weapon page)
* [[XML:TxtC]] (Text Console)
* [[XML:TxtC]] (Text Console)


====Sound and music====
====Sound and music====
* Instructions on importing sounds and links to conversion tools can be found [[XML:SNDD|HERE]].
Instructions on importing sounds, and links to conversion tools, can be found [[XML:SNDD|HERE]].


==Need some inspiration?==
==Need some inspiration?==

Revision as of 21:45, 30 October 2023

This page provides an introduction to modding that does not assume that you have prior modding experience or knowledge of the Oni engine. Links to more technical parts of the wiki are interspersed below or can be accessed directly from the wiki's Main Page.

What is modding?

No easy button.png

Modifying, or "modding", a game is generally easier than creating one, because you might only be changing some of the game's existing elements, or creating a limited amount of new data. Nevertheless, modding can be an intimidating field to get into. Our community does not have the polished modding tools of the big engines like Unreal (but we're getting better). You should have a DIY personality and a high tolerance for technical details. We do not yet have any modding solutions with a big red button that says "easy".

Modding your first game is always the hardest, but after that you can more easily pick up new ones. If you take things one step at a time, you can learn a lot from Oni about how to make games in general; in fact, many game developers started out as modders. Additionally, there are lots of different ways for someone to mod; whether your interest is in coding, art, sound, 3D modeling, or general game design, there's something for you to do, and collaborating with others to divide the work according to your abilities can lead to a memorable, rewarding creative experience.

  • Go to the Oni Mod Depot to see what kinds of mods are available, or;
  • Install the Anniversary Edition to try out the mods, or;
  • Continue reading to get an overview of the game engine.

What engine does Oni run on?

Oni runs on a custom engine that could be built for Windows, the Macintosh and the PlayStation 2 (console games are not easily modded, so we don't work with the PS2 version of Oni). The engine consists of various subsystems, some of which have colorful animé-related names like Akira (environment), Motoko (graphics) and Totoro (animation).

Unfortunately, the game was rushed to completion during a change of ownership, and it was not possible for the developers to release any tools or information to aid the fans in modding. Thus, fans had to explore the wild jungle of the raw game data and create modding tools through reverse-engineering. It took over seven years to unlock most of the game's secrets, but we can now mod almost all types of data effectively, allowing us to create entirely new levels and characters.

Altogether, we have identified over 100 types of resources (often called "file types" on this wiki, and "tags" in many other game modding communities) in the game data, however we only directly edit about half of these. It may sound intimidating at first, but depending on the kind of modding you want to do, you might be able to start working with only a little knowledge of the engine.

  • Go to Oni for the full story on Oni's development, or;
  • Go to History of Oni modding to read about the community's accomplishments up until now, or;
  • Continue reading to learn about the game data files.

How is the game data structured?

A game can be compared to a theater play: in both cases, you have stages, scripts, actors, and music. A level is built so that when the player performs certain actions or reaches certain locations on the stage, further events are set in motion according to the script. The player interacts with AI actors along the way. Music will often play dynamically behind all this, changing along with the flow of events.

In Oni's case, the stages, actors and music (and other sounds) are all packed together into files inside GameDataFolder/ that end in ".dat", ".raw", and, on Macs, ".sep". The level0_Final files provide resources for all levels, and when you load a Chapter, an additional set of data files provide the level-specific resources for that Chapter (e.g. level12_Final for Chapter 10). The scripts are stored in separate plain-text files ending in ".bsl" inside GameDataFolder/IGMD/. The player's progress is stored in persist.dat next to the Oni application.

  • Go to Oni (folder) for information on each file, or;
  • Go to Game data terminology to learn the precise terms for Oni's data, or;
  • Continue reading to learn the general process of modding.

What is the workflow for modding?

The general order of events in creating a mod is (1) unpacking the resources you wish to edit, (2) editing them, and (3) re-packing them as Oni level data. You can rely on the Anniversary Edition Installer to re-pack your data; you simply create the mod package in the format that the AEI requires. If you are only creating a script mod, then you don't need to unpack any data, but you'll still need to know how to place your script(s) in a mod package.

Data unpacking

The game data cannot be edited easily until our tools convert it into something more modder-friendly. You will usually start by using OniSplit to break level data files (those .dat/.raw(/.sep) files) into their component resources, which are saved as .oni files. Then you will need to convert those resources into something editable. The editable format you arrive at will depend on the kind of data you're editing. It might be plain text, XML, PNG, Collada, WAV, etc. The editors which you'll use on this data will be third-party programs suited for each file format.

Third-party tools

If you are scripting, then you might need nothing more than a text editor. For editing textures, you might only need a free bitmap editor. For creating levels or characters, you'll need a full 3D modeling package. Since Oni doesn't have modern 3D graphics, you won't need to know as much about modeling/texturing as you would with a modern game, and there are free modelers available. Our recommendations for tools will be found under the subsections of "Modding resources" below.

Community tools

Besides OniSplit, two of the key fan-made tools are Vago and XmlTools. Vago is a GUI for OniSplit which is much more user-friendly than using OniSplit on the command line. XmlTools is a technical tool that few modders need to use, but it allows the creation of patches (partial changes to a single resource which can stack on top of each other). Both tools can be installed from within the AE Installer. Once installed, they are found in AE/Tools/ alongside OniSplit.

Mod creation

To see how mods normally look and how they're distributed and installed, you should download the Anniversary Edition and install some mods. You can then look at the packages that have been downloaded to AE/AEInstaller/packages/.

  • Go to OniSplit's page to learn how to unpack and reassemble the game data, or;
  • Go to Vago's page to learn how to use this OniSplit GUI, or;
  • Go to Making a mod package to learn how to assemble a mod, or;
  • Continue reading to learn about the types of modding you can perform.

Which resources should I be modding?

Oni assembles its game world from the scripts in the IGMD folder, the game data in the .dat/.raw(/.sep) files in GameDataFolder, and persist.dat. It's easy to read the BSL scripts since they're plain-text, but how do you find the resource in the game data that you want to edit? Look under "Modding resources" below for a link to the XML database, which explains the function and location of each resource type.

Editing scripts

The easiest kind of modding is scripting. Scripts are written in a unique language called BSL and stored as plain-text files with the suffix .bsl in sub-folders inside GameDataFolder/IGMD/. Scripts take a lifeless level and spawn characters in it, give it a logical flow of events, drive the cutscenes, make the AIs perform certain roles, and alter the level's appearance.

Scripting is the easiest way to mod because you can modify BSL files using a text editor. It's quick and easy to see the results of your work (just reload the level), and you have lots of accessible examples to learn from. That being said, scripts sometimes reference game resources in technical ways, so you will have to learn how certain data types work in order to script effectively.

  • Go to the BSL namespace to start learning about scripting, or;
  • Continue reading to learn what's involved with editing binary resources.

Modding resources

Broadly speaking, Oni's resources can be broken down as: environments (architecture, triggers, furniture), characters (class data, instance lists, 3D models), weapons (ditto), text (diary pages, objectives, subtitles), and sound (music, voice-overs, and sound effects). However, new levels do not require all this data to be made from scratch. You might decide to re-use a level or some of its resources, or make a new level populated with existing characters, etc.

  • Go to the XML namespace to get a simple introduction to the types of game data and learn the (relatively) user-friendly XML modding technique, or;
  • Go to the OBD namespace to learn more technical details about the game data, or;
  • Continue reading to start down the path to modding specific kinds of resources.

Environments

Levels are usually built in SketchUp. The open-source tool Blender can be used for levels, objects, characters and animations. Formerly we preferred to do that work in Mod Tool, but the community's support for Blender has continued to improve and it is now our modeler of choice.

Textures

Modders have their own preferred bitmap editors for changing/creating textures. On one end of the scale are expensive programs such as Photoshop, and on the other end are free editors like Gimp and Paint.NET.

Textures have dimensions always of "power of 2": typically 32, 64, 128 or 256 pixels on a side. Mac Oni supports a maximum of 1024x1024 textures. Windows Oni supports textures up to 512x512.

These textures can be static, animated, transparent or have a reflection map (usually used for armor). Splash screens (chapter start screens), win-level and lose-level screens are actually composite images made up of smaller textures due to Oni's limitation in texture size.

Characters

Female stun.jpg

Characters in Oni are built with a 19-part skeleton. This skeleton is the same for all humanoid characters and simply tells Oni how the individual parts with their own geometry and textures are assembled. You cannot really compare this with the modern game industry's use of the term "skeleton".

A character's attributes are defined by their character class file which links also to the animation list that defines their moveset. The high modularity of character data allows Oni to share many resources between characters (especially animation collections and particles).

Weapons

Text

The text-based resource types are fairly easy to edit as long as you don't get confused by the IDs which they use to link to each other.

The text-related resource types are:

Sound and music

Instructions on importing sounds, and links to conversion tools, can be found HERE.

Need some inspiration?

To get ideas, play some existing mods (which you can install with the AE), or look at the pages below.