2 releases
0.1.1 | Mar 11, 2024 |
---|---|
0.1.0 | Feb 27, 2024 |
#2201 in Parser implementations
28 downloads per month
79KB
2K
SLoC
rosu-storyboard
Library to de- and encode osu! storyboards.
Usage
Based on rosu-map
's DecodeBeatmap
trait, the Storyboard
struct provides a way
to decode .osu
or .osb
files.
use rosu_storyboard::Storyboard;
use rosu_storyboard::element::ElementKind;
let path = "./resources/Himeringo - Yotsuya-san ni Yoroshiku (RLC) [Winber1's Extreme].osu";
let storyboard = Storyboard::from_path(path).unwrap();
let first_bg_elem = &storyboard.layers["Background"].elements[0];
assert!(matches!(first_bg_elem.kind, ElementKind::Sprite(_)));
lib.rs
:
Library to de- and encode osu! storyboards.
Usage
Based on rosu-map
's DecodeBeatmap
trait, the Storyboard
struct provides a way
to decode .osu
or .osb
files.
use rosu_storyboard::Storyboard;
use rosu_storyboard::element::ElementKind;
let path = "./resources/Himeringo - Yotsuya-san ni Yoroshiku (RLC) [Winber1's Extreme].osu";
let storyboard = Storyboard::from_path(path).unwrap();
let first_bg_elem = &storyboard.layers["Background"].elements[0];
assert!(matches!(first_bg_elem.kind, ElementKind::Sprite(_)));
Dependencies
~240KB