#dice #string #parser #dragon #convert #quantity #single

bin+lib dicey

Simple library for parsing dice strings of the form "adx,bdy,cdz", where a, b, & c are quantity of dice and x, y, & z are the number of faces on those dice; e.g., 5d6 represents 5 6-sided dice, as in the game Yahtzee

3 stable releases

1.1.0 Sep 11, 2021
1.0.1 Sep 11, 2021

#1305 in Game dev

Download history 1/week @ 2024-02-15 6/week @ 2024-02-22 1/week @ 2024-02-29 27/week @ 2024-03-28 27/week @ 2024-04-04

54 downloads per month

MIT license

8KB
138 lines

Dicey

A simple library for parsing dice strings (e.g., 1d20, 2d12, 3d8) you might see in tabletop games like Dungeons & Dragons.

Provides a single struct, DieRoll, and single function, parse(&str) that converts an input string to a list of DieRolls.

Usage:

use dicey::parse;
use rand::*;

fn main() {
	if let Some(mut rolls) = parse("5d6") {
		if let Some(roll) = rolls.pop() {
			for _ in 0..roll.quantity {
				println!("{}", random::<u8>() % roll.faces + 1);
			}
		}
	}
}

Also contains the dicey command line utility for simulating dice rolls from dice strings.

Examples:

  • Coin flip (heads = 1, tails = 2): dicey 1d2

  • Yahtzee: dicey 5d6

  • D&D initiative & saving throws: dicey 1d20

  • Pathfinder Magic Missile damage: dicey 1d4+1

  • Various dice w/ bonuses & penalties: dicey 1d4,2d6+1,3d8-2

Dependencies

~310KB