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
|
|
|
|
|
|
|
type readerPlayerFactory struct {
|
2021-03-28 11:07:38 +02:00
|
|
|
context readerdriver.Context
|
2021-02-28 15:41:30 +01:00
|
|
|
sampleRate int
|
2021-01-06 19:20:36 +01:00
|
|
|
}
|
|
|
|
|
2021-03-28 11:07:38 +02:00
|
|
|
var readerDriverForTesting readerdriver.Context
|
2021-03-21 18:57:52 +01:00
|
|
|
|
2021-01-06 19:20:36 +01:00
|
|
|
func newReaderPlayerFactory(sampleRate int) *readerPlayerFactory {
|
2021-03-21 18:57:52 +01:00
|
|
|
f := &readerPlayerFactory{
|
2021-02-28 15:41:30 +01:00
|
|
|
sampleRate: sampleRate,
|
2021-01-06 19:20:36 +01:00
|
|
|
}
|
2021-03-21 18:57:52 +01:00
|
|
|
if readerDriverForTesting != nil {
|
2021-03-28 11:07:38 +02:00
|
|
|
f.context = readerDriverForTesting
|
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
|
|
|
}
|
|
|
|
|
|
|
|
type readerPlayer 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-02-28 15:41:30 +01:00
|
|
|
factory *readerPlayerFactory
|
|
|
|
m sync.Mutex
|
2021-01-06 19:20:36 +01:00
|
|
|
}
|
|
|
|
|
2021-02-28 15:41:30 +01:00
|
|
|
func (f *readerPlayerFactory) newPlayerImpl(context *Context, src io.Reader) (playerImpl, error) {
|
2021-01-06 19:20:36 +01:00
|
|
|
p := &readerPlayer{
|
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-03-21 20:09:57 +01:00
|
|
|
runtime.SetFinalizer(p, (*readerPlayer).Close)
|
2021-01-06 19:20:36 +01:00
|
|
|
return p, nil
|
|
|
|
}
|
|
|
|
|
2021-02-20 17:47:39 +01:00
|
|
|
func (p *readerPlayer) 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-03-28 11:07:38 +02:00
|
|
|
if p.factory.context == nil {
|
2021-04-19 16:55:26 +02:00
|
|
|
c, err := readerdriver.NewContext(p.factory.sampleRate, channelNum, bitDepthInBytes, func() {
|
|
|
|
p.context.setReady()
|
|
|
|
})
|
2021-03-28 11:07:38 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
p.factory.context = c
|
|
|
|
}
|
|
|
|
if p.stream == nil {
|
|
|
|
s, err := newTimeStream(p.src, p.factory.sampleRate, p.factory.context.MaxBufferSize())
|
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-01-06 19:20:36 +01:00
|
|
|
func (p *readerPlayer) Play() {
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *readerPlayer) Pause() {
|
|
|
|
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
|
|
|
|
2021-02-20 17:47:39 +01:00
|
|
|
n := p.player.UnplayedBufferSize()
|
2021-01-06 19:20:36 +01:00
|
|
|
p.player.Pause()
|
2021-03-21 18:57:52 +01:00
|
|
|
p.stream.Unread(int(n))
|
|
|
|
p.context.removePlayer(p)
|
2021-01-06 19:20:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *readerPlayer) IsPlaying() bool {
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
func (p *readerPlayer) Volume() float64 {
|
|
|
|
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()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *readerPlayer) SetVolume(volume float64) {
|
|
|
|
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)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *readerPlayer) Close() error {
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
func (p *readerPlayer) 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-03-21 18:57:52 +01:00
|
|
|
sample := (p.stream.Current() - 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
|
|
|
}
|
|
|
|
|
|
|
|
func (p *readerPlayer) Rewind() error {
|
2021-01-08 20:03:38 +01:00
|
|
|
return p.Seek(0)
|
2021-01-06 19:20:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *readerPlayer) 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-03-28 14:57:39 +02:00
|
|
|
func (p *readerPlayer) Err() error {
|
|
|
|
p.m.Lock()
|
|
|
|
defer p.m.Unlock()
|
|
|
|
|
|
|
|
if p.player == nil {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
return p.player.Err()
|
|
|
|
}
|
|
|
|
|
2021-01-06 19:20:36 +01:00
|
|
|
func (p *readerPlayer) 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-03-28 11:07:38 +02:00
|
|
|
r io.Reader
|
|
|
|
sampleRate int
|
|
|
|
pos int64
|
|
|
|
buf []byte
|
|
|
|
unread int
|
|
|
|
maxBufferSize int
|
2021-01-08 20:03:38 +01:00
|
|
|
}
|
|
|
|
|
2021-03-28 11:07:38 +02:00
|
|
|
func newTimeStream(r io.Reader, sampleRate int, maxBufferSize int) (*timeStream, error) {
|
2021-01-08 20:03:38 +01:00
|
|
|
s := &timeStream{
|
2021-03-28 11:07:38 +02:00
|
|
|
r: r,
|
|
|
|
sampleRate: sampleRate,
|
|
|
|
maxBufferSize: maxBufferSize,
|
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
|
|
|
|
}
|
|
|
|
|
2021-02-20 17:47:39 +01:00
|
|
|
func (s *timeStream) Unread(n int) {
|
|
|
|
if s.unread+n > len(s.buf) {
|
2021-04-19 17:57:27 +02:00
|
|
|
// This should not happen usually, but the player's UnplayedBufferSize can include some errors.
|
|
|
|
n = len(s.buf) - s.unread
|
2021-02-20 17:47:39 +01:00
|
|
|
}
|
|
|
|
s.unread += n
|
|
|
|
s.pos -= int64(n)
|
|
|
|
}
|
|
|
|
|
2021-01-08 20:03:38 +01:00
|
|
|
func (s *timeStream) Read(buf []byte) (int, error) {
|
2021-02-20 17:47:39 +01:00
|
|
|
if s.unread > 0 {
|
|
|
|
n := copy(buf, s.buf[len(s.buf)-s.unread:])
|
|
|
|
s.unread -= n
|
|
|
|
s.pos += int64(n)
|
|
|
|
return n, nil
|
|
|
|
}
|
|
|
|
|
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)
|
2021-02-20 17:47:39 +01:00
|
|
|
s.buf = append(s.buf, buf[:n]...)
|
2021-03-28 11:07:38 +02:00
|
|
|
if m := s.maxBufferSize; len(s.buf) > m {
|
2021-02-20 17:47:39 +01:00
|
|
|
s.buf = s.buf[len(s.buf)-m:]
|
|
|
|
}
|
2021-01-08 20:03:38 +01:00
|
|
|
return n, err
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *timeStream) Seek(offset time.Duration) error {
|
|
|
|
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
|
2021-02-20 17:47:39 +01:00
|
|
|
s.buf = s.buf[:0]
|
|
|
|
s.unread = 0
|
2021-01-08 20:03:38 +01:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-02-27 17:42:48 +01:00
|
|
|
func (s *timeStream) Current() int64 {
|
|
|
|
return s.pos
|
2021-01-08 20:03:38 +01:00
|
|
|
}
|