mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
39 lines
733 B
Go
39 lines
733 B
Go
package ebiten
|
|
|
|
import (
|
|
"time"
|
|
"github.com/hajimehoshi/go-ebiten/graphics"
|
|
"github.com/hajimehoshi/go-ebiten/graphics/opengl"
|
|
"github.com/hajimehoshi/go-ebiten/ui"
|
|
)
|
|
|
|
type Game interface {
|
|
Update()
|
|
Draw(g graphics.GraphicsContext, offscreen graphics.Texture)
|
|
}
|
|
|
|
func OpenGLRun(game Game, u ui.UI) {
|
|
ch := make(chan bool, 1)
|
|
device := opengl.NewDevice(
|
|
u.ScreenWidth(), u.ScreenHeight(), u.ScreenScale(),
|
|
func(g graphics.GraphicsContext, offscreen graphics.Texture) {
|
|
ticket := <-ch
|
|
game.Draw(g, offscreen)
|
|
ch<- ticket
|
|
})
|
|
|
|
go func() {
|
|
const frameTime = time.Second / 60
|
|
tick := time.Tick(frameTime)
|
|
for {
|
|
<-tick
|
|
ticket := <-ch
|
|
game.Update()
|
|
ch<- ticket
|
|
}
|
|
}()
|
|
ch<- true
|
|
|
|
u.Run(device)
|
|
}
|