-
Notifications
You must be signed in to change notification settings - Fork 134
/
driver_js.go
223 lines (195 loc) · 6.5 KB
/
driver_js.go
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
// Copyright 2021 The Oto Authors
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package oto
import (
"errors"
"fmt"
"runtime"
"syscall/js"
"unsafe"
"github.com/ebitengine/oto/v3/internal/mux"
)
type context struct {
audioContext js.Value
scriptProcessor js.Value
scriptProcessorCallback js.Func
ready bool
mux *mux.Mux
}
func newContext(sampleRate int, channelCount int, format mux.Format, bufferSizeInBytes int) (*context, chan struct{}, error) {
ready := make(chan struct{})
class := js.Global().Get("AudioContext")
if !class.Truthy() {
class = js.Global().Get("webkitAudioContext")
}
if !class.Truthy() {
return nil, nil, errors.New("oto: AudioContext or webkitAudioContext was not found")
}
options := js.Global().Get("Object").New()
options.Set("sampleRate", sampleRate)
d := &context{
audioContext: class.New(options),
mux: mux.New(sampleRate, channelCount, format),
}
if bufferSizeInBytes == 0 {
// 4096 was not great at least on Safari 15.
bufferSizeInBytes = 8192 * channelCount
}
buf32 := make([]float32, bufferSizeInBytes/4)
if w := d.audioContext.Get("audioWorklet"); w.Truthy() {
script := fmt.Sprintf(`
class OtoWorkletProcessor extends AudioWorkletProcessor {
constructor() {
super();
this.bufferSize_ = %[1]d;
this.channelCount_ = %[2]d;
this.buf_ = new Float32Array();
this.waitRecv_ = false;
// Receive data from the main thread.
this.port.onmessage = (event) => {
const buf = event.data;
const newBuf = new Float32Array(this.buf_.length + buf.length);
newBuf.set(this.buf_);
newBuf.set(buf, this.buf_.length);
this.buf_ = newBuf;
this.waitRecv_ = false;
}
}
process(inputs, outputs, parameters) {
const output = outputs[0];
// If the buffer is too short, request more data and return silence.
if (this.buf_.length < output[0].length*this.channelCount_) {
if (!this.waitRecv_) {
this.waitRecv_ = true;
this.port.postMessage(null);
}
for (let i = 0; i < output.length; i++) {
output[i].fill(0);
}
return true;
}
// If the buffer is short, request more data.
if (this.buf_.length < this.bufferSize_*this.channelCount_ / 2 && !this.waitRecv_) {
this.waitRecv_ = true;
this.port.postMessage(null);
}
for (let i = 0; i < this.channelCount_; i++) {
for (let j = 0; j < output[i].length; j++) {
output[i][j] = this.buf_[j*this.channelCount_+i];
}
}
this.buf_ = this.buf_.slice(output[0].length*this.channelCount_);
return true;
}
}
registerProcessor('oto-worklet-processor', OtoWorkletProcessor);
`, bufferSizeInBytes/4/channelCount, channelCount)
w.Call("addModule", newScriptURL(script)).Call("then", js.FuncOf(func(this js.Value, arguments []js.Value) any {
node := js.Global().Get("AudioWorkletNode").New(d.audioContext, "oto-worklet-processor", map[string]any{
"outputChannelCount": []any{channelCount},
})
port := node.Get("port")
// When the worklet processor requests more data, send the request to the worklet.
port.Set("onmessage", js.FuncOf(func(this js.Value, arguments []js.Value) any {
d.mux.ReadFloat32s(buf32)
buf := float32SliceToTypedArray(buf32)
port.Call("postMessage", buf, map[string]any{
"transfer": []any{buf.Get("buffer")},
})
return nil
}))
node.Call("connect", d.audioContext.Get("destination"))
return nil
}))
} else {
// Use ScriptProcessorNode if AudioWorklet is not available.
chBuf32 := make([][]float32, channelCount)
for i := range chBuf32 {
chBuf32[i] = make([]float32, len(buf32)/channelCount)
}
sp := d.audioContext.Call("createScriptProcessor", bufferSizeInBytes/4/channelCount, 0, channelCount)
f := js.FuncOf(func(this js.Value, arguments []js.Value) any {
d.mux.ReadFloat32s(buf32)
for i := 0; i < channelCount; i++ {
for j := range chBuf32[i] {
chBuf32[i][j] = buf32[j*channelCount+i]
}
}
buf := arguments[0].Get("outputBuffer")
if buf.Get("copyToChannel").Truthy() {
for i := 0; i < channelCount; i++ {
buf.Call("copyToChannel", float32SliceToTypedArray(chBuf32[i]), i, 0)
}
} else {
// copyToChannel is not defined on Safari 11.
for i := 0; i < channelCount; i++ {
buf.Call("getChannelData", i).Call("set", float32SliceToTypedArray(chBuf32[i]))
}
}
return nil
})
sp.Call("addEventListener", "audioprocess", f)
d.scriptProcessor = sp
d.scriptProcessorCallback = f
sp.Call("connect", d.audioContext.Get("destination"))
}
// Browsers require user interaction to start the audio.
// https://developers.google.com/web/updates/2017/09/autoplay-policy-changes#webaudio
events := []string{"touchend", "keyup", "mouseup"}
var onEventFired js.Func
var onResumeSuccess js.Func
onResumeSuccess = js.FuncOf(func(this js.Value, arguments []js.Value) any {
d.ready = true
close(ready)
for _, event := range events {
js.Global().Get("document").Call("removeEventListener", event, onEventFired)
}
onEventFired.Release()
onResumeSuccess.Release()
return nil
})
onEventFired = js.FuncOf(func(this js.Value, arguments []js.Value) any {
if !d.ready {
d.audioContext.Call("resume").Call("then", onResumeSuccess)
}
return nil
})
for _, event := range events {
js.Global().Get("document").Call("addEventListener", event, onEventFired)
}
return d, ready, nil
}
func (c *context) Suspend() error {
c.audioContext.Call("suspend")
return nil
}
func (c *context) Resume() error {
c.audioContext.Call("resume")
return nil
}
func (c *context) Err() error {
return nil
}
func float32SliceToTypedArray(s []float32) js.Value {
bs := unsafe.Slice((*byte)(unsafe.Pointer(&s[0])), len(s)*4)
a := js.Global().Get("Uint8Array").New(len(bs))
js.CopyBytesToJS(a, bs)
runtime.KeepAlive(s)
buf := a.Get("buffer")
return js.Global().Get("Float32Array").New(buf, a.Get("byteOffset"), a.Get("byteLength").Int()/4)
}
func newScriptURL(script string) js.Value {
blob := js.Global().Get("Blob").New([]any{script}, map[string]any{"type": "text/javascript"})
return js.Global().Get("URL").Call("createObjectURL", blob)
}