2015-01-10 17:23:43 +01:00
|
|
|
// Copyright 2015 Hajime Hoshi
|
|
|
|
//
|
|
|
|
// 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.
|
|
|
|
|
|
|
|
// +build js
|
|
|
|
|
|
|
|
package audio
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/gopherjs/gopherjs/js"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Keep this so as not to be destroyed by GC.
|
|
|
|
var node js.Object
|
|
|
|
var context js.Object
|
|
|
|
|
2015-01-24 06:50:41 +01:00
|
|
|
func initialize() {
|
2015-01-10 17:23:43 +01:00
|
|
|
context = js.Global.Get("AudioContext").New()
|
2015-01-22 19:02:23 +01:00
|
|
|
// TODO: ScriptProcessorNode will be replaced with Audio WebWorker.
|
2015-01-10 17:23:43 +01:00
|
|
|
// https://developer.mozilla.org/ja/docs/Web/API/ScriptProcessorNode
|
2015-01-22 19:02:23 +01:00
|
|
|
node = context.Call("createScriptProcessor", bufferSize, 0, 2)
|
2015-01-10 17:23:43 +01:00
|
|
|
node.Call("addEventListener", "audioprocess", func(e js.Object) {
|
2015-01-22 19:02:23 +01:00
|
|
|
defer func() {
|
2015-01-24 13:46:30 +01:00
|
|
|
currentPosition += bufferSize
|
2015-01-22 19:02:23 +01:00
|
|
|
}()
|
|
|
|
|
2015-01-10 17:23:43 +01:00
|
|
|
l := e.Get("outputBuffer").Call("getChannelData", 0)
|
|
|
|
r := e.Get("outputBuffer").Call("getChannelData", 1)
|
2015-01-24 06:50:41 +01:00
|
|
|
inputL, inputR := loadChannelBuffers()
|
2015-01-24 13:46:30 +01:00
|
|
|
nextInsertionPosition -= min(bufferSize, nextInsertionPosition)
|
2015-01-25 11:17:53 +01:00
|
|
|
const max = 1 << 16
|
2015-01-22 19:02:23 +01:00
|
|
|
for i := 0; i < bufferSize; i++ {
|
2015-01-10 17:23:43 +01:00
|
|
|
// TODO: Use copyFromChannel?
|
2015-01-22 19:02:23 +01:00
|
|
|
if len(inputL) <= i {
|
2015-01-10 17:23:43 +01:00
|
|
|
l.SetIndex(i, 0)
|
|
|
|
r.SetIndex(i, 0)
|
|
|
|
continue
|
|
|
|
}
|
2015-01-25 11:17:53 +01:00
|
|
|
l.SetIndex(i, float64(inputL[i])/max)
|
|
|
|
r.SetIndex(i, float64(inputR[i])/max)
|
2015-01-10 17:23:43 +01:00
|
|
|
}
|
|
|
|
})
|
2015-01-25 06:28:24 +01:00
|
|
|
audioEnabled = true
|
2015-01-10 17:23:43 +01:00
|
|
|
}
|
|
|
|
|
2015-01-24 06:50:41 +01:00
|
|
|
func start() {
|
2015-01-10 17:23:43 +01:00
|
|
|
// TODO: For iOS, node should be connected with a buffer node.
|
|
|
|
node.Call("connect", context.Get("destination"))
|
|
|
|
}
|