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
|
|
|
|
2015-01-02 07:20:05 +01:00
|
|
|
// +build !js
|
|
|
|
|
2015-01-27 14:02:23 +01:00
|
|
|
package ui
|
2014-12-05 18:26:02 +01:00
|
|
|
|
|
|
|
import (
|
2014-12-07 15:18:56 +01:00
|
|
|
"fmt"
|
2014-12-14 10:57:29 +01:00
|
|
|
"runtime"
|
2015-01-07 17:32:37 +01:00
|
|
|
"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
|
|
|
)
|
|
|
|
|
2015-02-15 11:30:29 +01:00
|
|
|
func Now() int64 {
|
|
|
|
return time.Now().UnixNano()
|
|
|
|
}
|
|
|
|
|
2015-01-26 17:10:17 +01:00
|
|
|
var currentUI *userInterface
|
2015-01-01 17:20:20 +01:00
|
|
|
|
2016-02-20 12:08:53 +01:00
|
|
|
func Init() *opengl.Context {
|
2014-12-17 12:03:26 +01:00
|
|
|
runtime.LockOSThread()
|
2014-12-05 18:26:02 +01:00
|
|
|
|
2015-06-20 11:52:17 +02:00
|
|
|
err := glfw.Init()
|
|
|
|
if err != nil {
|
|
|
|
panic(fmt.Sprintf("glfw.Init() fails: %v", 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 {
|
2014-12-17 12:03:26 +01:00
|
|
|
panic(err)
|
2014-12-07 20:22:50 +01:00
|
|
|
}
|
|
|
|
|
2015-01-26 17:10:17 +01:00
|
|
|
u := &userInterface{
|
2014-12-17 09:10:38 +01:00
|
|
|
window: window,
|
2014-12-07 20:22:50 +01:00
|
|
|
}
|
2016-02-21 13:53:48 +01:00
|
|
|
ch := make(chan struct{})
|
2016-02-19 03:43:16 +01:00
|
|
|
go func() {
|
|
|
|
runtime.LockOSThread()
|
|
|
|
u.window.MakeContextCurrent()
|
|
|
|
glfw.SwapInterval(1)
|
2016-02-21 14:20:33 +01:00
|
|
|
u.context = opengl.NewContext()
|
2016-02-21 13:53:48 +01:00
|
|
|
close(ch)
|
2016-02-21 14:20:33 +01:00
|
|
|
u.context.Loop()
|
2016-02-19 03:43:16 +01:00
|
|
|
}()
|
2015-01-26 17:10:17 +01:00
|
|
|
currentUI = u
|
2016-02-21 13:53:48 +01:00
|
|
|
<-ch
|
2016-02-21 14:20:33 +01:00
|
|
|
u.context.Init()
|
2016-02-20 12:08:53 +01:00
|
|
|
|
2016-02-21 14:20:33 +01:00
|
|
|
return u.context
|
2014-12-17 12:03:26 +01:00
|
|
|
}
|
2014-12-10 15:52:37 +01:00
|
|
|
|
2015-01-27 14:02:23 +01:00
|
|
|
func Start(width, height, scale int, title string) (actualScale int, err error) {
|
|
|
|
return currentUI.start(width, height, scale, title)
|
|
|
|
}
|
|
|
|
|
|
|
|
func Terminate() {
|
|
|
|
currentUI.terminate()
|
|
|
|
}
|
|
|
|
|
|
|
|
func DoEvents() error {
|
|
|
|
return currentUI.doEvents()
|
|
|
|
}
|
|
|
|
|
|
|
|
func IsClosed() bool {
|
|
|
|
return currentUI.isClosed()
|
|
|
|
}
|
|
|
|
|
|
|
|
func SwapBuffers() {
|
|
|
|
currentUI.swapBuffers()
|
|
|
|
}
|
|
|
|
|
2015-02-09 02:25:00 +01:00
|
|
|
func SetScreenSize(width, height int) (bool, int) {
|
|
|
|
result := currentUI.setScreenSize(width, height, currentUI.scale)
|
|
|
|
return result, currentUI.actualScale
|
|
|
|
}
|
|
|
|
|
2015-02-09 16:10:50 +01:00
|
|
|
func SetScreenScale(scale int) (bool, int) {
|
|
|
|
result := currentUI.setScreenSize(currentUI.width, currentUI.height, scale)
|
|
|
|
return result, currentUI.actualScale
|
|
|
|
}
|
|
|
|
|
2015-01-26 17:10:17 +01:00
|
|
|
type userInterface struct {
|
2015-02-09 02:25:00 +01:00
|
|
|
window *glfw.Window
|
|
|
|
width int
|
|
|
|
height int
|
|
|
|
scale int
|
|
|
|
actualScale int
|
2016-02-21 14:20:33 +01:00
|
|
|
context *opengl.Context
|
2014-12-17 12:03:26 +01:00
|
|
|
}
|
|
|
|
|
2015-01-26 17:10:17 +01:00
|
|
|
func (u *userInterface) start(width, height, scale int, title string) (actualScale int, err error) {
|
2015-02-09 02:25:00 +01:00
|
|
|
u.setScreenSize(width, height, scale)
|
|
|
|
u.window.SetTitle(title)
|
|
|
|
u.window.Show()
|
2016-02-22 17:41:57 +01:00
|
|
|
|
|
|
|
videoMode := glfw.GetPrimaryMonitor().GetVideoMode()
|
|
|
|
x := (videoMode.Width - width*adjustScaleForGLFW(scale)) / 2
|
|
|
|
y := (videoMode.Height - height*adjustScaleForGLFW(scale)) / 3
|
2016-02-21 15:11:39 +01:00
|
|
|
u.window.SetPos(x, y)
|
2014-12-14 10:57:29 +01:00
|
|
|
|
2015-02-09 02:25:00 +01:00
|
|
|
return u.actualScale, nil
|
2015-01-01 17:20:20 +01:00
|
|
|
}
|
|
|
|
|
2015-01-26 17:10:17 +01:00
|
|
|
func (u *userInterface) pollEvents() error {
|
2014-12-06 14:56:57 +01:00
|
|
|
glfw.PollEvents()
|
2015-01-27 14:02:23 +01:00
|
|
|
return updateInput(u.window, u.scale)
|
2014-12-05 18:26:02 +01:00
|
|
|
}
|
|
|
|
|
2015-01-26 17:10:17 +01:00
|
|
|
func (u *userInterface) doEvents() error {
|
2015-01-11 17:54:18 +01:00
|
|
|
if err := u.pollEvents(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-06-20 11:52:17 +02:00
|
|
|
for u.window.GetAttrib(glfw.Focused) == 0 {
|
2015-01-07 17:32:37 +01:00
|
|
|
time.Sleep(time.Second / 60)
|
2015-01-11 17:54:18 +01:00
|
|
|
if err := u.pollEvents(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2015-01-07 17:32:37 +01:00
|
|
|
}
|
2015-01-11 17:54:18 +01:00
|
|
|
return nil
|
2015-01-07 17:32:37 +01:00
|
|
|
}
|
|
|
|
|
2015-01-26 17:10:17 +01:00
|
|
|
func (u *userInterface) terminate() {
|
2014-12-05 18:26:02 +01:00
|
|
|
glfw.Terminate()
|
|
|
|
}
|
2014-12-10 02:42:47 +01:00
|
|
|
|
2015-01-26 17:10:17 +01:00
|
|
|
func (u *userInterface) isClosed() bool {
|
2014-12-14 10:57:29 +01:00
|
|
|
return u.window.ShouldClose()
|
2014-12-10 02:42:47 +01:00
|
|
|
}
|
2014-12-10 17:06:38 +01:00
|
|
|
|
2015-01-26 17:10:17 +01:00
|
|
|
func (u *userInterface) swapBuffers() {
|
2016-02-24 14:56:47 +01:00
|
|
|
// Call glFinish before glfwSwapBuffer to make sure
|
|
|
|
// all OpenGL tasks are executed.
|
|
|
|
u.context.Finish()
|
2016-02-21 14:20:33 +01:00
|
|
|
u.context.RunOnContextThread(func() {
|
|
|
|
u.window.SwapBuffers()
|
|
|
|
})
|
2014-12-14 10:57:29 +01:00
|
|
|
}
|
2015-02-09 02:25:00 +01:00
|
|
|
|
|
|
|
func (u *userInterface) setScreenSize(width, height, scale int) bool {
|
|
|
|
if u.width == width && u.height == height && u.scale == scale {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
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.
|
2016-02-21 19:14:31 +01:00
|
|
|
u.context.BindZeroFramebuffer()
|
|
|
|
u.swapBuffers()
|
|
|
|
|
2015-02-09 02:25:00 +01:00
|
|
|
ch := make(chan struct{})
|
|
|
|
window := u.window
|
|
|
|
window.SetFramebufferSizeCallback(func(w *glfw.Window, width, height int) {
|
|
|
|
window.SetFramebufferSizeCallback(nil)
|
|
|
|
close(ch)
|
|
|
|
})
|
2016-02-22 17:41:57 +01:00
|
|
|
window.SetSize(width*adjustScaleForGLFW(scale), height*adjustScaleForGLFW(scale))
|
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.width = width
|
|
|
|
u.height = height
|
|
|
|
u.scale = scale
|
|
|
|
|
|
|
|
// For retina displays, recalculate the scale with the framebuffer size.
|
|
|
|
windowWidth, _ := window.GetFramebufferSize()
|
|
|
|
u.actualScale = windowWidth / width
|
|
|
|
return true
|
|
|
|
}
|