-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathSoldierConvo.cs
449 lines (378 loc) · 14.9 KB
/
SoldierConvo.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
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using IBM.Watson.DeveloperCloud.Services.Assistant.v1;
using IBM.Watson.DeveloperCloud.Services.TextToSpeech.v1;
using IBM.Watson.DeveloperCloud.Services.SpeechToText.v1;
using IBM.Watson.DeveloperCloud.Widgets;
using IBM.Watson.DeveloperCloud.DataTypes;
using IBM.Watson.DeveloperCloud.Utilities;
using IBM.Watson.DeveloperCloud.Logging;
using IBM.Watson.DeveloperCloud.Connection;
using System.IO;
using FullSerializer;
public class SoldierConvo : MonoBehaviour
{
#region PLEASE SET THESE VARIABLES IN THE INSPECTOR
[Header("Watson Assistant")]
[Tooltip("The service URL (optional). This defaults to \"https://gateway.watsonplatform.net/assistant/api\"")]
[SerializeField]
private string assistantURL;
[SerializeField]
private string assistantWorkspace;
[Header("CF Authentication")]
[SerializeField]
private string assistantUsername;
[SerializeField]
private string assistantPassword;
[Header("IAM Authentication")]
[Tooltip("The IAM apikey.")]
[SerializeField]
private string assistantIamApikey;
[Tooltip("The IAM url used to authenticate the apikey (optional). This defaults to \"https://iam.bluemix.net/identity/token\".")]
[SerializeField]
private string assistantIamUrl;
[Header("Speech to Text")]
[Tooltip("The service URL (optional). This defaults to \"https://stream.watsonplatform.net/speech-to-text/api\"")]
[SerializeField]
private string SpeechToTextURL;
[Header("CF Authentication")]
[SerializeField]
private string SpeechToTextUsername;
[SerializeField]
private string SpeechToTextPassword;
[Header("IAM Authentication")]
[Tooltip("The IAM apikey.")]
[SerializeField]
private string SpeechToTextIamApikey;
[Tooltip("The IAM url used to authenticate the apikey (optional). This defaults to \"https://iam.bluemix.net/identity/token\".")]
[SerializeField]
private string SpeechToTextIamUrl;
[Header("Text to Speech")]
[SerializeField]
[Tooltip("The service URL (optional). This defaults to \"https://stream.watsonplatform.net/text-to-speech/api\"")]
private string TextToSpeechURL;
[Header("CF Authentication")]
[SerializeField]
private string TextToSpeechUsername;
[SerializeField]
private string TextToSpeechPassword;
[Header("IAM Authentication")]
[Tooltip("The IAM apikey.")]
[SerializeField]
private string TextToSpeechIamApikey;
[Tooltip("The IAM url used to authenticate the apikey (optional). This defaults to \"https://iam.bluemix.net/identity/token\".")]
[SerializeField]
private string TextToSpeechIamUrl;
#endregion
private int _recordingRoutine = 0;
private string _microphoneID = null;
private AudioClip _recording = null;
private int _recordingBufferSize = 2;
private int _recordingHZ = 22050;
private string outputText = "Hello";
private Assistant _assistant;
private SpeechToText _speechToText;
private TextToSpeech _textToSpeech;
private bool firstMessage;
private bool stopListeningFlag = false;
private fsSerializer _serializer = new fsSerializer();
public Dictionary<string, object> inputObj = new Dictionary<string, object>();
//private Dictionary<string, object> _context = null;
void Start()
{
InitializeServices();
}
// Send a message perserving conversation context
private Dictionary<string, object> _context; // context to persist
// Initiate a conversation
private void Message0()
{
firstMessage = true;
inputObj.Add("text", outputText);
MessageRequest messageRequest = new MessageRequest()
{
Input = inputObj
};
if (!_assistant.Message(OnMessage, OnFail, assistantWorkspace, messageRequest))
Log.Debug("ExampleAssistant.Message()", "Failed to message!");
}
private void OnMessage(object resp, Dictionary<string, object> customData)
{
fsData fsdata = null;
fsResult r = _serializer.TrySerialize(resp.GetType(), resp, out fsdata);
if (!r.Succeeded)
throw new WatsonException(r.FormattedMessages);
// Convert fsdata to MessageResponse
MessageResponse messageResponse = new MessageResponse();
object obj = messageResponse;
r = _serializer.TryDeserialize(fsdata, obj.GetType(), ref obj);
if (!r.Succeeded)
throw new WatsonException(r.FormattedMessages);
// Set context for next round of messaging
object _tempContext = null;
(resp as Dictionary<string, object>).TryGetValue("context", out _tempContext);
if (_tempContext != null)
_context = _tempContext as Dictionary<string, object>;
else
Log.Debug("ExampleConversation.OnMessage()", "Failed to get context");
// Get intent
object tempIntentsObj = null;
(resp as Dictionary<string, object>).TryGetValue("intents", out tempIntentsObj);
object tempIntentObj = (tempIntentsObj as List<object>)[0];
object tempIntent = null;
(tempIntentObj as Dictionary<string, object>).TryGetValue("intent", out tempIntent);
string intent = tempIntent.ToString();
//get Watson Output
object tempOutputObj = null;
(resp as Dictionary<string, object>).TryGetValue("output", out tempOutputObj);
object tempText = null;
(tempOutputObj as Dictionary<string, object>).TryGetValue("text", out tempText);
string outputText2 = (tempText as List<object>)[0].ToString();
Debug.Log("Intent/Output Text: " + intent + "/" + outputText2);
if (intent.Contains("exit"))
{
stopListeningFlag = true;
}
StopRecording();
CallTTS(outputText2);
outputText = "";
}
private void OnSpeechInput(SpeechRecognitionEvent result, Dictionary<string, object> customData)
{
if (result != null && result.results.Length > 0)
{
foreach (var res in result.results)
{
foreach (var alt in res.alternatives)
{
if (res.final && alt.confidence > 0)
{
StopRecording();
string text = alt.transcript;
Debug.Log("Watson hears : " + text + " Confidence: " + alt.confidence);
BuildSpokenRequest(text);
}
}
}
}
}
private void BuildSpokenRequest(string spokenText)
{
MessageRequest messageRequest = new MessageRequest()
{
Input = new Dictionary<string, object>()
{
{ "text", spokenText }
},
Context = _context
};
if (_assistant.Message(OnMessage, OnFail, assistantWorkspace, messageRequest))
Log.Debug("Assistant, Spoken Request", "Failed to message!");
}
private void CallTTS(string outputText)
{
//Call text to speech
if (!_textToSpeech.ToSpeech(OnSynthesize, OnFail, outputText, false))
Log.Debug("ExampleTextToSpeech.ToSpeech()", "Failed to synthesize!");
}
private void OnSynthesize(AudioClip clip, Dictionary<string, object> customData)
{
if (Application.isPlaying && clip != null)
{
GameObject audioObject = new GameObject("AudioObject");
AudioSource source = audioObject.AddComponent<AudioSource>();
source.spatialBlend = 0.0f;
source.loop = false;
source.volume = 1.0f;
source.clip = clip;
source.Play();
Invoke("RecordAgain", source.clip.length);
Destroy(audioObject, clip.length);
}
}
private void RecordAgain()
{
Debug.Log("Played Audio received from Watson Text To Speech");
if (!stopListeningFlag)
{
OnListen();
}
}
private void OnListen()
{
Log.Debug("ExampleStreaming", "Start();");
Active = true;
StartRecording();
}
public bool Active
{
get { return _speechToText.IsListening; }
set
{
if (value && !_speechToText.IsListening)
{
_speechToText.DetectSilence = true;
_speechToText.EnableWordConfidence = false;
_speechToText.EnableTimestamps = false;
_speechToText.SilenceThreshold = 0.03f;
_speechToText.MaxAlternatives = 1;
//_speechToText.EnableContinousRecognition = true;
_speechToText.EnableInterimResults = true;
_speechToText.OnError = OnError;
_speechToText.StartListening(OnSpeechInput);
}
else if (!value && _speechToText.IsListening)
{
_speechToText.StopListening();
}
}
}
private void StartRecording()
{
if (_recordingRoutine == 0)
{
Debug.Log("Started Recording");
UnityObjectUtil.StartDestroyQueue();
_recordingRoutine = Runnable.Run(RecordingHandler());
}
}
private void StopRecording()
{
if (_recordingRoutine != 0)
{
Debug.Log("Stopped Recording");
Microphone.End(_microphoneID);
Runnable.Stop(_recordingRoutine);
_recordingRoutine = 0;
}
}
private void OnError(string error)
{
Active = false;
Log.Debug("ExampleStreaming", "Error! {0}", error);
}
private IEnumerator RecordingHandler()
{
_recording = Microphone.Start(_microphoneID, true, _recordingBufferSize, _recordingHZ);
yield return null; // let m_RecordingRoutine get set..
if (_recording == null)
{
StopRecording();
yield break;
}
bool bFirstBlock = true;
int midPoint = _recording.samples / 2;
float[] samples = null;
while (_recordingRoutine != 0 && _recording != null)
{
int writePos = Microphone.GetPosition(_microphoneID);
if (writePos > _recording.samples || !Microphone.IsRecording(_microphoneID))
{
Log.Error("MicrophoneWidget", "Microphone disconnected.");
StopRecording();
yield break;
}
if ((bFirstBlock && writePos >= midPoint)
|| (!bFirstBlock && writePos < midPoint))
{
// front block is recorded, make a RecordClip and pass it onto our callback.
samples = new float[midPoint];
_recording.GetData(samples, bFirstBlock ? 0 : midPoint);
AudioData record = new AudioData();
record.MaxLevel = Mathf.Max(samples);
record.Clip = AudioClip.Create("Recording", midPoint, _recording.channels, _recordingHZ, false);
record.Clip.SetData(samples, 0);
_speechToText.OnListen(record);
bFirstBlock = !bFirstBlock;
}
else
{
// calculate the number of samples remaining until we ready for a block of audio,
// and wait that amount of time it will take to record.
int remaining = bFirstBlock ? (midPoint - writePos) : (_recording.samples - writePos);
float timeRemaining = (float)remaining / (float)_recordingHZ;
yield return new WaitForSeconds(timeRemaining);
}
}
yield break;
}
private void InitializeServices()
{
Credentials asst_credentials = null;
if (!string.IsNullOrEmpty(assistantUsername) && !string.IsNullOrEmpty(assistantPassword))
{
//Authenticate using username and password
asst_credentials = new Credentials(assistantUsername, assistantPassword, assistantURL);
_assistant = new Assistant(asst_credentials);
//be sure to give it a Version Date
_assistant.VersionDate = "2018-09-20";
}
else if (!string.IsNullOrEmpty(assistantIamApikey))
{
//Authenticate using iamApikey
TokenOptions tokenOptions = new TokenOptions()
{
IamApiKey = assistantIamApikey,
IamUrl = assistantIamUrl
};
asst_credentials = new Credentials(tokenOptions, assistantURL);
}
else
{
throw new WatsonException("Please provide either username or password or IAM apikey to authenticate the service.");
}
Credentials tts_credentials = null;
if (!string.IsNullOrEmpty(TextToSpeechUsername) && !string.IsNullOrEmpty(TextToSpeechPassword))
{
//Authenticate using username and password
tts_credentials = new Credentials(TextToSpeechUsername, TextToSpeechPassword, TextToSpeechURL);
_textToSpeech = new TextToSpeech(tts_credentials);
//give Watson a voice type
_textToSpeech.Voice = VoiceType.en_US_Allison;
}
else if (!string.IsNullOrEmpty(assistantIamApikey))
{
//Authenticate using iamApikey
TokenOptions tokenOptions = new TokenOptions()
{
IamApiKey = TextToSpeechIamApikey,
IamUrl = TextToSpeechIamUrl
};
tts_credentials = new Credentials(tokenOptions, TextToSpeechURL);
}
else
{
throw new WatsonException("Please provide either username or password or IAM apikey to authenticate the service.");
}
Credentials stt_credentials = null;
if (!string.IsNullOrEmpty(SpeechToTextUsername) && !string.IsNullOrEmpty(SpeechToTextPassword))
{
//Authenticate using username and password
stt_credentials = new Credentials(SpeechToTextUsername, SpeechToTextPassword, SpeechToTextURL);
_speechToText = new SpeechToText(stt_credentials);
}
else if (!string.IsNullOrEmpty(SpeechToTextIamApikey))
{
//Authenticate using iamApikey
TokenOptions tokenOptions = new TokenOptions()
{
IamApiKey = SpeechToTextIamApikey,
IamUrl = SpeechToTextIamUrl
};
stt_credentials = new Credentials(tokenOptions, SpeechToTextURL);
}
else
{
throw new WatsonException("Please provide either username or password or IAM apikey to authenticate the service.");
}
// Send first message, create inputObj w/ no context
Message0();
Active = true;
StartRecording(); // Setup recording
}
private void OnFail(RESTConnector.Error error, Dictionary<string, object> customData)
{
Log.Error("ExampleTextToSpeech.OnFail()", "Error received: {0}", error.ToString());
}
}