mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
audio: Use oto.NewContext
This commit is contained in:
parent
ca3cacf62a
commit
13b0d82b6d
@ -103,13 +103,34 @@ func CurrentContext() *Context {
|
|||||||
return c
|
return c
|
||||||
}
|
}
|
||||||
|
|
||||||
var driverForTesting io.WriteCloser
|
type context interface {
|
||||||
|
NewPlayer() io.WriteCloser
|
||||||
|
io.Closer
|
||||||
|
}
|
||||||
|
|
||||||
func newDriver(sampleRate int) (io.WriteCloser, error) {
|
var contextForTesting context
|
||||||
if driverForTesting != nil {
|
|
||||||
return driverForTesting, nil
|
type otoContext struct {
|
||||||
|
c *oto.Context
|
||||||
|
}
|
||||||
|
|
||||||
|
func (d *otoContext) NewPlayer() io.WriteCloser {
|
||||||
|
return d.c.NewPlayer()
|
||||||
|
}
|
||||||
|
|
||||||
|
func (d *otoContext) Close() error {
|
||||||
|
return d.c.Close()
|
||||||
|
}
|
||||||
|
|
||||||
|
func newContext(sampleRate int) (context, error) {
|
||||||
|
if contextForTesting != nil {
|
||||||
|
return contextForTesting, nil
|
||||||
}
|
}
|
||||||
return oto.NewPlayer(sampleRate, channelNum, bytesPerSample/channelNum, bufferSize())
|
c, err := oto.NewContext(sampleRate, channelNum, bytesPerSample/channelNum, bufferSize())
|
||||||
|
if err != nil {
|
||||||
|
return nil, err
|
||||||
|
}
|
||||||
|
return &otoContext{c}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (c *Context) loop() {
|
func (c *Context) loop() {
|
||||||
@ -147,11 +168,14 @@ func (c *Context) loop() {
|
|||||||
// e.g. a variable for JVM on Android might not be set.
|
// e.g. a variable for JVM on Android might not be set.
|
||||||
<-initCh
|
<-initCh
|
||||||
|
|
||||||
p, err := newDriver(c.sampleRate)
|
context, err := newContext(c.sampleRate)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
c.err = err
|
c.err = err
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
defer context.Close()
|
||||||
|
|
||||||
|
p := context.NewPlayer()
|
||||||
defer p.Close()
|
defer p.Close()
|
||||||
|
|
||||||
for {
|
for {
|
||||||
|
@ -14,16 +14,31 @@
|
|||||||
|
|
||||||
package audio
|
package audio
|
||||||
|
|
||||||
type dummyDriver struct{}
|
import (
|
||||||
|
"io"
|
||||||
|
)
|
||||||
|
|
||||||
func (d *dummyDriver) Write(b []byte) (int, error) {
|
type (
|
||||||
|
dummyContext struct{}
|
||||||
|
dummyPlayer struct{}
|
||||||
|
)
|
||||||
|
|
||||||
|
func (d *dummyContext) NewPlayer() io.WriteCloser {
|
||||||
|
return &dummyPlayer{}
|
||||||
|
}
|
||||||
|
|
||||||
|
func (d *dummyContext) Close() error {
|
||||||
|
return nil
|
||||||
|
}
|
||||||
|
|
||||||
|
func (p *dummyPlayer) Write(b []byte) (int, error) {
|
||||||
return len(b), nil
|
return len(b), nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (d *dummyDriver) Close() error {
|
func (p *dummyPlayer) Close() error {
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
driverForTesting = &dummyDriver{}
|
contextForTesting = &dummyContext{}
|
||||||
}
|
}
|
Loading…
Reference in New Issue
Block a user