5个版本 (破坏性更新)

0.5.0 2019年8月29日
0.4.0 2019年8月20日
0.3.0 2019年8月20日
0.2.1 2019年8月15日
0.1.0 2019年8月12日

#投掷中排名第10

MIT/Apache

21KB
408

One D Six

Crates.io docs.rs dependency status Crates.io downloads Crates.io downloads of latest version License

GitHub Release Date GitHub commits since latest release

掷骰子

用法

从命令行

# Install
cargo install one-d-six

# Print help
one-d-six -h

# Print total of each dice
one-d-six 3d4 2d6 1d20

# Print each die cast of each dice roll
one-d-six --complex 2d20 1d12

作为库

这不是完整的用法文档。这是预期中最常见的用法。

use one_d_six::{
  quickroll,
  Dice,
};

// Quickly generates a set of Dice and rolls them
// quickroll can return any int type (i8 - isize, u8 - usize)
let coinflip: u8 = quickroll("1d2");
if coinflip == 1 {
    println!("Heads!");
} else {
    println!("Tails!");
}

// Creating sets of dice
let set_1 = Dice::new(2, 4); // Creates 2d4 with Dice::new
let set_2 = "1d20".parse().unwrap(); // Creates 1d20 by parsing str

// Combining sets of dice
let mut dice = set_1 + set_2; // Creates 2d4 + 1d20

// Prints 50 rolls of the dice set
for _ in 0..50 {
    // Method 1: Printing Dice struct
    println!("2d4 + 1d20: {}", dice.roll_all());

    // Method 2: Printing value of Dice::total(&self)
    let total = dice.total();
    println!("2d4 + 1d20: {}", total);
}

// Getting value of each die cast
let _results = format!("{:?}", dice);

想要为自定义类型掷骰子?只需在one_d_six::Rollable上实现MyCustomType,然后您就可以创建一个新的Die<MyCustomType>

依赖项

~1.5MB
~16K SLoC