ebiten/examples/audio/main.go

362 lines
7.6 KiB
Go
Raw Normal View History

// Copyright 2016 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.
2020-10-06 17:45:54 +02:00
// +build example
2017-08-07 19:09:45 +02:00
// This is an example to implement an audio player.
2017-08-07 19:06:24 +02:00
// See examples/wav for a simpler example to play a sound file.
package main
import (
"bytes"
"fmt"
2016-03-17 14:59:29 +01:00
"image/color"
"io"
2016-06-26 20:11:10 +02:00
"io/ioutil"
"log"
2016-03-17 14:59:29 +01:00
"time"
2020-10-03 19:35:13 +02:00
"github.com/hajimehoshi/ebiten/v2"
"github.com/hajimehoshi/ebiten/v2/audio"
"github.com/hajimehoshi/ebiten/v2/audio/mp3"
"github.com/hajimehoshi/ebiten/v2/audio/vorbis"
"github.com/hajimehoshi/ebiten/v2/audio/wav"
"github.com/hajimehoshi/ebiten/v2/ebitenutil"
raudio "github.com/hajimehoshi/ebiten/v2/examples/resources/audio"
"github.com/hajimehoshi/ebiten/v2/inpututil"
)
const (
screenWidth = 640
screenHeight = 480
2017-06-03 16:23:02 +02:00
sampleRate = 32000
)
2016-03-17 14:59:29 +01:00
var (
2017-08-18 05:11:59 +02:00
playerBarColor = color.RGBA{0x80, 0x80, 0x80, 0xff}
playerCurrentColor = color.RGBA{0xff, 0xff, 0xff, 0xff}
2016-03-17 14:59:29 +01:00
)
type musicType int
const (
typeOgg musicType = iota
typeMP3
)
func (t musicType) String() string {
switch t {
case typeOgg:
return "Ogg"
case typeMP3:
return "MP3"
default:
panic("not reached")
}
}
2018-01-21 18:15:04 +01:00
// Player represents the current audio state.
type Player struct {
audioContext *audio.Context
audioPlayer *audio.Player
current time.Duration
total time.Duration
2018-01-21 18:15:04 +01:00
seBytes []byte
seCh chan []byte
volume128 int
musicType musicType
}
2016-03-19 17:40:10 +01:00
func playerBarRect() (x, y, w, h int) {
w, h = 600, 8
2016-03-19 17:40:10 +01:00
x = (screenWidth - w) / 2
y = screenHeight - h - 16
return
}
func NewPlayer(audioContext *audio.Context, musicType musicType) (*Player, error) {
type audioStream interface {
io.ReadSeeker
Length() int64
}
2017-06-03 16:23:02 +02:00
const bytesPerSample = 4 // TODO: This should be defined in audio package
var s audioStream
switch musicType {
case typeOgg:
var err error
s, err = vorbis.Decode(audioContext, bytes.NewReader(raudio.Ragtime_ogg))
if err != nil {
return nil, err
}
case typeMP3:
var err error
s, err = mp3.Decode(audioContext, bytes.NewReader(raudio.Ragtime_mp3))
if err != nil {
return nil, err
}
default:
panic("not reached")
2017-06-03 16:23:02 +02:00
}
p, err := audio.NewPlayer(audioContext, s)
if err != nil {
return nil, err
}
player := &Player{
audioContext: audioContext,
audioPlayer: p,
total: time.Second * time.Duration(s.Length()) / bytesPerSample / sampleRate,
volume128: 128,
2018-01-21 18:15:04 +01:00
seCh: make(chan []byte),
musicType: musicType,
2017-06-03 16:23:02 +02:00
}
2017-06-11 11:12:12 +02:00
if player.total == 0 {
player.total = 1
}
2017-06-03 16:23:02 +02:00
player.audioPlayer.Play()
go func() {
s, err := wav.Decode(audioContext, bytes.NewReader(raudio.Jab_wav))
if err != nil {
log.Fatal(err)
return
}
b, err := ioutil.ReadAll(s)
if err != nil {
log.Fatal(err)
return
}
player.seCh <- b
}()
2017-06-03 16:23:02 +02:00
return player, nil
}
func (p *Player) Close() error {
return p.audioPlayer.Close()
}
2017-06-03 16:23:02 +02:00
func (p *Player) update() error {
select {
case p.seBytes = <-p.seCh:
close(p.seCh)
p.seCh = nil
2017-06-03 16:23:02 +02:00
default:
}
2018-01-21 18:15:04 +01:00
if p.audioPlayer.IsPlaying() {
p.current = p.audioPlayer.Current()
}
2018-01-21 18:15:04 +01:00
p.seekBarIfNeeded()
p.switchPlayStateIfNeeded()
p.playSEIfNeeded()
p.updateVolumeIfNeeded()
if inpututil.IsKeyJustPressed(ebiten.KeyU) {
b := ebiten.IsRunnableOnUnfocused()
ebiten.SetRunnableOnUnfocused(!b)
}
2017-06-03 16:23:02 +02:00
return nil
}
2018-01-21 18:15:04 +01:00
func (p *Player) playSEIfNeeded() {
if p.seBytes == nil {
2018-01-21 18:15:04 +01:00
// Bytes for the SE is not loaded yet.
return
2016-03-27 12:10:16 +02:00
}
2018-01-21 18:15:04 +01:00
2018-02-04 15:18:32 +01:00
if !inpututil.IsKeyJustPressed(ebiten.KeyP) {
return
2016-03-27 12:10:16 +02:00
}
sePlayer := audio.NewPlayerFromBytes(p.audioContext, p.seBytes)
sePlayer.Play()
2016-03-27 12:10:16 +02:00
}
2018-01-21 18:15:04 +01:00
func (p *Player) updateVolumeIfNeeded() {
2018-02-04 15:18:32 +01:00
if ebiten.IsKeyPressed(ebiten.KeyZ) {
p.volume128--
2016-03-28 04:06:17 +02:00
}
2018-02-04 15:18:32 +01:00
if ebiten.IsKeyPressed(ebiten.KeyX) {
p.volume128++
2016-03-28 04:06:17 +02:00
}
if p.volume128 < 0 {
p.volume128 = 0
2016-03-28 04:06:17 +02:00
}
if 128 < p.volume128 {
p.volume128 = 128
2016-03-28 04:06:17 +02:00
}
p.audioPlayer.SetVolume(float64(p.volume128) / 128)
2016-03-28 04:06:17 +02:00
}
2018-01-21 18:15:04 +01:00
func (p *Player) switchPlayStateIfNeeded() {
2018-02-04 15:18:32 +01:00
if !inpututil.IsKeyJustPressed(ebiten.KeyS) {
return
2016-03-20 17:38:15 +01:00
}
if p.audioPlayer.IsPlaying() {
p.audioPlayer.Pause()
return
2016-03-20 17:38:15 +01:00
}
p.audioPlayer.Play()
2016-03-20 17:38:15 +01:00
}
2021-02-21 11:20:24 +01:00
func justPressedPosition() (int, int, bool) {
if inpututil.IsMouseButtonJustPressed(ebiten.MouseButtonLeft) {
x, y := ebiten.CursorPosition()
return x, y, true
2016-03-19 17:40:10 +01:00
}
2018-01-21 18:15:04 +01:00
2021-02-21 11:20:24 +01:00
if ts := inpututil.JustPressedTouchIDs(); len(ts) > 0 {
x, y := ebiten.TouchPosition(ts[0])
return x, y, true
}
return 0, 0, false
}
func (p *Player) seekBarIfNeeded() {
2018-01-21 18:15:04 +01:00
// Calculate the next seeking position from the current cursor position.
2021-02-21 11:20:24 +01:00
x, y, ok := justPressedPosition()
if !ok {
return
}
2016-03-19 17:40:10 +01:00
bx, by, bw, bh := playerBarRect()
2016-04-18 19:45:51 +02:00
const padding = 4
if y < by-padding || by+bh+padding <= y {
return
2016-03-19 17:40:10 +01:00
}
if x < bx || bx+bw <= x {
return
2016-03-19 17:40:10 +01:00
}
pos := time.Duration(x-bx) * p.total / time.Duration(bw)
p.current = pos
p.audioPlayer.Seek(pos)
2016-03-19 17:40:10 +01:00
}
2017-06-03 16:23:02 +02:00
func (p *Player) draw(screen *ebiten.Image) {
2018-01-21 18:15:04 +01:00
// Draw the bar.
2016-03-19 17:40:10 +01:00
x, y, w, h := playerBarRect()
2017-08-18 05:11:59 +02:00
ebitenutil.DrawRect(screen, float64(x), float64(y), float64(w), float64(h), playerBarColor)
2018-01-21 18:15:04 +01:00
// Draw the cursor on the bar.
c := p.current
cw, ch := 8, 20
2017-06-03 16:23:02 +02:00
cx := int(time.Duration(w)*c/p.total) + x - cw/2
cy := y - (ch-h)/2
2017-08-18 05:11:59 +02:00
ebitenutil.DrawRect(screen, float64(cx), float64(cy), float64(cw), float64(ch), playerCurrentColor)
2016-03-17 14:59:29 +01:00
2018-01-21 18:15:04 +01:00
// Compose the curren time text.
m := (c / time.Minute) % 100
s := (c / time.Second) % 60
currentTimeStr := fmt.Sprintf("%02d:%02d", m, s)
// Draw the debug message.
msg := fmt.Sprintf(`TPS: %0.2f
2016-03-20 17:38:15 +01:00
Press S to toggle Play/Pause
2016-03-27 12:10:16 +02:00
Press P to play SE
2016-03-28 04:06:17 +02:00
Press Z or X to change volume of the music
Press U to switch the runnable-on-unfocused state
Press A to switch Ogg and MP3 (Current: %s)
Current Time: %s
Current Volume: %d/128
Type: %s`, ebiten.CurrentTPS(), p.musicType,
currentTimeStr, int(p.audioPlayer.Volume()*128), p.musicType)
2017-06-03 16:23:02 +02:00
ebitenutil.DebugPrint(screen, msg)
}
2020-04-12 11:18:45 +02:00
type Game struct {
musicPlayer *Player
2020-04-12 11:18:45 +02:00
musicPlayerCh chan *Player
errCh chan error
}
func NewGame() (*Game, error) {
audioContext := audio.NewContext(sampleRate)
2020-04-12 11:18:45 +02:00
m, err := NewPlayer(audioContext, typeOgg)
if err != nil {
return nil, err
}
2018-01-21 18:15:04 +01:00
2020-04-12 11:18:45 +02:00
return &Game{
musicPlayer: m,
musicPlayerCh: make(chan *Player),
errCh: make(chan error),
}, nil
}
func (g *Game) Update() error {
select {
2020-04-12 11:18:45 +02:00
case p := <-g.musicPlayerCh:
g.musicPlayer = p
case err := <-g.errCh:
2017-06-03 16:23:02 +02:00
return err
default:
}
2020-04-12 11:18:45 +02:00
if g.musicPlayer != nil && inpututil.IsKeyJustPressed(ebiten.KeyA) {
var t musicType
2020-04-12 11:18:45 +02:00
switch g.musicPlayer.musicType {
case typeOgg:
t = typeMP3
case typeMP3:
t = typeOgg
default:
panic("not reached")
}
2020-04-12 11:18:45 +02:00
g.musicPlayer.Close()
g.musicPlayer = nil
go func() {
p, err := NewPlayer(audio.CurrentContext(), t)
if err != nil {
2020-04-12 11:18:45 +02:00
g.errCh <- err
return
}
2020-04-12 11:18:45 +02:00
g.musicPlayerCh <- p
}()
}
2020-04-12 11:18:45 +02:00
if g.musicPlayer != nil {
if err := g.musicPlayer.update(); err != nil {
return err
}
2017-06-03 16:23:02 +02:00
}
2020-04-12 11:18:45 +02:00
return nil
}
2018-01-21 18:15:04 +01:00
2020-04-12 11:18:45 +02:00
func (g *Game) Draw(screen *ebiten.Image) {
if g.musicPlayer != nil {
g.musicPlayer.draw(screen)
2017-06-03 16:23:02 +02:00
}
2020-04-12 11:18:45 +02:00
}
2018-01-21 18:15:04 +01:00
2020-04-12 11:18:45 +02:00
func (g *Game) Layout(outsideWidth, outsideHeight int) (int, int) {
return screenWidth, screenHeight
}
func main() {
ebiten.SetWindowSize(screenWidth, screenHeight)
2020-04-12 11:18:45 +02:00
ebiten.SetWindowTitle("Audio (Ebiten Demo)")
g, err := NewGame()
2017-06-03 16:23:02 +02:00
if err != nil {
log.Fatal(err)
}
2020-04-12 11:18:45 +02:00
if err := ebiten.RunGame(g); err != nil {
log.Fatal(err)
}
}