ebiten/ui/glfw/ui.go

65 lines
1.3 KiB
Go
Raw Normal View History

2014-12-05 18:26:02 +01:00
package glfw
import (
2014-12-06 20:14:35 +01:00
"errors"
"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) {
panic(fmt.Sprintf("%v: %v\n", err, desc))
2014-12-05 18:26:02 +01:00
})
}
type UI struct {
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)
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() {
c.contextUpdater, err = opengl.Initialize(width, height, realScale)
})
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()
}