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
|
|
|
|
|
2015-01-27 15:00:41 +01:00
|
|
|
package internal
|
2015-01-10 17:23:43 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/gopherjs/gopherjs/js"
|
|
|
|
)
|
|
|
|
|
2015-02-15 18:05:19 +01:00
|
|
|
func withChannels(f func()) {
|
|
|
|
f()
|
|
|
|
}
|
|
|
|
|
2015-01-10 17:23:43 +01:00
|
|
|
// Keep this so as not to be destroyed by GC.
|
2015-02-15 18:05:19 +01:00
|
|
|
var (
|
2015-02-28 17:26:05 +01:00
|
|
|
nodes = []*js.Object{}
|
|
|
|
dummies = []*js.Object{} // Dummy source nodes for iOS.
|
|
|
|
context *js.Object
|
2015-02-15 18:05:19 +01:00
|
|
|
)
|
2015-01-10 17:23:43 +01:00
|
|
|
|
2015-01-26 02:14:03 +01:00
|
|
|
const bufferSize = 1024
|
|
|
|
|
2015-02-16 02:33:27 +01:00
|
|
|
type audioProcessor struct {
|
|
|
|
channel int
|
|
|
|
}
|
2015-01-22 19:02:23 +01:00
|
|
|
|
2015-02-28 17:26:05 +01:00
|
|
|
func (a *audioProcessor) Process(e *js.Object) {
|
2015-02-16 02:33:27 +01:00
|
|
|
// Can't use 'go' here. Probably it may cause race conditions.
|
|
|
|
b := e.Get("outputBuffer")
|
|
|
|
l := b.Call("getChannelData", 0)
|
|
|
|
r := b.Call("getChannelData", 1)
|
|
|
|
inputL, inputR := loadChannelBuffer(a.channel, bufferSize)
|
|
|
|
const max = 1 << 15
|
|
|
|
for i := 0; i < len(inputL); i++ {
|
|
|
|
// TODO: Use copyToChannel?
|
|
|
|
l.SetIndex(i, float64(inputL[i])/max)
|
|
|
|
r.SetIndex(i, float64(inputR[i])/max)
|
2015-01-25 17:20:56 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func initialize() {
|
2015-01-27 14:02:23 +01:00
|
|
|
// Do nothing in node.js.
|
|
|
|
if js.Global.Get("require") != js.Undefined {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-06-03 18:25:04 +02:00
|
|
|
class := js.Global.Get("AudioContext")
|
|
|
|
if class == js.Undefined {
|
|
|
|
class = js.Global.Get("webkitAudioContext")
|
|
|
|
}
|
|
|
|
if class == js.Undefined {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
context = class.New()
|
2015-01-25 17:20:56 +01:00
|
|
|
// TODO: ScriptProcessorNode will be replaced with Audio WebWorker.
|
|
|
|
// https://developer.mozilla.org/ja/docs/Web/API/ScriptProcessorNode
|
|
|
|
for i := 0; i < MaxChannel; i++ {
|
|
|
|
node := context.Call("createScriptProcessor", bufferSize, 0, 2)
|
2015-02-16 02:33:27 +01:00
|
|
|
processor := &audioProcessor{i}
|
|
|
|
node.Call("addEventListener", "audioprocess", processor.Process)
|
2015-01-25 17:20:56 +01:00
|
|
|
nodes = append(nodes, node)
|
2015-02-15 18:05:19 +01:00
|
|
|
|
|
|
|
dummy := context.Call("createBufferSource")
|
|
|
|
dummies = append(dummies, dummy)
|
2015-01-25 17:20:56 +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-02-15 18:23:04 +01:00
|
|
|
// Do nothing in node.js.
|
|
|
|
if js.Global.Get("require") != js.Undefined {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-02-15 18:05:19 +01:00
|
|
|
destination := context.Get("destination")
|
|
|
|
for i, node := range nodes {
|
|
|
|
dummy := dummies[i]
|
|
|
|
dummy.Call("connect", node)
|
|
|
|
node.Call("connect", destination)
|
2015-01-25 17:20:56 +01:00
|
|
|
}
|
2015-01-10 17:23:43 +01:00
|
|
|
}
|