Talk:Modifying an existing level: Difference between revisions
Jump to navigation
Jump to search
Paradox-01 (talk | contribs) mNo edit summary |
Paradox-01 (talk | contribs) mNo edit summary |
||
Line 17: | Line 17: | ||
+-- Tools | +-- Tools | ||
| | | | | | ||
| +-- | | +-- OniSplit | ||
| +-- LevelRecycler | | +-- LevelRecycler | ||
| | | | ||
Line 31: | Line 31: | ||
+-- ''BSL script folders'' | +-- ''BSL script folders'' | ||
Level0_Final.dat stores all ONLD with more meaningful level names. Each non-zero level DAT-archive stores an ONLV file. With those extracted files, a list for modders can be built to easily identify the level they want to recycle. | The "on load" event of the LevelRecycler should automatically update an overview of existing levels: | ||
* Level0_Final.dat stores all ONLD with more meaningful level names. | |||
* Each non-zero level DAT-archive stores an ONLV file. | |||
* With those extracted files, a list for modders can be built to easily identify the level they want to recycle. | |||
// shortened paths | // shortened paths |
Revision as of 06:37, 15 November 2023
To convert an extracted ONLV into a new project file you need even more in-depth knowledge about the file structure than for simply building a level project file from scratch.
Therefore, it would be nice if we could provide a tool to automate necessary work as much as possible.
One-click operation:
- Level extraction.
- Conversion of ONLV into an actual project file.
- Recycling of physics and locklights.
- Preserving as much vertex shading as possible by preferring DAE over CJBO linked meshes.
- BSL analysis to create FILM and cut scene sections?
Oni | +-- AE | +-- Tools | | | +-- OniSplit | +-- LevelRecycler | +-- GameDataFolder | +-- level0_Final.dat +-- level0_Final.raw +-- level1_Final.dat +-- level1_Final.raw +-- ... +-- IGMD | +-- BSL script folders
The "on load" event of the LevelRecycler should automatically update an overview of existing levels:
- Level0_Final.dat stores all ONLD with more meaningful level names.
- Each non-zero level DAT-archive stores an ONLV file.
- With those extracted files, a list for modders can be built to easily identify the level they want to recycle.
// shortened paths OniSplit -export:ONLD* ONLD level0_Final.dat OniSplit -extract:xml ONLD ONLD/*.oni for each non-zero DAT OniSplit -export:ONLV* ONLV ....dat OniSplit -extract:xml ONLV ONLV/*.oni
dat file name, BSL script folder, level name ---------------------------------------------- level1_Final.dat, ONLV<Name>, ONLD<DisplayName>
As soon as the modder has selected the preferred level, it should be a one-click operation to carry out the recycling.