ebiten/exp/audio/audio_openal.go

193 lines
4.0 KiB
Go
Raw Normal View History

2015-01-24 06:50:41 +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,!windows
2015-01-24 06:50:41 +01:00
package audio
2015-01-24 06:50:41 +01:00
import (
2016-02-11 19:06:04 +01:00
"fmt"
"io"
2016-02-11 19:06:04 +01:00
"runtime"
"sync"
"time"
2015-06-07 15:01:14 +02:00
2016-02-11 19:06:04 +01:00
"golang.org/x/mobile/exp/audio/al"
)
type alSourceCacheEntry struct {
source al.Source
sampleRate int
}
const maxSourceNum = 32
var alSourceCache = []alSourceCacheEntry{}
2016-02-11 10:43:11 +01:00
type player struct {
2016-02-11 19:06:04 +01:00
alSource al.Source
alBuffers []al.Buffer
source io.ReadSeeker
sampleRate int
2016-02-11 10:43:11 +01:00
}
2016-02-11 19:06:04 +01:00
var m sync.Mutex
func newAlSource(sampleRate int) (al.Source, error) {
for _, e := range alSourceCache {
if e.sampleRate != sampleRate {
continue
}
s := e.source.State()
if s != al.Initial && s != al.Stopped {
continue
}
return e.source, nil
}
if maxSourceNum <= len(alSourceCache) {
return 0, ErrTooManyPlayers
2016-02-11 19:06:04 +01:00
}
s := al.GenSources(1)
if err := al.Error(); err != 0 {
panic(fmt.Sprintf("audio: al.GenSources error: %d", err))
}
e := alSourceCacheEntry{
source: s[0],
sampleRate: sampleRate,
}
alSourceCache = append(alSourceCache, e)
return s[0], nil
}
func newPlayer(src io.ReadSeeker, sampleRate int) (*Player, error) {
m.Lock()
if e := al.OpenDevice(); e != nil {
m.Unlock()
return nil, fmt.Errorf("audio: OpenAL initialization failed: %v", e)
}
s, err := newAlSource(sampleRate)
if err != nil {
m.Unlock()
return nil, err
}
2016-02-11 19:06:04 +01:00
m.Unlock()
p := &player{
alSource: s,
2016-02-11 19:06:04 +01:00
alBuffers: []al.Buffer{},
source: src,
sampleRate: sampleRate,
}
runtime.SetFinalizer(p, (*player).close)
return &Player{p}, nil
2016-02-11 19:06:04 +01:00
}
const bufferSize = 1024
func (p *player) proceed() error {
m.Lock()
processedNum := p.alSource.BuffersProcessed()
if 0 < processedNum {
bufs := make([]al.Buffer, processedNum)
p.alSource.UnqueueBuffers(bufs...)
p.alBuffers = append(p.alBuffers, bufs...)
}
m.Unlock()
for 0 < len(p.alBuffers) {
b := make([]byte, bufferSize)
n, err := p.source.Read(b)
if 0 < n {
m.Lock()
buf := p.alBuffers[0]
p.alBuffers = p.alBuffers[1:]
buf.BufferData(al.FormatStereo16, b[:n], int32(p.sampleRate))
p.alSource.QueueBuffers(buf)
m.Unlock()
}
if err != nil {
return err
}
}
2016-02-11 19:06:04 +01:00
m.Lock()
if p.alSource.State() == al.Stopped {
al.RewindSources(p.alSource)
al.PlaySources(p.alSource)
}
m.Unlock()
return nil
2016-02-11 10:43:11 +01:00
}
func (p *player) play() error {
const bufferMaxNum = 8
2016-02-11 19:06:04 +01:00
// TODO: What if play is already called?
emptyBytes := make([]byte, bufferSize)
m.Lock()
n := bufferMaxNum - int(p.alSource.BuffersQueued())
if 0 < n {
bufs := al.GenBuffers(n)
for _, buf := range bufs {
// Note that the third argument of only the first buffer is used.
buf.BufferData(al.FormatStereo16, emptyBytes, int32(p.sampleRate))
p.alSource.QueueBuffers(buf)
}
2016-02-11 19:06:04 +01:00
}
al.PlaySources(p.alSource)
m.Unlock()
go func() {
defer p.close()
for {
err := p.proceed()
if err == io.EOF {
break
}
if err != nil {
// TODO: Record the last error
panic(err)
}
time.Sleep(1)
}
}()
return nil
}
2016-02-11 11:55:59 +01:00
func (p *player) close() error {
2016-02-11 19:06:04 +01:00
m.Lock()
var bs []al.Buffer
2016-02-11 19:06:04 +01:00
if p.alSource != 0 {
al.RewindSources(p.alSource)
al.StopSources(p.alSource)
n := p.alSource.BuffersQueued()
if 0 < n {
bs = make([]al.Buffer, n)
p.alSource.UnqueueBuffers(bs...)
}
2016-02-11 19:06:04 +01:00
p.alSource = 0
}
if 0 < len(p.alBuffers) {
al.DeleteBuffers(p.alBuffers...)
p.alBuffers = []al.Buffer{}
}
if bs != nil {
p.alBuffers = append(p.alBuffers, bs...)
}
2016-02-11 19:06:04 +01:00
if err := al.Error(); err != 0 {
panic(fmt.Sprintf("audio: closing error: %d", err))
2016-02-11 19:06:04 +01:00
}
m.Unlock()
runtime.SetFinalizer(p, nil)
return nil
2016-02-11 11:55:59 +01:00
}
2016-02-11 09:16:34 +01:00
// TODO: Implement Close method