mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
249 lines
5.6 KiB
Go
249 lines
5.6 KiB
Go
// 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.
|
|
|
|
// +build !js
|
|
|
|
package ui
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
"runtime"
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/go-gl/glfw/v3.1/glfw"
|
|
"github.com/hajimehoshi/ebiten/internal/graphics/opengl"
|
|
)
|
|
|
|
func Now() int64 {
|
|
return time.Now().UnixNano()
|
|
}
|
|
|
|
type UserInterface struct {
|
|
window *glfw.Window
|
|
width int
|
|
height int
|
|
scale int
|
|
deviceScale float64
|
|
framebufferScale int
|
|
context *opengl.Context
|
|
m sync.RWMutex
|
|
}
|
|
|
|
var currentUI *UserInterface
|
|
|
|
func CurrentUI() *UserInterface {
|
|
return currentUI
|
|
}
|
|
|
|
func Init() *opengl.Context {
|
|
runtime.LockOSThread()
|
|
|
|
err := glfw.Init()
|
|
if err != nil {
|
|
panic(fmt.Sprintf("glfw.Init() fails: %v", err))
|
|
}
|
|
glfw.WindowHint(glfw.Visible, glfw.False)
|
|
glfw.WindowHint(glfw.Resizable, glfw.False)
|
|
glfw.WindowHint(glfw.ContextVersionMajor, 2)
|
|
glfw.WindowHint(glfw.ContextVersionMinor, 1)
|
|
|
|
// As start, create an window with temporary size to create OpenGL context thread.
|
|
window, err := glfw.CreateWindow(16, 16, "", nil, nil)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
|
|
u := &UserInterface{
|
|
window: window,
|
|
}
|
|
ch := make(chan struct{})
|
|
go func() {
|
|
runtime.LockOSThread()
|
|
u.window.MakeContextCurrent()
|
|
glfw.SwapInterval(1)
|
|
u.context = opengl.NewContext()
|
|
close(ch)
|
|
u.context.Loop()
|
|
}()
|
|
currentUI = u
|
|
<-ch
|
|
u.context.Init()
|
|
|
|
return u.context
|
|
}
|
|
|
|
func (u *UserInterface) SetScreenSize(width, height int) bool {
|
|
u.m.Lock()
|
|
defer u.m.Unlock()
|
|
return u.setScreenSize(width, height, u.scale)
|
|
}
|
|
|
|
func (u *UserInterface) SetScreenScale(scale int) bool {
|
|
u.m.Lock()
|
|
defer u.m.Unlock()
|
|
return u.setScreenSize(u.width, u.height, scale)
|
|
}
|
|
|
|
func (u *UserInterface) ScreenScale() int {
|
|
u.m.RLock()
|
|
defer u.m.RUnlock()
|
|
return u.scale
|
|
}
|
|
|
|
func (u *UserInterface) ActualScreenScale() int {
|
|
u.m.RLock()
|
|
defer u.m.RUnlock()
|
|
return u.actualScreenScale()
|
|
}
|
|
|
|
func (u *UserInterface) Start(width, height, scale int, title string) error {
|
|
u.m.Lock()
|
|
defer u.m.Unlock()
|
|
m := glfw.GetPrimaryMonitor()
|
|
v := m.GetVideoMode()
|
|
mw, _ := m.GetPhysicalSize()
|
|
u.deviceScale = 1
|
|
u.framebufferScale = 1
|
|
// mw can be 0 on some environment like Linux VM
|
|
if 0 < mw {
|
|
dpi := float64(v.Width) * 25.4 / float64(mw)
|
|
u.deviceScale = dpi / 96
|
|
if u.deviceScale < 1 {
|
|
u.deviceScale = 1
|
|
}
|
|
}
|
|
|
|
if !u.setScreenSize(width, height, scale) {
|
|
return errors.New("ui: Fail to set the screen size")
|
|
}
|
|
u.window.SetTitle(title)
|
|
u.window.Show()
|
|
|
|
x := (v.Width - width*u.windowScale()) / 2
|
|
y := (v.Height - height*u.windowScale()) / 3
|
|
u.window.SetPos(x, y)
|
|
|
|
return nil
|
|
}
|
|
|
|
func (u *UserInterface) windowScale() int {
|
|
return u.scale * int(u.deviceScale)
|
|
}
|
|
|
|
func (u *UserInterface) actualScreenScale() int {
|
|
return u.windowScale() * u.framebufferScale
|
|
}
|
|
|
|
func (u *UserInterface) pollEvents() error {
|
|
glfw.PollEvents()
|
|
return currentInput.update(u.window, u.windowScale())
|
|
}
|
|
|
|
func (u *UserInterface) DoEvents() error {
|
|
u.m.Lock()
|
|
defer u.m.Unlock()
|
|
if err := u.pollEvents(); err != nil {
|
|
return err
|
|
}
|
|
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 {
|
|
return err
|
|
}
|
|
if u.window.ShouldClose() {
|
|
return nil
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (u *UserInterface) Terminate() {
|
|
u.m.Lock()
|
|
defer u.m.Unlock()
|
|
glfw.Terminate()
|
|
}
|
|
|
|
func (u *UserInterface) IsClosed() bool {
|
|
u.m.RLock()
|
|
defer u.m.RUnlock()
|
|
return u.window.ShouldClose()
|
|
}
|
|
|
|
func (u *UserInterface) SwapBuffers() {
|
|
u.m.Lock()
|
|
defer u.m.Unlock()
|
|
u.swapBuffers()
|
|
}
|
|
|
|
func (u *UserInterface) swapBuffers() {
|
|
// The bound framebuffer must be the default one (0) before swapping buffers.
|
|
u.context.BindZeroFramebuffer()
|
|
// Call glFinish before glfwSwapBuffer to make sure
|
|
// all OpenGL tasks are executed.
|
|
u.context.Finish()
|
|
u.context.RunOnContextThread(func() {
|
|
u.window.SwapBuffers()
|
|
})
|
|
}
|
|
|
|
func (u *UserInterface) setScreenSize(width, height, scale int) bool {
|
|
if u.width == width && u.height == height && u.scale == scale {
|
|
return false
|
|
}
|
|
|
|
// u.scale should be set first since this affects windowScale().
|
|
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
|
|
if width*u.actualScreenScale() < minWindowWidth {
|
|
u.scale = origScale
|
|
return false
|
|
}
|
|
u.width = width
|
|
u.height = height
|
|
|
|
// To make sure the current existing framebuffers are rendered,
|
|
// swap buffers here before SetSize is called.
|
|
u.swapBuffers()
|
|
|
|
ch := make(chan struct{})
|
|
window := u.window
|
|
window.SetFramebufferSizeCallback(func(_ *glfw.Window, width, height int) {
|
|
window.SetFramebufferSizeCallback(nil)
|
|
close(ch)
|
|
})
|
|
window.SetSize(width*u.windowScale(), height*u.windowScale())
|
|
|
|
event:
|
|
for {
|
|
glfw.PollEvents()
|
|
select {
|
|
case <-ch:
|
|
break event
|
|
default:
|
|
}
|
|
}
|
|
// This is usually 1, but sometimes more than 1 (e.g. Retina Mac)
|
|
fw, _ := window.GetFramebufferSize()
|
|
u.framebufferScale = fw / width / u.windowScale()
|
|
return true
|
|
}
|