Skip to content

Commit

Permalink
removed peek command
Browse files Browse the repository at this point in the history
  • Loading branch information
geremachek committed Jun 23, 2021
1 parent b7c8866 commit 9c6fba6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 15 deletions.
8 changes: 3 additions & 5 deletions src/commands/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ pub enum Command {
Appear,
Infix,
Peer,
Peek,
Inscribe,
Trample,
Burn,
Expand Down Expand Up @@ -83,7 +82,6 @@ impl FromStr for Command {
"appear" => Ok(Command::Appear),
"infix" => Ok(Command::Infix),
"peer" => Ok(Command::Peer),
"peek" => Ok(Command::Peek),
"inscribe" => Ok(Command::Inscribe),
"trample" => Ok(Command::Trample),
"burn" => Ok(Command::Burn),
Expand Down Expand Up @@ -117,8 +115,8 @@ impl Command {
Command::Genesis | Command::Spot | Command::Span | Command::Pin | Command::Columns | Command::Molecule | Command::Pen | Command::Orbit |
Command::Decay | Command::Destroy | Command::Mirror | Command::Atom | Command::Scribe | Command::Adieu | Command::Carve | Command::Burn | Command::Volume |
Command::Volumes | Command::Carved => true,
Command::Focus | Command::Traverse | Command::Appear | Command::Shave | Command::Shelve | Command::Incant | Command::Inscribe | Command::Trample | Command::Peek |
Command::Summon | Command::Dub | Command::Spellbook | Command::Shift | Command::Infix | Command::Spine | Command::Nomen => args >= 1,
Command::Focus | Command::Traverse | Command::Appear | Command::Shave | Command::Shelve | Command::Incant | Command::Inscribe | Command::Trample | Command::Summon |
Command::Dub | Command::Spellbook | Command::Shift | Command::Infix | Command::Spine | Command::Nomen => args >= 1,
Command::Infuse | Command::Tether | Command::Fray | Command::Peer => args >= 2,
}
}
Expand All @@ -141,7 +139,7 @@ impl Command {
Command::Atom | Command::Scribe | Command::Adieu | Command::Carve | Command::Pin | Command::Columns | Command::Burn | Command::Volume |
Command::Volumes | Command::Carved => return Ok(0),
Command::Focus | Command::Traverse | Command::Appear | Command::Shave | Command::Shelve | Command::Inscribe | Command::Trample | Command::Incant |
Command::Summon | Command::Dub | Command::Spellbook | Command::Shift | Command::Infix | Command::Peek | Command::Spine => return Ok(1),
Command::Summon | Command::Dub | Command::Spellbook | Command::Shift | Command::Infix | Command::Spine => return Ok(1),
Command::Infuse | Command::Peer | Command::Fray => return Ok(2),
Command::Genesis => return Ok(choose_mm(1, 0))
}
Expand Down
1 change: 0 additions & 1 deletion src/plane/parse.rs
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,6 @@ impl Plane {
Command::Appear => cvol.appear(parse_pos::<usize>(&data[0])?),
Command::Infix => cvol.infix(parse_pos::<usize>(&data[0])?),
Command::Peer => return oksome(cvol.peer(parse_pos::<usize>(&data[0])?, parse_pos::<usize>(&data[1])?)?),
Command::Peek => return oksome(cvol.peek(parse_pos::<usize>(&data[0])?)?),
Command::Dub => cvol.dub(data.remove(0))?,
Command::Carve => cvol.carve()?,
Command::Carved => return oksome(cvol.carved()),
Expand Down
9 changes: 0 additions & 9 deletions src/volume/vol_commands.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,6 @@ impl Volume {
}
}

// view a single line

pub fn peek(&self, l: usize) -> Result<String, MerlinError> {
match self.buffer.get(l-1) {
Some(s) => Ok(s.to_owned()),
None => Err(MerlinError::OutOfBounds),
}
}

// inset some text into the buffer

pub fn inscribe(&mut self, s: String) {
Expand Down

0 comments on commit 9c6fba6

Please sign in to comment.