2019-11-26 16:29:30 +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.
|
|
|
|
|
|
|
|
package ebiten
|
|
|
|
|
|
|
|
import (
|
|
|
|
"image"
|
2021-04-17 10:19:36 +02:00
|
|
|
"sync/atomic"
|
2022-02-06 08:08:22 +01:00
|
|
|
|
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/ui"
|
2019-12-17 04:28:52 +01:00
|
|
|
)
|
|
|
|
|
2020-03-20 13:46:23 +01:00
|
|
|
// IsWindowDecorated reports whether the window is decorated.
|
|
|
|
//
|
|
|
|
// IsWindowDecorated is concurrent-safe.
|
|
|
|
func IsWindowDecorated() bool {
|
2022-02-06 12:02:03 +01:00
|
|
|
return ui.Get().Window().IsDecorated()
|
2020-03-20 13:46:23 +01:00
|
|
|
}
|
|
|
|
|
2019-11-26 16:29:30 +01:00
|
|
|
// SetWindowDecorated sets the state if the window is decorated.
|
|
|
|
//
|
|
|
|
// The window is decorated by default.
|
|
|
|
//
|
|
|
|
// SetWindowDecorated works only on desktops.
|
|
|
|
// SetWindowDecorated does nothing on other platforms.
|
|
|
|
//
|
2021-04-18 10:35:46 +02:00
|
|
|
// SetWindowDecorated does nothing on macOS when the window is fullscreened natively by the macOS desktop
|
|
|
|
// instead of SetFullscreen(true).
|
|
|
|
//
|
2019-11-26 16:29:30 +01:00
|
|
|
// SetWindowDecorated is concurrent-safe.
|
|
|
|
func SetWindowDecorated(decorated bool) {
|
2022-02-06 12:02:03 +01:00
|
|
|
ui.Get().Window().SetDecorated(decorated)
|
2019-11-26 16:29:30 +01:00
|
|
|
}
|
|
|
|
|
2019-12-22 10:08:02 +01:00
|
|
|
// IsWindowResizable reports whether the window is resizable by the user's dragging on desktops.
|
|
|
|
// On the other environments, IsWindowResizable always returns false.
|
2019-11-26 16:29:30 +01:00
|
|
|
//
|
|
|
|
// IsWindowResizable is concurrent-safe.
|
|
|
|
func IsWindowResizable() bool {
|
2022-02-06 12:02:03 +01:00
|
|
|
return ui.Get().Window().IsResizable()
|
2019-11-26 16:29:30 +01:00
|
|
|
}
|
|
|
|
|
2019-12-22 10:08:02 +01:00
|
|
|
// SetWindowResizable sets whether the window is resizable by the user's dragging on desktops.
|
|
|
|
// On the other environments, SetWindowResizable does nothing.
|
|
|
|
//
|
2020-02-12 12:58:23 +01:00
|
|
|
// The window is not resizable by default.
|
|
|
|
//
|
2019-12-22 10:08:02 +01:00
|
|
|
// If SetWindowResizable is called with true and Run is used, SetWindowResizable panics. Use RunGame instead.
|
|
|
|
//
|
2021-04-18 10:35:46 +02:00
|
|
|
// SetWindowResizable does nothing on macOS when the window is fullscreened natively by the macOS desktop
|
|
|
|
// instead of SetFullscreen(true).
|
|
|
|
//
|
2019-12-22 10:08:02 +01:00
|
|
|
// SetWindowResizable is concurrent-safe.
|
|
|
|
func SetWindowResizable(resizable bool) {
|
2022-02-06 12:02:03 +01:00
|
|
|
ui.Get().Window().SetResizable(resizable)
|
2019-12-22 10:08:02 +01:00
|
|
|
}
|
|
|
|
|
2019-11-26 16:29:30 +01:00
|
|
|
// SetWindowTitle sets the title of the window.
|
|
|
|
//
|
2020-10-04 19:00:50 +02:00
|
|
|
// SetWindowTitle does nothing on browsers or mobiles.
|
2019-11-26 16:29:30 +01:00
|
|
|
//
|
|
|
|
// SetWindowTitle is concurrent-safe.
|
|
|
|
func SetWindowTitle(title string) {
|
2022-02-06 12:02:03 +01:00
|
|
|
ui.Get().Window().SetTitle(title)
|
2019-11-26 16:29:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// SetWindowIcon sets the icon of the game window.
|
|
|
|
//
|
|
|
|
// If len(iconImages) is 0, SetWindowIcon reverts the icon to the default one.
|
|
|
|
//
|
|
|
|
// For desktops, see the document of glfwSetWindowIcon of GLFW 3.2:
|
|
|
|
//
|
|
|
|
// This function sets the icon of the specified window.
|
|
|
|
// If passed an array of candidate images, those of or closest to the sizes
|
|
|
|
// desired by the system are selected.
|
|
|
|
// If no images are specified, the window reverts to its default icon.
|
|
|
|
//
|
|
|
|
// The desired image sizes varies depending on platform and system settings.
|
|
|
|
// The selected images will be rescaled as needed.
|
|
|
|
// Good sizes include 16x16, 32x32 and 48x48.
|
|
|
|
//
|
|
|
|
// As macOS windows don't have icons, SetWindowIcon doesn't work on macOS.
|
|
|
|
//
|
|
|
|
// SetWindowIcon doesn't work on browsers or mobiles.
|
|
|
|
//
|
|
|
|
// SetWindowIcon is concurrent-safe.
|
|
|
|
func SetWindowIcon(iconImages []image.Image) {
|
2022-02-06 12:02:03 +01:00
|
|
|
ui.Get().Window().SetIcon(iconImages)
|
2019-11-26 16:29:30 +01:00
|
|
|
}
|
2019-11-30 14:37:53 +01:00
|
|
|
|
|
|
|
// WindowPosition returns the window position.
|
2020-03-28 11:51:44 +01:00
|
|
|
// The origin position is the left-upper corner of the current monitor.
|
|
|
|
// The unit is device-independent pixels.
|
2019-11-30 14:37:53 +01:00
|
|
|
//
|
2019-12-16 02:52:53 +01:00
|
|
|
// WindowPosition panics if the main loop does not start yet.
|
2019-11-30 14:37:53 +01:00
|
|
|
//
|
2021-04-21 15:50:00 +02:00
|
|
|
// WindowPosition returns the last window position in fullscreen mode.
|
2019-11-30 16:39:04 +01:00
|
|
|
//
|
2019-11-30 14:37:53 +01:00
|
|
|
// WindowPosition returns (0, 0) on browsers and mobiles.
|
2019-11-30 16:11:46 +01:00
|
|
|
//
|
|
|
|
// WindowPosition is concurrent-safe.
|
2019-11-30 15:22:23 +01:00
|
|
|
func WindowPosition() (x, y int) {
|
2022-02-06 12:02:03 +01:00
|
|
|
return ui.Get().Window().Position()
|
2019-11-30 14:37:53 +01:00
|
|
|
}
|
2019-11-30 15:22:23 +01:00
|
|
|
|
|
|
|
// SetWindowPosition sets the window position.
|
2020-03-28 11:51:44 +01:00
|
|
|
// The origin position is the left-upper corner of the current monitor.
|
|
|
|
// The unit is device-independent pixels.
|
2019-11-30 15:22:23 +01:00
|
|
|
//
|
2021-04-21 15:50:00 +02:00
|
|
|
// SetWindowPosition does nothing in fullscreen mode.
|
2019-11-30 16:39:04 +01:00
|
|
|
//
|
2019-11-30 15:22:23 +01:00
|
|
|
// SetWindowPosition does nothing on browsers and mobiles.
|
2019-11-30 16:11:46 +01:00
|
|
|
//
|
|
|
|
// SetWindowPosition is concurrent-safe.
|
2019-11-30 15:22:23 +01:00
|
|
|
func SetWindowPosition(x, y int) {
|
2021-04-17 10:19:36 +02:00
|
|
|
atomic.StoreUint32(&windowPositionSetExplicitly, 1)
|
2022-02-06 12:02:03 +01:00
|
|
|
ui.Get().Window().SetPosition(x, y)
|
2019-11-30 15:22:23 +01:00
|
|
|
}
|
2019-12-17 04:28:52 +01:00
|
|
|
|
|
|
|
var (
|
2021-04-17 10:19:36 +02:00
|
|
|
windowPositionSetExplicitly uint32
|
2019-12-17 04:28:52 +01:00
|
|
|
)
|
|
|
|
|
2021-04-17 10:30:48 +02:00
|
|
|
func initializeWindowPositionIfNeeded(width, height int) {
|
2021-04-17 10:19:36 +02:00
|
|
|
if atomic.LoadUint32(&windowPositionSetExplicitly) == 0 {
|
2022-02-06 08:08:22 +01:00
|
|
|
sw, sh := ui.Get().ScreenSizeInFullscreen()
|
2020-03-28 11:51:44 +01:00
|
|
|
x := (sw - width) / 2
|
|
|
|
y := (sh - height) / 3
|
2022-02-06 12:02:03 +01:00
|
|
|
ui.Get().Window().SetPosition(x, y)
|
2019-12-17 04:28:52 +01:00
|
|
|
}
|
|
|
|
}
|
2019-12-16 02:52:53 +01:00
|
|
|
|
2019-12-22 04:52:50 +01:00
|
|
|
// WindowSize returns the window size on desktops.
|
|
|
|
// WindowSize returns (0, 0) on other environments.
|
|
|
|
//
|
2021-04-21 15:50:00 +02:00
|
|
|
// In fullscreen mode, WindowSize returns the original window size.
|
2019-12-16 02:52:53 +01:00
|
|
|
//
|
|
|
|
// WindowSize is concurrent-safe.
|
|
|
|
func WindowSize() (int, int) {
|
2022-02-06 12:02:03 +01:00
|
|
|
return ui.Get().Window().Size()
|
2019-12-16 02:52:53 +01:00
|
|
|
}
|
|
|
|
|
2019-12-22 04:52:50 +01:00
|
|
|
// SetWindowSize sets the window size on desktops.
|
|
|
|
// SetWindowSize does nothing on other environments.
|
|
|
|
//
|
2021-04-21 15:50:00 +02:00
|
|
|
// In fullscreen mode, SetWindowSize sets the original window size.
|
2019-12-16 02:52:53 +01:00
|
|
|
//
|
2019-12-22 04:46:57 +01:00
|
|
|
// SetWindowSize panics if width or height is not a positive number.
|
|
|
|
//
|
2019-12-16 02:52:53 +01:00
|
|
|
// SetWindowSize is concurrent-safe.
|
|
|
|
func SetWindowSize(width, height int) {
|
2019-12-22 04:46:57 +01:00
|
|
|
if width <= 0 || height <= 0 {
|
|
|
|
panic("ebiten: width and height must be positive")
|
|
|
|
}
|
2022-02-06 12:02:03 +01:00
|
|
|
ui.Get().Window().SetSize(width, height)
|
2019-12-16 02:52:53 +01:00
|
|
|
}
|
2020-03-20 13:46:23 +01:00
|
|
|
|
2021-09-01 10:17:54 +02:00
|
|
|
// WindowSizeLimits returns the limitation of the window size on desktops.
|
2021-04-16 19:27:04 +02:00
|
|
|
// A negative value indicates the size is not limited.
|
|
|
|
//
|
2021-09-01 10:17:54 +02:00
|
|
|
// WindowSizeLimits is concurrent-safe.
|
2021-04-16 19:27:04 +02:00
|
|
|
func WindowSizeLimits() (minw, minh, maxw, maxh int) {
|
2022-02-06 12:02:03 +01:00
|
|
|
return ui.Get().Window().SizeLimits()
|
2021-04-16 19:27:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// SetWindowSizeLimits sets the limitation of the window size on desktops.
|
|
|
|
// A negative value indicates the size is not limited.
|
|
|
|
//
|
2021-09-01 10:17:54 +02:00
|
|
|
// SetWindowSizeLimits is concurrent-safe.
|
2021-04-16 19:27:04 +02:00
|
|
|
func SetWindowSizeLimits(minw, minh, maxw, maxh int) {
|
2022-02-06 12:02:03 +01:00
|
|
|
ui.Get().Window().SetSizeLimits(minw, minh, maxw, maxh)
|
2021-04-16 19:27:04 +02:00
|
|
|
}
|
|
|
|
|
2020-03-20 13:46:23 +01:00
|
|
|
// IsWindowFloating reports whether the window is always shown above all the other windows.
|
|
|
|
//
|
2020-03-21 11:26:28 +01:00
|
|
|
// IsWindowFloating returns false on browsers and mobiles.
|
|
|
|
//
|
2020-03-20 13:46:23 +01:00
|
|
|
// IsWindowFloating is concurrent-safe.
|
|
|
|
func IsWindowFloating() bool {
|
2022-02-06 12:02:03 +01:00
|
|
|
return ui.Get().Window().IsFloating()
|
2020-03-20 13:46:23 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// SetWindowFloating sets the state whether the window is always shown above all the other windows.
|
|
|
|
//
|
2020-03-21 11:26:28 +01:00
|
|
|
// SetWindowFloating does nothing on browsers or mobiles.
|
|
|
|
//
|
2021-04-18 10:35:46 +02:00
|
|
|
// SetWindowFloating does nothing on macOS when the window is fullscreened natively by the macOS desktop
|
|
|
|
// instead of SetFullscreen(true).
|
|
|
|
//
|
2020-03-20 13:46:23 +01:00
|
|
|
// SetWindowFloating is concurrent-safe.
|
|
|
|
func SetWindowFloating(float bool) {
|
2022-02-06 12:02:03 +01:00
|
|
|
ui.Get().Window().SetFloating(float)
|
2020-03-20 13:46:23 +01:00
|
|
|
}
|
2020-03-21 11:26:28 +01:00
|
|
|
|
|
|
|
// MaximizeWindow maximizes the window.
|
|
|
|
//
|
2020-03-28 14:00:40 +01:00
|
|
|
// MaximizeWindow panics when the window is not resizable.
|
2020-03-21 11:26:28 +01:00
|
|
|
//
|
|
|
|
// MaximizeWindow does nothing on browsers or mobiles.
|
|
|
|
//
|
|
|
|
// MaximizeWindow is concurrent-safe.
|
|
|
|
func MaximizeWindow() {
|
2022-02-06 12:02:03 +01:00
|
|
|
ui.Get().Window().Maximize()
|
2020-03-21 11:26:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// IsWindowMaximized reports whether the window is maximized or not.
|
|
|
|
//
|
2020-03-30 19:48:19 +02:00
|
|
|
// IsWindowMaximized returns false when the window is not resizable.
|
|
|
|
//
|
2020-03-21 11:26:28 +01:00
|
|
|
// IsWindowMaximized always returns false on browsers and mobiles.
|
|
|
|
//
|
|
|
|
// IsWindowMaximized is concurrent-safe.
|
|
|
|
func IsWindowMaximized() bool {
|
2022-02-06 12:02:03 +01:00
|
|
|
return ui.Get().Window().IsMaximized()
|
2020-03-21 11:26:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// MinimizeWindow minimizes the window.
|
|
|
|
//
|
|
|
|
// If the main loop does not start yet, MinimizeWindow does nothing.
|
|
|
|
//
|
|
|
|
// MinimizeWindow does nothing on browsers or mobiles.
|
|
|
|
//
|
|
|
|
// MinimizeWindow is concurrent-safe.
|
|
|
|
func MinimizeWindow() {
|
2022-02-06 12:02:03 +01:00
|
|
|
ui.Get().Window().Minimize()
|
2020-03-21 11:26:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// IsWindowMinimized reports whether the window is minimized or not.
|
|
|
|
//
|
|
|
|
// IsWindowMinimized always returns false on browsers and mobiles.
|
|
|
|
//
|
|
|
|
// IsWindowMinimized is concurrent-safe.
|
|
|
|
func IsWindowMinimized() bool {
|
2022-02-06 12:02:03 +01:00
|
|
|
return ui.Get().Window().IsMinimized()
|
2020-03-21 11:26:28 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// RestoreWindow restores the window from its maximized or minimized state.
|
|
|
|
//
|
2020-03-30 19:48:19 +02:00
|
|
|
// RestoreWindow panics when the window is not maximized nor minimized.
|
|
|
|
//
|
2020-03-21 11:26:28 +01:00
|
|
|
// RestoreWindow is concurrent-safe.
|
|
|
|
func RestoreWindow() {
|
2020-03-30 19:48:19 +02:00
|
|
|
if !IsWindowMaximized() && !IsWindowMinimized() {
|
|
|
|
panic("ebiten: RestoreWindow must be called on a maximized or a minimized window")
|
|
|
|
}
|
2022-02-06 12:02:03 +01:00
|
|
|
ui.Get().Window().Restore()
|
2020-03-21 11:26:28 +01:00
|
|
|
}
|
2021-06-13 13:52:14 +02:00
|
|
|
|
|
|
|
// IsWindowBeingClosed returns true when the user is trying to close the window on desktops.
|
|
|
|
// As the window is closed immediately by default,
|
|
|
|
// you might want to call SetWindowClosingHandled(true) to prevent the window is automatically closed.
|
|
|
|
//
|
|
|
|
// IsWindowBeingClosed always returns false on other platforms.
|
|
|
|
//
|
|
|
|
// IsWindowBeingClosed is concurrent-safe.
|
|
|
|
func IsWindowBeingClosed() bool {
|
2022-02-06 12:02:03 +01:00
|
|
|
return ui.Get().Window().IsBeingClosed()
|
2021-06-13 13:52:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// SetWindowClosingHandled sets whether the window closing is handled or not on desktops. The default state is false.
|
|
|
|
//
|
|
|
|
// If the window closing is handled, the window is not closed immediately and
|
|
|
|
// the game can know whether the window is begin closed or not by IsWindowBeingClosed.
|
|
|
|
// In this case, the window is not closed automatically.
|
|
|
|
// To end the game, you have to return an error value at the Game's Update function.
|
|
|
|
//
|
|
|
|
// SetWindowClosingHandled works only on desktops.
|
|
|
|
// SetWindowClosingHandled does nothing on other platforms.
|
|
|
|
//
|
|
|
|
// SetWindowClosingHandled is concurrent-safe.
|
|
|
|
func SetWindowClosingHandled(handled bool) {
|
2022-02-06 12:02:03 +01:00
|
|
|
ui.Get().Window().SetClosingHandled(handled)
|
2021-06-13 13:52:14 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// IsWindowClosingHandled reports whether the window closing is handled or not on desktops by SetWindowClosingHandled.
|
|
|
|
//
|
|
|
|
// IsWindowClosingHandled always returns false on other platforms.
|
|
|
|
//
|
|
|
|
// IsWindowClosingHandled is concurrent-safe.
|
|
|
|
func IsWindowClosingHandled() bool {
|
2022-02-06 12:02:03 +01:00
|
|
|
return ui.Get().Window().IsClosingHandled()
|
2021-06-13 13:52:14 +02:00
|
|
|
}
|