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.
|
|
|
|
|
2015-01-27 15:00:41 +01:00
|
|
|
package internal
|
2015-01-10 17:23:43 +01:00
|
|
|
|
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 {
|
2015-01-25 17:20:56 +01:00
|
|
|
l []int16
|
|
|
|
r []int16
|
|
|
|
nextInsertionPosition int
|
2015-01-24 06:50:41 +01:00
|
|
|
}
|
|
|
|
|
2015-01-24 07:48:48 +01:00
|
|
|
var MaxChannel = 32
|
|
|
|
|
|
|
|
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-01-25 11:17:53 +01:00
|
|
|
l: []int16{},
|
|
|
|
r: []int16{},
|
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()
|
|
|
|
start()
|
2015-01-10 17:23:43 +01:00
|
|
|
}
|
|
|
|
|
2015-01-24 17:51:51 +01:00
|
|
|
func isPlaying(channel int) bool {
|
|
|
|
ch := channels[channel]
|
2015-01-25 17:20:56 +01:00
|
|
|
return ch.nextInsertionPosition < len(ch.l)
|
2015-01-24 17:51:51 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func channelAt(i int) *channel {
|
2015-06-07 16:24:15 +02:00
|
|
|
var ch *channel
|
|
|
|
withChannels(func() {
|
|
|
|
if i == -1 {
|
|
|
|
for i, _ := range channels {
|
|
|
|
if !isPlaying(i) {
|
|
|
|
ch = channels[i]
|
|
|
|
return
|
|
|
|
}
|
2015-01-24 17:51:51 +01:00
|
|
|
}
|
2015-06-07 16:24:15 +02:00
|
|
|
return
|
2015-01-24 17:51:51 +01:00
|
|
|
}
|
2015-06-07 16:24:15 +02:00
|
|
|
if !isPlaying(i) {
|
|
|
|
ch = channels[i]
|
|
|
|
return
|
|
|
|
}
|
|
|
|
return
|
|
|
|
})
|
|
|
|
return ch
|
2015-01-24 17:51:51 +01:00
|
|
|
}
|
|
|
|
|
2015-01-25 11:17:53 +01:00
|
|
|
func Play(channel int, l []int16, r []int16) bool {
|
2015-06-07 16:24:15 +02:00
|
|
|
ch := channelAt(channel)
|
|
|
|
if ch == nil {
|
|
|
|
return false
|
|
|
|
}
|
2015-02-15 18:05:19 +01:00
|
|
|
withChannels(func() {
|
|
|
|
if !audioEnabled {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if len(l) != len(r) {
|
|
|
|
panic("len(l) must equal to len(r)")
|
|
|
|
}
|
2015-06-07 16:24:15 +02:00
|
|
|
d := ch.nextInsertionPosition - len(l)
|
|
|
|
if 0 < d {
|
|
|
|
ch.l = append(ch.l, make([]int16, d)...)
|
|
|
|
ch.r = append(ch.r, make([]int16, d)...)
|
2015-02-15 18:05:19 +01:00
|
|
|
}
|
|
|
|
ch.l = append(ch.l, l...)
|
|
|
|
ch.r = append(ch.r, r...)
|
|
|
|
})
|
2015-06-07 16:24:15 +02:00
|
|
|
return true
|
2015-01-10 17:23:43 +01:00
|
|
|
}
|
2015-01-21 02:37:15 +01:00
|
|
|
|
2015-01-25 11:17:53 +01:00
|
|
|
func Queue(channel int, l []int16, r []int16) {
|
2015-02-15 18:05:19 +01:00
|
|
|
withChannels(func() {
|
|
|
|
if !audioEnabled {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if len(l) != len(r) {
|
|
|
|
panic("len(l) must equal to len(r)")
|
|
|
|
}
|
|
|
|
ch := channels[channel]
|
|
|
|
ch.l = append(ch.l, l...)
|
|
|
|
ch.r = append(ch.r, r...)
|
|
|
|
})
|
2015-01-24 07:48:48 +01:00
|
|
|
}
|
|
|
|
|
2015-02-10 02:44:58 +01:00
|
|
|
func Tick() {
|
2015-01-25 17:20:56 +01:00
|
|
|
for _, ch := range channels {
|
2015-06-07 16:24:15 +02:00
|
|
|
if 0 < len(ch.l) {
|
|
|
|
ch.nextInsertionPosition += SampleRate / 60 // FPS
|
|
|
|
} else {
|
|
|
|
ch.nextInsertionPosition = 0
|
|
|
|
}
|
2015-01-25 17:20:56 +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 {
|
|
|
|
if 0 < len(ch.l) {
|
|
|
|
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-01-26 02:14:03 +01:00
|
|
|
func loadChannelBuffer(channel int, bufferSize int) (l, r []int16) {
|
2015-02-15 18:05:19 +01:00
|
|
|
withChannels(func() {
|
|
|
|
if !audioEnabled {
|
|
|
|
return
|
|
|
|
}
|
2015-01-25 17:20:56 +01:00
|
|
|
|
2015-02-15 18:05:19 +01:00
|
|
|
ch := channels[channel]
|
|
|
|
length := min(len(ch.l), bufferSize)
|
2015-02-16 02:33:27 +01:00
|
|
|
inputL := ch.l[:length]
|
|
|
|
inputR := ch.r[:length]
|
2015-06-07 16:24:15 +02:00
|
|
|
ch.nextInsertionPosition -= length
|
|
|
|
if ch.nextInsertionPosition < 0 {
|
|
|
|
ch.nextInsertionPosition = 0
|
|
|
|
}
|
2015-02-15 18:05:19 +01:00
|
|
|
ch.l = ch.l[length:]
|
|
|
|
ch.r = ch.r[length:]
|
|
|
|
l, r = inputL, inputR
|
|
|
|
})
|
|
|
|
return
|
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
|
|
|
}
|