Introduction to modding

From OniGalore
Revision as of 20:16, 19 December 2012 by Iritscen (talk | contribs) (link fix)
Jump to navigation Jump to search


Unfinished building-60px.jpg

This page is unfinished. Can you fill in any missing information?
If it is not clear which part of the page is unfinished, ask on the talk page.

introduction

In sum, modding Oni looks like writing a theater play: You have stages, actors, and scripts - wide areas, buildings, rooms, decorations, characters running from A to B whereas the protagonist triggers most events. Due the none-existence of modding tools at the time of Oni’s release, fans had to document the data jungle and create modding tools by their own. It took over seven years to unlock most possibilities – and the work is still ongoing. Read HERE the full story.


Scripts are written in Bungie Script Language and stored as *.bsl files, that's why we often say "BSL mods". They build up the level logic, simply said they make the level to appear logic/intelligent, they give basic commands to game engine. Spawn enemies there if player reaches point X, give them weapons, start cutscene , etc..


OBD refers to Oni Binay Data. Script commands are useless when their addressed resources don't exist. A BSL command might say "ai2_movetoflag characterA 7" (characterA moves to point 7) but the actual movement animation and flag comes from the binaries, in this case called TRAM and FLAG. Every resource has a four-letter-acronym. (Make sure to check out the talk pages, they might contain additional information such as XML documentations.) For example, TRAM stands for Totoro Animation. Nowadays, TRAM can be converted to XML almost bug-free. XML files can be read and rewritten more easily by hand but still lacks user-friendliness when it comes to a few special file types.

RAICOMthrow_fw_kick_TN.png

An "appetizer screenshot".


Some binary resources don't suit XML. These are 3D objects and animations, sounds and textures, they become converted into their native formats.
By modding it is often meant that you can also create complete new resources.

  • 3D objects (characters, objects, levels) and animations can be modified/created in Mod Tool, SketchUp is also good for levels.
  • Texture can be modified/created in your favorite graphic program: GIMP, Photoshop, etc. – as long as these programs outputs files in formats that can be reconverted.


In any case make sure to download AE which provides you a sophisticated modding framework.


TIP:

Copy the edition folder. Then you have:

  • one AE installation to create mods whereby you can use self-made level plugins and so on
  • one AE installation to test your own final mods, if no problems appears it's ready for release

links to tools, documentations and tutorials

BSL


OBD

file converting in general


3D


Animation

You need to add some stuff to that file to make it actually work as an animation. In particular the animation type, from/to states and varient needs to be set.
For all I know this works with animations exported from Oni and modified in Softimage. If you come up with a completly new animation it should work as long as the skeleton is similar to the one used in Oni.
Note that the geometry that is present inside the Collada file is used to compute the "vertical extents" so it better be the same or close to the one the animation is intended for.
The biggest problem are the attacks. While it's not difficult to add attacks to the xml file, computing the necessary "extents" is not going to be easy. I guess in the end I'll have to add some command to OniSplit to do it.
Edit: attack extents becomes automatically calculated with onisplit v0.9.55.0 and newer


HEX


Sound

  • Instructions how to import sounds and links to conversion tools can be found HERE.


Textures


inspiration needed ?