2014-12-05 18:26:02 +01:00
|
|
|
package glfw
|
|
|
|
|
|
|
|
import (
|
|
|
|
glfw "github.com/go-gl/glfw3"
|
2014-12-09 14:09:22 +01:00
|
|
|
"github.com/hajimehoshi/ebiten"
|
|
|
|
"github.com/hajimehoshi/ebiten/opengl"
|
2014-12-05 18:26:02 +01:00
|
|
|
"image"
|
|
|
|
"runtime"
|
|
|
|
)
|
|
|
|
|
2014-12-07 15:18:56 +01:00
|
|
|
type canvas struct {
|
2014-12-08 17:08:47 +01:00
|
|
|
window *glfw.Window
|
2014-12-09 14:09:22 +01:00
|
|
|
context *opengl.GraphicsContext
|
2014-12-08 17:08:47 +01:00
|
|
|
keyboard keyboard
|
|
|
|
mouse mouse
|
|
|
|
funcs chan func()
|
|
|
|
funcsDone chan struct{}
|
2014-12-05 18:26:02 +01:00
|
|
|
}
|
|
|
|
|
2014-12-09 14:09:22 +01:00
|
|
|
func (c *canvas) Draw(d ebiten.Drawer2) (err error) {
|
2014-12-05 18:26:02 +01:00
|
|
|
c.use(func() {
|
2014-12-08 17:08:47 +01:00
|
|
|
c.context.PreUpdate()
|
|
|
|
})
|
|
|
|
if err = d.Draw(&context{c}); err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
c.use(func() {
|
|
|
|
c.context.PostUpdate()
|
2014-12-05 18:26:02 +01:00
|
|
|
c.window.SwapBuffers()
|
|
|
|
})
|
2014-12-06 20:14:35 +01:00
|
|
|
return
|
2014-12-05 18:26:02 +01:00
|
|
|
}
|
|
|
|
|
2014-12-07 15:18:56 +01:00
|
|
|
func (c *canvas) IsClosed() bool {
|
2014-12-05 18:26:02 +01:00
|
|
|
return c.window.ShouldClose()
|
|
|
|
}
|
|
|
|
|
2014-12-09 14:09:22 +01:00
|
|
|
func (c *canvas) NewTextureID(img image.Image, filter ebiten.Filter) (ebiten.TextureID, error) {
|
|
|
|
var id ebiten.TextureID
|
2014-12-05 18:26:02 +01:00
|
|
|
var err error
|
|
|
|
c.use(func() {
|
2014-12-07 11:25:49 +01:00
|
|
|
id, err = opengl.NewTextureID(img, filter)
|
2014-12-05 18:26:02 +01:00
|
|
|
})
|
|
|
|
return id, err
|
|
|
|
}
|
|
|
|
|
2014-12-09 14:09:22 +01:00
|
|
|
func (c *canvas) NewRenderTargetID(width, height int, filter ebiten.Filter) (ebiten.RenderTargetID, error) {
|
|
|
|
var id ebiten.RenderTargetID
|
2014-12-05 18:26:02 +01:00
|
|
|
var err error
|
|
|
|
c.use(func() {
|
2014-12-07 11:25:49 +01:00
|
|
|
id, err = opengl.NewRenderTargetID(width, height, filter)
|
2014-12-05 18:26:02 +01:00
|
|
|
})
|
|
|
|
return id, err
|
|
|
|
}
|
|
|
|
|
2014-12-07 20:22:50 +01:00
|
|
|
func (c *canvas) run(width, height, scale int) {
|
2014-12-05 18:26:02 +01:00
|
|
|
go func() {
|
|
|
|
runtime.LockOSThread()
|
|
|
|
c.window.MakeContextCurrent()
|
|
|
|
glfw.SwapInterval(1)
|
|
|
|
for {
|
2014-12-08 17:35:35 +01:00
|
|
|
(<-c.funcs)()
|
2014-12-05 18:26:02 +01:00
|
|
|
c.funcsDone <- struct{}{}
|
|
|
|
}
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
2014-12-07 15:18:56 +01:00
|
|
|
func (c *canvas) use(f func()) {
|
2014-12-05 18:26:02 +01:00
|
|
|
c.funcs <- f
|
|
|
|
<-c.funcsDone
|
|
|
|
}
|
2014-12-05 19:10:17 +01:00
|
|
|
|
2014-12-07 15:18:56 +01:00
|
|
|
func (c *canvas) update() {
|
2014-12-06 19:27:55 +01:00
|
|
|
c.keyboard.update(c.window)
|
2014-12-08 14:51:40 +01:00
|
|
|
c.mouse.update(c.window)
|
2014-12-05 19:10:17 +01:00
|
|
|
}
|