OniSplit: Difference between revisions

535 bytes added ,  26 May 2013
formatting tweaks, another tip
(lots more tips for beginners, general touch-up of command listing to make syntax clearer)
(formatting tweaks, another tip)
Line 16: Line 16:
==Workflow==
==Workflow==
OniSplit is used in up to four different stages when modding:
OniSplit is used in up to four different stages when modding:
# Exporting - using the -export command, a [[Dat|level data file]] is broken into its component resources, .oni files.
# Exporting - using the <tt>-export</tt> command, a [[Dat|level data file]] is broken into its component resources, .oni files.
# Extracting - using the -extract commands, .oni files are converted to standard-format files that can be edited in various third-party programs.
# Extracting - using the <tt>-extract</tt> commands, .oni files are converted to standard-format files that can be edited in various third-party programs.
# Creating - using the -create commands, standard-format files are converted into .oni files.
# Creating - using the <tt>-create</tt> commands, standard-format files are converted into .oni files.
# Importing - using the -import command, a folder of .oni files is combined into a level data file.
# Importing - using the <tt>-import</tt> command, a folder of .oni files is combined into a level data file.


Note that "extracting" refers to a conversion from one format to another, but "exporting" only refers to the creation of .oni files from a .dat file. When exporting, no conversion or re-formatting is taking place; the data is simply being copied out of a .dat (any connected binary data in .raw/.sep files will be concatenated to the data from the .dat when making the .oni).
Note that "extracting" refers to a conversion from one format to another, but "exporting" only refers to the creation of .oni files from a .dat file. When exporting, no conversion or re-formatting is taking place; the data is simply being copied out of a .dat (any connected binary data in .raw/.sep files will be concatenated to the data from the .dat when making the .oni).
Line 25: Line 25:
==Beginner's tips==
==Beginner's tips==
{{Divhide|For users new to the command line or to OniSplit}}
{{Divhide|For users new to the command line or to OniSplit}}
In Windows, you want to find the Command Prompt. The fastest way to get there is to bring up the Run... dialog with Windows+R, then type "cmd" and hit Enter.  On Macs, the command-line is found in the Terminal app (/Applications/Utilities) (press Command-Spacebar and type "Terminal" to get there faster).
In Windows, you want to find the Command Prompt. The fastest way to get there is to bring up the "Run..." dialog with Windows+R, then type "cmd" and hit Enter.


On Macs, the command-line is found in the Terminal app (/Applications/Utilities) (press Command-Spacebar and type "Terminal" to get there faster).
===OniSplit syntax===
The basic syntax is:
The basic syntax is:
{|
{|
Line 38: Line 41:
{|
{|
! style="width:130px"|
! style="width:130px"|
|-
|- valign="top"
|<span style="background:rgb(235,235,235); border-radius:0.33em;">'''Invocation'''</span>||Windows can refer to the program directly, but Macs use Mono to run the .NET app; note also that if OniSplit.exe is not in the Console/Terminal's current directory, you must provide the full path to it or set the path variable.
|<span style="background:rgb(235,235,235); border-radius:0.33em;">'''Invocation'''</span>
|Windows can refer to the program directly, but Macs use Mono to run the .NET app; note also that if OniSplit.exe is not in the Command Prompt/Terminal's current directory, you must provide the full path to it or set the path variable.
|-
|-
|<span style="background:rgb(175,175,255); border-radius:0.33em;">'''Option'''</span>||The command.
|<span style="background:rgb(175,175,255); border-radius:0.33em;">'''Option'''</span>||The command.
|-
|- valign="top"
|<span style="background:rgb(255,156,156); border-radius:0.33em;">'''Path to folder'''</span>||Whether destination or source, the folder path comes first. <u>Use the full path to the folder (starting from C:\, or "/" on Macs).</u> For most commands, OniSplit wants a destination folder name, not a file name; the files that OniSplit creates will be named automatically when they are placed in the destination folder. A rare exception is the -import command, where you need to supply the name of the level files to be created.
|<span style="background:rgb(255,156,156); border-radius:0.33em;">'''Path to folder'''</span>||Whether destination or source, the folder path comes first. <u>Use the full path to the folder (starting from C:\, or "/" on Macs).</u> For most commands, OniSplit wants a destination folder name, not a file name; the files that OniSplit creates will be named automatically when they are placed in the destination folder. A rare exception is the <tt>-import</tt> command, where you need to supply the name of the level files to be created.
|-
|-
|<span style="background:rgb(175,175,255); border-radius:0.33em;">'''Option flags'''</span>||The flags that can optionally go with this command, separated by spaces.
|<span style="background:rgb(175,175,255); border-radius:0.33em;">'''Option flags'''</span>||The flags that can optionally go with this command, separated by spaces.
|-
|- valign="top"
|<span style="background:rgb(156,255,156); border-radius:0.33em;">'''Path to file/folder'''</span>||Whether destination or source, the file path comes second. Sometimes the second parameter is also a folder, as with '''-create'''. <u>Use the full path to the folder (starting from C:\, or "/" on Macs).</u>
|<span style="background:rgb(156,255,156); border-radius:0.33em;">'''Path to file/folder'''</span>||Whether destination or source, the file path comes second. Sometimes the second parameter is also a folder, as with <tt>-create</tt>. <u>Use the full path to the folder (starting from "C:\", or "/" on Macs).</u>
|}
|}


===CLI tips===
===CLI tips===
Command-line interfaces (CLI) usually supply an auto-complete feature to save on typing. If you've typed enough of a file/folder name to identify it, press the Tab key and the rest should fill in. In Windows, you may not get the right path name autocompleted on the first try if there are multiple possible autocompletions based on the names in that directory, so keep pressing Tab to cycle through all possibilities. On Macs, if you have not typed enough of the name to narrow it down to a single autocompletion, you will hear an error sound.  Double-tap Tab to see a list of possible autocompletions, then keep typing until you have narrowed it down to one of those and then hit Tab to fill in the rest of its name.
*Command-line interfaces (CLI) usually supply an auto-complete feature to save on typing. If you've typed enough of a file/folder name to identify it, press the Tab key and the rest should fill in. In Windows, you may not get the right path name autocompleted on the first try if there are multiple possible autocompletions based on the names in that directory, so keep pressing Tab to cycle through all possibilities. On Macs, if you have not typed enough of the name to narrow it down to a single autocompletion, you will hear an error sound.  Double-tap Tab to see a list of possible autocompletions, then keep typing until you have narrowed it down to one of those and then hit Tab to fill in the rest of its name.
 
*Note that you can also drag files/folders into the window and the path will magically appear; in cases where you don't need to use a wildcard, this is the fastest way to build an OniSplit command.


Wildcards can be used to supply patterns to CLI programs. The wildcard is simply the '*' character. For instance:
===Wildcards===
Wildcards can be used to supply patterns to CLI programs. The wildcard is simply the <tt>*</tt> character. For instance:
  OniSplit.exe -export:TRAM* <destination> <source .dat>
  OniSplit.exe -export:TRAM* <destination> <source .dat>
will export all the TRAMs in the source .dat into the destination folder. Using "TRAMKON*" would export all of Konoko's animations.
will export all the TRAMs in the source .dat into the destination folder. Using "TRAMKON*" would export all of Konoko's animations.
Line 62: Line 69:
  C:\Games\Oni\>OniSplit.exe -list "My Mod Folder\level5_Final.dat"
  C:\Games\Oni\>OniSplit.exe -list "My Mod Folder\level5_Final.dat"


This works in the Mac Terminal too, but you can also use the escape character, '\'. Also, other characters like '(' need to be escaped as well if you do not use quotes:
This works in the Mac Terminal too, but you can also use the escape character, <tt>\</tt>. Also, other characters like <tt>(</tt> need to be escaped as well if you do not use quotes:


  iMac:Oni you$ mono OniSplit.exe -list My\ Mods\ \(In\ Progress\)/level5_Final.dat
  iMac:Oni you$ mono OniSplit.exe -list My\ Mods\ \(In\ Progress\)/level5_Final.dat
Line 69: Line 76:


===Reading the commands below===
===Reading the commands below===
The following commands should be complete, but the current list can be obtained by calling OniSplit with the <tt>-help</tt> option (you should also use <tt>-version</tt> to make sure you're using the same version that's documented here).
*The following commands should be complete, but the current list can be obtained by calling OniSplit with the <tt>-help</tt> option (you should also use <tt>-version</tt> to make sure you're using the same version that's documented here).


Occasional sample usages are given after certain commands. These are in DOS style, so simply flip the '\'s to '/'s for Macs and make "C:\" into a leading "/" to indicate "root-level".
*Occasional sample usages are given after certain commands. These are in DOS style, so simply flip the <tt>\</tt>s to <tt>/</tt>s for Macs and make "C:\" into a leading "/" to indicate "root-level".


Optional flags are listed in square brackets simply to indicate that they're optional; don't enter the brackets when typing a command.
*Optional flags are listed in square brackets simply to indicate that they're optional; don't enter the brackets when typing a command.


Note that only the .dat file from a level's data files is mentioned. The .raw and .sep files will be accessed by OniSplit as necessary when working with the .dat file you supply the name of.
Note that only the .dat file from a level's data files is mentioned. The .raw and .sep files will be accessed by OniSplit as necessary when working with the .dat file you supply the name of.
{{Divhide|end}}
{{Divhide|end}}
==Commands==
==Commands==
===Conversion between .dat and .oni===
===Conversion between .dat and .oni===
{|
{|
! style="width:430px"|
|-
|<tt>-list <file name></tt>||Lists the named resources contained in a .dat (see [[OBD:File_types/Named|HERE]] for info on unnamed resources)
|<tt>-list <file name></tt>||Lists the named resources contained in a .dat (see [[OBD:File_types/Named|HERE]] for info on unnamed resources)
|-
|-
Line 85: Line 95:
|-
|-
|<tt>-export:<pattern> <destination directory> <dat file></tt>||Exports named resource (wildcards also allowed) from .dat file
|<tt>-export:<pattern> <destination directory> <dat file></tt>||Exports named resource (wildcards also allowed) from .dat file
|-
|- valign="top"
|<tt>-import <source directory> <new dat file></tt>||Compiles level files from source directory using the name you supply for the .dat file; tries to get target file format from source SNDD, but it's better to use the :sep or :nosep variants below
|<tt>-import <source directory> <new dat file></tt>||Compiles level files from source directory using the name you supply for the .dat file; tries to get target file format from source SNDD, but it's better to use the :sep or :nosep variants below
|-
|-
Line 94: Line 104:
|<tt>-import:nosep <source directory> <new dat file></tt>||Imports target file (.dat) from source directory; uses .dat/.raw format (PC retail)
|<tt>-import:nosep <source directory> <new dat file></tt>||Imports target file (.dat) from source directory; uses .dat/.raw format (PC retail)
|}
|}
:Note that -import will search subdirectories too. If you find having hundreds or thousand of files .oni in one directory to be unmanageable you can always group them in subdirectories any way you like. The only exception is that a subdirectory named "noimport" or "_noimport" is always ignored.
:Note that <tt>-import</tt> will search subdirectories too. If you find having hundreds or thousand of files .oni in one directory to be unmanageable you can always group them in subdirectories any way you like. The only exception is that a subdirectory named "noimport" or "_noimport" is always ignored.


===Management of .oni files===
===Management of .oni files===
Sometimes you want to move some .oni files out of a larger folder of .onis. You could do this manually, but OniSpit knows which files depend on others. It will also look for those dependencies in subfolders beneath the level of the file you supply the name of. The filename field supports wildcards ("*"). This is mostly used by the [[AE]] Installer rather than modders themselves.
Sometimes you want to move some .oni files out of a larger folder of .onis. You could do this manually, but OniSpit knows which files depend on others. It will also look for those dependencies in subfolders beneath the level of the file you supply the name of. The filename field supports wildcards. This is mostly used by the [[AE]] Installer rather than modders themselves.
{|
{|
|<tt>-deps <oni file></tt>||Displays a list of .oni files that the specified .oni file depends on
|<tt>-deps <oni file></tt>||Displays a list of .oni files that the specified .oni file depends on
Line 112: Line 122:
===Conversion between .oni/.dat and 3rd party formats===
===Conversion between .oni/.dat and 3rd party formats===
====Textures====
====Textures====
Unless mentioned otherwise, source filenames support wildcards. See [[AE:Modifying textures|HERE]] for a detailed tutorial. The -extract commands can work with .oni files (a single file or several files if you use the '*' wildcard), or rip all the TXMPs from a .dat file.
Unless mentioned otherwise, source filenames support wildcards. See [[AE:Modifying textures|HERE]] for a detailed tutorial. The <tt>-extract</tt> commands can work with .oni files (a single file or several files if you use the wildcard), or rip all the TXMPs from a .dat file.
{|
{|
|<tt>-extract:dds <destination directory> <dat/oni file></tt>||Extracts all textures (TXMP) from a Oni .dat/.oni file into DDS files
|<tt>-extract:dds <destination directory> <dat/oni file></tt>||Extracts all textures (TXMP) from a Oni .dat/.oni file into DDS files
Line 125: Line 135:


====Models====
====Models====
[[M3GM]]s, [[ONWC]]s, [[ONCC]]s can be exported to the Wavefront .obj and COLLADA .dae formats. For details see [[Importing character models]] and [[Importing weapon models]]. The generic -extract commands can work with .oni files (a single file, or several files if you use the '*' wildcard), or rip all the TXMP from a .dat file. TRBS and ONCC support additional -noanim and -anim options for -extract:dae; see [[Importing character models]] for details. Imported geometry must only contain triangles.
[[M3GM]]s, [[ONWC]]s, [[ONCC]]s can be exported to the Wavefront .obj and COLLADA .dae formats. For details see [[Importing character models]] and [[Importing weapon models]]. The generic <tt>-extract</tt> commands can work with .oni files (a single file, or several files if you use the wildcard), or rip all the TXMP from a .dat file. TRBS and ONCC support additional <tt>-noanim</tt> and <tt>-anim</tt> options for <tt>-extract:dae</tt>; see [[Importing character models]] for details. Imported geometry must only contain triangles.
{|
{|
! style="width:540px"|
|- valign="top"
|<tt>-extract:obj <destination directory> <dat/oni file></tt>||Extracts 3D data in .oni file (or all M3GM, ONWC and ONCC instances in a .dat) into Wavefront OBJ files
|<tt>-extract:obj <destination directory> <dat/oni file></tt>||Extracts 3D data in .oni file (or all M3GM, ONWC and ONCC instances in a .dat) into Wavefront OBJ files
|-
|- valign="top"
|<tt>-extract:dae <destination directory> <dat/oni file></tt>||Extracts 3D data in .oni file (or all M3GM, ONWC and ONCC instances in a .dat) into Collada DAE files
|<tt>-extract:dae <destination directory> <dat/oni file></tt>||Extracts 3D data in .oni file (or all M3GM, ONWC and ONCC instances in a .dat) into Collada DAE files
|-
|-
Line 145: Line 157:
The next two steps are used on a folder in which you have placed the DAE and XML-formatted instances of the required files, as well as textures in TGA format. See [http://oni.bungie.org/community/forum/viewtopic.php?id=1515 HERE] for details.
The next two steps are used on a folder in which you have placed the DAE and XML-formatted instances of the required files, as well as textures in TGA format. See [http://oni.bungie.org/community/forum/viewtopic.php?id=1515 HERE] for details.
{|
{|
|- valign="top"
|<tt>-create <destination directory><br>[-genmipmaps] [-format:dxt1]<br><source directory></tt>||Converts all AKEV and related instances to .oni files
|<tt>-create <destination directory><br>[-genmipmaps] [-format:dxt1]<br><source directory></tt>||Converts all AKEV and related instances to .oni files
|-
|- valign="top"
|<tt>-import:nosep <source directory><br><target file name>.dat</tt>||The standard command for creating .dat/.raw files from .oni files (remember to use the import:sep option on Mac!)
|<tt>-import:nosep <source directory><br><target file name>.dat</tt>||The standard command for creating .dat/.raw files from .oni files (remember to use the import:sep option on Mac!)
|}
|}