forked from microsoft/BotBuilder-Samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCreateGameDialog.cs
70 lines (60 loc) · 2.85 KB
/
CreateGameDialog.cs
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
namespace RollerSkillBot.Dialogs
{
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Microsoft.Bot.Builder.Dialogs;
using RollerSkillBot.Properties;
[Serializable]
public class CreateGameDialog : IDialog<GameData>
{
public async Task StartAsync(IDialogContext context)
{
context.UserData.SetValue<GameData>(Utils.GameDataKey, new GameData());
var descriptions = new List<string>() { "4 Sides", "6 Sides", "8 Sides", "10 Sides", "12 Sides", "20 Sides" };
var choices = new Dictionary<string, IReadOnlyList<string>>()
{
{ "4", new List<string> { "four", "for", "4 sided", "4 sides" } },
{ "6", new List<string> { "six", "sex", "6 sided", "6 sides" } },
{ "8", new List<string> { "eight", "8 sided", "8 sides" } },
{ "10", new List<string> { "ten", "10 sided", "10 sides" } },
{ "12", new List<string> { "twelve", "12 sided", "12 sides" } },
{ "20", new List<string> { "twenty", "20 sided", "20 sides" } }
};
var promptOptions = new PromptOptionsWithSynonyms<string>(
Resources.ChooseSides,
choices: choices,
descriptions: descriptions,
speak: SSMLHelper.Speak(Utils.RandomPick(Resources.ChooseSidesSSML)));
PromptDialog.Choice(context, this.DiceChoiceReceivedAsync, promptOptions);
}
private async Task DiceChoiceReceivedAsync(IDialogContext context, IAwaitable<string> result)
{
GameData game;
if (context.UserData.TryGetValue<GameData>(Utils.GameDataKey, out game))
{
int sides;
if (int.TryParse(await result, out sides))
{
game.Sides = sides;
context.UserData.SetValue<GameData>(Utils.GameDataKey, game);
}
var promptText = string.Format(Resources.ChooseCount, sides);
// TODO: When supported, update to pass Min and Max paramters
var promptOption = new PromptOptions<long>(promptText, speak: SSMLHelper.Speak(Utils.RandomPick(Resources.ChooseCountSSML)));
var prompt = new PromptDialog.PromptInt64(promptOption, min: 1, max: 100);
context.Call<long>(prompt, this.DiceNumberReceivedAsync);
}
}
private async Task DiceNumberReceivedAsync(IDialogContext context, IAwaitable<long> result)
{
GameData game;
if (context.UserData.TryGetValue<GameData>(Utils.GameDataKey, out game))
{
game.Count = await result;
context.UserData.SetValue<GameData>(Utils.GameDataKey, game);
}
context.Done(game);
}
}
}