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
|
|
|
|
2023-10-01 16:14:47 +02:00
|
|
|
//go:build !android && !ios && !js && !nintendosdk && !playstation5
|
2015-01-02 07:20:05 +01:00
|
|
|
|
2022-02-06 08:08:22 +01:00
|
|
|
package ui
|
2014-12-05 18:26:02 +01:00
|
|
|
|
|
|
|
import (
|
2022-03-31 20:51:24 +02:00
|
|
|
"errors"
|
2019-12-07 11:28:15 +01:00
|
|
|
"fmt"
|
2017-09-22 21:12:02 +02:00
|
|
|
"image"
|
2023-09-16 21:37:22 +02:00
|
|
|
"math"
|
2019-11-17 11:58:41 +01:00
|
|
|
"os"
|
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
|
|
|
|
2023-01-22 18:48:50 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/file"
|
2022-06-03 11:42:35 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/gamepad"
|
2020-10-03 19:35:13 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/glfw"
|
2023-10-28 07:19:37 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/graphicscommand"
|
2022-03-21 16:02:37 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/graphicsdriver"
|
2023-10-06 06:49:42 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/hook"
|
2022-05-31 18:26:28 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/microsoftgdk"
|
2014-12-05 18:26:02 +01:00
|
|
|
)
|
|
|
|
|
2022-02-06 09:43:52 +01:00
|
|
|
func driverCursorModeToGLFWCursorMode(mode CursorMode) int {
|
2021-04-14 18:59:31 +02:00
|
|
|
switch mode {
|
2022-02-06 09:43:52 +01:00
|
|
|
case CursorModeVisible:
|
2021-04-14 18:59:31 +02:00
|
|
|
return glfw.CursorNormal
|
2022-02-06 09:43:52 +01:00
|
|
|
case CursorModeHidden:
|
2021-04-14 18:59:31 +02:00
|
|
|
return glfw.CursorHidden
|
2022-02-06 09:43:52 +01:00
|
|
|
case CursorModeCaptured:
|
2021-04-14 18:59:31 +02:00
|
|
|
return glfw.CursorDisabled
|
|
|
|
default:
|
2022-02-06 09:43:52 +01:00
|
|
|
panic(fmt.Sprintf("ui: invalid CursorMode: %d", mode))
|
2021-04-14 18:59:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-03-21 15:00:50 +01:00
|
|
|
type userInterfaceImpl struct {
|
2022-03-21 16:02:37 +01:00
|
|
|
graphicsDriver graphicsdriver.Graphics
|
|
|
|
|
2022-04-01 10:59:44 +02:00
|
|
|
context *context
|
2020-04-02 17:06:42 +02:00
|
|
|
title string
|
|
|
|
window *glfw.Window
|
2019-12-09 18:37:10 +01:00
|
|
|
|
2021-10-10 08:38:13 +02:00
|
|
|
minWindowWidthInDIP int
|
|
|
|
minWindowHeightInDIP int
|
|
|
|
maxWindowWidthInDIP int
|
|
|
|
maxWindowHeightInDIP int
|
2018-01-02 16:23:18 +01:00
|
|
|
|
2022-02-10 10:31:55 +01:00
|
|
|
runnableOnUnfocused bool
|
2022-02-13 09:23:52 +01:00
|
|
|
fpsMode FPSModeType
|
2022-02-10 10:31:55 +01:00
|
|
|
iconImages []image.Image
|
|
|
|
cursorShape CursorShape
|
|
|
|
windowClosingHandled bool
|
2021-12-29 14:08:59 +01:00
|
|
|
windowResizingMode WindowResizingMode
|
2021-04-18 15:07:26 +02:00
|
|
|
|
2019-12-08 12:24:20 +01:00
|
|
|
lastDeviceScaleFactor float64
|
2018-08-05 14:19:22 +02:00
|
|
|
|
2023-09-24 12:05:56 +02:00
|
|
|
initMonitor *Monitor
|
2023-09-18 10:48:07 +02:00
|
|
|
initFullscreen bool
|
|
|
|
initCursorMode CursorMode
|
|
|
|
initWindowDecorated bool
|
|
|
|
initWindowPositionXInDIP int
|
|
|
|
initWindowPositionYInDIP int
|
|
|
|
initWindowWidthInDIP int
|
|
|
|
initWindowHeightInDIP int
|
|
|
|
initWindowFloating bool
|
|
|
|
initWindowMaximized bool
|
|
|
|
initWindowMousePassthrough bool
|
2018-01-02 16:23:18 +01:00
|
|
|
|
2023-05-08 17:35:54 +02:00
|
|
|
// bufferOnceSwapped must be accessed from the main thread.
|
2023-03-13 13:40:25 +01:00
|
|
|
bufferOnceSwapped bool
|
|
|
|
|
2022-09-03 16:36:21 +02:00
|
|
|
origWindowPosX int
|
|
|
|
origWindowPosY int
|
|
|
|
origWindowWidthInDIP int
|
|
|
|
origWindowHeightInDIP int
|
|
|
|
|
2021-07-22 16:55:26 +02:00
|
|
|
fpsModeInited bool
|
2020-06-14 04:50:58 +02:00
|
|
|
|
2023-09-16 21:37:22 +02:00
|
|
|
inputState InputState
|
|
|
|
iwindow glfwWindow
|
|
|
|
savedCursorX float64
|
|
|
|
savedCursorY float64
|
2019-03-30 13:50:32 +01:00
|
|
|
|
2022-01-16 16:28:25 +01:00
|
|
|
closeCallback glfw.CloseCallback
|
|
|
|
framebufferSizeCallback glfw.FramebufferSizeCallback
|
|
|
|
defaultFramebufferSizeCallback glfw.FramebufferSizeCallback
|
2023-01-21 15:34:20 +01:00
|
|
|
dropCallback glfw.DropCallback
|
2022-01-16 16:28:25 +01:00
|
|
|
framebufferSizeCallbackCh chan struct{}
|
2021-06-13 14:43:23 +02:00
|
|
|
|
2023-05-08 17:35:54 +02:00
|
|
|
darwinInitOnce sync.Once
|
2023-12-29 06:16:54 +01:00
|
|
|
showWindowOnce sync.Once
|
2023-05-08 17:35:54 +02:00
|
|
|
bufferOnceSwappedOnce sync.Once
|
2022-12-30 08:28:07 +01:00
|
|
|
|
2023-10-29 10:34:18 +01:00
|
|
|
m sync.RWMutex
|
2016-03-24 16:38:30 +01:00
|
|
|
}
|
|
|
|
|
2019-02-24 15:31:26 +01:00
|
|
|
const (
|
|
|
|
maxInt = int(^uint(0) >> 1)
|
|
|
|
minInt = -maxInt - 1
|
2019-12-22 04:46:57 +01:00
|
|
|
invalidPos = minInt
|
2019-02-24 15:31:26 +01:00
|
|
|
)
|
|
|
|
|
2022-03-21 15:00:50 +01:00
|
|
|
func init() {
|
2023-10-14 17:15:20 +02:00
|
|
|
// Lock the main thread.
|
|
|
|
runtime.LockOSThread()
|
2023-10-14 17:06:07 +02:00
|
|
|
}
|
2023-10-14 17:15:20 +02:00
|
|
|
|
2023-10-14 17:06:07 +02:00
|
|
|
func (u *UserInterface) init() error {
|
|
|
|
u.userInterfaceImpl = userInterfaceImpl{
|
2021-10-10 08:38:13 +02:00
|
|
|
runnableOnUnfocused: true,
|
|
|
|
minWindowWidthInDIP: glfw.DontCare,
|
|
|
|
minWindowHeightInDIP: glfw.DontCare,
|
|
|
|
maxWindowWidthInDIP: glfw.DontCare,
|
|
|
|
maxWindowHeightInDIP: glfw.DontCare,
|
2022-02-06 09:43:52 +01:00
|
|
|
initCursorMode: CursorModeVisible,
|
2021-10-10 08:38:13 +02:00
|
|
|
initWindowDecorated: true,
|
|
|
|
initWindowPositionXInDIP: invalidPos,
|
|
|
|
initWindowPositionYInDIP: invalidPos,
|
|
|
|
initWindowWidthInDIP: 640,
|
|
|
|
initWindowHeightInDIP: 480,
|
2022-09-03 16:36:21 +02:00
|
|
|
origWindowPosX: invalidPos,
|
|
|
|
origWindowPosY: invalidPos,
|
2023-09-16 21:37:22 +02:00
|
|
|
savedCursorX: math.NaN(),
|
|
|
|
savedCursorY: math.NaN(),
|
2017-07-30 13:26:40 +02:00
|
|
|
}
|
2023-10-14 17:06:07 +02:00
|
|
|
u.iwindow.ui = u
|
2023-09-23 18:31:32 +02:00
|
|
|
|
2023-10-14 17:06:07 +02:00
|
|
|
if err := u.initializePlatform(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := u.initializeGLFW(); err != nil {
|
|
|
|
return err
|
2018-05-04 16:55:23 +02:00
|
|
|
}
|
2023-10-07 16:21:29 +02:00
|
|
|
if _, err := glfw.SetMonitorCallback(func(monitor *glfw.Monitor, event glfw.PeripheralEvent) {
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := theMonitors.update(); err != nil {
|
2023-10-15 08:50:39 +02:00
|
|
|
u.setError(err)
|
2023-10-03 16:07:53 +02:00
|
|
|
}
|
2023-10-07 16:21:29 +02:00
|
|
|
}); err != nil {
|
2023-10-14 17:06:07 +02:00
|
|
|
return err
|
2023-10-03 16:07:53 +02:00
|
|
|
}
|
2023-10-14 17:06:07 +02:00
|
|
|
|
|
|
|
return nil
|
2016-07-23 13:25:52 +02:00
|
|
|
}
|
|
|
|
|
2022-02-06 09:43:52 +01:00
|
|
|
var glfwSystemCursors = map[CursorShape]*glfw.Cursor{}
|
2021-04-11 07:21:38 +02:00
|
|
|
|
2023-10-14 17:06:07 +02:00
|
|
|
func (u *UserInterface) initializeGLFW() error {
|
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
|
|
|
}
|
2021-04-11 07:21:38 +02:00
|
|
|
|
2023-09-23 18:31:32 +02:00
|
|
|
// Update the monitor first. The monitor state is depended on various functions like initialMonitorByOS.
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := theMonitors.update(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-09-23 18:31:32 +02:00
|
|
|
|
2022-02-07 19:10:59 +01:00
|
|
|
m, err := initialMonitorByOS()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if m == nil {
|
2023-09-29 05:20:07 +02:00
|
|
|
m = theMonitors.primaryMonitor()
|
2019-07-21 16:41:51 +02:00
|
|
|
}
|
|
|
|
|
2024-03-23 14:31:08 +01:00
|
|
|
// GetMonitors might return nil in theory (#1878, #1887).
|
2022-03-31 20:51:24 +02:00
|
|
|
if m == nil {
|
2024-03-23 14:31:08 +01:00
|
|
|
return errors.New("ui: no monitor was found at initializeGLFW")
|
2022-03-31 20:51:24 +02:00
|
|
|
}
|
|
|
|
|
2023-10-14 17:06:07 +02:00
|
|
|
u.setInitMonitor(m)
|
2017-08-12 08:39:41 +02:00
|
|
|
|
2021-04-11 07:21:38 +02:00
|
|
|
// Create system cursors. These cursors are destroyed at glfw.Terminate().
|
2022-02-06 09:43:52 +01:00
|
|
|
glfwSystemCursors[CursorShapeDefault] = nil
|
2023-10-03 16:07:53 +02:00
|
|
|
|
|
|
|
c, err := glfw.CreateStandardCursor(glfw.IBeamCursor)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
glfwSystemCursors[CursorShapeText] = c
|
|
|
|
|
|
|
|
c, err = glfw.CreateStandardCursor(glfw.CrosshairCursor)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
glfwSystemCursors[CursorShapeCrosshair] = c
|
|
|
|
|
|
|
|
c, err = glfw.CreateStandardCursor(glfw.HandCursor)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
glfwSystemCursors[CursorShapePointer] = c
|
|
|
|
|
|
|
|
c, err = glfw.CreateStandardCursor(glfw.HResizeCursor)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
glfwSystemCursors[CursorShapeEWResize] = c
|
|
|
|
|
|
|
|
c, err = glfw.CreateStandardCursor(glfw.VResizeCursor)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
glfwSystemCursors[CursorShapeNSResize] = c
|
|
|
|
|
|
|
|
c, err = glfw.CreateStandardCursor(glfw.ResizeNESWCursor)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
glfwSystemCursors[CursorShapeNESWResize] = c
|
|
|
|
|
|
|
|
c, err = glfw.CreateStandardCursor(glfw.ResizeNWSECursor)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
glfwSystemCursors[CursorShapeNWSEResize] = c
|
|
|
|
|
|
|
|
c, err = glfw.CreateStandardCursor(glfw.ResizeAllCursor)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
glfwSystemCursors[CursorShapeMove] = c
|
|
|
|
|
|
|
|
c, err = glfw.CreateStandardCursor(glfw.NotAllowedCursor)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
glfwSystemCursors[CursorShapeNotAllowed] = c
|
2021-04-11 07:21:38 +02:00
|
|
|
|
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
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) setInitMonitor(m *Monitor) {
|
2023-09-23 10:09:52 +02:00
|
|
|
u.m.Lock()
|
|
|
|
defer u.m.Unlock()
|
2023-08-30 14:02:04 +02:00
|
|
|
u.initMonitor = m
|
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) getInitMonitor() *Monitor {
|
2023-09-24 12:27:22 +02:00
|
|
|
u.m.RLock()
|
|
|
|
defer u.m.RUnlock()
|
2023-09-24 11:48:56 +02:00
|
|
|
return u.initMonitor
|
|
|
|
}
|
|
|
|
|
2023-08-30 14:02:04 +02:00
|
|
|
// AppendMonitors appends the current monitors to the passed in mons slice and returns it.
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) AppendMonitors(monitors []*Monitor) []*Monitor {
|
2023-09-15 17:08:33 +02:00
|
|
|
return theMonitors.append(monitors)
|
2023-08-30 14:02:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Monitor returns the window's current monitor. Returns nil if there is no current monitor yet.
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) Monitor() *Monitor {
|
2023-08-30 14:02:04 +02:00
|
|
|
if !u.isRunning() {
|
2024-03-23 14:31:08 +01:00
|
|
|
return u.getInitMonitor()
|
2023-08-30 14:02:04 +02:00
|
|
|
}
|
|
|
|
var monitor *Monitor
|
|
|
|
u.mainThread.Call(func() {
|
2023-09-02 08:24:59 +02:00
|
|
|
if u.isTerminated() {
|
|
|
|
return
|
|
|
|
}
|
2023-10-03 16:07:53 +02:00
|
|
|
m, err := u.currentMonitor()
|
|
|
|
if err != nil {
|
2023-10-15 08:50:39 +02:00
|
|
|
u.setError(err)
|
2023-10-03 16:07:53 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
monitor = m
|
2023-08-30 14:02:04 +02:00
|
|
|
})
|
|
|
|
return monitor
|
|
|
|
}
|
2018-11-07 12:54:37 +01:00
|
|
|
|
2023-08-30 14:02:04 +02:00
|
|
|
// setWindowMonitor must be called on the main thread.
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) setWindowMonitor(monitor *Monitor) error {
|
2023-08-30 14:02:04 +02:00
|
|
|
if microsoftgdk.IsXbox() {
|
2023-10-03 16:07:53 +02:00
|
|
|
return nil
|
2023-08-30 14:02:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Ignore if it is the same monitor.
|
2023-10-03 16:07:53 +02:00
|
|
|
m, err := u.currentMonitor()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if monitor == m {
|
|
|
|
return nil
|
2023-08-30 14:02:04 +02:00
|
|
|
}
|
|
|
|
|
2023-09-23 11:31:00 +02:00
|
|
|
ww := u.origWindowWidthInDIP
|
|
|
|
wh := u.origWindowHeightInDIP
|
|
|
|
|
2023-10-03 16:07:53 +02:00
|
|
|
fullscreen, err := u.isFullscreen()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-08-30 14:02:04 +02:00
|
|
|
// This is copied from setFullscreen. They should probably use a shared function.
|
|
|
|
if fullscreen {
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := u.setFullscreen(false); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-09-14 20:19:33 +02:00
|
|
|
// Just after exiting fullscreen, the window state seems very unstable (#2758).
|
|
|
|
// Wait for a while with polling events.
|
|
|
|
if runtime.GOOS == "darwin" {
|
|
|
|
for i := 0; i < 60; i++ {
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := glfw.PollEvents(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-09-14 20:19:33 +02:00
|
|
|
time.Sleep(time.Second / 60)
|
|
|
|
}
|
|
|
|
}
|
2023-08-30 14:02:04 +02:00
|
|
|
}
|
|
|
|
|
2024-03-03 15:27:02 +01:00
|
|
|
s := monitor.DeviceScaleFactor()
|
|
|
|
w := dipToGLFWPixel(float64(ww), s)
|
|
|
|
h := dipToGLFWPixel(float64(wh), s)
|
2023-09-29 17:20:59 +02:00
|
|
|
mx := monitor.boundsInGLFWPixels.Min.X
|
|
|
|
my := monitor.boundsInGLFWPixels.Min.Y
|
2023-09-27 17:52:12 +02:00
|
|
|
mw, mh := monitor.sizeInDIP()
|
2024-03-03 15:27:02 +01:00
|
|
|
mw = dipToGLFWPixel(mw, s)
|
|
|
|
mh = dipToGLFWPixel(mh, s)
|
2023-09-23 11:31:00 +02:00
|
|
|
px, py := InitialWindowPosition(int(mw), int(mh), int(w), int(h))
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := u.window.SetPos(mx+px, my+py); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-08-30 14:02:04 +02:00
|
|
|
|
|
|
|
if fullscreen {
|
2023-09-23 12:02:34 +02:00
|
|
|
// Calling setFullscreen immediately might not work well, especially on Linux (#2778).
|
|
|
|
// Just wait a little bit. 1/30[s] seems enough in most cases.
|
|
|
|
time.Sleep(time.Second / 30)
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := u.setFullscreen(true); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-08-30 14:02:04 +02:00
|
|
|
}
|
2023-10-03 16:07:53 +02:00
|
|
|
|
|
|
|
return nil
|
2023-08-30 14:02:04 +02:00
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) getWindowSizeLimitsInDIP() (minw, minh, maxw, maxh int) {
|
2022-06-23 07:50:35 +02:00
|
|
|
if microsoftgdk.IsXbox() {
|
|
|
|
return glfw.DontCare, glfw.DontCare, glfw.DontCare, glfw.DontCare
|
|
|
|
}
|
|
|
|
|
2021-04-16 19:27:04 +02:00
|
|
|
u.m.RLock()
|
|
|
|
defer u.m.RUnlock()
|
2021-10-10 08:38:13 +02:00
|
|
|
return u.minWindowWidthInDIP, u.minWindowHeightInDIP, u.maxWindowWidthInDIP, u.maxWindowHeightInDIP
|
2021-04-16 19:27:04 +02:00
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) setWindowSizeLimitsInDIP(minw, minh, maxw, maxh int) bool {
|
2022-06-23 07:50:35 +02:00
|
|
|
if microsoftgdk.IsXbox() {
|
|
|
|
// Do nothing. The size is always fixed.
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2021-04-16 19:27:04 +02:00
|
|
|
u.m.RLock()
|
|
|
|
defer u.m.RUnlock()
|
2021-10-10 08:38:13 +02:00
|
|
|
if u.minWindowWidthInDIP == minw && u.minWindowHeightInDIP == minh && u.maxWindowWidthInDIP == maxw && u.maxWindowHeightInDIP == maxh {
|
2021-04-16 19:27:04 +02:00
|
|
|
return false
|
|
|
|
}
|
2021-10-10 08:38:13 +02:00
|
|
|
u.minWindowWidthInDIP = minw
|
|
|
|
u.minWindowHeightInDIP = minh
|
|
|
|
u.maxWindowWidthInDIP = maxw
|
|
|
|
u.maxWindowHeightInDIP = maxh
|
2021-04-16 19:27:04 +02:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) isWindowMaximizable() bool {
|
2022-09-01 15:34:17 +02:00
|
|
|
_, _, maxw, maxh := u.getWindowSizeLimitsInDIP()
|
|
|
|
return maxw == glfw.DontCare && maxh == glfw.DontCare
|
2022-08-20 15:35:57 +02:00
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) isInitFullscreen() bool {
|
2019-08-18 18:01:43 +02:00
|
|
|
u.m.RLock()
|
2017-08-02 17:19:04 +02:00
|
|
|
v := u.initFullscreen
|
2019-08-18 18:01:43 +02:00
|
|
|
u.m.RUnlock()
|
2017-08-02 17:19:04 +02:00
|
|
|
return v
|
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) setInitFullscreen(initFullscreen bool) {
|
2017-08-02 17:19:04 +02:00
|
|
|
u.m.Lock()
|
|
|
|
u.initFullscreen = initFullscreen
|
|
|
|
u.m.Unlock()
|
2016-09-03 14:14:06 +02:00
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) getInitCursorMode() CursorMode {
|
2019-08-18 18:01:43 +02:00
|
|
|
u.m.RLock()
|
2019-12-14 04:30:03 +01:00
|
|
|
v := u.initCursorMode
|
2019-08-18 18:01:43 +02:00
|
|
|
u.m.RUnlock()
|
2017-08-12 08:39:41 +02:00
|
|
|
return v
|
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) setInitCursorMode(mode CursorMode) {
|
2017-08-12 08:39:41 +02:00
|
|
|
u.m.Lock()
|
2019-12-14 04:30:03 +01:00
|
|
|
u.initCursorMode = mode
|
2017-08-12 08:39:41 +02:00
|
|
|
u.m.Unlock()
|
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) getCursorShape() CursorShape {
|
2021-04-11 07:21:38 +02:00
|
|
|
u.m.RLock()
|
|
|
|
v := u.cursorShape
|
|
|
|
u.m.RUnlock()
|
|
|
|
return v
|
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) setCursorShape(shape CursorShape) CursorShape {
|
2021-04-11 07:21:38 +02:00
|
|
|
u.m.Lock()
|
|
|
|
old := u.cursorShape
|
|
|
|
u.cursorShape = shape
|
|
|
|
u.m.Unlock()
|
|
|
|
return old
|
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) isInitWindowDecorated() bool {
|
2019-08-18 18:01:43 +02:00
|
|
|
u.m.RLock()
|
2017-09-13 20:37:38 +02:00
|
|
|
v := u.initWindowDecorated
|
2019-08-18 18:01:43 +02:00
|
|
|
u.m.RUnlock()
|
2017-09-13 20:37:38 +02:00
|
|
|
return v
|
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) setInitWindowDecorated(decorated bool) {
|
2017-09-13 20:37:38 +02:00
|
|
|
u.m.Lock()
|
|
|
|
u.initWindowDecorated = decorated
|
|
|
|
u.m.Unlock()
|
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) isRunnableOnUnfocused() bool {
|
2019-08-18 18:01:43 +02:00
|
|
|
u.m.RLock()
|
2020-03-20 16:34:12 +01:00
|
|
|
v := u.runnableOnUnfocused
|
2019-08-18 18:01:43 +02:00
|
|
|
u.m.RUnlock()
|
2017-08-02 16:37:50 +02:00
|
|
|
return v
|
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) setRunnableOnUnfocused(runnableOnUnfocused bool) {
|
2017-08-02 16:37:50 +02:00
|
|
|
u.m.Lock()
|
2020-03-20 16:34:12 +01:00
|
|
|
u.runnableOnUnfocused = runnableOnUnfocused
|
2017-08-02 16:37:50 +02:00
|
|
|
u.m.Unlock()
|
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) getAndResetIconImages() []image.Image {
|
2019-08-18 18:01:43 +02:00
|
|
|
u.m.RLock()
|
2023-09-29 18:45:58 +02:00
|
|
|
defer u.m.RUnlock()
|
|
|
|
s := u.iconImages
|
|
|
|
u.iconImages = nil
|
|
|
|
return s
|
2017-09-22 21:12:02 +02:00
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) setIconImages(iconImages []image.Image) {
|
2017-09-22 21:12:02 +02:00
|
|
|
u.m.Lock()
|
2023-09-29 18:45:58 +02:00
|
|
|
defer u.m.Unlock()
|
2023-09-29 19:53:49 +02:00
|
|
|
|
|
|
|
// Even if iconImages is nil, always create a slice.
|
|
|
|
// A 0-size slice and nil are distinguished.
|
|
|
|
// See the comment in updateIconIfNeeded.
|
2023-09-29 18:45:58 +02:00
|
|
|
u.iconImages = make([]image.Image, len(iconImages))
|
|
|
|
copy(u.iconImages, iconImages)
|
2017-09-22 21:12:02 +02:00
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) getInitWindowPositionInDIP() (int, int) {
|
2022-06-23 07:50:35 +02:00
|
|
|
if microsoftgdk.IsXbox() {
|
|
|
|
return 0, 0
|
|
|
|
}
|
|
|
|
|
2019-11-30 16:11:46 +01:00
|
|
|
u.m.RLock()
|
|
|
|
defer u.m.RUnlock()
|
2021-10-10 08:38:13 +02:00
|
|
|
if u.initWindowPositionXInDIP != invalidPos && u.initWindowPositionYInDIP != invalidPos {
|
|
|
|
return u.initWindowPositionXInDIP, u.initWindowPositionYInDIP
|
2019-11-30 16:11:46 +01:00
|
|
|
}
|
2019-12-22 04:46:57 +01:00
|
|
|
return invalidPos, invalidPos
|
2019-11-30 16:11:46 +01:00
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) setInitWindowPositionInDIP(x, y int) {
|
2022-06-23 07:50:35 +02:00
|
|
|
if microsoftgdk.IsXbox() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-11-30 16:11:46 +01:00
|
|
|
u.m.Lock()
|
|
|
|
defer u.m.Unlock()
|
|
|
|
|
2022-02-08 12:26:08 +01:00
|
|
|
// TODO: Update initMonitor if necessary (#1575).
|
2021-10-10 08:38:13 +02:00
|
|
|
u.initWindowPositionXInDIP = x
|
|
|
|
u.initWindowPositionYInDIP = y
|
2019-11-30 16:11:46 +01:00
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) getInitWindowSizeInDIP() (int, int) {
|
2022-06-23 07:50:35 +02:00
|
|
|
if microsoftgdk.IsXbox() {
|
|
|
|
return microsoftgdk.MonitorResolution()
|
|
|
|
}
|
|
|
|
|
2023-09-24 12:27:22 +02:00
|
|
|
u.m.RLock()
|
|
|
|
defer u.m.RUnlock()
|
|
|
|
return u.initWindowWidthInDIP, u.initWindowHeightInDIP
|
2019-12-16 02:52:53 +01:00
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) setInitWindowSizeInDIP(width, height int) {
|
2022-06-23 07:50:35 +02:00
|
|
|
if microsoftgdk.IsXbox() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2019-12-16 02:52:53 +01:00
|
|
|
u.m.Lock()
|
2021-10-10 08:38:13 +02:00
|
|
|
u.initWindowWidthInDIP, u.initWindowHeightInDIP = width, height
|
2019-12-16 02:52:53 +01:00
|
|
|
u.m.Unlock()
|
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) isInitWindowFloating() bool {
|
2022-06-23 07:50:35 +02:00
|
|
|
if microsoftgdk.IsXbox() {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2022-01-16 17:29:29 +01:00
|
|
|
u.m.RLock()
|
2020-03-20 13:46:23 +01:00
|
|
|
f := u.initWindowFloating
|
2022-01-16 17:29:29 +01:00
|
|
|
u.m.RUnlock()
|
2020-03-20 13:46:23 +01:00
|
|
|
return f
|
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) setInitWindowFloating(floating bool) {
|
2022-06-23 07:50:35 +02:00
|
|
|
if microsoftgdk.IsXbox() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2020-03-20 13:46:23 +01:00
|
|
|
u.m.Lock()
|
|
|
|
u.initWindowFloating = floating
|
|
|
|
u.m.Unlock()
|
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) isInitWindowMaximized() bool {
|
2022-06-23 07:50:35 +02:00
|
|
|
// TODO: Is this always true on Xbox?
|
2022-01-16 17:29:29 +01:00
|
|
|
u.m.RLock()
|
2021-06-13 16:25:24 +02:00
|
|
|
m := u.initWindowMaximized
|
2022-01-16 17:29:29 +01:00
|
|
|
u.m.RUnlock()
|
2021-06-13 16:25:24 +02:00
|
|
|
return m
|
2020-03-21 11:26:28 +01:00
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) setInitWindowMaximized(maximized bool) {
|
2020-03-21 11:26:28 +01:00
|
|
|
u.m.Lock()
|
2021-06-13 16:25:24 +02:00
|
|
|
u.initWindowMaximized = maximized
|
2020-08-23 19:55:31 +02:00
|
|
|
u.m.Unlock()
|
2020-02-09 15:03:03 +01:00
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) isInitWindowMousePassthrough() bool {
|
2023-09-18 10:48:07 +02:00
|
|
|
u.m.RLock()
|
|
|
|
defer u.m.RUnlock()
|
|
|
|
return u.initWindowMousePassthrough
|
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) setInitWindowMousePassthrough(enabled bool) {
|
2023-09-18 10:48:07 +02:00
|
|
|
u.m.Lock()
|
|
|
|
defer u.m.Unlock()
|
|
|
|
u.initWindowMousePassthrough = enabled
|
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) isWindowClosingHandled() bool {
|
2022-01-16 17:29:29 +01:00
|
|
|
u.m.RLock()
|
2021-06-13 13:52:14 +02:00
|
|
|
v := u.windowClosingHandled
|
2022-01-16 17:29:29 +01:00
|
|
|
u.m.RUnlock()
|
2021-06-13 13:52:14 +02:00
|
|
|
return v
|
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) setWindowClosingHandled(handled bool) {
|
2021-06-13 13:52:14 +02:00
|
|
|
u.m.Lock()
|
|
|
|
u.windowClosingHandled = handled
|
|
|
|
u.m.Unlock()
|
|
|
|
}
|
|
|
|
|
2019-02-07 09:19:24 +01:00
|
|
|
// isFullscreen must be called from the main thread.
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) isFullscreen() (bool, error) {
|
2017-08-12 11:31:16 +02:00
|
|
|
if !u.isRunning() {
|
2022-02-06 08:08:22 +01:00
|
|
|
panic("ui: isFullscreen can't be called before the main loop starts")
|
2017-08-12 11:31:16 +02:00
|
|
|
}
|
2023-10-03 16:07:53 +02:00
|
|
|
m, err := u.window.GetMonitor()
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
2023-10-07 11:05:03 +02:00
|
|
|
n, err := u.isNativeFullscreen()
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
return m != nil || n, nil
|
2017-08-12 11:31:16 +02:00
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) IsFullscreen() bool {
|
2022-11-24 16:59:15 +01:00
|
|
|
if microsoftgdk.IsXbox() {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2023-09-02 08:24:59 +02:00
|
|
|
if u.isTerminated() {
|
|
|
|
return false
|
|
|
|
}
|
2017-06-29 17:35:34 +02:00
|
|
|
if !u.isRunning() {
|
2017-08-02 17:19:04 +02:00
|
|
|
return u.isInitFullscreen()
|
2017-06-29 17:35:34 +02:00
|
|
|
}
|
2023-10-03 16:07:53 +02:00
|
|
|
var fullscreen bool
|
2022-12-28 07:59:53 +01:00
|
|
|
u.mainThread.Call(func() {
|
2023-09-02 08:24:59 +02:00
|
|
|
if u.isTerminated() {
|
|
|
|
return
|
|
|
|
}
|
2023-10-03 16:07:53 +02:00
|
|
|
b, err := u.isFullscreen()
|
|
|
|
if err != nil {
|
2023-10-15 08:50:39 +02:00
|
|
|
u.setError(err)
|
2023-10-03 16:07:53 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
fullscreen = b
|
2018-02-24 10:10:39 +01:00
|
|
|
})
|
2023-10-03 16:07:53 +02:00
|
|
|
return fullscreen
|
2017-06-29 17:35:34 +02:00
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) SetFullscreen(fullscreen bool) {
|
2022-11-24 16:59:15 +01:00
|
|
|
if microsoftgdk.IsXbox() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-09-02 08:24:59 +02:00
|
|
|
if u.isTerminated() {
|
|
|
|
return
|
|
|
|
}
|
2017-08-02 18:07:04 +02:00
|
|
|
if !u.isRunning() {
|
|
|
|
u.setInitFullscreen(fullscreen)
|
|
|
|
return
|
|
|
|
}
|
2019-12-09 18:37:10 +01:00
|
|
|
|
2022-12-28 07:59:53 +01:00
|
|
|
u.mainThread.Call(func() {
|
2023-09-02 08:24:59 +02:00
|
|
|
if u.isTerminated() {
|
|
|
|
return
|
|
|
|
}
|
2023-10-03 16:07:53 +02:00
|
|
|
f, err := u.isFullscreen()
|
|
|
|
if err != nil {
|
2023-10-15 08:50:39 +02:00
|
|
|
u.setError(err)
|
2023-10-03 16:07:53 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
if f == fullscreen {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if err := u.setFullscreen(fullscreen); err != nil {
|
2023-10-15 08:50:39 +02:00
|
|
|
u.setError(err)
|
2022-03-29 20:28:18 +02:00
|
|
|
return
|
|
|
|
}
|
2019-12-09 18:37:10 +01:00
|
|
|
})
|
2017-08-02 18:07:04 +02:00
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) IsFocused() bool {
|
2020-01-16 02:47:23 +01:00
|
|
|
if !u.isRunning() {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2020-03-20 16:08:40 +01:00
|
|
|
var focused bool
|
2022-12-28 07:59:53 +01:00
|
|
|
u.mainThread.Call(func() {
|
2023-09-02 08:24:59 +02:00
|
|
|
if u.isTerminated() {
|
|
|
|
return
|
|
|
|
}
|
2023-10-03 16:07:53 +02:00
|
|
|
a, err := u.window.GetAttrib(glfw.Focused)
|
|
|
|
if err != nil {
|
2023-10-15 08:50:39 +02:00
|
|
|
u.setError(err)
|
2023-10-03 16:07:53 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
focused = a == glfw.True
|
2020-01-16 02:47:23 +01:00
|
|
|
})
|
2020-03-20 16:08:40 +01:00
|
|
|
return focused
|
2020-01-16 02:47:23 +01:00
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) SetRunnableOnUnfocused(runnableOnUnfocused bool) {
|
2020-03-20 16:34:12 +01:00
|
|
|
u.setRunnableOnUnfocused(runnableOnUnfocused)
|
2017-08-02 16:37:50 +02:00
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) IsRunnableOnUnfocused() bool {
|
2020-03-20 16:34:12 +01:00
|
|
|
return u.isRunnableOnUnfocused()
|
2017-08-02 16:37:50 +02:00
|
|
|
}
|
|
|
|
|
2023-10-15 09:10:13 +02:00
|
|
|
func (u *UserInterface) FPSMode() FPSModeType {
|
|
|
|
u.m.Lock()
|
|
|
|
defer u.m.Unlock()
|
|
|
|
return u.fpsMode
|
|
|
|
}
|
|
|
|
|
|
|
|
func (u *UserInterface) SetFPSMode(mode FPSModeType) {
|
2023-09-02 08:24:59 +02:00
|
|
|
if u.isTerminated() {
|
|
|
|
return
|
|
|
|
}
|
2018-07-14 13:50:09 +02:00
|
|
|
if !u.isRunning() {
|
2019-08-18 18:47:55 +02:00
|
|
|
u.m.Lock()
|
2023-10-15 09:10:13 +02:00
|
|
|
defer u.m.Unlock()
|
2021-12-29 14:21:27 +01:00
|
|
|
u.fpsMode = mode
|
2018-07-14 13:50:09 +02:00
|
|
|
return
|
|
|
|
}
|
2023-10-03 16:07:53 +02:00
|
|
|
|
2022-12-28 07:59:53 +01:00
|
|
|
u.mainThread.Call(func() {
|
2023-09-02 08:24:59 +02:00
|
|
|
if u.isTerminated() {
|
|
|
|
return
|
|
|
|
}
|
2021-07-22 16:55:26 +02:00
|
|
|
if !u.fpsModeInited {
|
2021-12-29 14:21:27 +01:00
|
|
|
u.fpsMode = mode
|
2022-01-02 19:30:29 +01:00
|
|
|
return
|
2020-06-14 04:50:58 +02:00
|
|
|
}
|
2023-10-15 09:10:13 +02:00
|
|
|
if err := u.setFPSMode(mode); err != nil {
|
2023-10-15 08:50:39 +02:00
|
|
|
u.setError(err)
|
2023-10-03 16:07:53 +02:00
|
|
|
return
|
|
|
|
}
|
2019-12-09 18:37:10 +01:00
|
|
|
})
|
2018-07-14 13:50:09 +02:00
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) ScheduleFrame() {
|
2021-07-22 18:07:28 +02:00
|
|
|
if !u.isRunning() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
// As the main thread can be blocked, do not check the current FPS mode.
|
|
|
|
// PostEmptyEvent is concurrent safe.
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := glfw.PostEmptyEvent(); err != nil {
|
2023-10-15 08:50:39 +02:00
|
|
|
u.setError(err)
|
2023-10-03 16:07:53 +02:00
|
|
|
return
|
|
|
|
}
|
2021-07-22 18:07:28 +02:00
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) CursorMode() CursorMode {
|
2023-09-02 08:24:59 +02:00
|
|
|
if u.isTerminated() {
|
|
|
|
return 0
|
|
|
|
}
|
2017-08-12 08:39:41 +02:00
|
|
|
if !u.isRunning() {
|
2019-12-14 04:30:03 +01:00
|
|
|
return u.getInitCursorMode()
|
2017-08-12 08:39:41 +02:00
|
|
|
}
|
2022-01-02 19:30:29 +01:00
|
|
|
|
|
|
|
var mode int
|
2022-12-28 07:59:53 +01:00
|
|
|
u.mainThread.Call(func() {
|
2023-09-02 08:24:59 +02:00
|
|
|
if u.isTerminated() {
|
|
|
|
return
|
|
|
|
}
|
2023-10-03 16:07:53 +02:00
|
|
|
m, err := u.window.GetInputMode(glfw.CursorMode)
|
|
|
|
if err != nil {
|
2023-10-15 08:50:39 +02:00
|
|
|
u.setError(err)
|
2023-10-03 16:07:53 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
mode = m
|
2017-08-12 08:39:41 +02:00
|
|
|
})
|
2022-01-02 19:30:29 +01:00
|
|
|
|
2022-02-06 09:43:52 +01:00
|
|
|
var v CursorMode
|
2022-01-02 19:30:29 +01:00
|
|
|
switch mode {
|
|
|
|
case glfw.CursorNormal:
|
2022-02-06 09:43:52 +01:00
|
|
|
v = CursorModeVisible
|
2022-01-02 19:30:29 +01:00
|
|
|
case glfw.CursorHidden:
|
2022-02-06 09:43:52 +01:00
|
|
|
v = CursorModeHidden
|
2022-01-02 19:30:29 +01:00
|
|
|
case glfw.CursorDisabled:
|
2022-02-06 09:43:52 +01:00
|
|
|
v = CursorModeCaptured
|
2022-01-02 19:30:29 +01:00
|
|
|
default:
|
2022-02-06 08:08:22 +01:00
|
|
|
panic(fmt.Sprintf("ui: invalid GLFW cursor mode: %d", mode))
|
2022-01-02 19:30:29 +01:00
|
|
|
}
|
2017-08-12 08:39:41 +02:00
|
|
|
return v
|
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) SetCursorMode(mode CursorMode) {
|
2023-09-02 08:24:59 +02:00
|
|
|
if u.isTerminated() {
|
|
|
|
return
|
|
|
|
}
|
2017-08-12 08:39:41 +02:00
|
|
|
if !u.isRunning() {
|
2019-12-14 04:30:03 +01:00
|
|
|
u.setInitCursorMode(mode)
|
2017-08-12 08:39:41 +02:00
|
|
|
return
|
|
|
|
}
|
2022-12-28 07:59:53 +01:00
|
|
|
u.mainThread.Call(func() {
|
2023-09-02 08:24:59 +02:00
|
|
|
if u.isTerminated() {
|
|
|
|
return
|
|
|
|
}
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := u.window.SetInputMode(glfw.CursorMode, driverCursorModeToGLFWCursorMode(mode)); err != nil {
|
2023-10-15 08:50:39 +02:00
|
|
|
u.setError(err)
|
2023-10-03 16:07:53 +02:00
|
|
|
return
|
|
|
|
}
|
2023-01-07 12:03:17 +01:00
|
|
|
if mode == CursorModeVisible {
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := u.window.SetCursor(glfwSystemCursors[u.getCursorShape()]); err != nil {
|
2023-10-15 08:50:39 +02:00
|
|
|
u.setError(err)
|
2023-10-03 16:07:53 +02:00
|
|
|
return
|
|
|
|
}
|
2023-01-07 12:03:17 +01:00
|
|
|
}
|
2017-08-12 08:39:41 +02:00
|
|
|
})
|
2016-09-03 10:17:54 +02:00
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) CursorShape() CursorShape {
|
2021-04-11 07:21:38 +02:00
|
|
|
return u.getCursorShape()
|
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) SetCursorShape(shape CursorShape) {
|
2023-09-02 08:24:59 +02:00
|
|
|
if u.isTerminated() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2021-04-11 07:21:38 +02:00
|
|
|
old := u.setCursorShape(shape)
|
|
|
|
if old == shape {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if !u.isRunning() {
|
|
|
|
return
|
|
|
|
}
|
2022-12-28 07:59:53 +01:00
|
|
|
u.mainThread.Call(func() {
|
2023-09-02 08:24:59 +02:00
|
|
|
if u.isTerminated() {
|
|
|
|
return
|
|
|
|
}
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := u.window.SetCursor(glfwSystemCursors[shape]); err != nil {
|
2023-10-15 08:50:39 +02:00
|
|
|
u.setError(err)
|
2023-10-03 16:07:53 +02:00
|
|
|
return
|
|
|
|
}
|
2021-04-11 07:21:38 +02:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2019-12-07 11:28:15 +01:00
|
|
|
// createWindow creates a GLFW window.
|
|
|
|
//
|
|
|
|
// createWindow must be called from the main thread.
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) createWindow() error {
|
2019-12-07 11:28:15 +01:00
|
|
|
if u.window != nil {
|
2022-02-06 08:08:22 +01:00
|
|
|
panic("ui: u.window must not exist at createWindow")
|
2019-12-07 11:28:15 +01:00
|
|
|
}
|
|
|
|
|
2023-09-24 11:48:56 +02:00
|
|
|
monitor := u.getInitMonitor()
|
|
|
|
ww, wh := u.getInitWindowSizeInDIP()
|
2024-03-03 15:27:02 +01:00
|
|
|
s := monitor.DeviceScaleFactor()
|
|
|
|
width := int(dipToGLFWPixel(float64(ww), s))
|
|
|
|
height := int(dipToGLFWPixel(float64(wh), s))
|
2022-02-08 11:35:51 +01:00
|
|
|
window, err := glfw.CreateWindow(width, height, "", nil, nil)
|
2019-12-07 11:28:15 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-09-24 11:48:56 +02:00
|
|
|
u.window = window
|
2024-07-15 15:46:54 +02:00
|
|
|
// Set the running state true just a window is set (#2742).
|
|
|
|
u.setRunning(true)
|
2023-08-30 14:02:04 +02:00
|
|
|
|
2023-09-24 11:48:56 +02:00
|
|
|
// The position must be set before the size is set (#1982).
|
2023-09-24 12:21:46 +02:00
|
|
|
// setWindowSizeInDIP refers the current monitor's device scale.
|
2023-09-24 11:48:56 +02:00
|
|
|
wx, wy := u.getInitWindowPositionInDIP()
|
2023-09-27 17:52:12 +02:00
|
|
|
mw, mh := monitor.sizeInDIP()
|
|
|
|
if max := int(mw) - ww; wx >= max {
|
2023-09-24 11:48:56 +02:00
|
|
|
wx = max
|
|
|
|
}
|
2023-09-27 17:52:12 +02:00
|
|
|
if max := int(mh) - wh; wy >= max {
|
2023-09-24 11:48:56 +02:00
|
|
|
wy = max
|
|
|
|
}
|
2023-09-24 12:07:09 +02:00
|
|
|
if wx < 0 {
|
|
|
|
wx = 0
|
|
|
|
}
|
|
|
|
if wy < 0 {
|
|
|
|
wy = 0
|
|
|
|
}
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := u.setWindowPositionInDIP(wx, wy, monitor); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-09-23 10:09:52 +02:00
|
|
|
|
2023-09-24 11:48:56 +02:00
|
|
|
// Though the size is already specified, call setWindowSizeInDIP explicitly to adjust member variables.
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := u.setWindowSizeInDIP(ww, wh, true); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-08-30 14:02:04 +02:00
|
|
|
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := initializeWindowAfterCreation(window); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-12-07 11:28:15 +01:00
|
|
|
|
2021-10-12 16:29:15 +02:00
|
|
|
// Even just after a window creation, FramebufferSize callback might be invoked (#1847).
|
|
|
|
// Ensure to consume this callback.
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := u.waitForFramebufferSizeCallback(u.window, nil); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-10-12 16:29:15 +02:00
|
|
|
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := u.window.SetInputMode(glfw.CursorMode, driverCursorModeToGLFWCursorMode(u.getInitCursorMode())); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := u.window.SetCursor(glfwSystemCursors[u.getCursorShape()]); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := u.window.SetTitle(u.title); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-02-08 11:23:38 +01:00
|
|
|
// Icons are set after every frame. They don't have to be cared here.
|
2019-12-07 11:28:15 +01:00
|
|
|
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := u.updateWindowSizeLimits(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-02-08 08:06:12 +01:00
|
|
|
|
2021-03-05 17:39:20 +01:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-06-13 13:52:14 +02:00
|
|
|
// registerWindowCloseCallback must be called from the main thread.
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) registerWindowCloseCallback() error {
|
2022-05-20 10:34:06 +02:00
|
|
|
if u.closeCallback == nil {
|
2023-10-07 16:21:29 +02:00
|
|
|
u.closeCallback = func(_ *glfw.Window) {
|
2021-06-13 13:52:14 +02:00
|
|
|
u.m.Lock()
|
2023-01-21 15:34:20 +01:00
|
|
|
u.inputState.WindowBeingClosed = true
|
2021-06-13 13:52:14 +02:00
|
|
|
u.m.Unlock()
|
|
|
|
|
|
|
|
if !u.isWindowClosingHandled() {
|
|
|
|
return
|
|
|
|
}
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := u.window.Focus(); err != nil {
|
2023-10-15 08:50:39 +02:00
|
|
|
u.setError(err)
|
2023-10-03 16:07:53 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
if err := u.window.SetShouldClose(false); err != nil {
|
2023-10-15 08:50:39 +02:00
|
|
|
u.setError(err)
|
2023-10-03 16:07:53 +02:00
|
|
|
return
|
|
|
|
}
|
2023-10-07 16:21:29 +02:00
|
|
|
}
|
2021-06-13 13:52:14 +02:00
|
|
|
}
|
2023-10-03 16:07:53 +02:00
|
|
|
if _, err := u.window.SetCloseCallback(u.closeCallback); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
2021-06-13 13:52:14 +02:00
|
|
|
}
|
|
|
|
|
2022-02-02 17:00:05 +01:00
|
|
|
// registerWindowFramebufferSizeCallback must be called from the main thread.
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) registerWindowFramebufferSizeCallback() error {
|
2024-06-30 08:59:12 +02:00
|
|
|
if u.defaultFramebufferSizeCallback == nil {
|
2022-02-02 17:00:05 +01:00
|
|
|
// When the window gets resized (either by manual window resize or a window
|
|
|
|
// manager), glfw sends a framebuffer size callback which we need to handle (#1960).
|
|
|
|
// This event is the only way to handle the size change at least on i3 window manager.
|
2023-10-07 16:21:29 +02:00
|
|
|
u.defaultFramebufferSizeCallback = func(_ *glfw.Window, w, h int) {
|
2023-10-03 16:07:53 +02:00
|
|
|
f, err := u.isFullscreen()
|
|
|
|
if err != nil {
|
2023-10-15 08:50:39 +02:00
|
|
|
u.setError(err)
|
2022-02-02 17:00:05 +01:00
|
|
|
return
|
|
|
|
}
|
2023-10-03 16:07:53 +02:00
|
|
|
if f {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
a, err := u.window.GetAttrib(glfw.Iconified)
|
|
|
|
if err != nil {
|
2023-10-15 08:50:39 +02:00
|
|
|
u.setError(err)
|
2023-10-03 16:07:53 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
if a == glfw.True {
|
2022-04-10 09:50:47 +02:00
|
|
|
return
|
|
|
|
}
|
2022-02-02 17:00:05 +01:00
|
|
|
|
|
|
|
// The framebuffer size is always scaled by the device scale factor (#1975).
|
|
|
|
// See also the implementation in uiContext.updateOffscreen.
|
2023-10-03 16:07:53 +02:00
|
|
|
m, err := u.currentMonitor()
|
|
|
|
if err != nil {
|
2023-10-15 08:50:39 +02:00
|
|
|
u.setError(err)
|
2023-10-03 16:07:53 +02:00
|
|
|
return
|
|
|
|
}
|
2024-02-12 07:03:07 +01:00
|
|
|
s := m.DeviceScaleFactor()
|
2022-02-02 17:00:05 +01:00
|
|
|
ww := int(float64(w) / s)
|
|
|
|
wh := int(float64(h) / s)
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := u.setWindowSizeInDIP(ww, wh, false); err != nil {
|
2023-10-15 08:50:39 +02:00
|
|
|
u.setError(err)
|
2023-10-03 16:07:53 +02:00
|
|
|
return
|
|
|
|
}
|
2023-10-07 16:21:29 +02:00
|
|
|
}
|
2022-02-02 17:00:05 +01:00
|
|
|
}
|
2023-10-03 16:07:53 +02:00
|
|
|
if _, err := u.window.SetFramebufferSizeCallback(u.defaultFramebufferSizeCallback); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
2022-02-02 17:00:05 +01:00
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) registerDropCallback() error {
|
2023-01-21 15:34:20 +01:00
|
|
|
if u.dropCallback == nil {
|
2023-10-07 16:21:29 +02:00
|
|
|
u.dropCallback = func(_ *glfw.Window, names []string) {
|
2023-01-21 15:34:20 +01:00
|
|
|
u.m.Lock()
|
|
|
|
defer u.m.Unlock()
|
2023-01-22 18:48:50 +01:00
|
|
|
u.inputState.DroppedFiles = file.NewVirtualFS(names)
|
2023-10-07 16:21:29 +02:00
|
|
|
}
|
2023-01-21 15:34:20 +01:00
|
|
|
}
|
2023-10-03 16:07:53 +02:00
|
|
|
if _, err := u.window.SetDropCallback(u.dropCallback); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
2023-01-21 15:34:20 +01:00
|
|
|
}
|
|
|
|
|
2021-10-12 16:29:15 +02:00
|
|
|
// waitForFramebufferSizeCallback waits for GLFW's FramebufferSize callback.
|
|
|
|
// f is a process executed after registering the callback.
|
|
|
|
// If the callback is not invoked for a while, waitForFramebufferSizeCallback times out and return.
|
|
|
|
//
|
|
|
|
// waitForFramebufferSizeCallback must be called from the main thread.
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) waitForFramebufferSizeCallback(window *glfw.Window, f func() error) error {
|
2021-10-12 16:29:15 +02:00
|
|
|
u.framebufferSizeCallbackCh = make(chan struct{}, 1)
|
|
|
|
|
2022-05-20 10:34:06 +02:00
|
|
|
if u.framebufferSizeCallback == nil {
|
2023-10-07 16:21:29 +02:00
|
|
|
u.framebufferSizeCallback = func(_ *glfw.Window, _, _ int) {
|
2021-10-12 16:29:15 +02:00
|
|
|
// This callback can be invoked multiple times by one PollEvents in theory (#1618).
|
|
|
|
// Allow the case when the channel is full.
|
|
|
|
select {
|
|
|
|
case u.framebufferSizeCallbackCh <- struct{}{}:
|
|
|
|
default:
|
|
|
|
}
|
2023-10-07 16:21:29 +02:00
|
|
|
}
|
2021-10-12 16:29:15 +02:00
|
|
|
}
|
2023-10-03 16:07:53 +02:00
|
|
|
if _, err := window.SetFramebufferSizeCallback(u.framebufferSizeCallback); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-10-12 16:29:15 +02:00
|
|
|
|
|
|
|
if f != nil {
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := f(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-10-12 16:29:15 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// Use the timeout as FramebufferSize event might not be fired (#1618).
|
2022-02-02 16:28:11 +01:00
|
|
|
t := time.NewTimer(100 * time.Millisecond)
|
2021-10-12 16:29:15 +02:00
|
|
|
defer t.Stop()
|
|
|
|
|
|
|
|
event:
|
|
|
|
for {
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := glfw.PollEvents(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-10-12 16:29:15 +02:00
|
|
|
select {
|
|
|
|
case <-u.framebufferSizeCallbackCh:
|
|
|
|
break event
|
|
|
|
case <-t.C:
|
|
|
|
break event
|
|
|
|
default:
|
|
|
|
time.Sleep(time.Millisecond)
|
|
|
|
}
|
|
|
|
}
|
2023-10-03 16:07:53 +02:00
|
|
|
if _, err := window.SetFramebufferSizeCallback(u.defaultFramebufferSizeCallback); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-01-16 16:28:25 +01:00
|
|
|
|
2021-10-12 16:29:15 +02:00
|
|
|
close(u.framebufferSizeCallbackCh)
|
|
|
|
u.framebufferSizeCallbackCh = nil
|
2023-10-03 16:07:53 +02:00
|
|
|
|
|
|
|
return nil
|
2021-10-12 16:29:15 +02:00
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) initOnMainThread(options *RunOptions) error {
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := glfw.WindowHint(glfw.AutoIconify, glfw.False); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-02-11 12:38:45 +01:00
|
|
|
|
2024-04-06 15:25:53 +02:00
|
|
|
// Window is shown after the first buffer swap (#2725).
|
2024-04-06 19:52:16 +02:00
|
|
|
if err := glfw.WindowHint(glfw.Visible, glfw.False); err != nil {
|
|
|
|
return err
|
2023-12-29 06:16:54 +01:00
|
|
|
}
|
|
|
|
|
2024-02-11 11:06:04 +01:00
|
|
|
if err := glfw.WindowHintString(glfw.X11ClassName, options.X11ClassName); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := glfw.WindowHintString(glfw.X11InstanceName, options.X11InstanceName); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2023-03-13 16:18:28 +01:00
|
|
|
// On macOS, window decoration should be initialized once after buffers are swapped (#2600).
|
|
|
|
if runtime.GOOS != "darwin" {
|
|
|
|
decorated := glfw.False
|
|
|
|
if u.isInitWindowDecorated() {
|
|
|
|
decorated = glfw.True
|
|
|
|
}
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := glfw.WindowHint(glfw.Decorated, decorated); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-02-11 12:38:45 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
glfwTransparent := glfw.False
|
2022-12-09 13:23:41 +01:00
|
|
|
if options.ScreenTransparent {
|
2022-02-11 12:38:45 +01:00
|
|
|
glfwTransparent = glfw.True
|
|
|
|
}
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := glfw.WindowHint(glfw.TransparentFramebuffer, glfwTransparent); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-02-11 12:38:45 +01:00
|
|
|
|
2023-10-15 09:38:05 +02:00
|
|
|
g, lib, err := newGraphicsDriver(&graphicsDriverCreatorImpl{
|
2022-12-09 13:23:41 +01:00
|
|
|
transparent: options.ScreenTransparent,
|
2022-12-09 06:07:04 +01:00
|
|
|
}, options.GraphicsLibrary)
|
2022-03-22 15:33:21 +01:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
u.graphicsDriver = g
|
2023-10-15 08:50:39 +02:00
|
|
|
u.setGraphicsLibrary(lib)
|
2022-12-09 13:23:41 +01:00
|
|
|
u.graphicsDriver.SetTransparent(options.ScreenTransparent)
|
2022-02-11 12:38:45 +01:00
|
|
|
|
2023-12-20 20:05:13 +01:00
|
|
|
// internal/glfw is customized and the default client API is NoAPI, not OpenGLAPI.
|
|
|
|
// Then, glfw.WindowHint(glfw.ClientAPI, glfw.NoAPI) doesn't have to be called.
|
2018-12-18 17:01:16 +01:00
|
|
|
|
2022-02-09 16:53:18 +01:00
|
|
|
// Before creating a window, set it unresizable no matter what u.isInitWindowResizable() is (#1987).
|
|
|
|
// Making the window resizable here doesn't work correctly when switching to enable resizing.
|
2021-12-29 14:08:59 +01:00
|
|
|
resizable := glfw.False
|
|
|
|
if u.windowResizingMode == WindowResizingModeEnabled {
|
|
|
|
resizable = glfw.True
|
|
|
|
}
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := glfw.WindowHint(glfw.Resizable, resizable); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-03-20 13:46:23 +01:00
|
|
|
|
2020-10-16 21:21:07 +02:00
|
|
|
floating := glfw.False
|
|
|
|
if u.isInitWindowFloating() {
|
|
|
|
floating = glfw.True
|
|
|
|
}
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := glfw.WindowHint(glfw.Floating, floating); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-02-09 15:03:03 +01:00
|
|
|
|
2022-12-09 11:04:52 +01:00
|
|
|
focused := glfw.True
|
|
|
|
if options.InitUnfocused {
|
|
|
|
focused = glfw.False
|
2020-10-16 21:21:07 +02:00
|
|
|
}
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := glfw.WindowHint(glfw.FocusOnShow, focused); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-11-10 11:26:46 +01:00
|
|
|
|
2023-09-18 10:48:07 +02:00
|
|
|
mousePassthrough := glfw.False
|
|
|
|
if u.isInitWindowMousePassthrough() {
|
|
|
|
mousePassthrough = glfw.True
|
|
|
|
}
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := glfw.WindowHint(glfw.MousePassthrough, mousePassthrough); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-09-18 10:48:07 +02:00
|
|
|
|
2020-10-16 21:21:07 +02:00
|
|
|
// Set the window visible explicitly or the application freezes on Wayland (#974).
|
|
|
|
if os.Getenv("WAYLAND_DISPLAY") != "" {
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := glfw.WindowHint(glfw.Visible, glfw.True); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-10-16 21:21:07 +02:00
|
|
|
}
|
2018-12-17 19:07:13 +01:00
|
|
|
|
2023-09-24 11:48:56 +02:00
|
|
|
if err := u.createWindow(); err != nil {
|
2019-12-07 11:28:15 +01:00
|
|
|
return err
|
|
|
|
}
|
2021-09-24 19:46:18 +02:00
|
|
|
|
2020-03-28 14:33:58 +01:00
|
|
|
// Maximizing a window requires a proper size and position. Call Maximize here (#1117).
|
|
|
|
if u.isInitWindowMaximized() {
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := u.window.Maximize(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-03-28 14:33:58 +01:00
|
|
|
}
|
|
|
|
|
2023-10-07 11:05:03 +02:00
|
|
|
if err := u.setWindowResizingModeForOS(u.windowResizingMode); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-12-29 14:08:59 +01:00
|
|
|
|
2022-12-12 17:03:19 +01:00
|
|
|
if options.SkipTaskbar {
|
|
|
|
// Ignore the error.
|
|
|
|
_ = u.skipTaskbar()
|
|
|
|
}
|
|
|
|
|
2023-12-23 11:17:50 +01:00
|
|
|
switch g := u.graphicsDriver.(type) {
|
|
|
|
case interface{ SetGLFWWindow(window *glfw.Window) }:
|
|
|
|
g.SetGLFWWindow(u.window)
|
|
|
|
case interface{ SetWindow(uintptr) }:
|
2023-10-03 16:07:53 +02:00
|
|
|
w, err := u.nativeWindow()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
g.SetWindow(w)
|
2022-03-19 15:55:14 +01:00
|
|
|
}
|
2020-10-16 21:21:07 +02:00
|
|
|
|
2023-10-03 16:07:53 +02:00
|
|
|
w, err := u.nativeWindow()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
gamepad.SetNativeWindow(w)
|
2022-06-03 11:42:35 +02:00
|
|
|
|
2022-06-13 05:28:17 +02:00
|
|
|
// Register callbacks after the window initialization done.
|
|
|
|
// The callback might cause swapping frames, that assumes the window is already set (#2137).
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := u.registerWindowCloseCallback(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := u.registerWindowFramebufferSizeCallback(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := u.registerInputCallbacks(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := u.registerDropCallback(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-06-13 05:28:17 +02:00
|
|
|
|
2020-10-16 21:21:07 +02:00
|
|
|
return nil
|
2016-02-25 19:09:23 +01:00
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) outsideSize() (float64, float64, error) {
|
2023-10-03 16:07:53 +02:00
|
|
|
f, err := u.isFullscreen()
|
|
|
|
if err != nil {
|
|
|
|
return 0, 0, err
|
|
|
|
}
|
2023-10-07 11:05:03 +02:00
|
|
|
n, err := u.isNativeFullscreen()
|
|
|
|
if err != nil {
|
|
|
|
return 0, 0, err
|
|
|
|
}
|
|
|
|
if f && !n {
|
2021-09-18 17:13:53 +02:00
|
|
|
// On Linux, the window size is not reliable just after making the window
|
|
|
|
// fullscreened. Use the monitor size.
|
|
|
|
// On macOS's native fullscreen, the window's size returns a more precise size
|
|
|
|
// reflecting the adjustment of the view size (#1745).
|
2022-08-10 07:50:20 +02:00
|
|
|
var w, h float64
|
2023-10-03 16:07:53 +02:00
|
|
|
m, err := u.currentMonitor()
|
|
|
|
if err != nil {
|
|
|
|
return 0, 0, err
|
|
|
|
}
|
|
|
|
if m != nil {
|
2023-09-27 17:52:12 +02:00
|
|
|
w, h = m.sizeInDIP()
|
2022-03-31 20:51:24 +02:00
|
|
|
}
|
2023-10-03 16:07:53 +02:00
|
|
|
return w, h, nil
|
2022-08-10 07:50:20 +02:00
|
|
|
}
|
|
|
|
|
2023-10-03 16:07:53 +02:00
|
|
|
a, err := u.window.GetAttrib(glfw.Iconified)
|
|
|
|
if err != nil {
|
|
|
|
return 0, 0, err
|
|
|
|
}
|
|
|
|
if a == glfw.True {
|
|
|
|
return float64(u.origWindowWidthInDIP), float64(u.origWindowHeightInDIP), nil
|
2018-02-01 18:08:03 +01:00
|
|
|
}
|
2020-10-16 22:53:15 +02:00
|
|
|
|
2022-09-24 19:03:27 +02:00
|
|
|
// Instead of u.origWindow{Width,Height}InDIP, use the actual window size here.
|
2022-08-10 06:28:46 +02:00
|
|
|
// On Windows, the specified size at SetSize and the actual window size might
|
2022-08-10 07:50:20 +02:00
|
|
|
// not match (#1163).
|
2023-10-03 16:07:53 +02:00
|
|
|
ww, wh, err := u.window.GetSize()
|
|
|
|
if err != nil {
|
|
|
|
return 0, 0, err
|
|
|
|
}
|
|
|
|
m, err := u.currentMonitor()
|
|
|
|
if err != nil {
|
|
|
|
return 0, 0, err
|
|
|
|
}
|
2024-03-03 15:27:02 +01:00
|
|
|
s := m.DeviceScaleFactor()
|
|
|
|
w := dipFromGLFWPixel(float64(ww), s)
|
|
|
|
h := dipFromGLFWPixel(float64(wh), s)
|
2023-10-03 16:07:53 +02:00
|
|
|
return w, h, nil
|
2018-02-01 18:08:03 +01:00
|
|
|
}
|
|
|
|
|
2023-10-15 09:10:13 +02:00
|
|
|
// setFPSMode must be called from the main thread.
|
|
|
|
func (u *UserInterface) setFPSMode(fpsMode FPSModeType) error {
|
2021-12-29 14:21:27 +01:00
|
|
|
needUpdate := u.fpsMode != fpsMode || !u.fpsModeInited
|
2021-08-31 04:43:08 +02:00
|
|
|
u.fpsMode = fpsMode
|
|
|
|
u.fpsModeInited = true
|
|
|
|
|
2021-12-29 14:21:27 +01:00
|
|
|
if !needUpdate {
|
2023-10-03 16:07:53 +02:00
|
|
|
return nil
|
2021-12-29 14:21:27 +01:00
|
|
|
}
|
|
|
|
|
2021-08-31 04:43:08 +02:00
|
|
|
sticky := glfw.True
|
2022-02-06 09:43:52 +01:00
|
|
|
if fpsMode == FPSModeVsyncOffMinimum {
|
2021-08-31 04:43:08 +02:00
|
|
|
sticky = glfw.False
|
|
|
|
}
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := u.window.SetInputMode(glfw.StickyMouseButtonsMode, sticky); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := u.window.SetInputMode(glfw.StickyKeysMode, sticky); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2023-10-28 07:19:37 +02:00
|
|
|
vsyncEnabled := u.fpsMode == FPSModeVsyncOn
|
2023-12-17 07:36:12 +01:00
|
|
|
graphicscommand.SetVsyncEnabled(vsyncEnabled, u.graphicsDriver)
|
2023-10-28 07:50:30 +02:00
|
|
|
|
2023-10-03 16:07:53 +02:00
|
|
|
return nil
|
2021-08-31 04:43:08 +02:00
|
|
|
}
|
|
|
|
|
2020-10-16 23:01:05 +02:00
|
|
|
// update must be called from the main thread.
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) update() (float64, float64, error) {
|
2023-10-15 08:50:39 +02:00
|
|
|
if err := u.error(); err != nil {
|
2023-10-04 17:39:15 +02:00
|
|
|
return 0, 0, err
|
2021-01-19 18:21:51 +01:00
|
|
|
}
|
|
|
|
|
2023-10-03 16:07:53 +02:00
|
|
|
sc, err := u.window.ShouldClose()
|
|
|
|
if err != nil {
|
|
|
|
return 0, 0, err
|
|
|
|
}
|
|
|
|
if sc {
|
2022-02-06 09:43:52 +01:00
|
|
|
return 0, 0, RegularTermination
|
2020-10-16 23:01:05 +02:00
|
|
|
}
|
2020-10-16 21:37:38 +02:00
|
|
|
|
2023-03-13 13:40:25 +01:00
|
|
|
// On macOS, one swapping buffers seems required before entering fullscreen (#2599).
|
|
|
|
if u.isInitFullscreen() && (u.bufferOnceSwapped || runtime.GOOS != "darwin") {
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := u.setFullscreen(true); err != nil {
|
|
|
|
return 0, 0, err
|
|
|
|
}
|
2020-10-16 23:01:05 +02:00
|
|
|
u.setInitFullscreen(false)
|
|
|
|
}
|
2020-10-16 22:31:21 +02:00
|
|
|
|
2023-03-13 16:18:28 +01:00
|
|
|
if runtime.GOOS == "darwin" && u.bufferOnceSwapped {
|
2023-10-03 16:07:53 +02:00
|
|
|
var err error
|
2023-03-13 16:18:28 +01:00
|
|
|
u.darwinInitOnce.Do(func() {
|
|
|
|
// On macOS, window decoration should be initialized once after buffers are swapped (#2600).
|
|
|
|
decorated := glfw.False
|
|
|
|
if u.isInitWindowDecorated() {
|
|
|
|
decorated = glfw.True
|
|
|
|
}
|
2023-10-03 16:07:53 +02:00
|
|
|
if err = u.window.SetAttrib(glfw.Decorated, decorated); err != nil {
|
|
|
|
return
|
|
|
|
}
|
2023-12-29 06:16:54 +01:00
|
|
|
})
|
|
|
|
if err != nil {
|
|
|
|
return 0, 0, err
|
|
|
|
}
|
|
|
|
}
|
2023-03-13 16:18:28 +01:00
|
|
|
|
2023-12-29 06:16:54 +01:00
|
|
|
if u.bufferOnceSwapped {
|
|
|
|
var err error
|
|
|
|
u.showWindowOnce.Do(func() {
|
|
|
|
// Show the window after first buffer swap to avoid flash of white especially on Windows.
|
2023-10-03 16:07:53 +02:00
|
|
|
if err = u.window.Show(); err != nil {
|
|
|
|
return
|
|
|
|
}
|
2024-03-10 04:44:26 +01:00
|
|
|
if err = u.window.Focus(); err != nil {
|
|
|
|
return
|
|
|
|
}
|
2024-04-06 19:52:16 +02:00
|
|
|
|
|
|
|
if runtime.GOOS == "darwin" || runtime.GOOS == "windows" {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
// On Linux or UNIX, there is a problematic desktop environment like i3wm
|
|
|
|
// where an invisible window size cannot be initialized correctly (#2951).
|
|
|
|
// Call SetSize explicitly after the window becomes visible.
|
|
|
|
|
|
|
|
fullscreen, e := u.isFullscreen()
|
|
|
|
if e != nil {
|
|
|
|
err = e
|
|
|
|
return
|
|
|
|
}
|
|
|
|
if fullscreen {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
m, e := u.currentMonitor()
|
|
|
|
if e != nil {
|
|
|
|
err = e
|
|
|
|
return
|
|
|
|
}
|
|
|
|
s := m.DeviceScaleFactor()
|
|
|
|
newW := int(dipToGLFWPixel(float64(u.origWindowWidthInDIP), s))
|
|
|
|
newH := int(dipToGLFWPixel(float64(u.origWindowHeightInDIP), s))
|
|
|
|
|
|
|
|
// Even though a framebuffer callback is not called, waitForFramebufferSizeCallback returns by timeout,
|
|
|
|
// so it is safe to use this.
|
|
|
|
if err = u.waitForFramebufferSizeCallback(u.window, func() error {
|
|
|
|
return u.window.SetSize(newW, newH)
|
|
|
|
}); err != nil {
|
|
|
|
return
|
|
|
|
}
|
2023-03-13 16:18:28 +01:00
|
|
|
})
|
2023-10-03 16:07:53 +02:00
|
|
|
if err != nil {
|
|
|
|
return 0, 0, err
|
|
|
|
}
|
2023-03-13 16:18:28 +01:00
|
|
|
}
|
|
|
|
|
2023-12-19 18:38:09 +01:00
|
|
|
// Initialize vsync after SetMonitor is called.
|
2020-10-16 23:01:05 +02:00
|
|
|
// Calling this inside setWindowSize didn't work (#1363).
|
2023-12-17 07:36:12 +01:00
|
|
|
// Also, setFPSMode has to be called after graphicscommand.SetRenderThread is called (#2714).
|
2021-07-22 16:55:26 +02:00
|
|
|
if !u.fpsModeInited {
|
2023-10-15 09:10:13 +02:00
|
|
|
if err := u.setFPSMode(u.fpsMode); err != nil {
|
2023-10-03 16:07:53 +02:00
|
|
|
return 0, 0, err
|
|
|
|
}
|
2020-10-16 21:37:38 +02:00
|
|
|
}
|
2020-09-22 11:40:52 +02:00
|
|
|
|
2022-02-06 09:43:52 +01:00
|
|
|
if u.fpsMode != FPSModeVsyncOffMinimum {
|
2021-07-22 18:07:28 +02:00
|
|
|
// TODO: Updating the input can be skipped when clock.Update returns 0 (#1367).
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := glfw.PollEvents(); err != nil {
|
|
|
|
return 0, 0, err
|
|
|
|
}
|
2021-07-22 18:07:28 +02:00
|
|
|
} else {
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := glfw.WaitEvents(); err != nil {
|
|
|
|
return 0, 0, err
|
|
|
|
}
|
2021-07-22 18:07:28 +02:00
|
|
|
}
|
2016-05-18 04:56:43 +02:00
|
|
|
|
2023-11-18 12:01:19 +01:00
|
|
|
for !u.isRunnableOnUnfocused() {
|
|
|
|
// In the initial state on macOS, the window is not shown (#2620).
|
|
|
|
visible, err := u.window.GetAttrib(glfw.Visible)
|
|
|
|
if err != nil {
|
|
|
|
return 0, 0, err
|
|
|
|
}
|
|
|
|
if visible == glfw.False {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
focused, err := u.window.GetAttrib(glfw.Focused)
|
|
|
|
if err != nil {
|
|
|
|
return 0, 0, err
|
|
|
|
}
|
|
|
|
if focused != glfw.False {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
shouldClose, err := u.window.ShouldClose()
|
|
|
|
if err != nil {
|
|
|
|
return 0, 0, err
|
|
|
|
}
|
|
|
|
if shouldClose {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
2023-10-06 06:49:42 +02:00
|
|
|
if err := hook.SuspendAudio(); err != nil {
|
2021-11-27 09:51:40 +01:00
|
|
|
return 0, 0, err
|
2021-05-04 15:24:31 +02:00
|
|
|
}
|
2020-10-16 23:01:05 +02:00
|
|
|
// Wait for an arbitrary period to avoid busy loop.
|
|
|
|
time.Sleep(time.Second / 60)
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := glfw.PollEvents(); err != nil {
|
|
|
|
return 0, 0, err
|
|
|
|
}
|
2020-10-16 23:01:05 +02:00
|
|
|
}
|
2023-11-18 12:01:19 +01:00
|
|
|
|
2023-10-06 06:49:42 +02:00
|
|
|
if err := hook.ResumeAudio(); err != nil {
|
2021-11-27 09:51:40 +01:00
|
|
|
return 0, 0, err
|
2021-05-04 15:24:31 +02:00
|
|
|
}
|
2019-01-06 16:21:59 +01:00
|
|
|
|
2023-10-03 16:07:53 +02:00
|
|
|
return u.outsideSize()
|
2015-01-07 17:32:37 +01:00
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) loopGame() (ferr error) {
|
2023-07-30 10:36:50 +02:00
|
|
|
defer func() {
|
2023-12-26 18:28:53 +01:00
|
|
|
graphicscommand.Terminate()
|
2023-07-30 10:36:50 +02:00
|
|
|
u.mainThread.Call(func() {
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := glfw.Terminate(); err != nil {
|
|
|
|
ferr = err
|
|
|
|
}
|
2023-09-02 08:24:59 +02:00
|
|
|
u.setTerminated()
|
2023-07-30 10:36:50 +02:00
|
|
|
})
|
|
|
|
}()
|
2023-07-29 20:52:54 +02:00
|
|
|
|
2016-08-31 19:38:47 +02:00
|
|
|
for {
|
2022-12-29 13:09:30 +01:00
|
|
|
if err := u.updateGame(); err != nil {
|
|
|
|
return err
|
2019-11-17 06:10:35 +01:00
|
|
|
}
|
2022-12-29 13:09:30 +01:00
|
|
|
}
|
|
|
|
}
|
2019-11-14 05:07:10 +01:00
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) updateGame() error {
|
2023-01-02 18:05:40 +01:00
|
|
|
var unfocused bool
|
|
|
|
|
|
|
|
// On Windows, the focusing state might be always false (#987).
|
|
|
|
// On Windows, even if a window is in another workspace, vsync seems to work.
|
|
|
|
// Then let's assume the window is always 'focused' as a workaround.
|
|
|
|
if runtime.GOOS != "windows" {
|
2023-10-03 16:07:53 +02:00
|
|
|
a, err := u.window.GetAttrib(glfw.Focused)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
unfocused = a == glfw.False
|
2023-01-02 18:05:40 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
var t1, t2 time.Time
|
|
|
|
|
|
|
|
if unfocused {
|
|
|
|
t1 = time.Now()
|
|
|
|
}
|
|
|
|
|
2022-12-29 13:09:30 +01:00
|
|
|
var outsideWidth, outsideHeight float64
|
|
|
|
var deviceScaleFactor float64
|
|
|
|
var err error
|
|
|
|
if u.mainThread.Call(func() {
|
|
|
|
outsideWidth, outsideHeight, err = u.update()
|
2023-10-03 16:07:53 +02:00
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
m, err := u.currentMonitor()
|
|
|
|
if err != nil {
|
|
|
|
return
|
|
|
|
}
|
2024-02-12 07:03:07 +01:00
|
|
|
deviceScaleFactor = m.DeviceScaleFactor()
|
2022-12-29 13:09:30 +01:00
|
|
|
}); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2023-12-23 11:17:50 +01:00
|
|
|
if err := u.context.updateFrame(u.graphicsDriver, outsideWidth, outsideHeight, deviceScaleFactor, u); err != nil {
|
2023-07-29 19:25:10 +02:00
|
|
|
return err
|
|
|
|
}
|
2023-03-13 13:40:25 +01:00
|
|
|
|
2023-05-08 17:35:54 +02:00
|
|
|
u.bufferOnceSwappedOnce.Do(func() {
|
|
|
|
u.mainThread.Call(func() {
|
|
|
|
u.bufferOnceSwapped = true
|
|
|
|
})
|
2022-12-30 08:28:07 +01:00
|
|
|
})
|
2020-10-16 22:31:21 +02:00
|
|
|
|
2023-01-02 18:05:40 +01:00
|
|
|
if unfocused {
|
|
|
|
t2 = time.Now()
|
|
|
|
}
|
|
|
|
|
2023-01-03 13:39:32 +01:00
|
|
|
// When a window is not focused or in another space, SwapBuffers might return immediately and CPU might be busy.
|
|
|
|
// Mitigate this by sleeping (#982, #2521).
|
2023-01-02 18:05:40 +01:00
|
|
|
if unfocused {
|
|
|
|
d := t2.Sub(t1)
|
|
|
|
const wait = time.Second / 60
|
|
|
|
if d < wait {
|
|
|
|
time.Sleep(wait - d)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-12-29 13:09:30 +01:00
|
|
|
return nil
|
2016-03-26 09:24:40 +01:00
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) updateIconIfNeeded() error {
|
2022-12-29 15:48:53 +01:00
|
|
|
// In the fullscreen mode, SetIcon fails (#1578).
|
2023-10-03 16:07:53 +02:00
|
|
|
f, err := u.isFullscreen()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if f {
|
2023-04-19 17:56:08 +02:00
|
|
|
return nil
|
2022-12-29 15:48:53 +01:00
|
|
|
}
|
|
|
|
|
2023-09-29 18:45:58 +02:00
|
|
|
imgs := u.getAndResetIconImages()
|
2023-09-29 19:46:11 +02:00
|
|
|
// A 0-size slice and nil are distinguished here.
|
|
|
|
// A 0-size slice means a user indicates to reset the icon.
|
|
|
|
// On the other hand, nil means a user didn't update the icon state.
|
|
|
|
if imgs == nil {
|
2023-04-19 17:56:08 +02:00
|
|
|
return nil
|
2022-12-29 15:48:53 +01:00
|
|
|
}
|
|
|
|
|
2023-09-29 19:46:11 +02:00
|
|
|
var newImgs []image.Image
|
|
|
|
if len(imgs) > 0 {
|
|
|
|
newImgs = make([]image.Image, len(imgs))
|
|
|
|
}
|
2022-12-29 15:48:53 +01:00
|
|
|
for i, img := range imgs {
|
|
|
|
// TODO: If img is not *ebiten.Image, this converting is not necessary.
|
|
|
|
// However, this package cannot refer *ebiten.Image due to the package
|
|
|
|
// dependencies.
|
|
|
|
|
|
|
|
b := img.Bounds()
|
|
|
|
rgba := image.NewRGBA(b)
|
|
|
|
for j := b.Min.Y; j < b.Max.Y; j++ {
|
|
|
|
for i := b.Min.X; i < b.Max.X; i++ {
|
|
|
|
rgba.Set(i, j, img.At(i, j))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
newImgs[i] = rgba
|
|
|
|
}
|
|
|
|
|
2023-04-19 17:56:08 +02:00
|
|
|
// Catch a possible error at 'At' (#2647).
|
2023-10-15 08:50:39 +02:00
|
|
|
if err := u.error(); err != nil {
|
2023-04-19 17:56:08 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2022-12-29 15:48:53 +01:00
|
|
|
u.mainThread.Call(func() {
|
2023-10-03 16:07:53 +02:00
|
|
|
err = u.window.SetIcon(newImgs)
|
2022-12-29 15:48:53 +01:00
|
|
|
})
|
2023-10-03 16:07:53 +02:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-04-19 17:56:08 +02:00
|
|
|
|
|
|
|
return nil
|
2022-12-29 15:48:53 +01:00
|
|
|
}
|
|
|
|
|
2021-04-16 19:27:04 +02:00
|
|
|
// updateWindowSizeLimits must be called from the main thread.
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) updateWindowSizeLimits() error {
|
2023-10-03 16:07:53 +02:00
|
|
|
m, err := u.currentMonitor()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-10-10 08:38:13 +02:00
|
|
|
minw, minh, maxw, maxh := u.getWindowSizeLimitsInDIP()
|
2022-02-09 14:58:31 +01:00
|
|
|
|
2024-03-03 15:27:02 +01:00
|
|
|
s := m.DeviceScaleFactor()
|
2021-04-16 19:27:04 +02:00
|
|
|
if minw < 0 {
|
2022-02-09 14:58:31 +01:00
|
|
|
// Always set the minimum window width.
|
2023-10-03 16:07:53 +02:00
|
|
|
mw, err := u.minimumWindowWidth()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2024-03-03 15:27:02 +01:00
|
|
|
minw = int(dipToGLFWPixel(float64(mw), s))
|
2021-04-16 21:43:20 +02:00
|
|
|
} else {
|
2024-03-03 15:27:02 +01:00
|
|
|
minw = int(dipToGLFWPixel(float64(minw), s))
|
2021-04-16 19:27:04 +02:00
|
|
|
}
|
|
|
|
if minh < 0 {
|
2022-02-10 10:31:55 +01:00
|
|
|
minh = glfw.DontCare
|
2021-04-16 21:43:20 +02:00
|
|
|
} else {
|
2024-03-03 15:27:02 +01:00
|
|
|
minh = int(dipToGLFWPixel(float64(minh), s))
|
2021-04-16 19:27:04 +02:00
|
|
|
}
|
|
|
|
if maxw < 0 {
|
|
|
|
maxw = glfw.DontCare
|
2021-04-16 21:43:20 +02:00
|
|
|
} else {
|
2024-03-03 15:27:02 +01:00
|
|
|
maxw = int(dipToGLFWPixel(float64(maxw), s))
|
2021-04-16 19:27:04 +02:00
|
|
|
}
|
|
|
|
if maxh < 0 {
|
|
|
|
maxh = glfw.DontCare
|
2021-04-16 21:43:20 +02:00
|
|
|
} else {
|
2024-03-03 15:27:02 +01:00
|
|
|
maxh = int(dipToGLFWPixel(float64(maxh), s))
|
2021-04-16 19:27:04 +02:00
|
|
|
}
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := u.window.SetSizeLimits(minw, minh, maxw, maxh); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-09-16 09:30:02 +02:00
|
|
|
|
2023-10-07 11:05:03 +02:00
|
|
|
// The window size limit affects the resizing mode, especially on macOS (#2260).
|
|
|
|
if err := u.setWindowResizingModeForOS(u.windowResizingMode); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-10-03 16:07:53 +02:00
|
|
|
|
|
|
|
return nil
|
2021-04-16 19:27:04 +02:00
|
|
|
}
|
|
|
|
|
2023-09-16 09:49:49 +02:00
|
|
|
// disableWindowSizeLimits disables a window size limitation temporarily, especially for fullscreen
|
|
|
|
// In order to enable the size limitation, call updateWindowSizeLimits.
|
|
|
|
//
|
|
|
|
// disableWindowSizeLimits must be called from the main thread.
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) disableWindowSizeLimits() error {
|
2023-10-03 16:07:53 +02:00
|
|
|
return u.window.SetSizeLimits(glfw.DontCare, glfw.DontCare, glfw.DontCare, glfw.DontCare)
|
2023-09-16 09:49:49 +02:00
|
|
|
}
|
|
|
|
|
2021-10-10 08:38:13 +02:00
|
|
|
// adjustWindowSizeBasedOnSizeLimitsInDIP adjust the size based on the window size limits.
|
2021-04-16 21:43:20 +02:00
|
|
|
// width and height are in device-independent pixels.
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) adjustWindowSizeBasedOnSizeLimitsInDIP(width, height int) (int, int) {
|
2021-10-10 08:38:13 +02:00
|
|
|
minw, minh, maxw, maxh := u.getWindowSizeLimitsInDIP()
|
2021-04-16 19:27:04 +02:00
|
|
|
if minw >= 0 && width < minw {
|
|
|
|
width = minw
|
|
|
|
}
|
|
|
|
if minh >= 0 && height < minh {
|
|
|
|
height = minh
|
|
|
|
}
|
|
|
|
if maxw >= 0 && width > maxw {
|
|
|
|
width = maxw
|
|
|
|
}
|
|
|
|
if maxh >= 0 && height > maxh {
|
|
|
|
height = maxh
|
|
|
|
}
|
|
|
|
return width, height
|
|
|
|
}
|
|
|
|
|
2020-10-16 21:21:07 +02:00
|
|
|
// setWindowSize must be called from the main thread.
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) setWindowSizeInDIP(width, height int, callSetSize bool) error {
|
2022-06-23 07:50:35 +02:00
|
|
|
if microsoftgdk.IsXbox() {
|
|
|
|
// Do nothing. The size is always fixed.
|
2023-10-03 16:07:53 +02:00
|
|
|
return nil
|
2022-06-23 07:50:35 +02:00
|
|
|
}
|
|
|
|
|
2021-10-10 08:38:13 +02:00
|
|
|
width, height = u.adjustWindowSizeBasedOnSizeLimitsInDIP(width, height)
|
2023-10-03 16:07:53 +02:00
|
|
|
m, err := u.minimumWindowWidth()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if width < m {
|
2022-09-25 15:34:14 +02:00
|
|
|
width = m
|
2020-10-16 21:21:07 +02:00
|
|
|
}
|
|
|
|
if height < 1 {
|
|
|
|
height = 1
|
|
|
|
}
|
2017-10-19 20:25:21 +02:00
|
|
|
|
2023-10-03 16:07:53 +02:00
|
|
|
mon, err := u.currentMonitor()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2024-02-12 07:03:07 +01:00
|
|
|
scale := mon.DeviceScaleFactor()
|
2022-09-25 15:31:26 +02:00
|
|
|
if u.origWindowWidthInDIP == width && u.origWindowHeightInDIP == height && u.lastDeviceScaleFactor == scale {
|
2023-10-03 16:07:53 +02:00
|
|
|
return nil
|
2022-09-25 12:56:53 +02:00
|
|
|
}
|
2021-10-09 16:17:20 +02:00
|
|
|
u.lastDeviceScaleFactor = scale
|
2017-10-19 20:25:21 +02:00
|
|
|
|
2022-09-24 19:03:27 +02:00
|
|
|
u.origWindowWidthInDIP = width
|
|
|
|
u.origWindowHeightInDIP = height
|
|
|
|
|
2023-10-03 16:07:53 +02:00
|
|
|
f, err := u.isFullscreen()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if !f && callSetSize {
|
2022-09-25 15:51:09 +02:00
|
|
|
// Set the window size after the position. The order matters.
|
|
|
|
// In the opposite order, the window size might not be correct when going back from fullscreen with multi monitors.
|
2023-10-03 16:07:53 +02:00
|
|
|
oldW, oldH, err := u.window.GetSize()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
m, err := u.currentMonitor()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2024-03-03 15:27:02 +01:00
|
|
|
s := m.DeviceScaleFactor()
|
|
|
|
newW := int(dipToGLFWPixel(float64(width), s))
|
|
|
|
newH := int(dipToGLFWPixel(float64(height), s))
|
2022-09-25 15:51:09 +02:00
|
|
|
if oldW != newW || oldH != newH {
|
|
|
|
// Just after SetSize, GetSize is not reliable especially on Linux/UNIX.
|
|
|
|
// Let's wait for FramebufferSize callback in any cases.
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := u.waitForFramebufferSizeCallback(u.window, func() error {
|
|
|
|
return u.window.SetSize(newW, newH)
|
|
|
|
}); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-09-25 15:51:09 +02:00
|
|
|
}
|
|
|
|
}
|
2021-09-17 19:21:24 +02:00
|
|
|
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := u.updateWindowSizeLimits(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
2021-09-17 19:21:24 +02:00
|
|
|
}
|
|
|
|
|
2023-09-14 19:53:35 +02:00
|
|
|
// setOrigWindowPosWithCurrentPos must be called from the main thread.
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) setOrigWindowPosWithCurrentPos() error {
|
2023-09-14 19:53:35 +02:00
|
|
|
if x, y := u.origWindowPos(); x == invalidPos || y == invalidPos {
|
2023-10-03 16:07:53 +02:00
|
|
|
x, y, err := u.window.GetPos()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
u.setOrigWindowPos(x, y)
|
2023-09-14 19:53:35 +02:00
|
|
|
}
|
2023-10-03 16:07:53 +02:00
|
|
|
return nil
|
2023-09-14 19:53:35 +02:00
|
|
|
}
|
|
|
|
|
2022-09-25 15:31:26 +02:00
|
|
|
// setFullscreen must be called from the main thread.
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) setFullscreen(fullscreen bool) error {
|
2023-10-03 16:07:53 +02:00
|
|
|
f, err := u.isFullscreen()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if f == fullscreen {
|
|
|
|
return nil
|
2022-09-25 15:31:26 +02:00
|
|
|
}
|
|
|
|
|
2023-10-03 16:07:53 +02:00
|
|
|
im, err := u.window.GetInputMode(glfw.CursorMode)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if im == glfw.CursorDisabled {
|
2023-09-16 21:37:22 +02:00
|
|
|
u.saveCursorPosition()
|
|
|
|
}
|
|
|
|
|
2022-09-25 15:51:09 +02:00
|
|
|
// Enter the fullscreen.
|
2020-10-16 21:21:07 +02:00
|
|
|
if fullscreen {
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := u.disableWindowSizeLimits(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-09-16 09:49:49 +02:00
|
|
|
|
2022-04-08 08:59:16 +02:00
|
|
|
if x, y := u.origWindowPos(); x == invalidPos || y == invalidPos {
|
2023-10-03 16:07:53 +02:00
|
|
|
x, y, err := u.window.GetPos()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
u.setOrigWindowPos(x, y)
|
2020-10-16 21:21:07 +02:00
|
|
|
}
|
|
|
|
|
2021-09-17 19:21:24 +02:00
|
|
|
if u.isNativeFullscreenAvailable() {
|
2023-10-07 11:05:03 +02:00
|
|
|
if err := u.setNativeFullscreen(fullscreen); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-09-17 19:21:24 +02:00
|
|
|
} else {
|
2023-10-03 16:07:53 +02:00
|
|
|
m, err := u.currentMonitor()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-03-31 20:51:24 +02:00
|
|
|
if m == nil {
|
2023-10-03 16:07:53 +02:00
|
|
|
return nil
|
2022-03-31 20:51:24 +02:00
|
|
|
}
|
|
|
|
|
2023-09-23 19:05:42 +02:00
|
|
|
vm := m.videoMode
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := u.window.SetMonitor(m.m, 0, 0, vm.Width, vm.Height, vm.RefreshRate); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-10-16 21:21:07 +02:00
|
|
|
}
|
2023-10-07 11:05:03 +02:00
|
|
|
if err := u.adjustViewSizeAfterFullscreen(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-10-03 16:07:53 +02:00
|
|
|
return nil
|
2022-08-10 08:47:50 +02:00
|
|
|
}
|
2018-10-05 20:53:34 +02:00
|
|
|
|
2022-09-25 15:51:09 +02:00
|
|
|
// Exit the fullscreen.
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := u.updateWindowSizeLimits(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-09-25 15:51:09 +02:00
|
|
|
|
2022-09-02 13:27:10 +02:00
|
|
|
// Get the original window position and size before changing the state of fullscreen.
|
2022-09-25 15:51:09 +02:00
|
|
|
// TODO: Why?
|
2022-09-02 13:27:10 +02:00
|
|
|
origX, origY := u.origWindowPos()
|
|
|
|
|
2023-10-03 16:07:53 +02:00
|
|
|
m, err := u.currentMonitor()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2024-03-03 15:27:02 +01:00
|
|
|
s := m.DeviceScaleFactor()
|
|
|
|
ww := int(dipToGLFWPixel(float64(u.origWindowWidthInDIP), s))
|
|
|
|
wh := int(dipToGLFWPixel(float64(u.origWindowHeightInDIP), s))
|
2022-09-25 15:51:09 +02:00
|
|
|
if u.isNativeFullscreenAvailable() {
|
2023-10-07 11:05:03 +02:00
|
|
|
if err := u.setNativeFullscreen(false); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-09-25 15:51:09 +02:00
|
|
|
// Adjust the window size later (after adjusting the position).
|
2023-10-03 16:07:53 +02:00
|
|
|
} else {
|
|
|
|
m, err := u.window.GetMonitor()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if !u.isNativeFullscreenAvailable() && m != nil {
|
|
|
|
if err := u.window.SetMonitor(nil, 0, 0, ww, wh, 0); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
}
|
2022-08-10 08:47:50 +02:00
|
|
|
}
|
2019-12-08 17:06:25 +01:00
|
|
|
|
2022-09-25 15:51:09 +02:00
|
|
|
// glfw.PollEvents is necessary for macOS to enable (*glfw.Window).SetPos and SetSize (#2296).
|
2023-09-14 20:11:35 +02:00
|
|
|
// This polling causes issues on Linux and Windows when rapidly toggling fullscreen, so we only run it under macOS.
|
|
|
|
if runtime.GOOS == "darwin" {
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := glfw.PollEvents(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-09-14 20:11:35 +02:00
|
|
|
}
|
2022-09-02 13:27:10 +02:00
|
|
|
|
|
|
|
if origX != invalidPos && origY != invalidPos {
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := u.window.SetPos(origX, origY); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-08-10 08:47:50 +02:00
|
|
|
// Dirty hack for macOS (#703). Rendering doesn't work correctly with one SetPos, but
|
|
|
|
// work with two or more SetPos.
|
|
|
|
if runtime.GOOS == "darwin" {
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := u.window.SetPos(origX+1, origY); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if err := u.window.SetPos(origX, origY); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2019-12-07 11:28:15 +01:00
|
|
|
}
|
2022-08-10 08:47:50 +02:00
|
|
|
u.setOrigWindowPos(invalidPos, invalidPos)
|
|
|
|
}
|
|
|
|
|
2022-09-25 15:51:09 +02:00
|
|
|
if u.isNativeFullscreenAvailable() {
|
|
|
|
// Set the window size after the position. The order matters.
|
|
|
|
// In the opposite order, the window size might not be correct when going back from fullscreen with multi monitors.
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := u.window.SetSize(ww, wh); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2020-10-16 21:21:07 +02:00
|
|
|
}
|
2023-10-03 16:07:53 +02:00
|
|
|
|
|
|
|
return nil
|
2015-02-09 02:25:00 +01:00
|
|
|
}
|
2018-10-05 16:59:30 +02:00
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) minimumWindowWidth() (int, error) {
|
2023-10-03 16:07:53 +02:00
|
|
|
a, err := u.window.GetAttrib(glfw.Decorated)
|
|
|
|
if err != nil {
|
|
|
|
return 0, err
|
|
|
|
}
|
|
|
|
if a == glfw.False {
|
|
|
|
return 1, nil
|
2022-09-25 15:51:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// 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.
|
|
|
|
// 126 is an arbitrary number and I guess this is small enough .
|
|
|
|
if runtime.GOOS == "windows" {
|
2023-10-03 16:07:53 +02:00
|
|
|
return 126, nil
|
2022-09-25 15:51:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// On macOS, resizing the window by cursor sometimes ignores the minimum size.
|
|
|
|
// To avoid the flaky behavior, do not add a limitation.
|
2023-10-03 16:07:53 +02:00
|
|
|
return 1, nil
|
2022-09-25 15:51:09 +02:00
|
|
|
}
|
|
|
|
|
2020-08-23 20:27:38 +02:00
|
|
|
// currentMonitor returns the current active monitor.
|
|
|
|
//
|
2021-10-09 09:49:47 +02:00
|
|
|
// currentMonitor must be called on the main thread.
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) currentMonitor() (*Monitor, error) {
|
2022-02-08 16:26:49 +01:00
|
|
|
if u.window == nil {
|
2023-10-03 16:07:53 +02:00
|
|
|
return u.getInitMonitor(), nil
|
2021-10-09 09:49:47 +02:00
|
|
|
}
|
|
|
|
|
2020-08-23 16:37:58 +02:00
|
|
|
// Getting a monitor from a window position is not reliable in general (e.g., when a window is put across
|
2020-08-23 17:57:48 +02:00
|
|
|
// multiple monitors, or, before SetWindowPosition is called.).
|
2018-10-06 15:42:28 +02:00
|
|
|
// Get the monitor which the current window belongs to. This requires OS API.
|
2023-10-03 16:07:53 +02:00
|
|
|
m, err := monitorFromWindowByOS(u.window)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if m != nil {
|
|
|
|
return m, nil
|
2020-08-23 20:27:38 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// As the fallback, detect the monitor from the window.
|
2023-10-03 16:07:53 +02:00
|
|
|
x, y, err := u.window.GetPos()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2023-09-30 06:41:10 +02:00
|
|
|
// On fullscreen, shift the position slightly. Otherwise, a wrong monitor could be detected, as the position is on the edge (#2794).
|
2023-10-03 16:07:53 +02:00
|
|
|
f, err := u.isFullscreen()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
if f {
|
2023-09-30 06:41:10 +02:00
|
|
|
x++
|
|
|
|
y++
|
|
|
|
}
|
|
|
|
if m := theMonitors.monitorFromPosition(x, y); m != nil {
|
2023-10-03 16:07:53 +02:00
|
|
|
return m, nil
|
2020-08-23 20:27:38 +02:00
|
|
|
}
|
2022-02-08 16:26:49 +01:00
|
|
|
|
2023-10-03 16:07:53 +02:00
|
|
|
return theMonitors.primaryMonitor(), nil
|
2018-10-05 16:59:30 +02:00
|
|
|
}
|
2019-04-07 11:28:50 +02:00
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) readInputState(inputState *InputState) {
|
2022-12-16 10:34:14 +01:00
|
|
|
u.m.Lock()
|
|
|
|
defer u.m.Unlock()
|
2023-01-21 16:04:30 +01:00
|
|
|
u.inputState.copyAndReset(inputState)
|
2019-04-07 11:28:50 +02:00
|
|
|
}
|
2019-12-24 16:05:56 +01:00
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) Window() Window {
|
2022-05-31 18:26:28 +02:00
|
|
|
if microsoftgdk.IsXbox() {
|
|
|
|
return &nullWindow{}
|
|
|
|
}
|
2019-12-24 16:05:56 +01:00
|
|
|
return &u.iwindow
|
|
|
|
}
|
2021-04-17 16:57:17 +02:00
|
|
|
|
2021-04-20 11:16:41 +02:00
|
|
|
// GLFW's functions to manipulate a window can invoke the SetSize callback (#1576, #1585, #1606).
|
|
|
|
// As the callback must not be called in the frame (between BeginFrame and EndFrame),
|
|
|
|
// disable the callback temporarily.
|
|
|
|
|
|
|
|
// maximizeWindow must be called from the main thread.
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) maximizeWindow() error {
|
2023-10-07 11:05:03 +02:00
|
|
|
n, err := u.isNativeFullscreen()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if n {
|
2023-10-03 16:07:53 +02:00
|
|
|
return nil
|
2021-09-12 16:38:38 +02:00
|
|
|
}
|
|
|
|
|
2023-10-03 16:07:53 +02:00
|
|
|
f, err := u.isFullscreen()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if f {
|
|
|
|
return nil
|
2022-08-10 14:34:39 +02:00
|
|
|
}
|
2021-04-21 15:25:10 +02:00
|
|
|
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := u.window.Maximize(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-09-25 16:29:58 +02:00
|
|
|
|
2022-08-10 14:34:39 +02:00
|
|
|
// On Linux/UNIX, maximizing might not finish even though Maximize returns. Just wait for its finish.
|
|
|
|
// Do not check this in the fullscreen since apparently the condition can never be true.
|
2023-10-03 16:07:53 +02:00
|
|
|
for {
|
|
|
|
a, err := u.window.GetAttrib(glfw.Maximized)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if a == glfw.True {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
if err := glfw.PollEvents(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-04-20 13:09:04 +02:00
|
|
|
}
|
2023-10-03 16:07:53 +02:00
|
|
|
|
|
|
|
return nil
|
2021-04-17 16:57:17 +02:00
|
|
|
}
|
2021-04-17 17:10:37 +02:00
|
|
|
|
2021-04-20 11:16:41 +02:00
|
|
|
// iconifyWindow must be called from the main thread.
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) iconifyWindow() error {
|
2022-08-10 14:34:39 +02:00
|
|
|
// Iconifying a native fullscreen window on macOS is forbidden.
|
2023-10-07 11:05:03 +02:00
|
|
|
n, err := u.isNativeFullscreen()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if n {
|
2023-10-03 16:07:53 +02:00
|
|
|
return nil
|
2021-09-12 16:38:38 +02:00
|
|
|
}
|
|
|
|
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := u.window.Iconify(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-04-17 18:03:06 +02:00
|
|
|
|
2021-04-20 17:52:04 +02:00
|
|
|
// On Linux/UNIX, iconifying might not finish even though Iconify returns. Just wait for its finish.
|
2023-10-03 16:07:53 +02:00
|
|
|
for {
|
|
|
|
a, err := u.window.GetAttrib(glfw.Iconified)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if a == glfw.True {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
if err := glfw.PollEvents(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-04-20 17:52:04 +02:00
|
|
|
}
|
2023-10-03 16:07:53 +02:00
|
|
|
|
|
|
|
return nil
|
2021-04-17 18:03:06 +02:00
|
|
|
}
|
|
|
|
|
2021-04-20 11:16:41 +02:00
|
|
|
// restoreWindow must be called from the main thread.
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) restoreWindow() error {
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := u.window.Restore(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-04-17 17:10:37 +02:00
|
|
|
|
2021-04-20 17:52:04 +02:00
|
|
|
// On Linux/UNIX, restoring might not finish even though Restore returns (#1608). Just wait for its finish.
|
|
|
|
// On macOS, the restoring state might be the same as the maximized state. Skip this.
|
|
|
|
if runtime.GOOS != "darwin" {
|
2023-10-03 16:07:53 +02:00
|
|
|
for {
|
|
|
|
maximized, err := u.window.GetAttrib(glfw.Maximized)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
iconified, err := u.window.GetAttrib(glfw.Iconified)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
if maximized == glfw.False && iconified == glfw.False {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
if err := glfw.PollEvents(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-04-10 10:55:36 +02:00
|
|
|
time.Sleep(time.Second / 60)
|
2021-04-20 17:52:04 +02:00
|
|
|
}
|
|
|
|
}
|
2023-10-03 16:07:53 +02:00
|
|
|
|
|
|
|
return nil
|
2021-04-17 17:10:37 +02:00
|
|
|
}
|
2021-04-18 14:23:59 +02:00
|
|
|
|
2021-04-20 11:16:41 +02:00
|
|
|
// setWindowDecorated must be called from the main thread.
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) setWindowDecorated(decorated bool) error {
|
2022-06-23 07:50:35 +02:00
|
|
|
if microsoftgdk.IsXbox() {
|
2023-10-03 16:07:53 +02:00
|
|
|
return nil
|
2022-06-23 07:50:35 +02:00
|
|
|
}
|
|
|
|
|
2021-04-18 14:23:59 +02:00
|
|
|
v := glfw.False
|
|
|
|
if decorated {
|
|
|
|
v = glfw.True
|
|
|
|
}
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := u.window.SetAttrib(glfw.Decorated, v); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-04-18 14:23:59 +02:00
|
|
|
|
2021-04-20 11:16:41 +02:00
|
|
|
// The title can be lost when the decoration is gone. Recover this.
|
|
|
|
if decorated {
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := u.window.SetTitle(u.title); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-04-20 11:16:41 +02:00
|
|
|
}
|
2023-10-03 16:07:53 +02:00
|
|
|
|
|
|
|
return nil
|
2021-04-20 11:16:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// setWindowFloating must be called from the main thread.
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) setWindowFloating(floating bool) error {
|
2022-06-23 07:50:35 +02:00
|
|
|
if microsoftgdk.IsXbox() {
|
2023-10-03 16:07:53 +02:00
|
|
|
return nil
|
2022-06-23 07:50:35 +02:00
|
|
|
}
|
|
|
|
|
2021-04-20 11:16:41 +02:00
|
|
|
v := glfw.False
|
|
|
|
if floating {
|
|
|
|
v = glfw.True
|
|
|
|
}
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := u.window.SetAttrib(glfw.Floating, v); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
2021-04-20 11:16:41 +02:00
|
|
|
}
|
|
|
|
|
2021-12-29 14:08:59 +01:00
|
|
|
// setWindowResizingMode must be called from the main thread.
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) setWindowResizingMode(mode WindowResizingMode) error {
|
2022-06-23 07:50:35 +02:00
|
|
|
if microsoftgdk.IsXbox() {
|
2023-10-03 16:07:53 +02:00
|
|
|
return nil
|
2022-06-23 07:50:35 +02:00
|
|
|
}
|
|
|
|
|
2021-12-29 14:08:59 +01:00
|
|
|
if u.windowResizingMode == mode {
|
2023-10-03 16:07:53 +02:00
|
|
|
return nil
|
2021-12-29 14:08:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
u.windowResizingMode = mode
|
|
|
|
|
2021-04-20 11:16:41 +02:00
|
|
|
v := glfw.False
|
2021-12-29 14:08:59 +01:00
|
|
|
if mode == WindowResizingModeEnabled {
|
2021-04-20 11:16:41 +02:00
|
|
|
v = glfw.True
|
|
|
|
}
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := u.window.SetAttrib(glfw.Resizable, v); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-10-07 11:05:03 +02:00
|
|
|
if err := u.setWindowResizingModeForOS(mode); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-10-03 16:07:53 +02:00
|
|
|
|
|
|
|
return nil
|
2021-04-20 11:16:41 +02:00
|
|
|
}
|
|
|
|
|
2021-10-10 08:50:12 +02:00
|
|
|
// setWindowPositionInDIP sets the window position.
|
2021-10-10 08:38:13 +02:00
|
|
|
//
|
|
|
|
// x and y are the position in device-independent pixels.
|
|
|
|
//
|
2021-10-10 08:50:12 +02:00
|
|
|
// setWindowPositionInDIP must be called from the main thread.
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) setWindowPositionInDIP(x, y int, monitor *Monitor) error {
|
2022-06-23 07:50:35 +02:00
|
|
|
if microsoftgdk.IsXbox() {
|
|
|
|
// Do nothing. The position is always fixed.
|
2023-10-03 16:07:53 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
f, err := u.isFullscreen()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
2022-06-23 07:50:35 +02:00
|
|
|
}
|
|
|
|
|
2023-09-29 17:20:59 +02:00
|
|
|
mx := monitor.boundsInGLFWPixels.Min.X
|
|
|
|
my := monitor.boundsInGLFWPixels.Min.Y
|
2024-03-03 15:27:02 +01:00
|
|
|
s := monitor.DeviceScaleFactor()
|
|
|
|
xf := dipToGLFWPixel(float64(x), s)
|
|
|
|
yf := dipToGLFWPixel(float64(y), s)
|
2023-10-03 16:07:53 +02:00
|
|
|
if x, y := u.adjustWindowPosition(mx+int(xf), my+int(yf), monitor); f {
|
2022-04-08 08:59:16 +02:00
|
|
|
u.setOrigWindowPos(x, y)
|
2021-04-20 11:16:41 +02:00
|
|
|
} else {
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := u.window.SetPos(x, y); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2021-04-20 11:16:41 +02:00
|
|
|
}
|
2023-10-03 16:07:53 +02:00
|
|
|
|
|
|
|
return nil
|
2021-04-20 11:16:41 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// setWindowTitle must be called from the main thread.
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) setWindowTitle(title string) error {
|
2023-10-03 16:07:53 +02:00
|
|
|
return u.window.SetTitle(title)
|
2021-04-18 14:23:59 +02:00
|
|
|
}
|
2021-09-17 19:21:24 +02:00
|
|
|
|
2022-08-15 09:22:28 +02:00
|
|
|
// isWindowMaximized must be called from the main thread.
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) isWindowMaximized() (bool, error) {
|
2023-10-03 16:07:53 +02:00
|
|
|
a, err := u.window.GetAttrib(glfw.Maximized)
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
2023-10-07 11:05:03 +02:00
|
|
|
n, err := u.isNativeFullscreen()
|
|
|
|
if err != nil {
|
|
|
|
return false, err
|
|
|
|
}
|
|
|
|
return a == glfw.True && !n, nil
|
2022-08-15 09:22:28 +02:00
|
|
|
}
|
2022-09-03 16:36:21 +02:00
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) origWindowPos() (int, int) {
|
2022-09-03 16:36:21 +02:00
|
|
|
return u.origWindowPosX, u.origWindowPosY
|
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) setOrigWindowPos(x, y int) {
|
2022-09-03 16:36:21 +02:00
|
|
|
u.origWindowPosX = x
|
|
|
|
u.origWindowPosY = y
|
|
|
|
}
|
2022-12-09 13:23:41 +01:00
|
|
|
|
2023-09-18 10:48:07 +02:00
|
|
|
// setWindowMousePassthrough must be called from the main thread.
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) setWindowMousePassthrough(enabled bool) error {
|
2023-09-18 10:48:07 +02:00
|
|
|
if microsoftgdk.IsXbox() {
|
2023-10-03 16:07:53 +02:00
|
|
|
return nil
|
2023-09-18 10:48:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
v := glfw.False
|
|
|
|
if enabled {
|
|
|
|
v = glfw.True
|
|
|
|
}
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := u.window.SetAttrib(glfw.MousePassthrough, v); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
2023-09-18 10:48:07 +02:00
|
|
|
}
|
|
|
|
|
2022-12-09 13:23:41 +01:00
|
|
|
func IsScreenTransparentAvailable() bool {
|
|
|
|
return true
|
|
|
|
}
|
2022-12-25 07:29:04 +01:00
|
|
|
|
2023-10-14 17:06:07 +02:00
|
|
|
func (u *UserInterface) RunOnMainThread(f func()) {
|
|
|
|
u.mainThread.Call(f)
|
2022-12-25 07:29:04 +01:00
|
|
|
}
|
2024-03-03 15:31:14 +01:00
|
|
|
|
|
|
|
func dipToNativePixels(x float64, scale float64) float64 {
|
|
|
|
return dipToGLFWPixel(x, scale)
|
|
|
|
}
|