mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
46 lines
876 B
Go
46 lines
876 B
Go
package ebiten
|
|
|
|
import (
|
|
"github.com/hajimehoshi/go.ebiten/graphics"
|
|
"github.com/hajimehoshi/go.ebiten/graphics/opengl"
|
|
"time"
|
|
)
|
|
|
|
type Game interface {
|
|
ScreenWidth() int
|
|
ScreenHeight() int
|
|
Init(tf graphics.TextureFactory)
|
|
Update()
|
|
Draw(g graphics.GraphicsContext, offscreen graphics.Texture)
|
|
}
|
|
|
|
type UI interface {
|
|
Run(device graphics.Device)
|
|
}
|
|
|
|
func OpenGLRun(game Game, ui UI, screenScale int) {
|
|
ch := make(chan bool, 1)
|
|
device := opengl.NewDevice(
|
|
game.ScreenWidth(), game.ScreenHeight(), 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
|
|
}
|
|
}()
|
|
|
|
game.Init(device.TextureFactory())
|
|
ch <- true
|
|
ui.Run(device)
|
|
}
|