pub struct MainData<'a> {Show 28 fields
pub bgm: Vec<Vec<usize>>,
pub length: f64,
pub bpm: Vec<&'a [Option<f64>]>,
pub bga: Vec<Vec<usize>>,
pub bga_poor: Vec<Vec<usize>>,
pub bga_layer: Vec<Vec<usize>>,
pub ex_bpm: Vec<Vec<usize>>,
pub stop: Vec<Vec<usize>>,
pub bga_layer2: Vec<Vec<usize>>,
pub bga_alpha: Vec<&'a [u8]>,
pub bga_layer_alpha: Vec<&'a [u8]>,
pub bga_layer2_alpha: Vec<&'a [u8]>,
pub bga_poor_alpha: Vec<&'a [u8]>,
pub notes: HashMap<usize, Vec<Vec<usize>>>,
pub invisible_notes: HashMap<usize, Vec<Vec<usize>>>,
pub long_notes: HashMap<usize, Vec<Vec<usize>>>,
pub text: Vec<Vec<usize>>,
pub ex_rank: Vec<Vec<usize>>,
pub bga_argb: Vec<Vec<usize>>,
pub bga_layer_argb: Vec<Vec<usize>>,
pub bga_layer2_argb: Vec<Vec<usize>>,
pub bga_poor_argb: Vec<Vec<usize>>,
pub switch_bga: Vec<Vec<usize>>,
pub option: Vec<Vec<usize>>,
pub landmine: HashMap<usize, Vec<&'a [f64]>>,
pub scroll: Vec<Vec<usize>>,
pub speed: Vec<Vec<usize>>,
pub other: Vec<(usize, &'a str)>,
}
Expand description
一小節ごとのメインデータ
同じ小節、同じチャンネルが複数行定義された場合に対応
bgmとoptionのみ複数行に対応している場合が多い
Fields§
§bgm: Vec<Vec<usize>>
BGM
length: f64
一小節の長さ
1が基準
bpm: Vec<&'a [Option<f64>]>
BPM
1から255まで
bga: Vec<Vec<usize>>
BGA
bga_poor: Vec<Vec<usize>>
POOR BGA
bga_layer: Vec<Vec<usize>>
BGA LAYER
ex_bpm: Vec<Vec<usize>>
EXBPM
stop: Vec<Vec<usize>>
停止
bga_layer2: Vec<Vec<usize>>
BGA LAYER2
bga_alpha: Vec<&'a [u8]>
BGA不透明度
bga_layer_alpha: Vec<&'a [u8]>
BGA LAYER不透明度
bga_layer2_alpha: Vec<&'a [u8]>
BGA LAYER2不透明度
bga_poor_alpha: Vec<&'a [u8]>
POOR BGA不透明度
notes: HashMap<usize, Vec<Vec<usize>>>
ノーツ
チャンネルを36進数で解釈した値をキーにしたHashMap
invisible_notes: HashMap<usize, Vec<Vec<usize>>>
不可視ノーツ
チャンネルを36進数で解釈した値をキーにしたHashMap
long_notes: HashMap<usize, Vec<Vec<usize>>>
ロングノーツ
チャンネルを36進数で解釈した値をキーにしたHashMap
text: Vec<Vec<usize>>
テキスト
ex_rank: Vec<Vec<usize>>
EXRANK
bga_argb: Vec<Vec<usize>>
BGA aRGB
bga_layer_argb: Vec<Vec<usize>>
BGA LAYER aRGB
bga_layer2_argb: Vec<Vec<usize>>
BGA LAYER2 aRGB
bga_poor_argb: Vec<Vec<usize>>
POOR BGA aRGB
switch_bga: Vec<Vec<usize>>
SWBGA
option: Vec<Vec<usize>>
オプション
landmine: HashMap<usize, Vec<&'a [f64]>>
地雷
scroll: Vec<Vec<usize>>
スクロール速度
speed: Vec<Vec<usize>>
ノーツ速度
other: Vec<(usize, &'a str)>
その他
Trait Implementations§
impl<'a> StructuralPartialEq for MainData<'a>
Auto Trait Implementations§
impl<'a> Freeze for MainData<'a>
impl<'a> RefUnwindSafe for MainData<'a>
impl<'a> Send for MainData<'a>
impl<'a> Sync for MainData<'a>
impl<'a> Unpin for MainData<'a>
impl<'a> UnwindSafe for MainData<'a>
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more