Difference between revisions of "Wiimms SZS Tools"

From Custom Mario Kart
Jump to navigation Jump to search
(v1.46a released)
(Wiimms SZS Tools v1.58b released)
(22 intermediate revisions by 2 users not shown)
Line 19: Line 19:
 
|-
 
|-
 
! File Formats:
 
! File Formats:
| [[BMG]], [[BTI]], [[KCL]], [[KMP]], [[MDL0]], [[PAT0]], [[TPL]], [[TEX0]], [[PNG]], [[OBJ]], [[StaticR.rel]], main.dol, CT-CODE.
+
| [[BMG]], [[BTI]], [[KCL]], [[KMP]], [[MDL0]], [[PAT0]], [[TPL]], [[TEX0]], [[PNG]], [[OBJ]], [[StaticR.rel]], [[main.dol]], CT-CODE.
 +
|-
 +
! Image formats:
 +
| I4, I8, IA4, IA8, RGB565, RGB5A3, RGBA32, C4, C8, C14X2, CMPR.
 
|-
 
|-
 
! Current Version:
 
! Current Version:
| v1.46a, 2015-11-08
+
| v1.58b, 2018-05-18
 
|-
 
|-
 
! Website:
 
! Website:
| [http://szs.wiimm.de/ szs.wiimm.de]
+
| [https://szs.wiimm.de/ szs.wiimm.de]
 
|}
 
|}
 +
 +
'''Wiimms SZS Tools''' has a spelling error, you should see but as a brand name.
  
 
== Introduction ==
 
== Introduction ==
Line 45: Line 50:
 
== Main Features ==
 
== Main Features ==
  
* The tools are ''command line tools''. This means, that there is no GUI support. The main advantage is, that you can place commands into scripts (batch files) for fully automated execution → [http://szss.wiimm.se/info/cli More about ''command line''].
+
* The tools are ''command line tools''. This means, that there is no GUI support. The main advantage is, that you can place commands into scripts (batch files) for fully automated execution → [https://szs.wiimm.se/info/cli More about ''command line''].
 
* '''wszst''' is the main [[SZS]] tool. It has a fast [[Yaz0]] compressor with the best compression rates.
 
* '''wszst''' is the main [[SZS]] tool. It has a fast [[Yaz0]] compressor with the best compression rates.
 
* The '''wszst''' command '''CHECK''' can help you to find bugs in your track.
 
* The '''wszst''' command '''CHECK''' can help you to find bugs in your track.
Line 62: Line 67:
 
** It can automatically create mipmaps, or it can use user defined mipmaps and create only missed mipmaps automatically.
 
** It can automatically create mipmaps, or it can use user defined mipmaps and create only missed mipmaps automatically.
 
** It can patch images with other images.
 
** It can patch images with other images.
 +
 +
=== <span id=small>Ignoring small triangles</span> ===
 +
 +
Sometimes, the imported file contains very small triangles with an area smaller than 1 unit<sup>2</sup>. They were accidentally inserted into the model by the user. Because of the littleness, the user will not see them in the model view of its [[3D Tool]]. However, machines like the [[KCL]] importer of these tools see them and insert them into the KCL &mdash; this is not a bug of the tools. The Wii has (mathematical) problems to use them in a correct way with the result of KCL glitches like mini walls on the road.
 +
 +
Since v1.58a there exist 2 new options: '''--tri-area=EXPR''' and '''--tri-height=EXPR'''[https://szs.wiimm.de/info/kcl-guide.html#tri-min] to filter out too small triangles.
 +
 +
Option [https://szs.wiimm.de/opt/tri-area --tri-area=EXPR] defines the minimal area size of KCL triangles. The intention is to '''ignore triangles that are generally to small'''. EXPR is a floating point number or expression. Triangles are invalidated if their area size is smaller than EXPR. Values between 0.01 and 4.0 are recommended. The careful value 1.0 is used as default. Value 0 disables this filter functionality.
 +
 +
Option [https://szs.wiimm.de/opt/tri-height --tri-height=EXPR] defines the minimal height of KCL triangles. The intention is to '''ignore deformed triangles (very slim, but long)'''. EXPR is a floating point number or expression. Triangles are invalidated if at least 1 of the 3 heights is smaller than EXPR. Values between 0.01 and 2.0 are recommended. The careful value 1.0 is used as default. Value 0 disables this filter functionality.
 +
 +
The tests for both options are executed after reading files, after transformations, and after calculating normals and lengths.
  
 
== History and Download ==
 
== History and Download ==
Line 68: Line 85:
  
 
=== Latest Change Log ===
 
=== Latest Change Log ===
 
Since v1.45, the tools wctct and wstrt can use external CT-CODE files, e.g that one created by [https://github.com/Wiimm/wii-ct-code github.com/Wiimm/wii-ct-code]. The internal CT-CODE is now updated to the most current version of the GitHub archive.
 
 
Since v1.45, the KMP can create fully automated respawn points. With v1.45 flags for KMP sections ENPT, ITPT and JGPT are supporeted to exclude single points from automatic calculations (fall-down, snap, respawn).
 
  
 
<pre>
 
<pre>
szs v1.46a r6626 - 2015-11-08
+
szs v1.58b r7503 - 2018-05-18
 
 
- New option: --compatible=version: The option accpets a version number
 
  (format '#.##' or 'v#.##') or a revision number (format 'r#') as parameter.
 
  If set, the tools try to create BMG and KMP text files, that are compatible
 
  to the entered version. This may override other legacy options.
 
  
  - wkmpt DECODE: If creating a KMP text file, a new macro section is included.
+
  - Default value for options --tri-area and --tri-height is now 1.0.  
  The only yet provided macro is ITEMBOX: It help to setup a row of items
 
  and supports automatic height correction. See the macro definition for more
 
  details. The macro itself is very old and works also with old versions of
 
  the tools, but they don't create it.
 
  
  - wkmpt DRAW: Draw objects 'kinoko_*' and 'DKturibashiGC' as recognizable
+
  - Some more minor edits.
  polygons. These objects can also be used to stop fall-down on automatic
 
  height evaluation, if the new parameter 'KCL-FALL-ADD-ROAD' is set to '1'.
 
  
- New: Post processing flags for KMP sections ENPT, ITPT and JGPT. To disable
 
  the new flags column on text output, use option --compatible=v1.45.
 
  
- wkmpt DRAW: If drawing check point connection lines, red is used for the
+
szs v1.58a r7499 - 2018-04-20
  left and green for the right side (like navigation lights).
 
  
  - wkmpt DRAW: Option --draw supports now object filtering by presence flag.
+
  - Option --kcl-min=EXPR: This option is deprecated, but still supported. It
   The new keywords are: 1OFFLINE .. 3OFFLINE and  1ONLINE .. 3ONLINE.
+
   is an alternative name for --tri-height=EXPR now.
  
 +
- New option --tri-area=EXPR: Define the minimal area size of KCL triangles.
 +
  The intention is to ignore triangles that are generally to small. EXPR is
 +
  a floating point number or expression. Triangles are invalidated if their
 +
  area size is smaller than EXPR. The test is executed after reading files,
 +
  after transformations, and after calculating normals and lengths. Values
 +
  between 0.01 and 4.0 are recommended. The careful value 1.0 is used as
 +
  default. Value 0 disables this filter functionality.
  
szs v1.45a r6602 - 2015-10-31
+
- New option --tri-height=EXPR: Define the minimal height of KCL triangles.
 +
  The intention is to ignore deformed triangles (very slim, but long). EXPR
 +
  is a floating point number or expression. Triangles are invalidated if at
 +
  least 1 of the 3 heights is smaller than EXPR. The test is executed after
 +
  reading files, after transformations, and after calculating normals and
 +
  lengths. Values between 0.01 and 2.0 are recommended. The careful value 0.1
 +
  is used as default. Value 0 disables this filter functionality.
  
  - Option --patch-bmg=id: Better detection of the source file type (Race,
+
  - You can proof the impact of the options above by command wkclt TEST.
  Event, MenuOther, ... ) especially in SZS files.
 
  
  - The KMP compiler can now automatically create respawn points and/or
+
  - Command wkclt DUMP has been expanded and shows metrics like side length,
   automatically connect check points to the nearest respawn point. Both
+
   area size and heights for each triangle.
  together make an initial respawn setup much easier.
 
  Read http://szs.wiimm.de/info/respawn-setup.html for details.
 
  
  - Tool wctct: It is now possible to define hidden tracks (don't appear in
+
  - New command: wkclt LIST: Print a list of all triangles with metrics in
   any cup) by using control letter 'H' instead of 'T'.
+
  human and machine readable text format. It is like command DUMP, but
 +
   reduced to the list of triangles.
  
  - New option: wctct/wstrt --ct-dir: Define a search directory for CT-CODE
+
  - New implementation for OBJ groups without assigned KCL flag. They will be
   parts and use the internal copies only, if no valid file is found. Use
+
   inserted into the OBJ export now.
  this option multiple times to define more than one search directory.
 
  
    - wctct --ct-dir: Search files rmc?/mod1.bin, rmc?/mod2.bin, rmc?/ovr1.bin
 
      and rmc?/bad1code.bin.
 
  
    - wstrt --ct-dir: Search files rmc?/boot_code.bin and rmc?/boot_data.bin
+
szs v1.57a r7484 - 2018-04-11
      if option --add-ctcode is used.
 
  
  - Tools wctct and wstrt use now the most current CT-CODE version provided by
+
  - Windows version only: Update to Cygwin v2.10.0.
  https://github.com/Wiimm/wii-ct-code (a fork of Chadderz code with support
 
  of the SZS Tools). To use the old code of year 2013 download the zip file
 
  http://szs.wiimm.de/download/ctcode/ctcode-2013-10.zip and use the base
 
  directory as parameter for the new option --ct-dir (see above).
 
  
  - wstrt --add-ctcode: The first free DOL sections are used now. Before only
+
  - New option for tools wkclt, wszst and wkmpt: --kcl-min=FLOAT: Define a
   sections T2 and D8 were added if not already in use.
+
  minimal `length` of KCL triangles. The length is the heights of the
 +
  reference side of the triangle. Smaller triangles are invalidated and
 +
  ignored or removed. The default value is 0.1 and good values are between
 +
   0.01 and 2.0. Until v1.56a the minimal length was hard coded as 1e-6
 +
  (1/million) to avoid  mathematical overflows while calculating positions
 +
  by normals. The larger value reduces the number of KCL glitches
 +
  dramatically for some tracks with many unusual triangles.
  
  - New option: wstrt --meno: Patch some 'MenuSingle' and 'MenuMulti' strings
+
  - New option: --wc24: If set, options --wiimmfi and --domain will exclude 2
   of file StaticR.rel for online usage to 'MenO*' to distinguish between
+
   strings of StaticR.rel from the URL patch to enable WC24 support.
  offline and online.
 
 
</pre>
 
</pre>
  
 
=== Links ===
 
=== Links ===
  
* [http://szs.wiimm.de/changelog.html Complete History]
+
* [https://szs.wiimm.de/changelog.html Complete History]
* [http://szs.wiimm.de/download.html Downloads]
+
* [https://szs.wiimm.de/download.html Downloads]
* [http://szs.wiimm.de/#l-sources Source code]
+
* [https://szs.wiimm.de/#l-sources Source code]
* [http://szs.wiimm.de/doc/cli Command Line Interface (CLI)]
+
* [https://szs.wiimm.de/doc/cli Command Line Interface (CLI)]
 
* [https://github.com/Wiimm/wii-ct-code GitHub: Wiimm/wii-ct-code]
 
* [https://github.com/Wiimm/wii-ct-code GitHub: Wiimm/wii-ct-code]
  
Line 155: Line 162:
 
* While extracting some file formats can be decoded (converted to text or PNG files).
 
* While extracting some file formats can be decoded (converted to text or PNG files).
 
* It can create all (but not [[RARC]] archives) while readind and scanning a directory structure. Decoded files are encoded automatically.
 
* It can create all (but not [[RARC]] archives) while readind and scanning a directory structure. Decoded files are encoded automatically.
&rarr; [http://szs.wiimm.de/wszst Tool wszst: Features, commands and options]
+
&rarr; [https://szs.wiimm.de/wszst Tool wszst: Features, commands and options]
  
 
=== wbmgt (Wiimms BMG Tool) ===
 
=== wbmgt (Wiimms BMG Tool) ===
  
 
'''wbmgt''' is a command driven tool to manipulate [[BMG]] (message) files.
 
'''wbmgt''' is a command driven tool to manipulate [[BMG]] (message) files.
<br/>&rarr; [http://szs.wiimm.de/wbmgt Tool wbmgt: Features, commands and options]
+
<br/>&rarr; [https://szs.wiimm.de/wbmgt Tool wbmgt: Features, commands and options]
  
 
=== wkclt (Wiimms KCL Tool) ===
 
=== wkclt (Wiimms KCL Tool) ===
  
 
'''wkclt''' is a command driven tool to convert [[KCL]] files into/from binary KCL from/into Wavefront OBJ files.
 
'''wkclt''' is a command driven tool to convert [[KCL]] files into/from binary KCL from/into Wavefront OBJ files.
<br/>&rarr; [http://szs.wiimm.de/wkclt Tool wkclt: Features, commands and options]
+
<br/>&rarr; [https://szs.wiimm.de/wkclt Tool wkclt: Features, commands and options]
<br/>&rarr; [http://szs.wiimm.de/doc/syntax General parser syntax and semantics]
+
<br/>&rarr; [https://szs.wiimm.de/doc/syntax General parser syntax and semantics]
<br/>&rarr; [http://szs.wiimm.de/doc/kcl KCL export and import guide]
+
<br/>&rarr; [https://szs.wiimm.de/doc/kcl KCL export and import guide]
  
 
=== wkmpt (Wiimms KMP Tool) ===
 
=== wkmpt (Wiimms KMP Tool) ===
  
 
'''wkmpt''' is a command driven tool to convert [[KMP]] files into/from binary from/into text files. A special compiler is used to allow variables, expressions, if..then..else, loops, macros and user defined functions while reading a KMP text file.
 
'''wkmpt''' is a command driven tool to convert [[KMP]] files into/from binary from/into text files. A special compiler is used to allow variables, expressions, if..then..else, loops, macros and user defined functions while reading a KMP text file.
<br/>&rarr; [http://szs.wiimm.de/wkmpt Tool wkmpt: Features, commands and options]
+
<br/>&rarr; [https://szs.wiimm.de/wkmpt Tool wkmpt: Features, commands and options]
<br/>&rarr; [http://szs.wiimm.de/doc/syntax General parser syntax and semantics]
+
<br/>&rarr; [https://szs.wiimm.de/doc/syntax General parser syntax and semantics]
<br/>&rarr; [http://szs.wiimm.de/doc/kmp/syntax KMP text syntax and semantics]
+
<br/>&rarr; [https://szs.wiimm.de/doc/kmp/syntax KMP text syntax and semantics]
<br/>&rarr; [http://szs.wiimm.de/doc/kmp/func KMP parser functions]
+
<br/>&rarr; [https://szs.wiimm.de/doc/kmp/func KMP parser functions]
 
<br/>&rarr; [[Wiimms SZS Tools/KMP|How to edit KMP files]]
 
<br/>&rarr; [[Wiimms SZS Tools/KMP|How to edit KMP files]]
  
Line 183: Line 190:
 
* '''wimgt''' supports the file formats [[BREFT]], [[BTI]], [[TEX0]], [[TPL]] and [[PNG]] as export and import type.
 
* '''wimgt''' supports the file formats [[BREFT]], [[BTI]], [[TEX0]], [[TPL]] and [[PNG]] as export and import type.
 
* '''wimgt''' supports the internal image formats I4, I8, IA4, IA8, RGB565, RGB5A3, RGBA32, C4, C8, C14X2 and CMPR (and also different PNG formats).
 
* '''wimgt''' supports the internal image formats I4, I8, IA4, IA8, RGB565, RGB5A3, RGBA32, C4, C8, C14X2 and CMPR (and also different PNG formats).
&rarr; [http://szs.wiimm.de/wimgt Tool wimgt: Features, commands and options]
+
&rarr; [https://szs.wiimm.de/wimgt Tool wimgt: Features, commands and options]
  
 
=== wstrt (Wiimms StaticR Tool) ===
 
=== wstrt (Wiimms StaticR Tool) ===
  
 
'''wstrt''' is a command driven tool to manipulate [[StaticR]] files of [[Mario Kart Wii]].
 
'''wstrt''' is a command driven tool to manipulate [[StaticR]] files of [[Mario Kart Wii]].
<br/>&rarr; [http://szs.wiimm.de/wstrt Tool wstrt: Features, commands and options]
+
<br/>&rarr; [https://szs.wiimm.de/wstrt Tool wstrt: Features, commands and options]
  
 
== Links ==
 
== Links ==
Line 194: Line 201:
 
** [[Wiimms SZS Tools/How To|General How To]]
 
** [[Wiimms SZS Tools/How To|General How To]]
 
** [[Wiimms SZS Tools/KMP|KMP How To]]
 
** [[Wiimms SZS Tools/KMP|KMP How To]]
** [[KCL Tutorial (Wiimms Tools)]]
+
** [[Creating a KCL with Wiimms Tools]]
 
** [[wkmpt DRAW]]
 
** [[wkmpt DRAW]]
  
* [http://szs.wiimm.de/ Wiimms SZS Tools]
+
* [https://szs.wiimm.de/ Wiimms SZS Tools]
** Features, commands and options: [http://szs.wiimm.de/wszst wszst], [http://szs.wiimm.de/wbmgt wbmgt],  [http://szs.wiimm.de/wkmpt wkmpt], [http://szs.wiimm.de/wimgt wimgt], [http://szs.wiimm.de/wstrt wstrt], [http://szs.wiimm.de/wctct wctct]
+
** Features, commands and options: [https://szs.wiimm.de/wszst wszst], [https://szs.wiimm.de/wbmgt wbmgt],  [https://szs.wiimm.de/wkmpt wkmpt], [https://szs.wiimm.de/wimgt wimgt], [https://szs.wiimm.de/wstrt wstrt], [https://szs.wiimm.de/wctct wctct]
** [http://szs.wiimm.de/download.html Downloads]
+
** [https://szs.wiimm.de/download.html Downloads]
  
 
* Graphical user interfaces (GUI)
 
* Graphical user interfaces (GUI)
Line 206: Line 213:
  
 
* [[KMP]] & [[KCL]] Parser
 
* [[KMP]] & [[KCL]] Parser
** [http://szs.wiimm.de/doc/syntax General parser syntax and semantics]
+
** [https://szs.wiimm.de/doc/syntax General parser syntax and semantics]
** [http://szs.wiimm.de/doc/kmp/syntax KMP text syntax and semantics]
+
** [https://szs.wiimm.de/doc/kmp/syntax KMP text syntax and semantics]
** [http://szs.wiimm.de/doc/kmp/func KMP parser functions]
+
** [https://szs.wiimm.de/doc/kmp/func KMP parser functions]
** [http://szs.wiimm.de/doc/kcl KCL export and import guide]
+
** [https://szs.wiimm.de/doc/kcl KCL export and import guide]
** [http://szs.wiimm.de/info/respawn-setup.html Automatic setup of respawn points]
+
** [https://szs.wiimm.de/info/respawn-setup.html Automatic setup of respawn points]
  
 
* Forums
 
* Forums
** [http://gbatemp.net/t286476-wiimms-szs-tools?view=findpost&p=3559819 Discussion at GBAtemp.net]
+
** [https://gbatemp.net/t286476-wiimms-szs-tools?view=findpost&p=3559819 Discussion at GBAtemp.net]
** [http://forum.wii-homebrew.com/board197-pc-tools/p319981-wiimms-szs-tools/#post319981 Discussion at Wii-Homebrew.com] (german forum)
+
** [https://forum.wii-homebrew.com/board197-pc-tools/p319981-wiimms-szs-tools/#post319981 Discussion at Wii-Homebrew.com] (german forum)
  
 
* Misc
 
* Misc

Revision as of 19:55, 18 May 2018

Wiimms SZS Tools
File:Wiimms-SZS-Tools.png
Author: Wiimm
Operating Systems: Linux (i386,x86_64),
Mac (i386,x86_64),
Windows (cygwin).
Software Type: File manager, decoding and encoding toolset.
Compression Formats: Yaz0, Yaz1, WBZ.
Archive Formats: SZS, U8, WU8, PACK, RARC, BRRES, BREFF, BREFT.
File Formats: BMG, BTI, KCL, KMP, MDL0, PAT0, TPL, TEX0, PNG, OBJ, StaticR.rel, main.dol, CT-CODE.
Image formats: I4, I8, IA4, IA8, RGB565, RGB5A3, RGBA32, C4, C8, C14X2, CMPR.
Current Version: v1.58b, 2018-05-18
Website: szs.wiimm.de

Wiimms SZS Tools has a spelling error, you should see but as a brand name.

Introduction

Wiimms SZS Tools is a set of different tools to manipulate SZS, U8, RARC, BRRES, BREFF and BREFT archives and BMG, BTI, KCL, KMP, MDL0, TPL, TEX0 and StaticR.rel files. All tools are command line tools and run without any interaction. The tools are available for Linux, Mac and Windows. The main goal is to run them in batch files and scripts to automate recurring jobs. At the moment there are 8 tools:

  • wszst : Wiimms SZS Tool (handles SZS, U8, RARC, BRRES, BREFF and BREFT archives)
  • wbmgt : Wiimms BMG Tool (convert and patch BMG files in binary and text format).
  • wimgt : Wiimms Image Tool (convert and patch image files of Mario Kart Wii).
  • wkclt : Wiimms KCL Tool (convert raw KCL files from/into obj format).
  • wkmpt : Wiimms KMP Tool (handles raw and text KMP files, read text files like a compiler).
  • wpatt : Wiimms PAT Tool (handles raw and text PAT0 files, read text files like a compiler).
  • wstrt : Wiimms StaticR Tool (handles StaticR.rel and main.dol files of Mario Kart Wii).
  • wctct : Wiimms CT-CODE Tool (handles CT(GP)-CODE to allow >32 tracks).

One main goal is the fully automated track name replacement. The tools together can do this. Another goal is to extract all sub files recursively and transforming they into user friendly file formats (like text of png files) and support recreation of the original source files.

There is also an little How To.

Main Features

  • The tools are command line tools. This means, that there is no GUI support. The main advantage is, that you can place commands into scripts (batch files) for fully automated execution → More about command line.
  • wszst is the main SZS tool. It has a fast Yaz0 compressor with the best compression rates.
  • The wszst command CHECK can help you to find bugs in your track.
  • The new wszst command SLOTS makes a track proposal for working and non working slots.
  • The KCL tool wkclt can create KCL files from scratch (they become as small as possible) by reading an OBJ file. It can also export an existing KCL to an OBJ file with colors to make a KCL visible.
  • The KMP tool wkmpt can decode and compile (yes, it's a real compiler with loops and other control structures) KMP files.
    • While compiling, it can overide some parameters for debugging or optimization.
    • The KMP compiler can use the KCL to find optimal vertical positions of objects and route points. This is good for visual debugging.
  • The wkmpt command DRAW creates an OBJ file with KCL and add route positions and other objects of the KMP.
  • The wszst command PATCH can transform whole tracks inkl. KCL, KMP, MODEL, MINIMAP and VRCORN. Transforming means any combinations of scaling, rotating and shifting with different factors for each axis.
  • The wszst command MINIMAP can center the minimap automatically. You can use this command with SZS, U8, BRRES and MDL0 files.
  • The image tool wimgt can convert images of all formats:
    • It can convert the file formats TPL, TEX0, BTI, BREFT and PNG to any other.
    • It can convert the Image Formats I4, I8, IA4, IA8, RGB565, RGB5A3, RGBA32, C4, C8, C14X2 and CMPR to any other.
    • It supports the palette formats IA8, RGB565 and RGB5A3.
    • It can automatically create mipmaps, or it can use user defined mipmaps and create only missed mipmaps automatically.
    • It can patch images with other images.

Ignoring small triangles

Sometimes, the imported file contains very small triangles with an area smaller than 1 unit2. They were accidentally inserted into the model by the user. Because of the littleness, the user will not see them in the model view of its 3D Tool. However, machines like the KCL importer of these tools see them and insert them into the KCL — this is not a bug of the tools. The Wii has (mathematical) problems to use them in a correct way with the result of KCL glitches like mini walls on the road.

Since v1.58a there exist 2 new options: --tri-area=EXPR and --tri-height=EXPR[1] to filter out too small triangles.

Option --tri-area=EXPR defines the minimal area size of KCL triangles. The intention is to ignore triangles that are generally to small. EXPR is a floating point number or expression. Triangles are invalidated if their area size is smaller than EXPR. Values between 0.01 and 4.0 are recommended. The careful value 1.0 is used as default. Value 0 disables this filter functionality.

Option --tri-height=EXPR defines the minimal height of KCL triangles. The intention is to ignore deformed triangles (very slim, but long). EXPR is a floating point number or expression. Triangles are invalidated if at least 1 of the 3 heights is smaller than EXPR. Values between 0.01 and 2.0 are recommended. The careful value 1.0 is used as default. Value 0 disables this filter functionality.

The tests for both options are executed after reading files, after transformations, and after calculating normals and lengths.

History and Download

Wiimm started the development of his SZS Tools in March 2011. The first goal was to automate the insertions of the track names for Wiimms Mario Kart Fun distributions. Therefore 2 tools have been needed: A SZS extractor and creator and a BMG manipulator. The 2 tools wszst and wbmgt were ready in April 2011. After this, Wiimm implemented an Image-Tool (wimgt), an StaticR.rel tool (wstrt), a KMP tool (wkmpt) and a KCL tool (wkclt). All tools are command line tools to support scripts and fully automated operations.

Latest Change Log

szs v1.58b r7503 - 2018-05-18

 - Default value for options --tri-area and --tri-height is now 1.0. 

 - Some more minor edits.


szs v1.58a r7499 - 2018-04-20

 - Option --kcl-min=EXPR: This option is deprecated, but still supported. It
   is an alternative name for --tri-height=EXPR now.

 - New option --tri-area=EXPR: Define the minimal area size of KCL triangles.
   The intention is to ignore triangles that are generally to small. EXPR is
   a floating point number or expression. Triangles are invalidated if their
   area size is smaller than EXPR. The test is executed after reading files,
   after transformations, and after calculating normals and lengths. Values
   between 0.01 and 4.0 are recommended. The careful value 1.0 is used as
   default. Value 0 disables this filter functionality.

 - New option --tri-height=EXPR: Define the minimal height of KCL triangles.
   The intention is to ignore deformed triangles (very slim, but long). EXPR
   is a floating point number or expression. Triangles are invalidated if at
   least 1 of the 3 heights is smaller than EXPR. The test is executed after
   reading files, after transformations, and after calculating normals and
   lengths. Values between 0.01 and 2.0 are recommended. The careful value 0.1
   is used as default. Value 0 disables this filter functionality.

 - You can proof the impact of the options above by command wkclt TEST.

 - Command wkclt DUMP has been expanded and shows metrics like side length,
   area size and heights for each triangle.

 - New command: wkclt LIST: Print a list of all triangles with metrics in
   human and machine readable text format. It is like command DUMP, but
   reduced to the list of triangles.

 - New implementation for OBJ groups without assigned KCL flag. They will be
   inserted into the OBJ export now.


szs v1.57a r7484 - 2018-04-11

 - Windows version only: Update to Cygwin v2.10.0.

 - New option for tools wkclt, wszst and wkmpt: --kcl-min=FLOAT: Define a
   minimal `length` of KCL triangles. The length is the heights of the
   reference side of the triangle. Smaller triangles are invalidated and
   ignored or removed. The default value is 0.1 and good values are between
   0.01 and 2.0. Until v1.56a the minimal length was hard coded as 1e-6
   (1/million) to avoid  mathematical overflows while calculating positions
   by normals. The larger value reduces the number of KCL glitches
   dramatically for some tracks with many unusual triangles.

 - New option: --wc24: If set, options --wiimmfi and --domain will exclude 2
   strings of StaticR.rel from the URL patch to enable WC24 support.

Links

Tools Overview

wszst (Wiimms SZS Tool)

wszst is a command driven tool to manipulate archives:

  • Supported archive formats: SZS, U8, RARC, BRRES, BREFF and BREFT.
  • It can extract all subfiles of any archive.
  • While extracting some file formats can be decoded (converted to text or PNG files).
  • It can create all (but not RARC archives) while readind and scanning a directory structure. Decoded files are encoded automatically.

Tool wszst: Features, commands and options

wbmgt (Wiimms BMG Tool)

wbmgt is a command driven tool to manipulate BMG (message) files.
Tool wbmgt: Features, commands and options

wkclt (Wiimms KCL Tool)

wkclt is a command driven tool to convert KCL files into/from binary KCL from/into Wavefront OBJ files.
Tool wkclt: Features, commands and options
General parser syntax and semantics
KCL export and import guide

wkmpt (Wiimms KMP Tool)

wkmpt is a command driven tool to convert KMP files into/from binary from/into text files. A special compiler is used to allow variables, expressions, if..then..else, loops, macros and user defined functions while reading a KMP text file.
Tool wkmpt: Features, commands and options
General parser syntax and semantics
KMP text syntax and semantics
KMP parser functions
How to edit KMP files

wimgt (Wiimms Image Tool)

wimgt is a command driven tool to convert and aptch graphic images:

  • wimgt supports the file formats BREFT, BTI, TEX0, TPL and PNG as export and import type.
  • wimgt supports the internal image formats I4, I8, IA4, IA8, RGB565, RGB5A3, RGBA32, C4, C8, C14X2 and CMPR (and also different PNG formats).

Tool wimgt: Features, commands and options

wstrt (Wiimms StaticR Tool)

wstrt is a command driven tool to manipulate StaticR files of Mario Kart Wii.
Tool wstrt: Features, commands and options

Links