ebiten/examples/sinewave/main.go

130 lines
2.8 KiB
Go
Raw Normal View History

2016-02-13 14:37:55 +01:00
// 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.
// +build example jsgo
2016-02-13 14:37:55 +01:00
package main
import (
"fmt"
"log"
"math"
2020-10-03 19:35:13 +02:00
"github.com/hajimehoshi/ebiten/v2"
"github.com/hajimehoshi/ebiten/v2/audio"
"github.com/hajimehoshi/ebiten/v2/ebitenutil"
2016-02-13 14:37:55 +01:00
)
const (
screenWidth = 320
screenHeight = 240
sampleRate = 44100
frequency = 440
)
2016-03-02 16:48:59 +01:00
var audioContext *audio.Context
func init() {
var err error
audioContext, err = audio.NewContext(sampleRate)
if err != nil {
log.Fatal(err)
}
2016-03-02 16:48:59 +01:00
}
2018-01-29 20:12:58 +01:00
// stream is an infinite stream of 440 Hz sine wave.
2016-02-13 14:37:55 +01:00
type stream struct {
2019-01-19 10:36:03 +01:00
position int64
remaining []byte
2016-02-13 14:37:55 +01:00
}
2018-01-29 20:12:58 +01:00
// Read is io.Reader's Read.
//
// Read fills the data with sine wave samples.
2019-01-19 10:36:03 +01:00
func (s *stream) Read(buf []byte) (int, error) {
if len(s.remaining) > 0 {
n := copy(buf, s.remaining)
s.remaining = s.remaining[n:]
return n, nil
2016-02-13 14:37:55 +01:00
}
2019-01-19 10:36:03 +01:00
var origBuf []byte
if len(buf)%4 > 0 {
origBuf = buf
buf = make([]byte, len(origBuf)+4-len(origBuf)%4)
}
const length = int64(sampleRate / frequency)
2016-02-13 14:37:55 +01:00
p := s.position / 4
2019-01-19 10:36:03 +01:00
for i := 0; i < len(buf)/4; i++ {
const max = 32767
2019-01-19 10:36:03 +01:00
b := int16(math.Sin(2*math.Pi*float64(p)/float64(length)) * max)
buf[4*i] = byte(b)
buf[4*i+1] = byte(b >> 8)
buf[4*i+2] = byte(b)
buf[4*i+3] = byte(b >> 8)
2016-02-13 14:37:55 +01:00
p++
}
2019-01-19 10:36:03 +01:00
s.position += int64(len(buf))
2016-02-13 14:37:55 +01:00
s.position %= length * 4
2019-01-19 10:36:03 +01:00
if origBuf != nil {
n := copy(origBuf, buf)
s.remaining = buf[n:]
return n, nil
2019-01-19 10:36:03 +01:00
}
return len(buf), nil
2016-02-13 14:37:55 +01:00
}
2018-01-29 20:12:58 +01:00
// Close is io.Closer's Close.
2016-03-28 17:06:37 +02:00
func (s *stream) Close() error {
return nil
}
2020-05-30 14:14:10 +02:00
type Game struct {
player *audio.Player
}
2016-02-13 14:37:55 +01:00
func (g *Game) Update() error {
2020-05-30 14:14:10 +02:00
if g.player == nil {
2018-01-29 20:12:58 +01:00
// Pass the (infinite) stream to audio.NewPlayer.
// After calling Play, the stream never ends as long as the player object lives.
2016-02-13 14:37:55 +01:00
var err error
2020-05-30 14:14:10 +02:00
g.player, err = audio.NewPlayer(audioContext, &stream{})
2016-02-13 14:37:55 +01:00
if err != nil {
return err
}
2020-05-30 14:14:10 +02:00
g.player.Play()
2017-05-16 03:35:58 +02:00
}
2020-05-30 14:14:10 +02:00
return nil
}
func (g *Game) Draw(screen *ebiten.Image) {
msg := fmt.Sprintf("TPS: %0.2f\nThis is an example using infinite audio stream.", ebiten.CurrentTPS())
ebitenutil.DebugPrint(screen, msg)
2020-05-30 14:14:10 +02:00
}
func (g *Game) Layout(outsideWidth, outsideHeight int) (int, int) {
return screenWidth, screenHeight
2016-02-13 14:37:55 +01:00
}
func main() {
2020-05-30 14:14:10 +02:00
ebiten.SetWindowSize(screenWidth*2, screenHeight*2)
ebiten.SetWindowTitle("Sine Wave (Ebiten Demo)")
if err := ebiten.RunGame(&Game{}); err != nil {
2016-02-13 14:37:55 +01:00
log.Fatal(err)
}
}