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 (
|
2021-02-20 17:47:39 +01:00
|
|
|
"fmt"
|
2021-01-06 19:20:36 +01:00
|
|
|
"io"
|
|
|
|
"sync"
|
|
|
|
"time"
|
|
|
|
)
|
|
|
|
|
2021-02-20 17:47:39 +01:00
|
|
|
// TODO: The term 'buffer' is confusing. Name each buffer with good terms.
|
|
|
|
|
|
|
|
// oneBufferSize returns the size of one buffer in the player implementation.
|
|
|
|
func oneBufferSize(sampleRate int) int {
|
|
|
|
return sampleRate * channelNum * bitDepthInBytes / 4
|
|
|
|
}
|
|
|
|
|
|
|
|
// maxBufferSize returns the maximum size of the buffer for the audio source.
|
|
|
|
// This buffer is used when unreading on pausing the player.
|
|
|
|
func maxBufferSize(sampleRate int) int {
|
|
|
|
// Actually *2 should be enough in most cases,
|
|
|
|
// but in some implementation (e.g, go2cpp), a player might have more UnplayedBufferSize values.
|
|
|
|
// As a safe margin, use *4 value.
|
|
|
|
// TODO: Ensure the maximum value of UnplayedBufferSize on all the platforms.
|
|
|
|
return oneBufferSize(sampleRate) * 4
|
|
|
|
}
|
|
|
|
|
2021-01-06 19:20:36 +01:00
|
|
|
// readerDriver represents a driver using io.ReadClosers.
|
|
|
|
type readerDriver interface {
|
|
|
|
NewPlayer(io.Reader) readerDriverPlayer
|
|
|
|
io.Closer
|
|
|
|
}
|
|
|
|
|
|
|
|
type readerDriverPlayer interface {
|
|
|
|
Pause()
|
|
|
|
Play()
|
2021-01-15 17:01:19 +01:00
|
|
|
IsPlaying() bool
|
2021-01-11 15:54:43 +01:00
|
|
|
Reset()
|
2021-01-06 19:20:36 +01:00
|
|
|
Volume() float64
|
|
|
|
SetVolume(volume float64)
|
2021-02-28 17:27:42 +01:00
|
|
|
UnplayedBufferSize() int64
|
2021-01-06 19:20:36 +01:00
|
|
|
io.Closer
|
|
|
|
}
|
|
|
|
|
|
|
|
type readerPlayerFactory struct {
|
2021-02-28 15:41:30 +01:00
|
|
|
driver readerDriver
|
|
|
|
sampleRate int
|
2021-01-06 19:20:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func newReaderPlayerFactory(sampleRate int) *readerPlayerFactory {
|
|
|
|
return &readerPlayerFactory{
|
2021-02-28 15:41:30 +01:00
|
|
|
sampleRate: sampleRate,
|
2021-01-06 19:20:36 +01:00
|
|
|
}
|
2021-01-07 03:52:34 +01:00
|
|
|
// TODO: Consider the hooks.
|
2021-01-06 19:20:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
type readerPlayer struct {
|
2021-02-28 15:41:30 +01:00
|
|
|
context *Context
|
|
|
|
player readerDriverPlayer
|
|
|
|
src *timeStream
|
|
|
|
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-02-27 17:42:48 +01:00
|
|
|
sampleRate := context.SampleRate()
|
|
|
|
s, err := newTimeStream(src, sampleRate)
|
2021-01-08 20:03:38 +01:00
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2021-01-06 19:20:36 +01:00
|
|
|
p := &readerPlayer{
|
2021-02-28 15:41:30 +01:00
|
|
|
context: context,
|
|
|
|
src: s,
|
|
|
|
factory: f,
|
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.
|
|
|
|
if p.factory.driver == nil {
|
2021-02-20 17:47:39 +01:00
|
|
|
d, err := newReaderDriverImpl(p.context)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
p.factory.driver = d
|
2021-02-28 15:41:30 +01:00
|
|
|
}
|
|
|
|
if p.player == nil {
|
|
|
|
p.player = p.factory.driver.NewPlayer(p.src)
|
|
|
|
}
|
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-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.Play()
|
|
|
|
p.context.addPlayer(p)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (p *readerPlayer) Pause() {
|
|
|
|
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
|
|
|
|
}
|
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-02-20 17:47:39 +01:00
|
|
|
p.src.Unread(int(n))
|
2021-01-06 19:20:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *readerPlayer) IsPlaying() bool {
|
|
|
|
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 false
|
|
|
|
}
|
2021-01-06 19:20:36 +01:00
|
|
|
|
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-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-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()
|
|
|
|
|
|
|
|
p.context.removePlayer(p)
|
2021-02-20 17:47:39 +01:00
|
|
|
if p.player != nil {
|
|
|
|
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-02-28 17:27:42 +01:00
|
|
|
sample := (p.src.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-02-20 17:47:39 +01:00
|
|
|
if p.player != nil {
|
|
|
|
if p.player.IsPlaying() {
|
|
|
|
defer func() {
|
|
|
|
p.player.Play()
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
p.player.Reset()
|
2021-02-21 15:54:43 +01:00
|
|
|
}
|
2021-01-12 18:01:00 +01:00
|
|
|
return p.src.Seek(offset)
|
2021-01-06 19:20:36 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (p *readerPlayer) source() io.Reader {
|
|
|
|
return p.src
|
|
|
|
}
|
2021-01-08 20:03:38 +01:00
|
|
|
|
|
|
|
type timeStream struct {
|
|
|
|
r io.Reader
|
|
|
|
sampleRate int
|
|
|
|
pos int64
|
2021-02-20 17:47:39 +01:00
|
|
|
buf []byte
|
|
|
|
unread int
|
2021-01-08 20:03:38 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func newTimeStream(r io.Reader, sampleRate int) (*timeStream, error) {
|
|
|
|
s := &timeStream{
|
|
|
|
r: r,
|
|
|
|
sampleRate: sampleRate,
|
|
|
|
}
|
|
|
|
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) {
|
|
|
|
panic(fmt.Sprintf("audio: too much unreading: %d, the buffer size: %d, unreading position: %d", n, len(s.buf), s.unread))
|
|
|
|
}
|
|
|
|
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]...)
|
|
|
|
if m := maxBufferSize(s.sampleRate); len(s.buf) > m {
|
|
|
|
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
|
|
|
}
|