ebiten/internal/ui/ui_glfw.go

322 lines
6.8 KiB
Go
Raw Normal View History

2015-01-01 17:20:20 +01:00
// Copyright 2015 Hajime Hoshi
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
2014-12-09 15:16:04 +01:00
2016-06-14 15:43:37 +02:00
// +build darwin,!arm,!arm64 linux windows
2015-01-02 07:20:05 +01:00
// +build !js
// +build !android
2016-06-15 17:49:22 +02:00
// +build !ios
2015-01-02 07:20:05 +01:00
2015-01-27 14:02:23 +01:00
package ui
2014-12-05 18:26:02 +01:00
import (
"errors"
2014-12-14 10:57:29 +01:00
"runtime"
"time"
2015-06-20 18:33:28 +02:00
2016-02-21 09:12:00 +01:00
"github.com/go-gl/glfw/v3.1/glfw"
2016-02-19 03:43:16 +01:00
"github.com/hajimehoshi/ebiten/internal/graphics/opengl"
2014-12-05 18:26:02 +01:00
)
type userInterface struct {
2016-07-04 04:37:34 +02:00
window *glfw.Window
width int
height int
scale float64
funcs chan func()
sizeChanged bool
2016-03-24 16:38:30 +01:00
}
var currentUI *userInterface
2016-03-24 16:38:30 +01:00
func CurrentUI() UserInterface {
2016-05-18 03:59:37 +02:00
return currentUI
}
2016-07-23 13:25:52 +02:00
func init() {
if err := initialize(); err != nil {
panic(err)
}
}
func initialize() error {
runtime.LockOSThread()
2014-12-05 18:26:02 +01:00
2016-05-07 15:27:10 +02:00
if err := glfw.Init(); err != nil {
2016-07-23 13:25:52 +02:00
return err
2014-12-05 18:26:02 +01:00
}
glfw.WindowHint(glfw.Visible, glfw.False)
2014-12-05 18:26:02 +01:00
glfw.WindowHint(glfw.Resizable, glfw.False)
2016-02-21 09:27:26 +01:00
glfw.WindowHint(glfw.ContextVersionMajor, 2)
glfw.WindowHint(glfw.ContextVersionMinor, 1)
2015-02-09 02:25:00 +01:00
// As start, create an window with temporary size to create OpenGL context thread.
window, err := glfw.CreateWindow(16, 16, "", nil, nil)
2014-12-07 20:22:50 +01:00
if err != nil {
2016-07-23 13:25:52 +02:00
return err
2014-12-07 20:22:50 +01:00
}
u := &userInterface{
window: window,
funcs: make(chan func()),
sizeChanged: true,
2014-12-07 20:22:50 +01:00
}
u.window.MakeContextCurrent()
glfw.SwapInterval(1)
currentUI = u
2016-07-23 13:25:52 +02:00
return nil
}
func Main(ch <-chan error) error {
return currentUI.main(ch)
2016-05-06 05:23:48 +02:00
}
func (u *userInterface) main(ch <-chan error) error {
2016-05-06 05:23:48 +02:00
// TODO: Check this is done on the main thread.
for {
select {
case f := <-u.funcs:
f()
case err := <-ch:
// ch returns a value not only when an error occur but also it is closed.
return err
}
2016-05-06 05:23:48 +02:00
}
}
2016-07-23 14:01:30 +02:00
func (u *userInterface) runOnMainThread(f func() error) error {
2016-05-06 05:23:48 +02:00
if u.funcs == nil {
// already closed
2016-07-23 14:01:30 +02:00
return nil
2016-05-06 05:23:48 +02:00
}
ch := make(chan struct{})
2016-07-23 14:01:30 +02:00
var err error
2016-05-06 05:23:48 +02:00
u.funcs <- func() {
2016-07-23 14:01:30 +02:00
err = f()
2016-05-06 05:23:48 +02:00
close(ch)
}
<-ch
2016-07-23 14:01:30 +02:00
return err
2016-05-06 05:23:48 +02:00
}
2016-08-03 16:44:54 +02:00
func (u *userInterface) SetScreenSize(width, height int) (bool, error) {
2016-05-06 05:23:48 +02:00
r := false
2016-08-03 16:44:54 +02:00
if err := u.runOnMainThread(func() error {
var err error
r, err = u.setScreenSize(width, height, u.scale)
if err != nil {
return err
}
2016-07-23 14:01:30 +02:00
return nil
2016-08-03 16:44:54 +02:00
}); err != nil {
return false, err
}
return r, nil
2015-01-27 14:02:23 +01:00
}
2016-08-03 16:44:54 +02:00
func (u *userInterface) SetScreenScale(scale float64) (bool, error) {
2016-05-06 05:23:48 +02:00
r := false
2016-08-03 16:44:54 +02:00
if err := u.runOnMainThread(func() error {
var err error
r, err = u.setScreenSize(u.width, u.height, scale)
if err != nil {
return err
}
2016-07-23 14:01:30 +02:00
return nil
2016-08-03 16:44:54 +02:00
}); err != nil {
return false, err
}
return r, nil
2015-01-27 14:02:23 +01:00
}
2016-06-18 19:59:17 +02:00
func (u *userInterface) ScreenScale() float64 {
s := 0.0
2016-08-03 16:44:54 +02:00
_ = u.runOnMainThread(func() error {
2016-05-06 05:23:48 +02:00
s = u.scale
2016-07-23 14:01:30 +02:00
return nil
2016-05-06 05:23:48 +02:00
})
return s
2015-01-27 14:02:23 +01:00
}
2016-09-01 19:31:03 +02:00
func (u *userInterface) Run(width, height int, scale float64, title string, g GraphicsContext) error {
2016-07-23 21:32:12 +02:00
// GLContext must be created before setting the screen size, which requires
2016-07-23 15:17:36 +02:00
// swapping buffers.
var err error
glContext, err = opengl.NewContext(currentUI.runOnMainThread)
if err != nil {
return err
}
2016-07-23 14:01:30 +02:00
if err := u.runOnMainThread(func() error {
2016-05-06 05:23:48 +02:00
m := glfw.GetPrimaryMonitor()
v := m.GetVideoMode()
2016-08-03 16:44:54 +02:00
r, err := u.setScreenSize(width, height, scale)
if err != nil {
return err
}
if !r {
2016-07-23 14:01:30 +02:00
return errors.New("ui: Fail to set the screen size")
2016-05-06 05:23:48 +02:00
}
u.window.SetTitle(title)
u.window.Show()
2014-12-14 10:57:29 +01:00
2016-07-04 04:37:34 +02:00
w, h := u.glfwSize()
x := (v.Width - w) / 2
y := (v.Height - h) / 3
2016-05-06 05:23:48 +02:00
u.window.SetPos(x, y)
2016-07-23 14:01:30 +02:00
return nil
}); err != nil {
return err
}
2016-09-01 19:31:03 +02:00
return u.loop(g)
}
2016-07-04 04:37:34 +02:00
func (u *userInterface) glfwSize() (int, int) {
return int(float64(u.width) * u.scale * glfwScale()), int(float64(u.height) * u.scale * glfwScale())
2016-02-26 17:35:14 +01:00
}
2016-06-18 19:59:17 +02:00
func (u *userInterface) actualScreenScale() float64 {
2016-07-04 04:37:34 +02:00
return u.scale * deviceScale()
2015-01-01 17:20:20 +01:00
}
func (u *userInterface) pollEvents() error {
2014-12-06 14:56:57 +01:00
glfw.PollEvents()
2016-07-04 04:37:34 +02:00
return currentInput.update(u.window, u.scale*glfwScale())
2014-12-05 18:26:02 +01:00
}
2016-09-01 17:53:05 +02:00
func (u *userInterface) update(g GraphicsContext) error {
2016-05-17 18:30:27 +02:00
shouldClose := false
2016-08-03 16:44:54 +02:00
_ = u.runOnMainThread(func() error {
2016-05-17 18:30:27 +02:00
shouldClose = u.window.ShouldClose()
2016-07-23 14:01:30 +02:00
return nil
2016-05-17 18:30:27 +02:00
})
if shouldClose {
2016-09-01 17:53:05 +02:00
return &RegularTermination{}
2016-05-17 18:30:27 +02:00
}
2016-09-01 17:53:05 +02:00
actualScale := 0.0
2016-08-03 16:44:54 +02:00
_ = u.runOnMainThread(func() error {
if !u.sizeChanged {
2016-07-23 14:01:30 +02:00
return nil
}
u.sizeChanged = false
2016-09-01 17:53:05 +02:00
actualScale = u.actualScreenScale()
2016-07-23 14:01:30 +02:00
return nil
})
2016-09-01 17:53:05 +02:00
if 0 < actualScale {
if err := g.SetSize(u.width, u.height, actualScale); err != nil {
return err
}
}
2016-07-23 14:01:30 +02:00
if err := u.runOnMainThread(func() error {
2015-01-11 17:54:18 +01:00
if err := u.pollEvents(); err != nil {
2016-07-23 14:01:30 +02:00
return err
2015-01-11 17:54:18 +01:00
}
2016-05-06 05:23:48 +02:00
for u.window.GetAttrib(glfw.Focused) == 0 {
// Wait for an arbitrary period to avoid busy loop.
time.Sleep(time.Second / 60)
if err := u.pollEvents(); err != nil {
2016-07-23 14:01:30 +02:00
return err
2016-05-06 05:23:48 +02:00
}
if u.window.ShouldClose() {
2016-07-23 14:01:30 +02:00
return nil
2016-05-06 05:23:48 +02:00
}
}
2016-07-23 14:01:30 +02:00
return nil
}); err != nil {
2016-09-01 17:53:05 +02:00
return err
2016-05-17 18:30:27 +02:00
}
2016-09-01 17:53:05 +02:00
if err := g.Update(); err != nil {
return err
}
return nil
}
2016-09-01 19:31:03 +02:00
func (u *userInterface) loop(g GraphicsContext) error {
2016-09-01 18:07:41 +02:00
defer func() {
_ = u.runOnMainThread(func() error {
glfw.Terminate()
return nil
})
}()
for {
2016-09-01 17:53:05 +02:00
if err := u.update(g); err != nil {
return err
}
// The bound framebuffer must be the default one (0) before swapping buffers.
if err := glContext.BindScreenFramebuffer(); err != nil {
return err
}
if err := u.runOnMainThread(func() error {
return u.swapBuffers()
}); err != nil {
return err
}
2016-07-23 14:01:30 +02:00
}
2016-03-26 09:24:40 +01:00
}
func (u *userInterface) swapBuffers() error {
u.window.SwapBuffers()
return nil
2014-12-14 10:57:29 +01:00
}
2015-02-09 02:25:00 +01:00
2016-05-19 16:37:58 +02:00
func (u *userInterface) FinishRendering() error {
return nil
}
2016-08-03 16:44:54 +02:00
func (u *userInterface) setScreenSize(width, height int, scale float64) (bool, error) {
2015-02-09 02:25:00 +01:00
if u.width == width && u.height == height && u.scale == scale {
2016-08-03 16:44:54 +02:00
return false, nil
2015-02-09 02:25:00 +01:00
}
origScale := u.scale
u.scale = scale
// On Windows, giving a too small width doesn't call a callback (#165).
// To prevent hanging up, return asap if the width is too small.
// 252 is an arbitrary number and I guess this is small enough.
const minWindowWidth = 252
2016-06-18 19:59:17 +02:00
if int(float64(width)*u.actualScreenScale()) < minWindowWidth {
u.scale = origScale
2016-08-03 16:44:54 +02:00
return false, nil
}
2016-02-26 17:35:14 +01:00
u.width = width
u.height = height
2015-02-09 02:25:00 +01:00
// To make sure the current existing framebuffers are rendered,
// swap buffers here before SetSize is called.
2016-08-03 16:44:54 +02:00
if err := u.swapBuffers(); err != nil {
return false, err
}
2015-02-09 02:25:00 +01:00
ch := make(chan struct{})
window := u.window
window.SetFramebufferSizeCallback(func(_ *glfw.Window, width, height int) {
2015-02-09 02:25:00 +01:00
window.SetFramebufferSizeCallback(nil)
close(ch)
})
2016-07-04 04:37:34 +02:00
w, h := u.glfwSize()
window.SetSize(w, h)
2015-02-09 02:25:00 +01:00
2016-02-21 17:30:33 +01:00
event:
2015-02-09 02:25:00 +01:00
for {
glfw.PollEvents()
select {
case <-ch:
2016-02-21 17:30:33 +01:00
break event
2015-02-09 02:25:00 +01:00
default:
}
}
u.sizeChanged = true
2016-08-03 16:44:54 +02:00
return true, nil
2015-02-09 02:25:00 +01:00
}