make chat bubbles not dependant on TTS
This commit is contained in:
parent
37fddca3e4
commit
cb0752b9c7
1 changed files with 10 additions and 3 deletions
|
@ -335,6 +335,10 @@ export class MSAgentClient {
|
||||||
if (user?.muted) return;
|
if (user?.muted) return;
|
||||||
|
|
||||||
this.events.emit('chat', user, chatMsg.data.message);
|
this.events.emit('chat', user, chatMsg.data.message);
|
||||||
|
|
||||||
|
user?.agent.speak(chatMsg.data.message);
|
||||||
|
let msgId = ++user!.msgId;
|
||||||
|
|
||||||
if (chatMsg.data.audio !== undefined) {
|
if (chatMsg.data.audio !== undefined) {
|
||||||
let audio = new Audio(this.url + chatMsg.data.audio);
|
let audio = new Audio(this.url + chatMsg.data.audio);
|
||||||
if (this.playingAudio.has(user!.username)) {
|
if (this.playingAudio.has(user!.username)) {
|
||||||
|
@ -344,8 +348,6 @@ export class MSAgentClient {
|
||||||
|
|
||||||
this.playingAudio.set(user!.username, audio);
|
this.playingAudio.set(user!.username, audio);
|
||||||
|
|
||||||
let msgId = ++user!.msgId;
|
|
||||||
|
|
||||||
audio.addEventListener('ended', () => {
|
audio.addEventListener('ended', () => {
|
||||||
// give a bit of time before the wordballoon disappears
|
// give a bit of time before the wordballoon disappears
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
|
@ -356,8 +358,13 @@ export class MSAgentClient {
|
||||||
}, 1000);
|
}, 1000);
|
||||||
});
|
});
|
||||||
|
|
||||||
user?.agent.speak(chatMsg.data.message);
|
|
||||||
audio.play();
|
audio.play();
|
||||||
|
} else {
|
||||||
|
setTimeout(() => {
|
||||||
|
if (user!.msgId === msgId) {
|
||||||
|
user!.agent.stopSpeaking();
|
||||||
|
}
|
||||||
|
}, 5000);
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue