2015-01-01 17:20:20 +01:00
|
|
|
// Copyright 2015 Hajime Hoshi
|
2014-12-24 03:04:10 +01:00
|
|
|
//
|
|
|
|
// 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
|
|
|
|
2017-01-25 17:32:33 +01:00
|
|
|
// +build darwin linux windows
|
2015-01-02 07:20:05 +01:00
|
|
|
// +build !js
|
2016-05-18 20:17:50 +02:00
|
|
|
// +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 (
|
2016-03-22 03:56:40 +01:00
|
|
|
"errors"
|
2014-12-14 10:57:29 +01:00
|
|
|
"runtime"
|
2016-09-03 14:14:06 +02:00
|
|
|
"sync"
|
2015-01-07 17:32:37 +01:00
|
|
|
"time"
|
2015-06-20 18:33:28 +02:00
|
|
|
|
2016-09-03 09:25:43 +02:00
|
|
|
"github.com/go-gl/glfw/v3.2/glfw"
|
2016-11-03 15:31:25 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/internal/opengl"
|
2014-12-05 18:26:02 +01:00
|
|
|
)
|
|
|
|
|
2016-05-19 17:07:04 +02:00
|
|
|
type userInterface struct {
|
2016-07-04 04:37:34 +02:00
|
|
|
window *glfw.Window
|
|
|
|
width int
|
|
|
|
height int
|
|
|
|
scale float64
|
|
|
|
funcs chan func()
|
2016-09-03 14:14:06 +02:00
|
|
|
running bool
|
2016-07-04 04:37:34 +02:00
|
|
|
sizeChanged bool
|
2016-09-03 14:14:06 +02:00
|
|
|
m sync.Mutex
|
2016-03-24 16:38:30 +01:00
|
|
|
}
|
|
|
|
|
2016-05-19 17:07:04 +02:00
|
|
|
var currentUI *userInterface
|
2016-03-24 16:38:30 +01:00
|
|
|
|
2016-07-23 13:25:52 +02:00
|
|
|
func init() {
|
|
|
|
if err := initialize(); err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func initialize() error {
|
2014-12-17 12:03:26 +01:00
|
|
|
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
|
|
|
}
|
2014-12-17 12:03:26 +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)
|
2014-12-17 12:03:26 +01:00
|
|
|
|
2015-02-09 02:25:00 +01:00
|
|
|
// As start, create an window with temporary size to create OpenGL context thread.
|
2014-12-17 12:03:26 +01:00
|
|
|
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
|
|
|
}
|
2017-02-07 12:44:10 +01:00
|
|
|
hideConsoleWindowOnWindows()
|
2016-05-19 17:07:04 +02:00
|
|
|
u := &userInterface{
|
2016-05-18 04:56:43 +02:00
|
|
|
window: window,
|
|
|
|
funcs: make(chan func()),
|
|
|
|
sizeChanged: true,
|
2014-12-07 20:22:50 +01:00
|
|
|
}
|
2016-07-23 14:22:59 +02:00
|
|
|
u.window.MakeContextCurrent()
|
|
|
|
glfw.SwapInterval(1)
|
|
|
|
currentUI = u
|
2016-07-23 13:25:52 +02:00
|
|
|
return nil
|
2014-12-17 12:03:26 +01:00
|
|
|
}
|
2014-12-10 15:52:37 +01:00
|
|
|
|
2016-09-02 17:00:44 +02:00
|
|
|
func RunMainThreadLoop(ch <-chan error) error {
|
2016-05-06 05:23:48 +02:00
|
|
|
// TODO: Check this is done on the main thread.
|
2016-09-03 14:14:06 +02:00
|
|
|
currentUI.setRunning(true)
|
|
|
|
defer func() {
|
|
|
|
currentUI.setRunning(false)
|
|
|
|
}()
|
2016-08-01 19:47:45 +02:00
|
|
|
for {
|
|
|
|
select {
|
2016-09-02 16:38:02 +02:00
|
|
|
case f := <-currentUI.funcs:
|
2016-08-16 18:57:20 +02:00
|
|
|
f()
|
2016-08-01 19:47:45 +02:00
|
|
|
case err := <-ch:
|
2016-08-16 18:57:20 +02:00
|
|
|
// ch returns a value not only when an error occur but also it is closed.
|
2016-08-01 19:47:45 +02:00
|
|
|
return err
|
|
|
|
}
|
2016-05-06 05:23:48 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-09-03 14:14:06 +02:00
|
|
|
func (u *userInterface) isRunning() bool {
|
|
|
|
u.m.Lock()
|
|
|
|
defer u.m.Unlock()
|
|
|
|
return u.running
|
|
|
|
}
|
|
|
|
|
|
|
|
func (u *userInterface) setRunning(running bool) {
|
|
|
|
u.m.Lock()
|
|
|
|
defer u.m.Unlock()
|
|
|
|
u.running = running
|
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2017-03-03 02:58:29 +01:00
|
|
|
func SetScreenSize(width, height int) bool {
|
2016-09-02 16:38:02 +02:00
|
|
|
u := currentUI
|
2016-09-03 14:14:06 +02:00
|
|
|
if !u.isRunning() {
|
2017-03-03 02:58:29 +01:00
|
|
|
panic("ui: Run is not called yet")
|
2016-09-03 14:14:06 +02:00
|
|
|
}
|
2016-05-06 05:23:48 +02:00
|
|
|
r := false
|
2017-03-03 02:50:47 +01:00
|
|
|
_ = u.runOnMainThread(func() error {
|
|
|
|
u.setScreenSize(width, height, u.scale)
|
2016-07-23 14:01:30 +02:00
|
|
|
return nil
|
2017-03-03 02:50:47 +01:00
|
|
|
})
|
2017-03-03 02:58:29 +01:00
|
|
|
return r
|
2015-01-27 14:02:23 +01:00
|
|
|
}
|
|
|
|
|
2017-03-03 02:58:29 +01:00
|
|
|
func SetScreenScale(scale float64) bool {
|
2016-09-02 16:38:02 +02:00
|
|
|
u := currentUI
|
2016-09-03 14:14:06 +02:00
|
|
|
if !u.isRunning() {
|
2017-03-03 02:58:29 +01:00
|
|
|
panic("ui: Run is not called yet")
|
2016-09-03 14:14:06 +02:00
|
|
|
}
|
2016-05-06 05:23:48 +02:00
|
|
|
r := false
|
2017-03-03 02:50:47 +01:00
|
|
|
_ = u.runOnMainThread(func() error {
|
|
|
|
u.setScreenSize(u.width, u.height, scale)
|
2016-07-23 14:01:30 +02:00
|
|
|
return nil
|
2017-03-03 02:50:47 +01:00
|
|
|
})
|
2017-03-03 02:58:29 +01:00
|
|
|
return r
|
2015-01-27 14:02:23 +01:00
|
|
|
}
|
|
|
|
|
2016-09-02 16:38:02 +02:00
|
|
|
func ScreenScale() float64 {
|
|
|
|
u := currentUI
|
2016-09-03 14:14:06 +02:00
|
|
|
if !u.isRunning() {
|
|
|
|
return 0
|
|
|
|
}
|
2016-06-18 19:59:17 +02:00
|
|
|
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-03 10:17:54 +02:00
|
|
|
func SetCursorVisibility(visible bool) {
|
|
|
|
// This can be called before Run: change the state asyncly.
|
|
|
|
go func() {
|
|
|
|
_ = currentUI.runOnMainThread(func() error {
|
|
|
|
c := glfw.CursorNormal
|
|
|
|
if !visible {
|
|
|
|
c = glfw.CursorHidden
|
|
|
|
}
|
|
|
|
currentUI.window.SetInputMode(glfw.CursorMode, c)
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
}()
|
|
|
|
}
|
|
|
|
|
2016-09-02 19:12:11 +02:00
|
|
|
func Run(width, height int, scale float64, title string, g GraphicsContext) error {
|
2016-09-02 17:20:05 +02:00
|
|
|
u := currentUI
|
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()
|
2017-03-03 02:50:47 +01:00
|
|
|
if !u.setScreenSize(width, height, scale) {
|
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
|
2017-04-18 17:51:15 +02:00
|
|
|
x, y = adjustWindowPosition(x, y)
|
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-02-25 19:09:23 +01:00
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
2017-03-03 03:15:07 +01:00
|
|
|
func (u *userInterface) pollEvents() {
|
2014-12-06 14:56:57 +01:00
|
|
|
glfw.PollEvents()
|
2017-03-03 03:15:07 +01:00
|
|
|
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-05-18 04:56:43 +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 {
|
2016-05-18 04:56:43 +02:00
|
|
|
if !u.sizeChanged {
|
2016-07-23 14:01:30 +02:00
|
|
|
return nil
|
2016-05-18 04:56:43 +02:00
|
|
|
}
|
|
|
|
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-05-18 04:56:43 +02:00
|
|
|
})
|
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-05-18 04:56:43 +02:00
|
|
|
}
|
|
|
|
|
2017-03-03 03:15:07 +01:00
|
|
|
_ = u.runOnMainThread(func() error {
|
|
|
|
u.pollEvents()
|
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)
|
2017-03-03 03:15:07 +01:00
|
|
|
u.pollEvents()
|
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-03-14 16:31:46 +01:00
|
|
|
}
|
2016-07-23 14:01:30 +02:00
|
|
|
return nil
|
2017-03-03 03:15:07 +01:00
|
|
|
})
|
2016-09-01 17:53:05 +02:00
|
|
|
if err := g.Update(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
2015-01-07 17:32:37 +01:00
|
|
|
}
|
|
|
|
|
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
|
|
|
|
})
|
|
|
|
}()
|
2016-08-31 19:38:47 +02:00
|
|
|
for {
|
2016-09-01 17:53:05 +02:00
|
|
|
if err := u.update(g); err != nil {
|
2016-08-31 19:38:47 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
// The bound framebuffer must be the default one (0) before swapping buffers.
|
|
|
|
if err := glContext.BindScreenFramebuffer(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2017-03-03 02:50:47 +01:00
|
|
|
_ = u.runOnMainThread(func() error {
|
|
|
|
u.swapBuffers()
|
|
|
|
return nil
|
|
|
|
})
|
2016-07-23 14:01:30 +02:00
|
|
|
}
|
2016-03-26 09:24:40 +01:00
|
|
|
}
|
|
|
|
|
2017-03-03 02:50:47 +01:00
|
|
|
func (u *userInterface) swapBuffers() {
|
2016-07-23 14:22:59 +02:00
|
|
|
u.window.SwapBuffers()
|
2014-12-14 10:57:29 +01:00
|
|
|
}
|
2015-02-09 02:25:00 +01:00
|
|
|
|
2017-03-03 02:50:47 +01:00
|
|
|
func (u *userInterface) setScreenSize(width, height int, scale float64) bool {
|
2015-02-09 02:25:00 +01:00
|
|
|
if u.width == width && u.height == height && u.scale == scale {
|
2017-03-03 02:50:47 +01:00
|
|
|
return false
|
2015-02-09 02:25:00 +01:00
|
|
|
}
|
2016-03-22 03:56:40 +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.
|
2016-11-25 18:35:55 +01:00
|
|
|
// TODO: The same check should be in ui_js.go
|
2016-03-22 03:56:40 +01:00
|
|
|
const minWindowWidth = 252
|
2016-06-18 19:59:17 +02:00
|
|
|
if int(float64(width)*u.actualScreenScale()) < minWindowWidth {
|
2016-03-22 03:56:40 +01:00
|
|
|
u.scale = origScale
|
2017-03-03 02:50:47 +01:00
|
|
|
return false
|
2016-03-22 03:56:40 +01:00
|
|
|
}
|
2016-02-26 17:35:14 +01:00
|
|
|
u.width = width
|
|
|
|
u.height = height
|
2015-02-09 02:25:00 +01:00
|
|
|
|
2016-02-21 19:14:31 +01:00
|
|
|
// To make sure the current existing framebuffers are rendered,
|
2016-02-22 17:41:57 +01:00
|
|
|
// swap buffers here before SetSize is called.
|
2017-03-03 02:50:47 +01:00
|
|
|
u.swapBuffers()
|
2016-02-21 19:14:31 +01:00
|
|
|
|
2015-02-09 02:25:00 +01:00
|
|
|
ch := make(chan struct{})
|
|
|
|
window := u.window
|
2016-03-22 03:56:40 +01:00
|
|
|
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:
|
|
|
|
}
|
|
|
|
}
|
2016-05-18 04:56:43 +02:00
|
|
|
u.sizeChanged = true
|
2017-03-03 02:50:47 +01:00
|
|
|
return true
|
2015-02-09 02:25:00 +01:00
|
|
|
}
|