ebiten/examples/sinewave/main.go

109 lines
2.6 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.
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 = 640
screenHeight = 480
sampleRate = 48000
2016-02-13 14:37:55 +01:00
frequency = 440
)
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 {
2024-07-22 16:12:50 +02:00
pos int64
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) {
2024-07-22 16:12:50 +02:00
const bytesPerSample = 8
2019-01-19 10:36:03 +01:00
2024-07-22 16:12:50 +02:00
n := len(buf) / bytesPerSample * bytesPerSample
2019-01-19 10:36:03 +01:00
2024-07-22 16:12:50 +02:00
const length = sampleRate / frequency
for i := 0; i < n/bytesPerSample; i++ {
v := math.Float32bits(float32(math.Sin(2 * math.Pi * float64(s.pos/bytesPerSample+int64(i)) / length)))
buf[8*i] = byte(v)
buf[8*i+1] = byte(v >> 8)
buf[8*i+2] = byte(v >> 16)
buf[8*i+3] = byte(v >> 24)
buf[8*i+4] = byte(v)
buf[8*i+5] = byte(v >> 8)
buf[8*i+6] = byte(v >> 16)
buf[8*i+7] = byte(v >> 24)
2016-02-13 14:37:55 +01:00
}
2019-01-19 10:36:03 +01:00
2024-07-22 16:12:50 +02:00
s.pos += int64(n)
s.pos %= length * bytesPerSample
2019-01-19 10:36:03 +01:00
2024-07-22 16:12:50 +02:00
return n, 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 {
audioContext *audio.Context
player *audio.Player
2020-05-30 14:14:10 +02:00
}
2016-02-13 14:37:55 +01:00
func (g *Game) Update() error {
if g.audioContext == nil {
g.audioContext = audio.NewContext(sampleRate)
}
2020-05-30 14:14:10 +02:00
if g.player == nil {
// Pass the (infinite) stream to NewPlayer.
2018-01-29 20:12:58 +01:00
// 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
g.player, err = g.audioContext.NewPlayerF32(&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.ActualTPS())
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() {
ebiten.SetWindowSize(screenWidth, screenHeight)
ebiten.SetWindowTitle("Sine Wave (Ebitengine Demo)")
2020-05-30 14:14:10 +02:00
if err := ebiten.RunGame(&Game{}); err != nil {
2016-02-13 14:37:55 +01:00
log.Fatal(err)
}
}