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
|
|
|
|
|
2016-02-07 08:03:33 +01:00
|
|
|
package audio
|
2015-01-10 17:23:43 +01:00
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/gopherjs/gopherjs/js"
|
|
|
|
)
|
|
|
|
|
2016-02-09 14:35:55 +01:00
|
|
|
// Keep this as global 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-02-16 02:33:27 +01:00
|
|
|
type audioProcessor struct {
|
2016-02-09 14:35:55 +01:00
|
|
|
channel int
|
|
|
|
position float64
|
2015-02-16 02:33:27 +01:00
|
|
|
}
|
2015-01-22 19:02:23 +01:00
|
|
|
|
2016-02-09 14:35:55 +01:00
|
|
|
var audioProcessors [MaxChannel]*audioProcessor
|
|
|
|
|
2015-06-13 19:37:20 +02:00
|
|
|
func toLR(data []byte) ([]int16, []int16) {
|
|
|
|
l := make([]int16, len(data)/4)
|
|
|
|
r := make([]int16, len(data)/4)
|
|
|
|
for i := 0; i < len(data)/4; i++ {
|
|
|
|
l[i] = int16(data[4*i]) | int16(data[4*i+1])<<8
|
|
|
|
r[i] = int16(data[4*i+2]) | int16(data[4*i+3])<<8
|
|
|
|
}
|
|
|
|
return l, r
|
|
|
|
}
|
|
|
|
|
2016-02-09 14:35:55 +01:00
|
|
|
func (a *audioProcessor) playChunk(buf []byte, sampleRate int) {
|
|
|
|
if len(buf) == 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
const channelNum = 2
|
|
|
|
const bytesPerSample = channelNum * 16 / 8
|
|
|
|
b := context.Call("createBuffer", channelNum, len(buf)/bytesPerSample, sampleRate)
|
2015-02-16 02:33:27 +01:00
|
|
|
l := b.Call("getChannelData", 0)
|
|
|
|
r := b.Call("getChannelData", 1)
|
2016-02-09 14:35:55 +01:00
|
|
|
il, ir := toLR(buf)
|
2015-02-16 02:33:27 +01:00
|
|
|
const max = 1 << 15
|
2016-02-09 14:35:55 +01:00
|
|
|
for i := 0; i < len(il); i++ {
|
|
|
|
l.SetIndex(i, float64(il[i])/max)
|
|
|
|
r.SetIndex(i, float64(ir[i])/max)
|
|
|
|
}
|
|
|
|
s := context.Call("createBufferSource")
|
|
|
|
s.Set("buffer", b)
|
|
|
|
s.Call("connect", context.Get("destination"))
|
|
|
|
c := context.Get("currentTime").Float()
|
|
|
|
if a.position < c {
|
|
|
|
a.position = c
|
|
|
|
}
|
|
|
|
s.Call("start", a.position)
|
|
|
|
a.position += float64(len(il)) / float64(sampleRate)
|
|
|
|
}
|
|
|
|
|
|
|
|
func isPlaying(channel int) bool {
|
|
|
|
c := context.Get("currentTime").Float()
|
|
|
|
return c < audioProcessors[channel].position
|
|
|
|
}
|
|
|
|
|
|
|
|
func tick() {
|
|
|
|
const bufferSize = 1024
|
|
|
|
const sampleRate = 44100 // TODO: This should be changeable
|
|
|
|
for _, a := range audioProcessors {
|
|
|
|
a.playChunk(loadChannelBuffer(a.channel, bufferSize*4), sampleRate)
|
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 06:28:24 +01:00
|
|
|
audioEnabled = true
|
2016-02-09 14:35:55 +01:00
|
|
|
for i := 0; i < len(audioProcessors); i++ {
|
|
|
|
audioProcessors[i] = &audioProcessor{
|
|
|
|
channel: i,
|
|
|
|
position: 0,
|
|
|
|
}
|
2015-01-25 17:20:56 +01:00
|
|
|
}
|
2015-01-10 17:23:43 +01:00
|
|
|
}
|