tenebrous-dicebot/src/commands.rs

49 lines
1.1 KiB
Rust
Raw Normal View History

use crate::dice::ElementExpression;
2020-04-21 06:09:43 +00:00
use crate::roll::Roll;
pub mod parser;
2020-04-21 06:07:03 +00:00
pub struct Execution {
plain: String,
html: String,
}
2020-04-21 06:07:03 +00:00
impl Execution {
pub fn plain(&self) -> &str {
&self.plain
}
2020-04-21 06:07:03 +00:00
pub fn html(&self) -> &str {
&self.html
}
}
pub struct RollCommand(ElementExpression);
pub trait Command {
fn execute(&self) -> Execution;
}
impl Command for RollCommand {
fn execute(&self) -> Execution {
let roll = self.0.roll();
let plain = format!("Dice: {}\nResult: {}", self.0, roll);
2020-04-21 06:09:43 +00:00
let html = format!(
2020-04-22 04:19:15 +00:00
"<p><strong>Dice:</strong> {}</p><p><strong>Result</strong>: {}</p>",
2020-04-21 06:09:43 +00:00
self.0, roll
);
Execution { plain, html }
}
}
2020-04-22 04:19:15 +00:00
/// Parse a command string into a dynamic command execution trait object.
/// Returns an error if a command was recognized but not parsed correctly. Returns None if no
/// command was recognized.
pub fn parse_command(s: &str) -> Result<Option<Box<dyn Command>>, String> {
2020-04-21 06:07:03 +00:00
// Ignore trailing input, if any.
match parser::parse_command(s) {
Ok((_, result)) => Ok(result),
Err(err) => Err(err.to_string()),
}
}