mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
120 lines
2.0 KiB
Go
120 lines
2.0 KiB
Go
// 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.
|
|
|
|
package audio
|
|
|
|
import (
|
|
"sync"
|
|
)
|
|
|
|
var audioEnabled = false
|
|
|
|
const SampleRate = 44100
|
|
|
|
type channel struct {
|
|
buffer []byte
|
|
}
|
|
|
|
const MaxChannel = 32
|
|
|
|
var channels = make([]*channel, MaxChannel)
|
|
|
|
func init() {
|
|
for i, _ := range channels {
|
|
channels[i] = &channel{
|
|
buffer: []byte{},
|
|
}
|
|
}
|
|
}
|
|
|
|
func Init() {
|
|
initialize()
|
|
}
|
|
|
|
var channelsMutex = sync.Mutex{}
|
|
|
|
func withChannels(f func()) {
|
|
channelsMutex.Lock()
|
|
defer channelsMutex.Unlock()
|
|
f()
|
|
}
|
|
|
|
func emptyChannel() *channel {
|
|
for i, _ := range channels {
|
|
if !isPlaying(i) {
|
|
return channels[i]
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// TODO: Accept sample rate
|
|
func Queue(data []byte) bool {
|
|
result := true
|
|
withChannels(func() {
|
|
if !audioEnabled {
|
|
result = false
|
|
return
|
|
}
|
|
ch := emptyChannel()
|
|
if ch == nil {
|
|
result = false
|
|
return
|
|
}
|
|
ch.buffer = append(ch.buffer, data...)
|
|
})
|
|
return result
|
|
}
|
|
|
|
func min(a, b int) int {
|
|
if a < b {
|
|
return a
|
|
}
|
|
return b
|
|
}
|
|
|
|
func isChannelsEmpty() bool {
|
|
result := false
|
|
withChannels(func() {
|
|
if !audioEnabled {
|
|
result = true
|
|
return
|
|
}
|
|
|
|
for _, ch := range channels {
|
|
if 0 < len(ch.buffer) {
|
|
return
|
|
}
|
|
}
|
|
result = true
|
|
return
|
|
})
|
|
return result
|
|
}
|
|
|
|
func loadChannelBuffer(channel int, bufferSize int) []byte {
|
|
var r []byte
|
|
withChannels(func() {
|
|
if !audioEnabled {
|
|
return
|
|
}
|
|
ch := channels[channel]
|
|
length := min(len(ch.buffer), bufferSize)
|
|
input := ch.buffer[:length]
|
|
ch.buffer = ch.buffer[length:]
|
|
r = input
|
|
})
|
|
return r
|
|
}
|