ebiten/internal/uidriver/glfw/window.go

259 lines
5.2 KiB
Go
Raw Normal View History

2019-12-24 16:05:56 +01:00
// Copyright 2019 The Ebiten Authors
//
// 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.
2021-10-24 07:49:21 +02:00
//go:build !android && !js && !ios
// +build !android,!js,!ios
2019-12-24 16:05:56 +01:00
package glfw
import (
"image"
2020-10-03 19:35:13 +02:00
"github.com/hajimehoshi/ebiten/v2/internal/glfw"
2019-12-24 16:05:56 +01:00
)
type window struct {
ui *UserInterface
2019-12-24 16:05:56 +01:00
}
func (w *window) IsDecorated() bool {
if !w.ui.isRunning() {
return w.ui.isInitWindowDecorated()
}
v := false
w.ui.t.Call(func() {
2019-12-24 16:05:56 +01:00
v = w.ui.window.GetAttrib(glfw.Decorated) == glfw.True
})
return v
}
func (w *window) SetDecorated(decorated bool) {
if !w.ui.isRunning() {
w.ui.setInitWindowDecorated(decorated)
return
}
w.ui.t.Call(func() {
if w.ui.isNativeFullscreen() {
return
}
w.ui.setWindowDecorated(decorated)
2019-12-24 16:05:56 +01:00
})
}
func (w *window) IsResizable() bool {
if !w.ui.isRunning() {
return w.ui.isInitWindowResizable()
}
v := false
w.ui.t.Call(func() {
2019-12-24 16:05:56 +01:00
v = w.ui.window.GetAttrib(glfw.Resizable) == glfw.True
})
return v
}
func (w *window) SetResizable(resizable bool) {
if !w.ui.isRunning() {
w.ui.setInitWindowResizable(resizable)
return
}
w.ui.t.Call(func() {
if w.ui.isNativeFullscreen() {
return
}
w.ui.setWindowResizable(resizable)
2019-12-24 16:05:56 +01:00
})
}
func (w *window) IsFloating() bool {
if !w.ui.isRunning() {
return w.ui.isInitWindowFloating()
}
var v bool
w.ui.t.Call(func() {
v = w.ui.window.GetAttrib(glfw.Floating) == glfw.True
})
return v
}
func (w *window) SetFloating(floating bool) {
if !w.ui.isRunning() {
w.ui.setInitWindowFloating(floating)
return
}
w.ui.t.Call(func() {
if w.ui.isNativeFullscreen() {
return
}
w.ui.setWindowFloating(floating)
})
}
func (w *window) IsMaximized() bool {
if !w.ui.isRunning() {
return w.ui.isInitWindowMaximized()
}
var v bool
w.ui.t.Call(func() {
v = w.ui.window.GetAttrib(glfw.Maximized) == glfw.True
})
return v
}
func (w *window) Maximize() {
if !w.IsResizable() {
panic("glfw: a window to maximize must be resizable")
}
if !w.ui.isRunning() {
w.ui.setInitWindowMaximized(true)
return
}
w.ui.t.Call(w.ui.maximizeWindow)
}
func (w *window) IsMinimized() bool {
if !w.ui.isRunning() {
return false
}
var v bool
w.ui.t.Call(func() {
v = w.ui.window.GetAttrib(glfw.Iconified) == glfw.True
})
return v
}
func (w *window) Minimize() {
if !w.ui.isRunning() {
// Do nothing
return
}
w.ui.t.Call(w.ui.iconifyWindow)
}
func (w *window) Restore() {
if !w.ui.isRunning() {
// Do nothing
return
}
w.ui.t.Call(w.ui.restoreWindow)
}
2019-12-24 16:05:56 +01:00
func (w *window) Position() (int, int) {
if !w.ui.isRunning() {
panic("glfw: WindowPosition can't be called before the main loop starts")
}
x, y := 0, 0
w.ui.t.Call(func() {
2019-12-24 16:05:56 +01:00
var wx, wy int
if w.ui.isFullscreen() && !w.ui.isNativeFullscreenAvailable() {
wx, wy = w.ui.origPos()
2019-12-24 16:05:56 +01:00
} else {
wx, wy = w.ui.window.GetPos()
}
m := w.ui.currentMonitor()
mx, my := m.GetPos()
wx -= mx
wy -= my
xf := w.ui.dipFromGLFWPixel(float64(wx), m)
yf := w.ui.dipFromGLFWPixel(float64(wy), m)
2019-12-24 16:05:56 +01:00
x, y = int(xf), int(yf)
})
return x, y
}
func (w *window) SetPosition(x, y int) {
if !w.ui.isRunning() {
w.ui.setInitWindowPositionInDIP(x, y)
2019-12-24 16:05:56 +01:00
return
}
w.ui.t.Call(func() {
w.ui.setWindowPositionInDIP(x, y, w.ui.currentMonitor())
2019-12-24 16:05:56 +01:00
})
}
func (w *window) Size() (int, int) {
if !w.ui.isRunning() {
ww, wh := w.ui.getInitWindowSizeInDIP()
return w.ui.adjustWindowSizeBasedOnSizeLimitsInDIP(ww, wh)
2019-12-24 16:05:56 +01:00
}
ww, wh := 0, 0
w.ui.t.Call(func() {
ww = w.ui.windowWidthInDIP
wh = w.ui.windowHeightInDIP
})
2019-12-24 16:05:56 +01:00
return ww, wh
}
func (w *window) SetSize(width, height int) {
if !w.ui.isRunning() {
w.ui.setInitWindowSizeInDIP(width, height)
2019-12-24 16:05:56 +01:00
return
}
w.ui.t.Call(func() {
// When a window is a native fullscreen, forcing to resize the window might leave unexpected image lags.
// Forbid this.
if w.ui.isNativeFullscreen() {
return
}
w.ui.setWindowSizeInDIP(width, height, w.ui.isFullscreen())
2020-10-16 21:21:07 +02:00
})
2019-12-24 16:05:56 +01:00
}
func (w *window) SizeLimits() (minw, minh, maxw, maxh int) {
return w.ui.getWindowSizeLimitsInDIP()
}
func (w *window) SetSizeLimits(minw, minh, maxw, maxh int) {
if !w.ui.setWindowSizeLimitsInDIP(minw, minh, maxw, maxh) {
return
}
if !w.ui.isRunning() {
return
}
w.ui.t.Call(w.ui.updateWindowSizeLimits)
}
2019-12-24 16:05:56 +01:00
func (w *window) SetIcon(iconImages []image.Image) {
// The icons are actually set at (*UserInterface).loop.
w.ui.setIconImages(iconImages)
2019-12-24 16:05:56 +01:00
}
func (w *window) SetTitle(title string) {
if !w.ui.isRunning() {
w.ui.m.Lock()
w.ui.title = title
w.ui.m.Unlock()
2019-12-24 16:05:56 +01:00
return
}
w.ui.title = title
w.ui.t.Call(func() {
w.ui.setWindowTitle(title)
2019-12-24 16:05:56 +01:00
})
}
func (w *window) IsBeingClosed() bool {
return w.ui.isWindowBeingClosed()
}
func (w *window) SetClosingHandled(handled bool) {
w.ui.setWindowClosingHandled(handled)
}
func (w *window) IsClosingHandled() bool {
return w.ui.isWindowClosingHandled()
}