summaryrefslogtreecommitdiff
path: root/DiscoBot/Audio/Soundeffects.cs
blob: f3a014cf9bae1411bebb33120472ed8d6811123b (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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
namespace DiscoBot.Audio
{
    using System;
    using System.Linq;
    using System.Threading.Tasks;

    using DiscoBot.Auxiliary;
    using DiscoBot.Commands;
    using DiscoBot.DSA_Game;

    /*public enum Sound
    {
        Bell,
        Ding,
        Nooo,
        Monsterkill,
        Finish,
        Wrong,
        Magic,
        Stupid,
        Police,
        Roblox
    }*/

    public static class SoundEffects
    {
        public static int MaxVolume { get; set; } = 50;

        public static void Play(string s)
        {
            string url = string.Empty;
            int volume = 255;

            var tSound = DSA_Game.Save.Properties.Sounds.OrderBy(x => SpellCorrect.CompareEasy(s, x.Name)).First();

            url = s;

            switch (s)
            {
                case "Bell":
                case "Ding":
                    url = "https://www.myinstants.com/media/sounds/boxing-bell.mp3";
                    break;
                case "Finish":
                    url = "https://www.myinstants.com/media/sounds/finishhim.swf.mp3";
                    break;
                case "Magic":
                    url = "https://www.myinstants.com/media/sounds/dream-harp-sound-effect.mp3";
                    break;
                case "Monsterkill":
                    url = "https://www.myinstants.com/media/sounds/announcer_kill_monster_01.mp3";
                    break;
                case "Nooo":
                    url = "https://www.myinstants.com/media/sounds/nooo.swf.mp3";
                    break;
                case "Roblox":
                    url = "https://www.myinstants.com/media/sounds/roblox-death-sound_ytkBL7X.mp3";
                    break;
                case "Stupid":
                    url = "https://www.myinstants.com/media/sounds/stupid_dum_03.mp3";
                    volume = 10;
                    break;
                case "Police":
                    url = "https://www.myinstants.com/media/sounds/sound-of-the-police.mp3";
                    break;
                case "Wrong":
                    url = "https://www.myinstants.com/media/sounds/wrong-answer-sound-effect.mp3";
                    volume = 50;
                    break;
            }

            

            if (SpellCorrect.CompareEasy(s, tSound.Name) < SpellCorrect.ErrorThreshold)
            {
                url = tSound.Url;
                volume = tSound.Volume;
            }

            volume = (int)(volume * (MaxVolume / 100.0));


            if (url != string.Empty)
            {
                // await Dsa.Service.SendAudioAsync(url, vol);
                Voice.Send(url, volume);
                return;
            }

            throw new Exception("Ton Existiert nicht");
        }
    }
}