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.
|
|
|
|
|
2016-02-07 08:03:33 +01:00
|
|
|
package audio
|
2015-01-10 17:23:43 +01:00
|
|
|
|
2016-02-07 17:52:36 +01:00
|
|
|
import (
|
|
|
|
"sync"
|
|
|
|
)
|
|
|
|
|
2015-01-25 06:28:24 +01:00
|
|
|
var audioEnabled = false
|
|
|
|
|
2015-01-22 19:02:23 +01:00
|
|
|
const SampleRate = 44100
|
|
|
|
|
2015-01-24 06:50:41 +01:00
|
|
|
type channel struct {
|
2016-02-07 19:26:58 +01:00
|
|
|
buffer []byte
|
2015-01-24 06:50:41 +01:00
|
|
|
}
|
|
|
|
|
2016-02-07 16:48:43 +01:00
|
|
|
const MaxChannel = 32
|
2015-01-24 07:48:48 +01:00
|
|
|
|
|
|
|
var channels = make([]*channel, MaxChannel)
|
2015-02-09 16:10:50 +01:00
|
|
|
|
2015-01-24 06:50:41 +01:00
|
|
|
func init() {
|
|
|
|
for i, _ := range channels {
|
|
|
|
channels[i] = &channel{
|
2015-06-13 19:37:20 +02:00
|
|
|
buffer: []byte{},
|
2015-01-24 06:50:41 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-10 17:23:43 +01:00
|
|
|
func Init() {
|
2015-01-24 06:50:41 +01:00
|
|
|
initialize()
|
2015-01-10 17:23:43 +01:00
|
|
|
}
|
|
|
|
|
2016-02-07 17:52:36 +01:00
|
|
|
var channelsMutex = sync.Mutex{}
|
|
|
|
|
|
|
|
func withChannels(f func()) {
|
|
|
|
channelsMutex.Lock()
|
|
|
|
defer channelsMutex.Unlock()
|
|
|
|
f()
|
|
|
|
}
|
|
|
|
|
2016-02-09 15:49:33 +01:00
|
|
|
func emptyChannel() *channel {
|
|
|
|
for i, _ := range channels {
|
|
|
|
if !isPlaying(i) {
|
|
|
|
return channels[i]
|
2015-01-24 17:51:51 +01:00
|
|
|
}
|
2016-02-07 16:45:02 +01:00
|
|
|
}
|
|
|
|
return nil
|
2015-01-24 17:51:51 +01:00
|
|
|
}
|
|
|
|
|
2016-02-09 14:35:55 +01:00
|
|
|
func Tick() {
|
|
|
|
tick()
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO: Accept sample rate
|
2016-02-09 14:55:18 +01:00
|
|
|
func Queue(data []byte) bool {
|
2016-02-07 16:45:02 +01:00
|
|
|
result := true
|
2015-02-15 18:05:19 +01:00
|
|
|
withChannels(func() {
|
|
|
|
if !audioEnabled {
|
2016-02-07 16:45:02 +01:00
|
|
|
result = false
|
2015-02-15 18:05:19 +01:00
|
|
|
return
|
|
|
|
}
|
2016-02-09 15:49:33 +01:00
|
|
|
ch := emptyChannel()
|
2016-02-07 16:45:02 +01:00
|
|
|
if ch == nil {
|
|
|
|
result = false
|
2015-02-15 18:05:19 +01:00
|
|
|
return
|
|
|
|
}
|
2015-06-13 19:37:20 +02:00
|
|
|
ch.buffer = append(ch.buffer, data...)
|
2015-02-15 18:05:19 +01:00
|
|
|
})
|
2016-02-07 16:45:02 +01:00
|
|
|
return result
|
2015-01-24 07:48:48 +01:00
|
|
|
}
|
|
|
|
|
2015-01-24 06:50:41 +01:00
|
|
|
func min(a, b int) int {
|
|
|
|
if a < b {
|
|
|
|
return a
|
|
|
|
}
|
|
|
|
return b
|
|
|
|
}
|
|
|
|
|
2015-01-24 17:51:51 +01:00
|
|
|
func isChannelsEmpty() bool {
|
2015-02-15 18:05:19 +01:00
|
|
|
result := false
|
|
|
|
withChannels(func() {
|
|
|
|
if !audioEnabled {
|
|
|
|
result = true
|
|
|
|
return
|
|
|
|
}
|
2015-01-25 06:28:24 +01:00
|
|
|
|
2015-02-15 18:05:19 +01:00
|
|
|
for _, ch := range channels {
|
2015-06-13 19:37:20 +02:00
|
|
|
if 0 < len(ch.buffer) {
|
2015-02-15 18:05:19 +01:00
|
|
|
return
|
|
|
|
}
|
2015-01-24 17:51:51 +01:00
|
|
|
}
|
2015-02-15 18:05:19 +01:00
|
|
|
result = true
|
|
|
|
return
|
|
|
|
})
|
|
|
|
return result
|
2015-01-24 17:51:51 +01:00
|
|
|
}
|
|
|
|
|
2015-06-13 19:37:20 +02:00
|
|
|
func loadChannelBuffer(channel int, bufferSize int) []byte {
|
|
|
|
var r []byte
|
2015-02-15 18:05:19 +01:00
|
|
|
withChannels(func() {
|
|
|
|
if !audioEnabled {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
ch := channels[channel]
|
2015-06-13 19:37:20 +02:00
|
|
|
length := min(len(ch.buffer), bufferSize)
|
|
|
|
input := ch.buffer[:length]
|
2015-06-13 20:50:29 +02:00
|
|
|
ch.buffer = ch.buffer[length:]
|
2015-06-13 19:37:20 +02:00
|
|
|
r = input
|
2015-02-15 18:05:19 +01:00
|
|
|
})
|
2015-06-13 19:37:20 +02:00
|
|
|
return r
|
2015-01-25 17:20:56 +01:00
|
|
|
}
|
|
|
|
|
2015-01-24 13:46:30 +01:00
|
|
|
func IsPlaying(channel int) bool {
|
2015-02-15 18:05:19 +01:00
|
|
|
result := false
|
|
|
|
withChannels(func() {
|
|
|
|
if !audioEnabled {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
result = isPlaying(channel)
|
|
|
|
})
|
|
|
|
return result
|
2015-01-24 13:46:30 +01:00
|
|
|
}
|