-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathrollDice.js
51 lines (49 loc) · 1.44 KB
/
rollDice.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
/**
* Given a string in dice notation, return a random integer you can get by rolling those dice.
* https://en.wikipedia.org/wiki/Dice_notation
*/
const rollDice = (notation) => {
let regex = /[-\/*+]/;
if (regex.test(notation)) {
let combos = notation.split(regex);
let operators = notation.split("").filter((el) => regex.test(el));
let combo = combos[0],
parts = combo.split("d"),
dice = parseInt(parts[0]);
let sides = parseInt(parts[1]),
sum = roll(dice, sides);
for (let i = 1; i < combos.length; i++) {
combo = combos[i];
let operator = operators[i - 1];
parts = combo.split("d");
dice = parseInt(parts[0]);
sides = parseInt(parts[1]);
if (operator === "-") {
sum -= roll(dice, sides);
} else if (operator === "+") {
sum += roll(dice, sides);
} else if (operator === "/") {
sum /= roll(dice, sides);
} else {
sum *= roll(dice, sides);
}
}
return sum;
} else {
// AdX format
let parts = notation.split("d");
let dice = parseInt(parts[0]);
let sides = parseInt(parts[1]);
return roll(dice, sides);
}
};
const roll = (dice, sides) => {
let rolls = Array(dice)
.fill(null)
.map(() => Math.floor(Math.random() * sides) + 1);
let rollSum = rolls.reduce((i, a) => i + a);
return rollSum;
};
console.log(rollDice("4d4"));
console.log(rollDice("3d20"));
console.log(rollDice("1d8+2d10"));