2个版本
0.1.1 | 2020年4月21日 |
---|---|
0.1.0 | 2020年4月21日 |
#1770 in 解析器实现
34KB
676 代码行
此crate提供了解码和编码(开放)NoteBlockStudio缓冲区的功能。它支持原始NBS格式,以及OpenNoteBlockStudio中引入的非官方新格式的1-4版本。NBS格式的文档可以在NoteBlockStudio和OpenNoteBlockStudio找到。
示例:编辑NBS文件
use nbs::{
noteblocks::{instrument, note::Note},
Nbs,
};
use std::fs::File;
fn main() {
let mut file = File::open("tests/1.nbs").unwrap();
let mut nbs = Nbs::decode(&mut file).unwrap();
nbs.noteblocks.layers[2].name = String::from("Cows"); // Renaming the 3rd layer "Cows".
nbs.noteblocks.layers[2].volume = 25; // Setting its volume to 25%.
// Insert a Note in the 3rd layer at tick 0
nbs.noteblocks.layers[2].notes.insert(
0,
Note::new(instrument::COW_BELL, 33, Some(100), Some(100), Some(0)),
);
// Write the changes to `out1.nbs`.
nbs.encode(&mut File::create("out1.nbs").unwrap()).unwrap();
}
示例:创建NBS文件
use nbs::{
header::Header,
noteblocks::{instrument, instrument::CustomInstruments, layer::Layer, note::Note, NoteBlocks},
Nbs, NbsFormat,
};
use std::fs::File;
fn main() {
let mut file = File::create("out2.nbs").unwrap();
let mut header = Header::new(NbsFormat::OpenNoteBlockStudio(4)); // Create a header.
header.song_name = String::from("test"); // Change the name to `test`.
let mut noteblocks = NoteBlocks::new();
// Create a new Layer.
noteblocks
.layers
.push(Layer::from_format(NbsFormat::OpenNoteBlockStudio(4)));
// Insert 20 notes into the first layer
for i in 0..20 {
noteblocks.layers[0].notes.insert(
i,
Note::new(
instrument::PIANO,
(33 + i) as i8,
Some(100),
Some(100),
Some(0),
),
);
}
let custom_instruments = CustomInstruments::new(); // Create a empty list of custom instruments.
let mut nbs = Nbs::from_componets(header, noteblocks, custom_instruments); // Assamble everything together.
nbs.update(); // Update certian fields in the header to match the rest of the file.
nbs.encode(&mut file); // save!
}
依赖项
~120KB