7 个版本 (3 个稳定版)

1.0.2 2021 年 12 月 19 日
1.0.1 2021 年 4 月 22 日
0.2.2 2021 年 4 月 16 日
0.1.0 2021 年 4 月 2 日

#123模拟

MIT/Apache

36KB
1K SLoC

切分器

版本 1.0.1

关于

A simple library for evaluating strings representing dice rolls in rust. Dicer uses an LL(1) grammar and a recursive descent parser to parse strings and simulate randomly rolled dice. See grammar.md for examples of valid strings.

示例

use dicer::eval;

fn main() {
    // simple expression
    let test = String::from("1d20 + 4 + min([2d4-MAX], 3) {3}");
    println!("parse: \"{}\"\n", test);

    let result = eval(&test).unwrap();
    for res in result {
        println!("{} = {}", res.str, res.value);
    }
}

输出

parse: "1d20 * (3+2) + min([2d4 - MAX], 3)"

(6) * (3 + 2) + min([ (3 + 1) -3 ], 3) = 31

依赖项

~315KB