pub enum ChartEvent {
Show 17 variants
Note {
side: PlayerSide,
key: Key,
kind: NoteKind,
wav_id: Option<WavId>,
length: Option<YCoordinate>,
continue_play: bool,
},
Bgm {
wav_id: Option<WavId>,
},
BpmChange {
bpm: Decimal,
},
ScrollChange {
factor: Decimal,
},
SpeedChange {
factor: Decimal,
},
Stop {
duration: Decimal,
},
BgaChange {
layer: BgaLayer,
bmp_id: Option<BmpId>,
},
BgaOpacityChange {
layer: BgaLayer,
opacity: u8,
},
BgaArgbChange {
layer: BgaLayer,
argb: u32,
},
BgmVolumeChange {
volume: u8,
},
KeyVolumeChange {
volume: u8,
},
TextDisplay {
text: String,
},
JudgeLevelChange {
level: JudgeLevel,
},
VideoSeek {
seek_time: f64,
},
BgaKeybound {
event: SwBgaEvent,
},
OptionChange {
option: String,
},
BarLine,
}Expand description
Events generated during playback (Elm style).
These events represent actual events during chart playback, such as note triggers, BGM playback,
BPM changes, etc. Setting and control related events have been separated into ControlEvent.
The effects of ChartEvent members on YCoordinate and DisplayRatio are calculated by the corresponding
ChartProcessor implementation, so there’s no need to recalculate them.
Variants§
Note
Key note reaches judgment line (includes visible, long, mine, invisible notes, distinguished by kind)
Fields
side: PlayerSidePlayer side
length: Option<YCoordinate>Note length (end position for long notes, None for regular notes)
Bgm
BGM and other non-key triggers (no valid side/key)
BpmChange
BPM change
ScrollChange
Scroll factor change
SpeedChange
Speed factor change
Stop
Stop scroll event
Fields
BgaChange
BGA (background animation) change event
Triggered when playback position reaches BGA change time point, indicating the need to switch to the specified background image. Supports multiple BGA layers: Base (base layer), Overlay (overlay layer), Overlay2 (second overlay layer), and Poor (displayed on failure).
Fields
BgaOpacityChange
BGA opacity change event (requires minor-command feature)
Dynamically adjust the opacity of the specified BGA layer to achieve fade-in/fade-out effects.
Fields
BgaArgbChange
BGA ARGB color change event (requires minor-command feature)
Dynamically adjust the color of the specified BGA layer through ARGB values to achieve color filter effects.
BgmVolumeChange
BGM volume change event
Triggered when playback position reaches BGM volume change time point, used to adjust background music volume.
KeyVolumeChange
KEY volume change event
Triggered when playback position reaches KEY volume change time point, used to adjust key sound effect volume.
TextDisplay
Text display event
Triggered when playback position reaches text display time point, used to display text information in the chart.
JudgeLevelChange
Judge level change event
Triggered when playback position reaches judge level change time point, used to adjust the strictness of the judgment window.
Fields
level: JudgeLevelJudge level (VeryHard, Hard, Normal, Easy, OtherInt)
VideoSeek
Video seek event (requires minor-command feature)
Triggered when playback position reaches video seek time point, used for video playback control.
BgaKeybound
BGA key binding event (requires minor-command feature)
Triggered when playback position reaches BGA key binding time point, used for BGA and key binding control.
Fields
event: SwBgaEventBGA key binding event type
OptionChange
Option change event (requires minor-command feature)
Triggered when playback position reaches option change time point, used for dynamic game option adjustment.
BarLine
Measure line event
Triggered when playback position reaches measure line position, used for chart structure display.
Trait Implementations§
Source§impl Clone for ChartEvent
impl Clone for ChartEvent
Source§fn clone(&self) -> ChartEvent
fn clone(&self) -> ChartEvent
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moreAuto Trait Implementations§
impl Freeze for ChartEvent
impl RefUnwindSafe for ChartEvent
impl Send for ChartEvent
impl Sync for ChartEvent
impl Unpin for ChartEvent
impl UnwindSafe for ChartEvent
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moreSource§impl<T> Paint for Twhere
T: ?Sized,
impl<T> Paint for Twhere
T: ?Sized,
Source§fn fg(&self, value: Color) -> Painted<&T>
fn fg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self with the foreground set to
value.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like red() and
green(), which have the same functionality but are
pithier.
§Example
Set foreground color to white using fg():
use yansi::{Paint, Color};
painted.fg(Color::White);Set foreground color to white using white().
use yansi::Paint;
painted.white();Source§fn bright_black(&self) -> Painted<&T>
fn bright_black(&self) -> Painted<&T>
Source§fn bright_red(&self) -> Painted<&T>
fn bright_red(&self) -> Painted<&T>
Source§fn bright_green(&self) -> Painted<&T>
fn bright_green(&self) -> Painted<&T>
Source§fn bright_yellow(&self) -> Painted<&T>
fn bright_yellow(&self) -> Painted<&T>
Source§fn bright_blue(&self) -> Painted<&T>
fn bright_blue(&self) -> Painted<&T>
Source§fn bright_magenta(&self) -> Painted<&T>
fn bright_magenta(&self) -> Painted<&T>
Source§fn bright_cyan(&self) -> Painted<&T>
fn bright_cyan(&self) -> Painted<&T>
Source§fn bright_white(&self) -> Painted<&T>
fn bright_white(&self) -> Painted<&T>
Source§fn bg(&self, value: Color) -> Painted<&T>
fn bg(&self, value: Color) -> Painted<&T>
Returns a styled value derived from self with the background set to
value.
This method should be used rarely. Instead, prefer to use color-specific
builder methods like on_red() and
on_green(), which have the same functionality but
are pithier.
§Example
Set background color to red using fg():
use yansi::{Paint, Color};
painted.bg(Color::Red);Set background color to red using on_red().
use yansi::Paint;
painted.on_red();Source§fn on_primary(&self) -> Painted<&T>
fn on_primary(&self) -> Painted<&T>
Source§fn on_magenta(&self) -> Painted<&T>
fn on_magenta(&self) -> Painted<&T>
Source§fn on_bright_black(&self) -> Painted<&T>
fn on_bright_black(&self) -> Painted<&T>
Source§fn on_bright_red(&self) -> Painted<&T>
fn on_bright_red(&self) -> Painted<&T>
Source§fn on_bright_green(&self) -> Painted<&T>
fn on_bright_green(&self) -> Painted<&T>
Source§fn on_bright_yellow(&self) -> Painted<&T>
fn on_bright_yellow(&self) -> Painted<&T>
Source§fn on_bright_blue(&self) -> Painted<&T>
fn on_bright_blue(&self) -> Painted<&T>
Source§fn on_bright_magenta(&self) -> Painted<&T>
fn on_bright_magenta(&self) -> Painted<&T>
Source§fn on_bright_cyan(&self) -> Painted<&T>
fn on_bright_cyan(&self) -> Painted<&T>
Source§fn on_bright_white(&self) -> Painted<&T>
fn on_bright_white(&self) -> Painted<&T>
Source§fn attr(&self, value: Attribute) -> Painted<&T>
fn attr(&self, value: Attribute) -> Painted<&T>
Enables the styling Attribute value.
This method should be used rarely. Instead, prefer to use
attribute-specific builder methods like bold() and
underline(), which have the same functionality
but are pithier.
§Example
Make text bold using attr():
use yansi::{Paint, Attribute};
painted.attr(Attribute::Bold);Make text bold using using bold().
use yansi::Paint;
painted.bold();Source§fn rapid_blink(&self) -> Painted<&T>
fn rapid_blink(&self) -> Painted<&T>
Source§fn quirk(&self, value: Quirk) -> Painted<&T>
fn quirk(&self, value: Quirk) -> Painted<&T>
Enables the yansi Quirk value.
This method should be used rarely. Instead, prefer to use quirk-specific
builder methods like mask() and
wrap(), which have the same functionality but are
pithier.
§Example
Enable wrapping using .quirk():
use yansi::{Paint, Quirk};
painted.quirk(Quirk::Wrap);Enable wrapping using wrap().
use yansi::Paint;
painted.wrap();Source§fn clear(&self) -> Painted<&T>
👎Deprecated since 1.0.1: renamed to resetting() due to conflicts with Vec::clear().
The clear() method will be removed in a future release.
fn clear(&self) -> Painted<&T>
resetting() due to conflicts with Vec::clear().
The clear() method will be removed in a future release.Source§fn whenever(&self, value: Condition) -> Painted<&T>
fn whenever(&self, value: Condition) -> Painted<&T>
Conditionally enable styling based on whether the Condition value
applies. Replaces any previous condition.
See the crate level docs for more details.
§Example
Enable styling painted only when both stdout and stderr are TTYs:
use yansi::{Paint, Condition};
painted.red().on_yellow().whenever(Condition::STDOUTERR_ARE_TTY);Source§impl<'p, T> Seq<'p, T> for Twhere
T: Clone,
impl<'p, T> Seq<'p, T> for Twhere
T: Clone,
Source§impl<T> SourceRangeMixinExt for T
impl<T> SourceRangeMixinExt for T
Source§fn into_wrapper<W>(
self,
wrapper: &SourceRangeMixin<W>,
) -> SourceRangeMixin<Self>where
Self: Sized,
fn into_wrapper<W>(
self,
wrapper: &SourceRangeMixin<W>,
) -> SourceRangeMixin<Self>where
Self: Sized,
SourceRangeMixin with the same span as a wrapper.Source§fn into_wrapper_range(self, range: Range<usize>) -> SourceRangeMixin<Self>where
Self: Sized,
fn into_wrapper_range(self, range: Range<usize>) -> SourceRangeMixin<Self>where
Self: Sized,
SourceRangeMixin with a given range.Source§fn into_wrapper_span(self, span: (usize, usize)) -> SourceRangeMixin<Self>where
Self: Sized,
fn into_wrapper_span(self, span: (usize, usize)) -> SourceRangeMixin<Self>where
Self: Sized,
SourceRangeMixin with a given (start, end) span.