ebiten/internal/ui/ui_glfw.go

309 lines
6.3 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
context *opengl.Context
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 GLContext() *opengl.Context {
return currentUI.context
}
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
}
2016-04-10 18:45:13 +02:00
ch := make(chan error)
2016-02-19 03:43:16 +01:00
go func() {
runtime.LockOSThread()
u.window.MakeContextCurrent()
glfw.SwapInterval(1)
2016-04-10 18:45:13 +02:00
var err error
u.context, err = opengl.NewContext()
if err != nil {
ch <- err
}
close(ch)
u.context.Loop()
2016-02-19 03:43:16 +01:00
}()
currentUI = u
2016-04-10 18:45:13 +02:00
if err := <-ch; err != nil {
2016-07-23 13:25:52 +02:00
return err
2016-04-10 18:45:13 +02:00
}
2016-07-23 13:25:52 +02:00
return nil
}
2016-05-06 05:23:48 +02:00
func Main() error {
2016-05-18 03:51:11 +02:00
return currentUI.main()
2016-05-06 05:23:48 +02:00
}
func (u *userInterface) main() error {
2016-05-06 05:23:48 +02:00
// TODO: Check this is done on the main thread.
for f := range u.funcs {
f()
}
return nil
}
func (u *userInterface) runOnMainThread(f func()) {
2016-05-06 05:23:48 +02:00
if u.funcs == nil {
// already closed
return
}
ch := make(chan struct{})
u.funcs <- func() {
f()
close(ch)
}
<-ch
}
func (u *userInterface) SetScreenSize(width, height int) bool {
2016-05-06 05:23:48 +02:00
r := false
u.runOnMainThread(func() {
r = u.setScreenSize(width, height, u.scale)
})
return r
2015-01-27 14:02:23 +01:00
}
2016-06-18 19:59:17 +02:00
func (u *userInterface) SetScreenScale(scale float64) bool {
2016-05-06 05:23:48 +02:00
r := false
u.runOnMainThread(func() {
r = u.setScreenSize(u.width, u.height, scale)
})
return r
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-05-06 05:23:48 +02:00
u.runOnMainThread(func() {
s = u.scale
})
return s
2015-01-27 14:02:23 +01:00
}
2016-06-18 19:59:17 +02:00
func (u *userInterface) Start(width, height int, scale float64, title string) error {
var err error
2016-05-06 05:23:48 +02:00
u.runOnMainThread(func() {
m := glfw.GetPrimaryMonitor()
v := m.GetVideoMode()
if !u.setScreenSize(width, height, scale) {
err = errors.New("ui: Fail to set the screen size")
2016-05-06 05:23:48 +02:00
return
}
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)
})
return err
}
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
}
func (u *userInterface) Update() (interface{}, error) {
2016-05-17 18:30:27 +02:00
shouldClose := false
u.runOnMainThread(func() {
shouldClose = u.window.ShouldClose()
})
if shouldClose {
return CloseEvent{}, nil
}
var screenSizeEvent *ScreenSizeEvent
u.runOnMainThread(func() {
if !u.sizeChanged {
return
}
u.sizeChanged = false
screenSizeEvent = &ScreenSizeEvent{
Width: u.width,
Height: u.height,
ActualScale: u.actualScreenScale(),
}
})
if screenSizeEvent != nil {
return *screenSizeEvent, nil
}
2016-05-06 05:23:48 +02:00
var ferr error
u.runOnMainThread(func() {
2015-01-11 17:54:18 +01:00
if err := u.pollEvents(); err != nil {
2016-05-06 05:23:48 +02:00
ferr = err
return
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 {
ferr = err
return
}
if u.window.ShouldClose() {
return
}
}
2016-05-06 05:23:48 +02:00
})
2016-05-17 18:30:27 +02:00
if ferr != nil {
return nil, ferr
}
2016-06-09 18:49:21 +02:00
// Dummy channel
ch := make(chan struct{}, 1)
return RenderEvent{ch}, nil
}
func (u *userInterface) Terminate() error {
2016-05-06 05:23:48 +02:00
u.runOnMainThread(func() {
glfw.Terminate()
})
close(u.funcs)
u.funcs = nil
return nil
2014-12-05 18:26:02 +01:00
}
2014-12-10 02:42:47 +01:00
func (u *userInterface) SwapBuffers() error {
var err error
2016-05-06 05:23:48 +02:00
u.runOnMainThread(func() {
err = u.swapBuffers()
2016-05-06 05:23:48 +02:00
})
return err
2016-03-26 09:24:40 +01:00
}
func (u *userInterface) swapBuffers() error {
// The bound framebuffer must be the default one (0) before swapping buffers.
if err := u.context.BindScreenFramebuffer(); err != nil {
return err
}
u.context.RunOnContextThread(func() error {
u.window.SwapBuffers()
return nil
})
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-06-18 19:59:17 +02: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 {
return false
}
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
return false
}
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-03-26 09:24:40 +01:00
u.swapBuffers()
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
2015-02-09 02:25:00 +01:00
return true
}