summaryrefslogtreecommitdiff
path: root/DSALib/Auxiliary/Dice.cs
blob: b07d47f1f6b8fff75fb3305fc1197904cd9b022f (plain)
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
using System;
using System.Linq;

namespace DSALib.Auxiliary
{
    public static class Dice // roll it!
    {
        private static readonly Random Rnd = new Random();

        public static int Roll(int d = 20)
        {
            return Rnd.Next(d) + 1;
        }

        public static int Roll(string input)
        {
            var strings = input.ToLower().Split(new[] {'w', 'd'}, 2, StringSplitOptions.RemoveEmptyEntries).ToList();
            var count = Convert.ToInt32(strings[0]);
            var d = Convert.ToInt32(strings[0]);

            if (strings.Count != 2)
                throw new ArgumentException($"{input}: erfüllt nicht die Formatvogaben( Anzahl d Augenzahl)");

            return Roll(count, d);
        }

        public static int Roll(int count, int d)
        {
            if (d <= 0) return 0;

            var sum = 0;
            for (var i = 0; i < Math.Abs(count); i++)
            {
                var roll = Roll(d);
                sum += roll;
            }

            sum *= Math.Abs(count) / count;

            return sum;
        }
    }
}