-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathSpeechPlugin.js
132 lines (118 loc) · 4.1 KB
/
SpeechPlugin.js
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
function SpeechPlugin() {
'use strict';
return {
getModuleName: function() { return 'SpeechPlugin'; },
interpreterProxy: null,
primHandler: null,
voiceInput: null,
semaphoreIndex: null,
shouldListen: false,
recognition: null,
synth: window.speechSynthesis,
setInterpreter: function(anInterpreter) {
this.interpreterProxy = anInterpreter;
this.primHandler = this.interpreterProxy.vm.primHandler;
return true;
},
/*
* Speech Synthesis Primitive
*/
primitiveSpeak: function(argCount) {
var text, voice;
if (argCount === 1) {
text = this.interpreterProxy.stackValue(0).bytesAsString();
} else if (argCount === 2) {
text = this.interpreterProxy.stackValue(1).bytesAsString();
var voiceName = this.interpreterProxy.stackValue(0).bytesAsString();
voice = this.synth.getVoices().filter(function(voice) {
return voice.name === voiceName;
});
} else {
return false;
}
var msg = new SpeechSynthesisUtterance(text);
if (voice && voice.length > 0) { msg.voice = voice[0]; }
this.synth.speak(msg);
this.interpreterProxy.pop(argCount);
return true;
},
/*
* Speech Recognition Primitives
*/
primitiveRegisterSemaphore: function(argCount) {
if (argCount !== 1) return false;
this.semaphoreIndex = this.interpreterProxy.stackIntegerValue(0);
return true;
},
primitiveUnregisterSemaphore: function(argCount) {
if (argCount !== 0) return false;
this.semaphoreIndex = null;
return true;
},
primitiveGetLastRecognitionResult: function(argCount) {
if (argCount !== 0) return false;
if (this.semaphoreIndex === null) return false;
if (this.voiceInput === null) return false;
var stString = this.primHandler.makeStArray(this.voiceInput);
this.voiceInput = [];
this.interpreterProxy.popthenPush(1, stString);
return true;
},
primitiveStartListening: function(argCount) {
if (argCount !== 0) return false;
this.recognition = new webkitSpeechRecognition();
this.recognition.lang = 'en-US'; // en-GB
this.recognition.interimResults = true;
// this.recognition.maxAlternatives = 1;
this.recognition.onresult = this._onRecognitionResult.bind(this);
this.recognition.onerror = function(event) { console.log(event); };
/*
* Imitate `this.recognition.continuous = true` because it is currently
* only supported by Google Chrome.
*/
this.recognition.onend = function(event) {
if (this.shouldListen) {
this.recognition.start();
}
}.bind(this);
this.shouldListen = true;
this.recognition.start();
return true;
},
_onRecognitionResult: function(event) {
this.voiceInput = [];
for (var i = event.resultIndex; i < event.results.length; i++) {
var result = event.results[i];
var sqResult = [result.isFinal, []];
for (var j = 0; j < result.length; j++) {
var transcript = result[j].transcript;
var now = Date.now();
sqResult[1].push([transcript, result[j].confidence]);
}
if (sqResult[1].length > 0) {
this.voiceInput.push(sqResult);
}
}
if (this.semaphoreIndex !== null && this.voiceInput.length > 0) {
this.primHandler.signalSemaphoreWithIndex(this.semaphoreIndex);
}
},
primitiveStopListening: function(argCount) {
if (argCount !== 0) return false;
this.voiceInput = [];
this.recognition.stop();
this.shouldListen = false;
return true;
},
};
}
function registerSpeechPlugin() {
if (typeof window.Squeak === "object" && window.Squeak.registerExternalModule) {
if (('webkitSpeechRecognition' in window)) {
window.Squeak.registerExternalModule('SpeechPlugin', SpeechPlugin());
} else {
console.warn('SpeechPlugin: Web Speech API is not supported by this browser.');
}
} else window.setTimeout(registerSpeechPlugin, 100);
};
registerSpeechPlugin();