Rename Mode::Impatient to Immediate

This commit is contained in:
Héctor Ramón Jiménez 2025-09-20 15:50:07 +02:00
parent 33256ac444
commit 364b68f030
No known key found for this signature in database
GPG key ID: 7CC46565708259A7
3 changed files with 8 additions and 16 deletions

View file

@ -1,5 +1,5 @@
viewport: 500x800
mode: Impatient
mode: Immediate
preset: Empty
-----
click at "What needs to be done?"

View file

@ -391,7 +391,7 @@ impl<P: Program + 'static> Emulator<P> {
.boxed(),
);
}
Mode::Impatient => {
Mode::Immediate => {
self.runtime.run(
stream
.map(Action_::Runtime)
@ -452,12 +452,12 @@ pub enum Mode {
/// Waits only for the tasks directly spawned by an [`Instruction`].
Patient,
/// Never waits for any tasks to finish.
Impatient,
Immediate,
}
impl Mode {
/// A list of all the available modes.
pub const ALL: &[Self] = &[Self::Zen, Self::Patient, Self::Impatient];
pub const ALL: &[Self] = &[Self::Zen, Self::Patient, Self::Immediate];
}
impl fmt::Display for Mode {
@ -465,7 +465,7 @@ impl fmt::Display for Mode {
f.write_str(match self {
Self::Zen => "Zen",
Self::Patient => "Patient",
Self::Impatient => "Impatient",
Self::Immediate => "Immediate",
})
}
}

View file

@ -34,7 +34,7 @@ impl Ice {
///
/// ```text
/// viewport: 500x800
/// mode: Impatient
/// mode: Immediate
/// preset: Empty
/// -----
/// click at "What needs to be done?"
@ -96,7 +96,7 @@ impl Ice {
mode = Some(match value.trim().to_lowercase().as_str() {
"zen" => emulator::Mode::Zen,
"patient" => emulator::Mode::Patient,
"impatient" => emulator::Mode::Impatient,
"immediate" => emulator::Mode::Immediate,
_ => {
return Err(ParseError::InvalidMode {
line: i,
@ -157,15 +157,7 @@ impl std::fmt::Display for Ice {
height = self.viewport.height as u32, // TODO
)?;
writeln!(
f,
"mode: {}",
match self.mode {
emulator::Mode::Zen => "Zen",
emulator::Mode::Patient => "Patient",
emulator::Mode::Impatient => "Impatient",
}
)?;
writeln!(f, "mode: {}", self.mode)?;
if let Some(preset) = &self.preset {
writeln!(f, "preset: {preset}")?;