Miscellaneous mods for maimai DX
Go to file
2024-05-27 10:59:40 +07:00
.idea/.idea.sinmai-mods/.idea Add loose file DB loading 2024-05-24 21:46:42 +07:00
CachedDataManager initial commit 2024-05-22 22:31:19 +07:00
FixLocaleIssues initial commit 2024-05-22 22:31:19 +07:00
LooseDBTables Add loose file DB loading 2024-05-24 21:46:42 +07:00
LooseDBTables.GeneratePatches Add loose file DB loading 2024-05-24 21:46:42 +07:00
MoreChartFormats Add MoreChartFormats 2024-05-27 10:59:40 +07:00
.gitignore initial commit 2024-05-22 22:31:19 +07:00
LICENSE License 2024-05-22 22:32:05 +07:00
README.md Add MoreChartFormats 2024-05-27 10:59:40 +07:00
sinmai-mods.sln Add MoreChartFormats 2024-05-27 10:59:40 +07:00

sinmai-mods

Miscellaneous mods for maimai DX

CachedDataManager

Speeds up game reboots by caching loaded data. Cache is stored in the dataCache folder and should be deleted if any issues arise.

FixLocaleIssues

Attempts to fix charts not loading on some system locales.

Adds CultureInfo.InvariantCulture to all instances of float.Parse and float.TryParse so charts will still load on locales where the comma is the decimal separator.

LooseDBTables

Enables loading tables from loose .json files in Sinmai_Data/StreamingAssets/DB. Useful for string edits (a.k.a. english patch).

Tables are automatically generated if Sinmai_Data/StreamingAssets/DB doesn't exist.

MoreChartFormats

Loads charts written in various known formats:

  • simai (powered by a custom fork of SimaiSharp)
  • srt/szt/sct/sdt (maimai classic chart format)

To use, edit Music.xml to point the chart file path to your chart file:

<Notes>
  <file>
    <path>{filename}.sdt</path>
  </file>
  <!-- snip -->
</Notes>

The chart loader used depends on the file extension:

  • simai chart files must end with .simai
  • srt chart files must end with .srt
  • szt/sct/sdt files can use .szt/.sct/.sdt interchangeably, since they only differ by two ending columns. details

Simai caveats

  • maidata.txt is not supported. If you have one, paste the content of each inote_x into their own .simai file.
  • Both ? and ! will create a slide without a star note, but both of them will make the slide fade in (! makes the slide suddenly appear in standard simai).
  • $ cannot be used to create a tapless slide (maiPad PLUS syntax).
  • $$ is ignored, as star notes only spin when there's an associated slide.
  • [BPM#a:b] is not supported for specifying hold time.
  • ` (fake EACH) makes taps 1/384 measures apart.

SXT caveats

  • Encrypted chart files (.srb/.szb/.scb/.sdb) are not supported. Decrypt them before loading into the game.