2021-01-06 19:20:36 +01:00
|
|
|
// Copyright 2021 The Ebiten Authors
|
|
|
|
//
|
|
|
|
// 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 (
|
|
|
|
"io"
|
2021-03-21 20:09:57 +01:00
|
|
|
"runtime"
|
2021-01-06 19:20:36 +01:00
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
|
2021-03-28 11:07:38 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/v2/audio/internal/readerdriver"
|
|
|
|
)
|
2021-01-06 19:20:36 +01:00
|
|
|
|
2021-08-21 12:52:11 +02:00
|
|
|
type playerFactory struct {
|
2021-03-28 11:07:38 +02:00
|
|
|
context readerdriver.Context
|
2021-02-28 15:41:30 +01:00
|
|
|
sampleRate int
|
2021-07-10 12:48:00 +02:00
|
|
|
|
|
|
|
m sync.Mutex
|
2021-01-06 19:20:36 +01:00
|
|
|
}
|
|
|
|
|
2021-08-21 12:52:11 +02:00
|
|
|
var driverForTesting readerdriver.Context
|
2021-03-21 18:57:52 +01:00
|
|
|
|
2021-08-21 12:52:11 +02:00
|
|
|
func newPlayerFactory(sampleRate int) *playerFactory {
|
|
|
|
f := &playerFactory{
|
2021-02-28 15:41:30 +01:00
|
|
|
sampleRate: sampleRate,
|
2021-01-06 19:20:36 +01:00
|
|
|
}
|
2021-08-21 12:52:11 +02:00
|
|
|
if driverForTesting != nil {
|
|
|
|
f.context = driverForTesting
|
2021-03-21 18:57:52 +01:00
|
|
|
}
|
2021-01-07 03:52:34 +01:00
|
|
|
// TODO: Consider the hooks.
|
2021-03-21 18:57:52 +01:00
|
|
|
return f
|
2021-01-06 19:20:36 +01:00
|
|
|
}
|
|
|
|
|
2021-08-21 12:52:11 +02:00
|
|
|
type player struct {
|
2021-02-28 15:41:30 +01:00
|
|
|
context *Context
|
2021-03-28 11:07:38 +02:00
|
|
|
player readerdriver.Player
|
|
|
|
src io.Reader
|
2021-03-21 18:57:52 +01:00
|
|
|
stream *timeStream
|
2021-08-21 12:52:11 +02:00
|
|
|
factory *playerFactory
|
2021-02-28 15:41:30 +01:00
|
|
|
m sync.Mutex
|
2021-01-06 19:20:36 +01:00
|
|
|
}
|
|
|
|
|
2021-08-21 12:52:11 +02:00
|
|
|
func (f *playerFactory) newPlayer(context *Context, src io.Reader) (*player, error) {
|
2021-07-10 12:48:00 +02:00
|
|
|
f.m.Lock()
|
|
|
|
defer f.m.Unlock()
|
|
|
|
|
2021-08-21 12:52:11 +02:00
|
|
|
p := &player{
|
2021-03-28 11:07:38 +02:00
|
|
|
src: src,
|
2021-02-28 15:41:30 +01:00
|
|
|
context: context,
|
|
|
|
factory: f,
|
2021-01-06 19:20:36 +01:00
|
|
|
}
|
2021-08-21 12:52:11 +02:00
|
|
|
runtime.SetFinalizer(p, (*player).Close)
|
2021-01-06 19:20:36 +01:00
|
|
|
return p, nil
|
|
|
|
}
|
|
|
|
|
2021-08-21 12:52:11 +02:00
|
|
|
func (f *playerFactory) suspend() error {
|
2021-07-10 12:48:00 +02:00
|
|
|
f.m.Lock()
|
|
|
|
defer f.m.Unlock()
|
|
|
|
|
2021-05-04 11:49:34 +02:00
|
|
|
if f.context == nil {
|
2021-05-04 16:18:16 +02:00
|
|
|
return nil
|
2021-05-04 11:49:34 +02:00
|
|
|
}
|
2021-05-04 16:18:16 +02:00
|
|
|
return f.context.Suspend()
|
2021-05-04 11:49:34 +02:00
|
|
|
}
|
|
|
|
|
2021-08-21 12:52:11 +02:00
|
|
|
func (f *playerFactory) resume() error {
|
2021-07-10 12:48:00 +02:00
|
|
|
f.m.Lock()
|
|
|
|
defer f.m.Unlock()
|
|
|
|
|
2021-05-04 11:49:34 +02:00
|
|
|
if f.context == nil {
|
2021-05-04 16:18:16 +02:00
|
|
|
return nil
|
2021-05-04 11:49:34 +02:00
|
|
|
}
|
2021-05-04 16:18:16 +02:00
|
|
|
return f.context.Resume()
|
2021-05-04 11:49:34 +02:00
|
|
|
}
|
|
|
|
|
2021-08-21 12:52:11 +02:00
|
|
|
func (f *playerFactory) initContextIfNeeded() (<-chan struct{}, error) {
|
2021-07-10 12:48:00 +02:00
|
|
|
f.m.Lock()
|
|
|
|
defer f.m.Unlock()
|
|
|
|
|
|
|
|
if f.context != nil {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
c, ready, err := readerdriver.NewContext(f.sampleRate, channelNum, bitDepthInBytes)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
f.context = c
|
|
|
|
return ready, nil
|
|
|
|
}
|
|
|
|
|
2021-08-21 12:52:11 +02:00
|
|
|
func (p *player) ensurePlayer() error {
|
2021-02-28 15:41:30 +01:00
|
|
|
// Initialize the underlying player lazily to enable calling NewContext in an 'init' function.
|
|
|
|
// Accessing the underlying player functions requires the environment to be already initialized,
|
|
|
|
// but if Ebiten is used for a shared library, the timing when init functions are called
|
|
|
|
// is unexpectable.
|
|
|
|
// e.g. a variable for JVM on Android might not be set.
|
2021-07-10 12:48:00 +02:00
|
|
|
ready, err := p.factory.initContextIfNeeded()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if ready != nil {
|
2021-04-29 11:21:06 +02:00
|
|
|
go func() {
|
|
|
|
<-ready
|
|
|
|
p.context.setReady()
|
|
|
|
}()
|
2021-03-28 11:07:38 +02:00
|
|
|
}
|
2021-07-10 12:48:00 +02:00
|
|
|
|
2021-03-28 11:07:38 +02:00
|
|
|
if p.stream == nil {
|
2021-05-05 14:46:19 +02:00
|
|
|
s, err := newTimeStream(p.src, p.factory.sampleRate)
|
2021-02-20 17:47:39 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-03-28 11:07:38 +02:00
|
|
|
p.stream = s
|
2021-02-28 15:41:30 +01:00
|
|
|
}
|
|
|
|
if p.player == nil {
|
2021-03-28 11:07:38 +02:00
|
|
|
p.player = p.factory.context.NewPlayer(p.stream)
|
2021-02-28 15:41:30 +01:00
|
|
|
}
|
2021-02-20 17:47:39 +01:00
|
|
|
return nil
|
2021-02-28 15:41:30 +01:00
|
|
|
}
|
|
|
|
|
2021-08-21 12:52:11 +02:00
|
|
|
func (p *player) Play() {
|
2021-01-06 19:20:36 +01:00
|
|
|
p.m.Lock()
|
|
|
|
defer p.m.Unlock()
|
2021-03-23 16:19:46 +01:00
|
|
|
|
2021-02-20 17:47:39 +01:00
|
|
|
if err := p.ensurePlayer(); err != nil {
|
|
|
|
p.context.setError(err)
|
|
|
|
return
|
|
|
|
}
|
2021-03-23 16:19:46 +01:00
|
|
|
if p.player.IsPlaying() {
|
|
|
|
return
|
|
|
|
}
|
2021-01-06 19:20:36 +01:00
|
|
|
p.player.Play()
|
|
|
|
p.context.addPlayer(p)
|
|
|
|
}
|
|
|
|
|
2021-08-21 12:52:11 +02:00
|
|
|
func (p *player) Pause() {
|
2021-01-06 19:20:36 +01:00
|
|
|
p.m.Lock()
|
|
|
|
defer p.m.Unlock()
|
2021-03-23 16:19:46 +01:00
|
|
|
|
|
|
|
if p.player == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if !p.player.IsPlaying() {
|
2021-02-20 17:47:39 +01:00
|
|
|
return
|
|
|
|
}
|
2021-01-06 19:20:36 +01:00
|
|
|
|
|
|
|
p.player.Pause()
|
2021-03-21 18:57:52 +01:00
|
|
|
p.context.removePlayer(p)
|
2021-01-06 19:20:36 +01:00
|
|
|
}
|
|
|
|
|
2021-08-21 12:52:11 +02:00
|
|
|
func (p *player) IsPlaying() bool {
|
2021-01-06 19:20:36 +01:00
|
|
|
p.m.Lock()
|
|
|
|
defer p.m.Unlock()
|
2021-03-23 16:19:46 +01:00
|
|
|
|
|
|
|
if p.player == nil {
|
2021-02-20 17:47:39 +01:00
|
|
|
return false
|
|
|
|
}
|
2021-01-15 17:01:19 +01:00
|
|
|
return p.player.IsPlaying()
|
2021-01-06 19:20:36 +01:00
|
|
|
}
|
|
|
|
|
2021-08-21 12:52:11 +02:00
|
|
|
func (p *player) Volume() float64 {
|
2021-01-06 19:20:36 +01:00
|
|
|
p.m.Lock()
|
|
|
|
defer p.m.Unlock()
|
2021-03-23 16:19:46 +01:00
|
|
|
|
2021-02-20 17:47:39 +01:00
|
|
|
if err := p.ensurePlayer(); err != nil {
|
|
|
|
p.context.setError(err)
|
|
|
|
return 0
|
|
|
|
}
|
2021-01-06 19:20:36 +01:00
|
|
|
return p.player.Volume()
|
|
|
|
}
|
|
|
|
|
2021-08-21 12:52:11 +02:00
|
|
|
func (p *player) SetVolume(volume float64) {
|
2021-01-06 19:20:36 +01:00
|
|
|
p.m.Lock()
|
|
|
|
defer p.m.Unlock()
|
2021-03-23 16:19:46 +01:00
|
|
|
|
2021-02-20 17:47:39 +01:00
|
|
|
if err := p.ensurePlayer(); err != nil {
|
|
|
|
p.context.setError(err)
|
|
|
|
return
|
|
|
|
}
|
2021-01-06 19:20:36 +01:00
|
|
|
p.player.SetVolume(volume)
|
|
|
|
}
|
|
|
|
|
2021-08-21 12:52:11 +02:00
|
|
|
func (p *player) Close() error {
|
2021-01-06 19:20:36 +01:00
|
|
|
p.m.Lock()
|
|
|
|
defer p.m.Unlock()
|
2021-03-21 20:09:57 +01:00
|
|
|
runtime.SetFinalizer(p, nil)
|
2021-01-06 19:20:36 +01:00
|
|
|
|
2021-02-20 17:47:39 +01:00
|
|
|
if p.player != nil {
|
2021-03-21 20:09:57 +01:00
|
|
|
defer func() {
|
|
|
|
p.player = nil
|
|
|
|
}()
|
2021-03-21 18:57:52 +01:00
|
|
|
p.player.Pause()
|
2021-02-20 17:47:39 +01:00
|
|
|
return p.player.Close()
|
|
|
|
}
|
|
|
|
return nil
|
2021-01-06 19:20:36 +01:00
|
|
|
}
|
|
|
|
|
2021-08-21 12:52:11 +02:00
|
|
|
func (p *player) Current() time.Duration {
|
2021-01-08 20:03:38 +01:00
|
|
|
p.m.Lock()
|
|
|
|
defer p.m.Unlock()
|
2021-02-20 17:47:39 +01:00
|
|
|
if err := p.ensurePlayer(); err != nil {
|
|
|
|
p.context.setError(err)
|
|
|
|
return 0
|
|
|
|
}
|
2021-01-08 20:03:38 +01:00
|
|
|
|
2021-05-09 20:22:19 +02:00
|
|
|
sample := (p.stream.Current() - int64(p.player.UnplayedBufferSize())) / bytesPerSample
|
2021-02-28 15:41:30 +01:00
|
|
|
return time.Duration(sample) * time.Second / time.Duration(p.factory.sampleRate)
|
2021-01-06 19:20:36 +01:00
|
|
|
}
|
|
|
|
|
2021-08-21 12:52:11 +02:00
|
|
|
func (p *player) Rewind() error {
|
2021-01-08 20:03:38 +01:00
|
|
|
return p.Seek(0)
|
2021-01-06 19:20:36 +01:00
|
|
|
}
|
|
|
|
|
2021-08-21 12:52:11 +02:00
|
|
|
func (p *player) Seek(offset time.Duration) error {
|
2021-01-08 20:03:38 +01:00
|
|
|
p.m.Lock()
|
|
|
|
defer p.m.Unlock()
|
|
|
|
|
2021-03-28 11:07:38 +02:00
|
|
|
if err := p.ensurePlayer(); err != nil {
|
|
|
|
return err
|
2021-02-21 15:54:43 +01:00
|
|
|
}
|
2021-03-28 11:07:38 +02:00
|
|
|
|
|
|
|
if p.player.IsPlaying() {
|
|
|
|
defer func() {
|
|
|
|
p.player.Play()
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
p.player.Reset()
|
2021-03-21 18:57:52 +01:00
|
|
|
return p.stream.Seek(offset)
|
2021-01-06 19:20:36 +01:00
|
|
|
}
|
|
|
|
|
2021-08-21 12:52:11 +02:00
|
|
|
func (p *player) Err() error {
|
2021-03-28 14:57:39 +02:00
|
|
|
p.m.Lock()
|
|
|
|
defer p.m.Unlock()
|
|
|
|
|
|
|
|
if p.player == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return p.player.Err()
|
|
|
|
}
|
|
|
|
|
2021-08-21 12:52:11 +02:00
|
|
|
func (p *player) source() io.Reader {
|
2021-03-28 11:07:38 +02:00
|
|
|
return p.src
|
2021-01-06 19:20:36 +01:00
|
|
|
}
|
2021-01-08 20:03:38 +01:00
|
|
|
|
|
|
|
type timeStream struct {
|
2021-05-05 14:46:19 +02:00
|
|
|
r io.Reader
|
|
|
|
sampleRate int
|
|
|
|
pos int64
|
2021-05-01 09:15:36 +02:00
|
|
|
|
|
|
|
// m is a mutex for this stream.
|
|
|
|
// All the exported functions are protected by this mutex as Read can be read from a different goroutine than Seek.
|
|
|
|
m sync.Mutex
|
2021-01-08 20:03:38 +01:00
|
|
|
}
|
|
|
|
|
2021-05-05 14:46:19 +02:00
|
|
|
func newTimeStream(r io.Reader, sampleRate int) (*timeStream, error) {
|
2021-01-08 20:03:38 +01:00
|
|
|
s := &timeStream{
|
2021-05-05 14:46:19 +02:00
|
|
|
r: r,
|
|
|
|
sampleRate: sampleRate,
|
2021-01-08 20:03:38 +01:00
|
|
|
}
|
|
|
|
if seeker, ok := s.r.(io.Seeker); ok {
|
|
|
|
// Get the current position of the source.
|
|
|
|
pos, err := seeker.Seek(0, io.SeekCurrent)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
s.pos = pos
|
|
|
|
}
|
|
|
|
return s, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *timeStream) Read(buf []byte) (int, error) {
|
2021-05-01 09:15:36 +02:00
|
|
|
s.m.Lock()
|
|
|
|
defer s.m.Unlock()
|
|
|
|
|
2021-02-21 10:48:54 +01:00
|
|
|
n, err := s.r.Read(buf)
|
2021-01-08 20:03:38 +01:00
|
|
|
s.pos += int64(n)
|
|
|
|
return n, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *timeStream) Seek(offset time.Duration) error {
|
2021-05-01 09:15:36 +02:00
|
|
|
s.m.Lock()
|
|
|
|
defer s.m.Unlock()
|
|
|
|
|
2021-01-08 20:03:38 +01:00
|
|
|
o := int64(offset) * bytesPerSample * int64(s.sampleRate) / int64(time.Second)
|
|
|
|
|
|
|
|
// Align the byte position with the samples.
|
|
|
|
o -= o % bytesPerSample
|
|
|
|
o += s.pos % bytesPerSample
|
|
|
|
|
|
|
|
seeker, ok := s.r.(io.Seeker)
|
|
|
|
if !ok {
|
|
|
|
panic("audio: the source must be io.Seeker when seeking but not")
|
|
|
|
}
|
|
|
|
pos, err := seeker.Seek(o, io.SeekStart)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
s.pos = pos
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-02-27 17:42:48 +01:00
|
|
|
func (s *timeStream) Current() int64 {
|
2021-05-01 09:15:36 +02:00
|
|
|
s.m.Lock()
|
|
|
|
defer s.m.Unlock()
|
|
|
|
|
2021-02-27 17:42:48 +01:00
|
|
|
return s.pos
|
2021-01-08 20:03:38 +01:00
|
|
|
}
|