2014-12-05 18:26:02 +01:00
|
|
|
package glfw
|
|
|
|
|
|
|
|
import (
|
2014-12-06 20:14:35 +01:00
|
|
|
"errors"
|
2014-12-07 15:18:56 +01:00
|
|
|
"fmt"
|
2014-12-05 18:26:02 +01:00
|
|
|
glfw "github.com/go-gl/glfw3"
|
2014-12-07 20:22:50 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/graphics"
|
|
|
|
"github.com/hajimehoshi/ebiten/graphics/opengl"
|
|
|
|
"github.com/hajimehoshi/ebiten/input"
|
2014-12-05 18:26:02 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/ui"
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2014-12-06 14:56:57 +01:00
|
|
|
glfw.SetErrorCallback(func(err glfw.ErrorCode, desc string) {
|
2014-12-07 15:18:56 +01:00
|
|
|
panic(fmt.Sprintf("%v: %v\n", err, desc))
|
2014-12-05 18:26:02 +01:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
type UI struct {
|
2014-12-07 15:18:56 +01:00
|
|
|
canvas *canvas
|
2014-12-05 18:26:02 +01:00
|
|
|
}
|
|
|
|
|
2014-12-06 20:14:35 +01:00
|
|
|
func (u *UI) Start(width, height, scale int, title string) (ui.Canvas, error) {
|
2014-12-05 18:26:02 +01:00
|
|
|
if !glfw.Init() {
|
2014-12-06 20:14:35 +01:00
|
|
|
return nil, errors.New("glfw.Init() fails")
|
2014-12-05 18:26:02 +01:00
|
|
|
}
|
|
|
|
glfw.WindowHint(glfw.Resizable, glfw.False)
|
2014-12-07 20:22:50 +01:00
|
|
|
window, err := glfw.CreateWindow(width*scale, height*scale, title, nil, nil)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
c := &canvas{
|
|
|
|
window: window,
|
|
|
|
funcs: make(chan func()),
|
|
|
|
funcsDone: make(chan struct{}),
|
|
|
|
}
|
|
|
|
input.SetKeyboard(&c.keyboard)
|
2014-12-08 14:51:40 +01:00
|
|
|
input.SetMouse(&c.mouse)
|
2014-12-07 20:22:50 +01:00
|
|
|
graphics.SetTextureFactory(c)
|
|
|
|
|
|
|
|
c.run(width, height, scale)
|
|
|
|
|
|
|
|
// For retina displays, recalculate the scale with the framebuffer size.
|
|
|
|
windowWidth, _ := window.GetFramebufferSize()
|
|
|
|
realScale := windowWidth / width
|
|
|
|
c.use(func() {
|
2014-12-08 17:08:47 +01:00
|
|
|
c.context, err = opengl.Initialize(width, height, realScale)
|
2014-12-07 20:22:50 +01:00
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
u.canvas = c
|
|
|
|
return c, nil
|
2014-12-05 18:26:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (u *UI) DoEvents() {
|
2014-12-06 14:56:57 +01:00
|
|
|
glfw.PollEvents()
|
2014-12-05 19:10:17 +01:00
|
|
|
u.canvas.update()
|
2014-12-05 18:26:02 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (u *UI) Terminate() {
|
|
|
|
glfw.Terminate()
|
|
|
|
}
|