ebiten/exp/audio/internal/driver/driver_openal.go

138 lines
3.3 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
2016-04-08 17:54:18 +02:00
package driver
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"
2015-06-07 15:01:14 +02:00
2016-02-11 19:06:04 +01:00
"golang.org/x/mobile/exp/audio/al"
)
const (
maxBufferNum = 8
)
2016-04-08 17:54:18 +02:00
type Player struct {
2016-02-11 19:06:04 +01:00
alSource al.Source
alBuffers []al.Buffer
2016-03-03 03:57:25 +01:00
source io.Reader
2016-02-11 19:06:04 +01:00
sampleRate int
isClosed bool
2016-02-11 10:43:11 +01:00
}
2016-04-08 17:54:18 +02:00
func NewPlayer(src io.Reader, sampleRate, channelNum, bytesPerSample int) (*Player, error) {
if e := al.OpenDevice(); e != nil {
2016-04-04 16:42:44 +02:00
return nil, fmt.Errorf("audio: OpenAL initialization failed: %v", e)
}
2016-02-11 19:06:04 +01:00
s := al.GenSources(1)
if err := al.Error(); err != 0 {
2016-04-04 16:42:44 +02:00
return nil, fmt.Errorf("audio: al.GenSources error: %d", err)
2016-02-11 19:06:04 +01:00
}
2016-04-08 17:54:18 +02:00
p := &Player{
alSource: s[0],
alBuffers: []al.Buffer{},
source: src,
sampleRate: sampleRate,
}
2016-04-08 17:54:18 +02:00
runtime.SetFinalizer(p, (*Player).Close)
2016-04-05 18:26:21 +02:00
bs := al.GenBuffers(maxBufferNum)
emptyBytes := make([]byte, bufferSize)
for _, b := range bs {
// Note that the third argument of only the first buffer is used.
b.BufferData(al.FormatStereo16, emptyBytes, int32(p.sampleRate))
p.alSource.QueueBuffers(b)
}
al.PlaySources(p.alSource)
2016-04-04 16:42:44 +02:00
return p, nil
}
const (
bufferSize = 1024
)
var (
tmpBuffer = make([]byte, bufferSize)
tmpAlBuffers = make([]al.Buffer, maxBufferNum)
)
2016-02-11 19:06:04 +01:00
2016-04-08 17:54:18 +02:00
func (p *Player) Proceed() error {
2016-02-13 12:43:27 +01:00
if err := al.Error(); err != 0 {
2016-04-03 09:13:00 +02:00
return fmt.Errorf("audio: before proceed: %d", err)
2016-02-13 12:43:27 +01:00
}
2016-02-11 19:06:04 +01:00
processedNum := p.alSource.BuffersProcessed()
if 0 < processedNum {
bufs := tmpAlBuffers[:processedNum]
2016-02-11 19:06:04 +01:00
p.alSource.UnqueueBuffers(bufs...)
2016-02-13 12:43:27 +01:00
if err := al.Error(); err != 0 {
2016-04-03 09:13:00 +02:00
return fmt.Errorf("audio: Unqueue in process: %d", err)
2016-02-13 12:43:27 +01:00
}
2016-02-11 19:06:04 +01:00
p.alBuffers = append(p.alBuffers, bufs...)
}
if 0 < len(p.alBuffers) {
n, err := p.source.Read(tmpBuffer)
2016-02-11 19:06:04 +01:00
if 0 < n {
buf := p.alBuffers[0]
p.alBuffers = p.alBuffers[1:]
buf.BufferData(al.FormatStereo16, tmpBuffer[:n], int32(p.sampleRate))
2016-02-11 19:06:04 +01:00
p.alSource.QueueBuffers(buf)
2016-02-13 12:43:27 +01:00
if err := al.Error(); err != 0 {
2016-04-03 09:13:00 +02:00
return fmt.Errorf("audio: Queue in process: %d", err)
2016-02-13 12:43:27 +01:00
}
2016-02-11 19:06:04 +01:00
}
if err != nil {
return err
}
}
if p.alSource.State() == al.Stopped || p.alSource.State() == al.Initial {
2016-02-11 19:06:04 +01:00
al.RewindSources(p.alSource)
al.PlaySources(p.alSource)
2016-02-13 12:43:27 +01:00
if err := al.Error(); err != 0 {
2016-04-03 09:13:00 +02:00
return fmt.Errorf("audio: PlaySource in process: %d", err)
2016-02-13 12:43:27 +01:00
}
2016-02-11 19:06:04 +01:00
}
return nil
2016-02-11 10:43:11 +01:00
}
2016-04-08 17:54:18 +02:00
func (p *Player) Close() error {
2016-02-13 12:43:27 +01:00
if err := al.Error(); err != 0 {
2016-04-03 09:13:00 +02:00
return fmt.Errorf("audio: error before closing: %d", err)
2016-02-13 12:43:27 +01:00
}
if p.isClosed {
return nil
2016-02-11 19:06:04 +01:00
}
var bs []al.Buffer
al.RewindSources(p.alSource)
al.StopSources(p.alSource)
if n := p.alSource.BuffersQueued(); 0 < n {
bs = make([]al.Buffer, n)
p.alSource.UnqueueBuffers(bs...)
p.alBuffers = append(p.alBuffers, bs...)
2016-02-11 19:06:04 +01:00
}
p.isClosed = true
if err := al.Error(); err != 0 {
2016-04-03 09:13:00 +02:00
return fmt.Errorf("audio: error after closing: %d", err)
}
2016-02-11 19:06:04 +01:00
runtime.SetFinalizer(p, nil)
return nil
2016-02-11 11:55:59 +01:00
}