mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
59 lines
1.1 KiB
Go
59 lines
1.1 KiB
Go
package main
|
|
|
|
import (
|
|
"github.com/hajimehoshi/ebiten/example/blocks"
|
|
"github.com/hajimehoshi/ebiten/graphics"
|
|
"github.com/hajimehoshi/ebiten/ui"
|
|
"github.com/hajimehoshi/ebiten/ui/dummy"
|
|
"os"
|
|
"os/signal"
|
|
"runtime"
|
|
"syscall"
|
|
"time"
|
|
)
|
|
|
|
type Game interface {
|
|
Update(state ui.InputState)
|
|
Draw(c graphics.Context)
|
|
}
|
|
|
|
func init() {
|
|
runtime.LockOSThread()
|
|
}
|
|
|
|
func main() {
|
|
const screenWidth = blocks.ScreenWidth
|
|
const screenHeight = blocks.ScreenHeight
|
|
const screenScale = 2
|
|
const fps = 60
|
|
const frameTime = time.Duration(int64(time.Second) / int64(fps))
|
|
const title = "Ebiten Demo"
|
|
|
|
u := new(dummy.UI)
|
|
canvas := u.CreateCanvas(screenWidth, screenHeight, screenScale, title)
|
|
|
|
textureFactory := new(dummy.TextureFactory)
|
|
var game Game = blocks.NewGame(NewTextures(textureFactory))
|
|
tick := time.Tick(frameTime)
|
|
|
|
sigterm := make(chan os.Signal, 1)
|
|
signal.Notify(sigterm, os.Interrupt, syscall.SIGTERM)
|
|
|
|
u.Start()
|
|
defer u.Terminate()
|
|
for {
|
|
u.DoEvents()
|
|
select {
|
|
default:
|
|
canvas.Draw(game.Draw)
|
|
case <-tick:
|
|
game.Update(canvas.InputState())
|
|
if canvas.IsClosed() {
|
|
return
|
|
}
|
|
case <-sigterm:
|
|
return
|
|
}
|
|
}
|
|
}
|