ebiten/exp/audio/audio.go

377 lines
9.0 KiB
Go
Raw Normal View History

2015-01-10 17:23:43 +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.
2016-04-10 10:07:58 +02:00
// Package audio provides audio players. This can be used with or without ebiten package.
//
// The stream format must be 16-bit little endian and 2 channels.
//
// An audio context has a sample rate you can set and all streams you want to play must have the same
// sample rate.
//
// An audio context can generate 'players' (instances of audio.Player),
// and you can play sound by calling Play function of players.
// When multiple players play, mixing is automatically done.
// Note that too many players may cause distortion.
2015-01-23 15:04:56 +01:00
package audio
2015-01-10 17:23:43 +01:00
import (
2016-02-10 18:04:23 +01:00
"io"
2016-03-28 17:06:37 +02:00
"runtime"
2016-03-03 03:57:25 +01:00
"sync"
2016-03-06 10:55:20 +01:00
"time"
2016-03-12 20:48:13 +01:00
"github.com/hajimehoshi/ebiten"
2016-04-08 17:54:18 +02:00
"github.com/hajimehoshi/ebiten/exp/audio/internal/driver"
2015-01-10 17:23:43 +01:00
)
type mixingStream struct {
sampleRate int
players map[*Player]struct{}
2016-04-04 19:50:08 +02:00
// Note that Read (and other methods) need to be concurrent safe
// because Read is called from another groutine (see NewContext).
2016-04-04 19:24:54 +02:00
sync.RWMutex
2016-03-03 03:57:25 +01:00
}
2016-03-12 19:33:02 +01:00
const (
channelNum = 2
bytesPerSample = 2
2016-03-19 17:40:10 +01:00
// TODO: This assumes that channelNum is a power of 2.
mask = ^(channelNum*bytesPerSample - 1)
2016-03-12 19:33:02 +01:00
)
2016-04-04 19:50:08 +02:00
func (s *mixingStream) SampleRate() int {
return s.sampleRate
}
func min(a, b int) int {
if a < b {
return a
}
return b
}
func (s *mixingStream) Read(b []byte) (int, error) {
s.Lock()
defer s.Unlock()
2016-03-03 03:57:25 +01:00
if len(s.players) == 0 {
l := len(b)
2016-03-15 19:02:54 +01:00
l &= mask
2016-03-10 16:01:00 +01:00
copy(b, make([]byte, l))
return l, nil
2016-03-03 03:57:25 +01:00
}
closed := []*Player{}
l := len(b)
for p := range s.players {
2016-04-04 19:50:08 +02:00
err := p.readToBuffer(l)
2016-03-03 03:57:25 +01:00
if err == io.EOF {
closed = append(closed, p)
} else if err != nil {
2016-03-05 08:49:35 +01:00
return 0, err
2016-03-03 03:57:25 +01:00
}
2016-03-15 19:02:54 +01:00
l = min(p.bufferLength(), l)
2016-03-06 14:03:11 +01:00
}
2016-03-15 19:02:54 +01:00
l &= mask
2016-03-06 14:03:11 +01:00
b16s := [][]int16{}
for p := range s.players {
b16s = append(b16s, p.bufferToInt16(l))
2016-03-03 03:57:25 +01:00
}
for i := 0; i < l/2; i++ {
2016-03-03 04:22:10 +01:00
x := 0
2016-03-06 14:03:11 +01:00
for _, b16 := range b16s {
x += int(b16[i])
2016-03-03 04:22:10 +01:00
}
if x > (1<<15)-1 {
x = (1 << 15) - 1
}
if x < -(1 << 15) {
x = -(1 << 15)
2016-03-03 03:57:25 +01:00
}
b[2*i] = byte(x)
b[2*i+1] = byte(x >> 8)
}
for p := range s.players {
p.proceed(l)
2016-03-03 03:57:25 +01:00
}
for _, p := range closed {
delete(s.players, p)
2016-03-03 03:57:25 +01:00
}
return l, nil
2016-03-03 03:57:25 +01:00
}
func (s *mixingStream) newPlayer(src ReadSeekCloser) (*Player, error) {
s.Lock()
defer s.Unlock()
p := &Player{
stream: s,
src: src,
buf: []byte{},
volume: 1,
}
// Get the current position of the source.
pos, err := p.src.Seek(0, 1)
if err != nil {
return nil, err
}
p.pos = pos
runtime.SetFinalizer(p, (*Player).Close)
return p, nil
}
func (s *mixingStream) closePlayer(player *Player) error {
s.Lock()
defer s.Unlock()
runtime.SetFinalizer(player, nil)
return player.src.Close()
}
func (s *mixingStream) addPlayer(player *Player) {
s.Lock()
defer s.Unlock()
s.players[player] = struct{}{}
}
func (s *mixingStream) removePlayer(player *Player) {
s.Lock()
defer s.Unlock()
delete(s.players, player)
}
func (s *mixingStream) hasPlayer(player *Player) bool {
2016-04-04 19:24:54 +02:00
s.RLock()
defer s.RUnlock()
_, ok := s.players[player]
return ok
}
func (s *mixingStream) seekPlayer(player *Player, offset time.Duration) error {
s.Lock()
defer s.Unlock()
o := int64(offset) * bytesPerSample * channelNum * int64(s.sampleRate) / int64(time.Second)
o &= mask
return player.seek(o)
}
func (s *mixingStream) playerCurrent(player *Player) time.Duration {
2016-04-04 19:24:54 +02:00
s.RLock()
defer s.RUnlock()
sample := player.pos / bytesPerSample / channelNum
return time.Duration(sample) * time.Second / time.Duration(s.sampleRate)
}
2016-03-02 16:48:59 +01:00
// TODO: Enable to specify the format like Mono8?
2016-04-10 10:07:58 +02:00
// A Context is a current state of audio.
//
// The typical usage with ebiten package is:
//
// var audioContext *audio.Context
//
// func update(screen *ebiten.Image) error {
// // Update updates the audio stream by 1/60 [sec].
// if err := audioContext.Update(); err != nil {
// return err
// }
// // ...
// }
//
// func main() {
// audioContext, err = audio.NewContext(sampleRate)
// if err != nil {
// panic(err)
// }
// ebiten.Run(run, update, 320, 240, 2, "Audio test")
// }
//
// This is 'sync mode' in that game's (logical) time and audio time are synchronized.
// You can also call Update independently from the game loop as 'async mode'.
// In this case, audio goes on even when the game stops e.g. by diactivating the screen.
2016-03-02 16:48:59 +01:00
type Context struct {
stream *mixingStream
driver *driver.Player
frames int
writtenBytes int
2016-03-02 16:48:59 +01:00
}
2016-04-10 10:07:58 +02:00
// NewContext creates a new audio context with the given sample rate (e.g. 44100).
func NewContext(sampleRate int) (*Context, error) {
2016-03-03 03:57:25 +01:00
// TODO: Panic if one context exists.
c := &Context{}
c.stream = &mixingStream{
sampleRate: sampleRate,
players: map[*Player]struct{}{},
2016-03-10 16:01:00 +01:00
}
// TODO: Rename this other than player
p, err := driver.NewPlayer(sampleRate, channelNum, bytesPerSample)
c.driver = p
2016-04-04 16:42:44 +02:00
if err != nil {
return nil, err
2016-03-03 03:57:25 +01:00
}
return c, nil
2016-03-02 16:48:59 +01:00
}
2016-03-10 16:01:00 +01:00
// Update proceeds the inner (logical) time of the context by 1/60 second.
2016-04-10 10:07:58 +02:00
//
2016-03-10 16:01:00 +01:00
// This is expected to be called in the game's updating function (sync mode)
2016-04-10 10:07:58 +02:00
// or an independent goroutine with timers (async mode).
2016-03-10 16:01:00 +01:00
// In sync mode, the game logical time syncs the audio logical time and
// you will find audio stops when the game stops e.g. when the window is deactivated.
2016-04-10 10:07:58 +02:00
// In async mode, the audio never stops even when the game stops.
func (c *Context) Update() error {
c.frames++
bytesPerFrame := c.stream.sampleRate * bytesPerSample * channelNum / ebiten.FPS
l := (c.frames * bytesPerFrame) - c.writtenBytes
l &= mask
c.writtenBytes += l
buf := make([]byte, l)
n, err := io.ReadFull(c.stream, buf)
if err != nil {
return err
}
if n != len(buf) {
return c.driver.Close()
}
err = c.driver.Proceed(buf)
if err == io.EOF {
return c.driver.Close()
}
if err != nil {
return err
}
return nil
2016-03-10 16:01:00 +01:00
}
// SampleRate returns the sample rate.
// All audio source must have the same sample rate.
func (c *Context) SampleRate() int {
2016-04-04 19:50:08 +02:00
return c.stream.SampleRate()
}
2016-04-04 19:24:54 +02:00
// ReadSeekCloser is an io.ReadSeeker and io.Closer.
2016-03-28 17:06:37 +02:00
type ReadSeekCloser interface {
io.ReadSeeker
io.Closer
}
2016-04-04 19:24:54 +02:00
// Player is an audio player which has one stream.
2016-02-10 18:18:39 +01:00
type Player struct {
stream *mixingStream
src ReadSeekCloser
buf []byte
pos int64
volume float64
2016-02-10 18:18:39 +01:00
}
2016-04-10 10:07:58 +02:00
// NewPlayer creates a new player with the given stream.
2015-01-24 07:48:48 +01:00
//
2016-04-10 10:07:58 +02:00
// src's format must be linear PCM (16bits little endian, 2 channel stereo)
2016-02-07 16:51:25 +01:00
// without a header (e.g. RIFF header).
2016-04-10 10:07:58 +02:00
// The sample rate must be same as that of the audio context.
2016-03-28 17:06:37 +02:00
func (c *Context) NewPlayer(src ReadSeekCloser) (*Player, error) {
return c.stream.newPlayer(src)
2016-03-03 03:57:25 +01:00
}
2016-04-10 10:07:58 +02:00
// Close closes the stream. Ths source stream passed by NewPlayer will also be closed.
2016-03-28 17:06:37 +02:00
func (p *Player) Close() error {
return p.stream.closePlayer(p)
2016-03-28 17:06:37 +02:00
}
2016-04-04 19:50:08 +02:00
func (p *Player) readToBuffer(length int) error {
2016-03-06 14:03:11 +01:00
bb := make([]byte, length)
n, err := p.src.Read(bb)
if 0 < n {
p.buf = append(p.buf, bb[:n]...)
}
2016-04-04 19:50:08 +02:00
return err
2016-03-06 14:03:11 +01:00
}
func (p *Player) bufferToInt16(lengthInBytes int) []int16 {
r := make([]int16, lengthInBytes/2)
for i := 0; i < lengthInBytes/2; i++ {
r[i] = int16(p.buf[2*i]) | (int16(p.buf[2*i+1]) << 8)
2016-03-28 04:06:17 +02:00
r[i] = int16(float64(r[i]) * p.volume)
2016-03-06 14:03:11 +01:00
}
return r
}
func (p *Player) proceed(length int) {
p.buf = p.buf[length:]
p.pos += int64(length)
}
func (p *Player) bufferLength() int {
return len(p.buf)
}
2016-04-10 10:07:58 +02:00
// Play plays the stream.
2016-02-10 18:18:39 +01:00
func (p *Player) Play() error {
p.stream.addPlayer(p)
2016-03-03 03:57:25 +01:00
return nil
2015-01-22 19:02:23 +01:00
}
2016-02-11 11:55:59 +01:00
2016-04-10 10:07:58 +02:00
// IsPlaying returns boolean indicating whether the player is playing.
2016-03-06 10:55:20 +01:00
func (p *Player) IsPlaying() bool {
return p.stream.hasPlayer(p)
2016-03-06 10:55:20 +01:00
}
2016-04-10 10:07:58 +02:00
// Rewind rewinds the current position to the start.
2016-03-06 10:55:20 +01:00
func (p *Player) Rewind() error {
return p.Seek(0)
}
2016-04-10 10:07:58 +02:00
// Seek seeks the position with the given offset.
2016-03-06 10:55:20 +01:00
func (p *Player) Seek(offset time.Duration) error {
return p.stream.seekPlayer(p, offset)
}
func (p *Player) seek(offset int64) error {
2016-03-06 10:55:20 +01:00
p.buf = []byte{}
pos, err := p.src.Seek(offset, 0)
2016-03-06 10:55:20 +01:00
if err != nil {
return err
}
p.pos = pos
return nil
}
2016-03-03 03:57:25 +01:00
2016-04-10 10:07:58 +02:00
// Pause pauses the playing.
2016-03-04 17:01:57 +01:00
func (p *Player) Pause() error {
p.stream.removePlayer(p)
2016-03-03 03:57:25 +01:00
return nil
2016-02-11 11:55:59 +01:00
}
2016-03-06 10:55:20 +01:00
2016-04-10 10:07:58 +02:00
// Current returns the current position.
2016-03-06 10:55:20 +01:00
func (p *Player) Current() time.Duration {
return p.stream.playerCurrent(p)
2016-03-06 10:55:20 +01:00
}
2016-04-10 10:07:58 +02:00
// Volume returns the current volume of this player [0-1].
2016-03-28 04:06:17 +02:00
func (p *Player) Volume() float64 {
return p.volume
}
2016-04-10 10:07:58 +02:00
// SetVolume sets the volume of this player.
2016-04-03 19:16:26 +02:00
// volume must be in between 0 and 1. This function panics otherwise.
2016-03-28 04:06:17 +02:00
func (p *Player) SetVolume(volume float64) {
2016-04-02 19:46:18 +02:00
// The condition must be true when volume is NaN.
if !(0 <= volume && volume <= 1) {
panic("audio: volume must be in between 0 and 1")
2016-03-28 04:06:17 +02:00
}
p.volume = volume
}
2016-03-06 10:55:20 +01:00
// TODO: Panning