dart_dice_parser 1.0.2 dart_dice_parser: ^1.0.2 copied to clipboard
A dart library for parsing dice notation (like "2d6+4", "3d6", or "3d10 + 2d6 - 5d4")
import 'dart:io';
import 'package:args/args.dart';
import 'package:dart_dice_parser/dart_dice_parser.dart';
void main(List<String> arguments) {
var argParser = ArgParser()
..addOption(
"num",
abbr: "n",
help: "number of times to roll the expression",
defaultsTo: "1",
);
var results = argParser.parse(arguments);
exit(roll(int.parse(results["num"]), results.rest.join(" ")));
}
int roll(int numRolls, String expression) {
if (expression.isEmpty) {
print("Supply a dice expression. e.g. '2d6+1'");
return 1;
}
var diceParser = DiceParser();
// use the parser here because we'll display $result on success,
// and it's helpful sometimes
var result = diceParser.parse(expression);
if (result.isFailure) {
print("Failure:");
print('\t$expression');
print('\t${' ' * (result.position - 1)}^-- ${result.message}');
return 1;
}
// use the parser to display parse results
print("Evaluating: $expression => $result\n");
// but use the evaluator via roll/rollN to actually parse and perform dice roll
diceParser
.rollN(expression, numRolls)
.asMap() // convert list to map so have an index
.forEach((i, r) => print("${i + 1}: $r"));
return 0;
}