-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathForm1.cs
115 lines (92 loc) · 3.13 KB
/
Form1.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
using System.Speech.Recognition;
using static System.Windows.Forms.VisualStyles.VisualStyleElement;
using System.Speech.Synthesis;
namespace Mircophone_Detection_SpeechProg
{
public partial class Form1 : Form
{
private List<string> wordList = new List<string> { "rebel", "rule", "right", "cherry" };
private Random random = new Random();
private SpeechSynthesizer speechSynthesizer = new SpeechSynthesizer();
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
DisplayRandomWord();
}
public void DisplayRandomWord()
{
}
private void Form1_Load_1(object sender, EventArgs e)
{
}
private void label3_Click(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
string wordToSpeak = richTextBox2.Text;
speechSynthesizer.Speak(wordToSpeak);
}
private void button2_Click(object sender, EventArgs e)
{
SpeechRecognitionEngine sr = new SpeechRecognitionEngine();
Grammar words = new DictationGrammar();
sr.LoadGrammar(words);
try
{
richTextBox3.Text = "Listening Now...";
sr.SetInputToDefaultAudioDevice();
RecognitionResult result = sr.Recognize();
richTextBox3.Clear();
richTextBox3.Text = result.Text;
}
catch
{
richTextBox3.Text = "";
MessageBox.Show("Mic Not Found");
}
finally
{
sr.UnloadAllGrammars();
}
}
private void trackBar1_Scroll(object sender, EventArgs e)
{
speechSynthesizer.Volume = trackBar1.Value;
}
private void richTextBox2_TextChanged(object sender, EventArgs e)
{
int randomIndex = random.Next(wordList.Count);
string randomWord = wordList[randomIndex];
richTextBox2.Text = randomWord;
}
private void richTextBox3_TextChanged(object sender, EventArgs e)
{
}
private void button3_Click(object sender, EventArgs e)
{
string generatedWord = richTextBox2.Text;
string recognizedWord = richTextBox3.Text.Trim();
if (generatedWord.Equals(recognizedWord, StringComparison.OrdinalIgnoreCase) )
{
MessageBox.Show("Match:Correct!","Validation Result", MessageBoxButtons.OK, MessageBoxIcon.Information);
}
else
{
MessageBox.Show("Incorrect, please try again", "Validation Result",MessageBoxButtons.OK, MessageBoxIcon.Error);
}
}
}
}