-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix StepMania timing point change when beat is a fraction * make totalBeatTime more precise * Make currentTime more precise * Extract method AddRow to add a row of notes * Round note times towards zero instead of away * Sort stops and bpms combined and use a queue * Add SV for stops * Fix formatting * Add documentation to stepmania conversion * Use Math.Truncate instead of Round with MidpointRounding.ToZero * Use IStepWithBeat for Beat sorting instead of a union type * Fix stepmania stop incorrect time placement when multiple stops are inbetween a beat
- Loading branch information
1 parent
01546ee
commit bf369dd
Showing
4 changed files
with
144 additions
and
82 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
namespace Quaver.API.Maps.Parsers.Stepmania | ||
{ | ||
public interface IStepWithBeat | ||
{ | ||
float Beat { get; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters