Giter Club home page Giter Club logo

osu-parser's Introduction

osu-parser

Build Status

A parser for Nodejs that converts osu files into javascript objects. Feel free to give it a try and post issues to help me improve it ;)

Installation

npm install osu-parser

Usage

  var parser = require('osu-parser');

  parser.parseFile('path/to/map.osu', function (err, beatmap) {
    console.log(beatmap);
  });

The resulting object

Simple key/value entries like this...

...
PreviewTime: 42860
...

...are directly reachable as properties :

console.log(beatmap['PreviewTime']);
// prints 42860

Additionnal beatmap properties :

name type description
fileFormatStringosu file format (v7, v12...).
bgFilenameStringname of the background image.
nbCirclesIntegernumber of circles.
nbSlidersIntegernumber of sliders.
nbSpinnersIntegernumber of spinners.
bpmMinIntegerminimum bpm.
bpmMaxIntegermaximum bpm.
maxComboIntegermaximum combo.
totalTimeIntegertotal time in seconds.
drainingTimeIntegerdraining time in seconds.
tagsArrayArraytags splitted into an array, for convenience.
breakTimesArraylist of all break times. Each has startTime and endTime properties.
timingPointsArraylist of all timing points. See TimingPoint below.
hitObjectsArraylist of all hitobjects. See HitObject below.

TimingPoint properties

name type description
offsetIntegeroffset in milliseconds.
beatLengthFloatlength of a single beat in milliseconds. Inherited from previous timing point if negative.
bpmFloatnumber of beats per minute. Inherited from previous timing point if beatLength is negative.
velocityFloatvelocity multiplicator.
timingSignatureInteger3 = simple triple, 4 = simple quadruple (used in editor).
sampleSetIdIntegersound samples. None = 0, Normal = 1, Soft = 2.
customSampleIndexIntegerindex of the custom sound samples. (0 if none)
sampleVolumeIntegervolume of the samples.
timingChangeBooleanis there a beatLength change ?
kiaiTimeActiveBooleanis it a kiai section ?

HitObject properties

name type description
objectNameStringcircle, slider, spinner or unknown.
positionArray[Integer]object position : [x,y]
startTimeIntegerstart offset.
newComboBooleanis it a new combo ?
soundTypesArraylist of sound effects. Those can be : normal, whistle, finish, clap.
additionsObject hitobject specific additions. It can have those properties :
-sample: object specific sample. It can be : soft, normal, drum.
-additionalSample: the sample to use for additional sounds (finish, whistle, clap). It can be : soft, normal, drum.
-customSampleIndex: index of the custom sample to use (ex: normal-2).
-hitsoundVolume: specific volume for this object (require hitsound to be an existing file).
-hitsound: a file to use as hitsound. It disables all other hitsounds.
Slider specific properties
name type description
repeatCountIntegernumber of repeats, starts at 1 for a single-way slider.
pixelLengthIntegerlength in osu-relative pixels.
durationIntegerduration in milliseconds, rounded to the upper integer.
endTimeIntegerend offset.
curveTypeStringcan be catmull, bezier, linear or pass-through.
pointsArraylist of all points including the very first. Each point is an array of coordinates [x,y].
endPositionArraycoordinates of the slider end ([x,y]). (not calculated for catmull)
edgesArray list of edges. The number of edges is repeatCount + 1. Each one has two properties :
-soundTypes: list of sound effects. Those can be : normal, whistle, finish, clap.
-additions: edge additions. Same as hitobject additions, but can only have sample and additionalSample.
Spinner specific properties
name type description
endTimeIntegerend offset.

Methods

parseFile(filepath, callback)

Parse the given file. The callback returns (error, beatmap).

  var parser = require('osu-parser');

  parser.parseFile('path/to/map.osu', function (err, beatmap) {
    console.log(beatmap);
  });

parseStream(stream, callback)

Parse a stream containing a file content. The callback returns (error, beatmap).

  var parser = require('osu-parser');
  var fs     = require('fs');
  var stream = fs.createReadStream('path/to/map.osu');

  parser.parseStream(stream, function (err, beatmap) {
    console.log(beatmap);
  });

parseContent(content)

Parse the content of a file as a string or a buffer.

  var parser  = require('osu-parser');
  var fs      = require('fs');
  var content = fs.readFileSync('path/to/map.osu');

  var beatmap = parser.parseContent(content);

TODO

  • translate the samplesetId of timing points
  • parse events
  • make tests more reliable
  • add a synchronous version of parseFile
  • make it usable in a browser ? (not sure that would be useful)
  • ...

osu-parser's People

Contributors

nojhamster avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

osu-parser's Issues

More about sliders

Is there a way to calculate the slider duration or the end time?

Thanks.

Fix hitnormal in soundtypes

Right now "normal" is only added to soundTypes if there are no additions, but hitnormal is always active. It should be either completely removed or always inserted (probably better for end users).

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.