Skip to content

reflektone-games/SimaiSharp

Repository files navigation

SimaiSharp Banner

SimaiSharp

SimaiSharp is an interpreter and serializer for simai, a custom chart format for the arcade rhythm game maimai, written in C#, originally intended for use in AstroDX.

Getting Started

To use SimaiSharp in your own project, you will need to add a reference to the SimaiSharp library in your solution.

Then, use the following method to deserialize a chart:

// Specify the chart file
var filePath = @"Z:\path\to\your\chart.txt";

// Read it into your program
var simaiFile = new SimaiFile(filePath);

// Specify a key to read, without the "&"
var chartKey = @"inote_5";

// Get the corresponding value as a string
var rawChart = simaiFile.GetValue(chartKey);

// Deserialize the chart
var chart = SimaiConvert.Deserialize(rawChart);

Contribute

Issues and pull requests are welcome!