2014-12-24 03:04:10 +01:00
|
|
|
// Copyright 2014 Hajime Hoshi
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
2014-12-09 15:16:04 +01:00
|
|
|
|
2014-12-14 08:53:32 +01:00
|
|
|
package ebiten
|
2014-12-06 17:09:59 +01:00
|
|
|
|
2014-12-27 20:01:23 +01:00
|
|
|
import (
|
2022-08-27 14:33:40 +02:00
|
|
|
"errors"
|
2022-10-13 19:22:40 +02:00
|
|
|
"image"
|
|
|
|
"image/color"
|
2023-01-21 15:34:20 +01:00
|
|
|
"io/fs"
|
2016-07-03 09:18:29 +02:00
|
|
|
"sync/atomic"
|
|
|
|
|
2020-10-03 19:35:13 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/clock"
|
2022-02-06 08:08:22 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/ui"
|
2014-12-27 20:01:23 +01:00
|
|
|
)
|
|
|
|
|
2019-11-24 16:12:06 +01:00
|
|
|
// Game defines necessary functions for a game.
|
|
|
|
type Game interface {
|
2020-04-01 07:31:46 +02:00
|
|
|
// Update updates a game by one tick. The given argument represents a screen image.
|
2020-03-24 04:01:37 +01:00
|
|
|
//
|
2020-10-04 10:09:17 +02:00
|
|
|
// Update updates only the game logic and Draw draws the screen.
|
2020-10-04 10:42:54 +02:00
|
|
|
//
|
2022-04-13 15:53:07 +02:00
|
|
|
// You can assume that Update is always called TPS-times per second (60 by default), and you can assume
|
2022-05-25 15:48:19 +02:00
|
|
|
// that the time delta between two Updates is always 1 / TPS [s] (1/60[s] by default). As Ebitengine already
|
2022-04-13 15:53:07 +02:00
|
|
|
// adjusts the number of Update calls, you don't have to measure time deltas in Update by e.g. OS timers.
|
|
|
|
//
|
2022-07-17 04:25:45 +02:00
|
|
|
// An actual TPS is available by ActualTPS(), and the result might slightly differ from your expected TPS,
|
|
|
|
// but still, your game logic should stick to the fixed time delta and should not rely on ActualTPS() value.
|
2022-04-13 15:53:07 +02:00
|
|
|
// This API is for just measurement and/or debugging. In the long run, the number of Update calls should be
|
|
|
|
// adjusted based on the set TPS on average.
|
|
|
|
//
|
2022-07-28 18:02:36 +02:00
|
|
|
// An actual time delta between two Updates might be bigger than expected. In this case, your game's
|
2022-04-13 15:53:07 +02:00
|
|
|
// Update or Draw takes longer than they should. In this case, there is nothing other than optimizing
|
|
|
|
// your game implementation.
|
|
|
|
//
|
2020-05-14 21:04:29 +02:00
|
|
|
// In the first frame, it is ensured that Update is called at least once before Draw. You can use Update
|
2020-10-04 10:42:54 +02:00
|
|
|
// to initialize the game state.
|
|
|
|
//
|
|
|
|
// After the first frame, Update might not be called or might be called once
|
2020-05-14 21:06:32 +02:00
|
|
|
// or more for one frame. The frequency is determined by the current TPS (tick-per-second).
|
2022-08-27 14:33:40 +02:00
|
|
|
//
|
|
|
|
// If the error returned is nil, game execution proceeds normally.
|
|
|
|
// If the error returned is Termination, game execution halts, but does not return an error from RunGame.
|
|
|
|
// If the error returned is any other non-nil value, game execution halts and the error is returned from RunGame.
|
2020-10-04 10:42:54 +02:00
|
|
|
Update() error
|
2019-11-24 16:12:06 +01:00
|
|
|
|
2020-03-24 04:01:37 +01:00
|
|
|
// Draw draws the game screen by one frame.
|
|
|
|
//
|
2020-03-30 18:56:22 +02:00
|
|
|
// The give argument represents a screen image. The updated content is adopted as the game screen.
|
2022-04-13 15:53:07 +02:00
|
|
|
//
|
|
|
|
// The frequency of Draw calls depends on the user's environment, especially the monitors refresh rate.
|
|
|
|
// For portability, you should not put your game logic in Draw in general.
|
2020-10-04 10:09:17 +02:00
|
|
|
Draw(screen *Image)
|
2020-03-24 04:01:37 +01:00
|
|
|
|
2019-12-16 02:52:53 +01:00
|
|
|
// Layout accepts a native outside size in device-independent pixels and returns the game's logical screen
|
|
|
|
// size.
|
2019-11-24 16:12:06 +01:00
|
|
|
//
|
2019-12-21 19:50:30 +01:00
|
|
|
// On desktops, the outside is a window or a monitor (fullscreen mode). On browsers, the outside is a body
|
2020-04-01 07:31:46 +02:00
|
|
|
// element. On mobiles, the outside is the view's size.
|
2019-12-21 19:50:30 +01:00
|
|
|
//
|
2020-04-01 07:31:46 +02:00
|
|
|
// Even though the outside size and the screen size differ, the rendering scale is automatically adjusted to
|
|
|
|
// fit with the outside.
|
2019-11-24 16:12:06 +01:00
|
|
|
//
|
2019-12-22 20:43:04 +01:00
|
|
|
// Layout is called almost every frame.
|
|
|
|
//
|
2020-12-20 13:10:47 +01:00
|
|
|
// It is ensured that Layout is invoked before Update is called in the first frame.
|
|
|
|
//
|
2019-12-22 20:43:04 +01:00
|
|
|
// If Layout returns non-positive numbers, the caller can panic.
|
2019-11-24 16:12:06 +01:00
|
|
|
//
|
|
|
|
// You can return a fixed screen size if you don't care, or you can also return a calculated screen size
|
|
|
|
// adjusted with the given outside size.
|
2022-11-08 17:49:51 +01:00
|
|
|
//
|
2022-11-08 18:00:07 +01:00
|
|
|
// If the game implements the interface LayoutFer, Layout is never called and LayoutF is called instead.
|
2019-11-24 16:12:06 +01:00
|
|
|
Layout(outsideWidth, outsideHeight int) (screenWidth, screenHeight int)
|
|
|
|
}
|
|
|
|
|
2022-11-08 18:00:07 +01:00
|
|
|
// LayoutFer is an interface for the float version of Game.Layout.
|
|
|
|
type LayoutFer interface {
|
2022-11-08 17:49:51 +01:00
|
|
|
// LayoutF is the float version of Game.Layout.
|
|
|
|
//
|
|
|
|
// If the game implements this interface, Layout is never called and LayoutF is called instead.
|
|
|
|
LayoutF(outsideWidth, outsideHeight float64) (screenWidth, screenHeight float64)
|
|
|
|
}
|
|
|
|
|
2022-10-13 19:22:40 +02:00
|
|
|
// FinalScreen represents the final screen image.
|
|
|
|
// FinalScreen implements a part of Image functions.
|
|
|
|
type FinalScreen interface {
|
|
|
|
Bounds() image.Rectangle
|
|
|
|
|
|
|
|
DrawImage(img *Image, options *DrawImageOptions)
|
|
|
|
DrawTriangles(vertices []Vertex, indices []uint16, img *Image, options *DrawTrianglesOptions)
|
|
|
|
DrawRectShader(width, height int, shader *Shader, options *DrawRectShaderOptions)
|
|
|
|
DrawTrianglesShader(vertices []Vertex, indices []uint16, shader *Shader, options *DrawTrianglesShaderOptions)
|
|
|
|
Clear()
|
|
|
|
Fill(clr color.Color)
|
|
|
|
|
|
|
|
// private prevents other packages from implementing this interface.
|
|
|
|
// A new function might be added to this interface in the future
|
|
|
|
// even if the Ebitengine major version is not updated.
|
|
|
|
private()
|
|
|
|
}
|
|
|
|
|
|
|
|
// FinalScreenDrawer is an interface for a custom function to render the final screen.
|
|
|
|
// For an actual usage, see examples/flappy.
|
|
|
|
type FinalScreenDrawer interface {
|
|
|
|
// DrawFinalScreen draws the final screen.
|
|
|
|
// If a game implementing FinalScreenDrawer is passed to RunGame, DrawFinalScreen is called after Draw.
|
|
|
|
// screen is the final screen. offscreen is the offscreen modified at Draw.
|
2022-10-14 16:35:55 +02:00
|
|
|
//
|
|
|
|
// geoM is the default geometry matrix to render the offscreen onto the final screen.
|
|
|
|
// geoM scales the offscreen to fit the final screen without changing the aspect ratio, and
|
2023-01-28 11:06:38 +01:00
|
|
|
// translates the offscreen to put it in the center of the final screen.
|
2022-10-14 16:35:55 +02:00
|
|
|
DrawFinalScreen(screen FinalScreen, offscreen *Image, geoM GeoM)
|
2022-10-13 19:22:40 +02:00
|
|
|
}
|
|
|
|
|
2020-10-17 18:29:35 +02:00
|
|
|
// DefaultTPS represents a default ticks per second, that represents how many times game updating happens in a second.
|
2022-07-12 05:47:34 +02:00
|
|
|
const DefaultTPS = clock.DefaultTPS
|
2018-07-16 17:52:50 +02:00
|
|
|
|
2022-07-17 04:25:45 +02:00
|
|
|
// ActualFPS returns the current number of FPS (frames per second), that represents
|
2018-07-17 19:17:06 +02:00
|
|
|
// how many swapping buffer happens per second.
|
2017-09-30 18:59:34 +02:00
|
|
|
//
|
2022-07-17 04:25:45 +02:00
|
|
|
// On some environments, ActualFPS doesn't return a reliable value since vsync doesn't work well there.
|
|
|
|
// If you want to measure the application's speed, Use ActualTPS.
|
2018-09-30 07:43:53 +02:00
|
|
|
//
|
2021-09-08 15:45:26 +02:00
|
|
|
// This value is for measurement and/or debug, and your game logic should not rely on this value.
|
|
|
|
//
|
2022-07-17 04:25:45 +02:00
|
|
|
// ActualFPS is concurrent-safe.
|
|
|
|
func ActualFPS() float64 {
|
2022-04-13 17:57:47 +02:00
|
|
|
return clock.ActualFPS()
|
2016-03-26 09:50:00 +01:00
|
|
|
}
|
|
|
|
|
2022-07-17 04:25:45 +02:00
|
|
|
// CurrentFPS returns the current number of FPS (frames per second), that represents
|
|
|
|
// how many swapping buffer happens per second.
|
|
|
|
//
|
|
|
|
// Deprecated: as of v2.4. Use ActualFPS instead.
|
|
|
|
func CurrentFPS() float64 {
|
|
|
|
return ActualFPS()
|
|
|
|
}
|
|
|
|
|
2016-07-03 09:18:29 +02:00
|
|
|
var (
|
2022-02-13 12:30:32 +01:00
|
|
|
isRunGameEnded_ = int32(0)
|
2016-07-03 09:18:29 +02:00
|
|
|
)
|
|
|
|
|
2020-08-20 10:12:22 +02:00
|
|
|
// SetScreenClearedEveryFrame enables or disables the clearing of the screen at the beginning of each frame.
|
2021-03-29 17:31:57 +02:00
|
|
|
// The default value is true and the screen is cleared each frame by default.
|
2020-08-13 11:19:56 +02:00
|
|
|
//
|
2020-08-20 10:12:22 +02:00
|
|
|
// SetScreenClearedEveryFrame is concurrent-safe.
|
|
|
|
func SetScreenClearedEveryFrame(cleared bool) {
|
2023-10-15 08:50:39 +02:00
|
|
|
ui.Get().SetScreenClearedEveryFrame(cleared)
|
2020-08-13 11:19:56 +02:00
|
|
|
}
|
|
|
|
|
2020-08-20 10:12:22 +02:00
|
|
|
// IsScreenClearedEveryFrame returns true if the frame isn't cleared at the beginning.
|
2020-08-13 11:19:56 +02:00
|
|
|
//
|
2020-08-20 10:12:22 +02:00
|
|
|
// IsScreenClearedEveryFrame is concurrent-safe.
|
|
|
|
func IsScreenClearedEveryFrame() bool {
|
2023-10-15 08:50:39 +02:00
|
|
|
return ui.Get().IsScreenClearedEveryFrame()
|
2020-08-13 11:19:56 +02:00
|
|
|
}
|
|
|
|
|
2022-05-25 15:48:19 +02:00
|
|
|
// SetScreenFilterEnabled enables/disables the use of the "screen" filter Ebitengine uses.
|
2022-02-23 19:46:27 +01:00
|
|
|
//
|
|
|
|
// The "screen" filter is a box filter from game to display resolution.
|
|
|
|
//
|
|
|
|
// If disabled, nearest-neighbor filtering will be used for scaling instead.
|
|
|
|
//
|
|
|
|
// The default state is true.
|
|
|
|
//
|
|
|
|
// SetScreenFilterEnabled is concurrent-safe, but takes effect only at the next Draw call.
|
2022-10-13 19:22:40 +02:00
|
|
|
//
|
|
|
|
// Deprecated: as of v2.5. Use FinalScreenDrawer instead.
|
2022-02-23 19:46:27 +01:00
|
|
|
func SetScreenFilterEnabled(enabled bool) {
|
2022-10-13 16:13:25 +02:00
|
|
|
setScreenFilterEnabled(enabled)
|
2022-02-23 19:46:27 +01:00
|
|
|
}
|
|
|
|
|
2022-05-25 15:48:19 +02:00
|
|
|
// IsScreenFilterEnabled returns true if Ebitengine's "screen" filter is enabled.
|
2022-02-23 19:46:27 +01:00
|
|
|
//
|
|
|
|
// IsScreenFilterEnabled is concurrent-safe.
|
2022-10-13 19:22:40 +02:00
|
|
|
//
|
2023-03-07 18:16:44 +01:00
|
|
|
// Deprecated: as of v2.5.
|
2022-02-23 19:46:27 +01:00
|
|
|
func IsScreenFilterEnabled() bool {
|
2022-10-13 16:13:25 +02:00
|
|
|
return isScreenFilterEnabled()
|
2022-02-23 19:46:27 +01:00
|
|
|
}
|
|
|
|
|
2022-08-27 14:33:40 +02:00
|
|
|
// Termination is a special error which indicates Game termination without error.
|
|
|
|
var Termination = ui.RegularTermination
|
|
|
|
|
2019-12-16 02:52:53 +01:00
|
|
|
// RunGame starts the main loop and runs the game.
|
2020-06-19 14:12:02 +02:00
|
|
|
// game's Update function is called every tick to update the game logic.
|
2021-07-24 08:46:02 +02:00
|
|
|
// game's Draw function is called every frame to draw the screen.
|
2019-12-22 05:21:15 +01:00
|
|
|
// game's Layout function is called when necessary, and you can specify the logical screen size by the function.
|
2019-12-16 02:52:53 +01:00
|
|
|
//
|
2022-10-13 19:22:40 +02:00
|
|
|
// If game implements FinalScreenDrawer, its DrawFinalScreen is called after Draw.
|
|
|
|
// The argument screen represents the final screen. The argument offscreen is an offscreen modified at Draw.
|
2023-01-28 11:06:38 +01:00
|
|
|
// If game does not implement FinalScreenDrawer, the default rendering for the final screen is used.
|
2022-10-13 19:22:40 +02:00
|
|
|
//
|
2021-11-25 18:17:04 +01:00
|
|
|
// game's functions are called on the same goroutine.
|
|
|
|
//
|
2022-05-25 15:48:19 +02:00
|
|
|
// On browsers, it is strongly recommended to use iframe if you embed an Ebitengine application in your website.
|
2019-12-16 02:52:53 +01:00
|
|
|
//
|
|
|
|
// RunGame must be called on the main thread.
|
2022-05-25 15:48:19 +02:00
|
|
|
// Note that Ebitengine bounds the main goroutine to the main OS thread by runtime.LockOSThread.
|
2019-12-16 02:52:53 +01:00
|
|
|
//
|
2022-05-25 15:48:19 +02:00
|
|
|
// Ebitengine tries to call game's Update function 60 times a second by default. In other words,
|
2019-12-16 02:52:53 +01:00
|
|
|
// TPS (ticks per second) is 60 by default.
|
|
|
|
// This is not related to framerate (display's refresh rate).
|
|
|
|
//
|
2022-07-24 16:15:47 +02:00
|
|
|
// RunGame returns error when 1) an error happens in the underlying graphics driver, 2) an audio error happens
|
2022-08-27 14:33:40 +02:00
|
|
|
// or 3) Update returns an error. In the case of 3), RunGame returns the same error so far, but it is recommended to
|
2022-07-24 16:15:47 +02:00
|
|
|
// use errors.Is when you check the returned error is the error you want, rather than comparing the values
|
|
|
|
// with == or != directly.
|
2019-12-16 02:52:53 +01:00
|
|
|
//
|
2022-08-27 14:33:40 +02:00
|
|
|
// If you want to terminate a game on desktops, it is recommended to return Termination at Update, which will halt
|
|
|
|
// execution without returning an error value from RunGame.
|
2022-08-22 16:30:19 +02:00
|
|
|
//
|
2019-12-16 02:52:53 +01:00
|
|
|
// The size unit is device-independent pixel.
|
|
|
|
//
|
2022-12-09 06:07:04 +01:00
|
|
|
// Don't call RunGame or RunGameWithOptions twice or more in one process.
|
2019-12-16 02:52:53 +01:00
|
|
|
func RunGame(game Game) error {
|
2022-12-09 06:07:04 +01:00
|
|
|
return RunGameWithOptions(game, nil)
|
|
|
|
}
|
|
|
|
|
2023-01-28 11:06:38 +01:00
|
|
|
// RunGameOptions represents options for RunGameWithOptions.
|
2022-12-09 06:07:04 +01:00
|
|
|
type RunGameOptions struct {
|
|
|
|
// GraphicsLibrary is a graphics library Ebitengine will use.
|
2022-12-09 11:04:52 +01:00
|
|
|
//
|
2022-12-09 06:07:04 +01:00
|
|
|
// The default (zero) value is GraphicsLibraryAuto, which lets Ebitengine choose the graphics library.
|
|
|
|
GraphicsLibrary GraphicsLibrary
|
2022-12-09 11:04:52 +01:00
|
|
|
|
2022-12-12 17:03:19 +01:00
|
|
|
// InitUnfocused indicates whether the window is unfocused or not on launching.
|
2022-12-09 11:04:52 +01:00
|
|
|
// InitUnfocused is valid on desktops and browsers.
|
|
|
|
//
|
|
|
|
// The default (zero) value is false, which means that the window is focused.
|
|
|
|
InitUnfocused bool
|
2022-12-09 13:23:41 +01:00
|
|
|
|
2022-12-12 17:03:19 +01:00
|
|
|
// ScreenTransparent indicates whether the window is transparent or not.
|
2022-12-09 13:23:41 +01:00
|
|
|
// ScreenTransparent is valid on desktops and browsers.
|
|
|
|
//
|
|
|
|
// The default (zero) value is false, which means that the window is not transparent.
|
|
|
|
ScreenTransparent bool
|
2022-12-12 17:03:19 +01:00
|
|
|
|
|
|
|
// SkipTaskbar indicates whether an application icon is shown on a taskbar or not.
|
|
|
|
// SkipTaskbar is valid only on Windows.
|
|
|
|
//
|
|
|
|
// The default (zero) value is false, which means that an icon is shown on a taskbar.
|
|
|
|
SkipTaskbar bool
|
2022-12-09 06:07:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// RunGameWithOptions starts the main loop and runs the game with the specified options.
|
|
|
|
// game's Update function is called every tick to update the game logic.
|
|
|
|
// game's Draw function is called every frame to draw the screen.
|
|
|
|
// game's Layout function is called when necessary, and you can specify the logical screen size by the function.
|
|
|
|
//
|
|
|
|
// options can be nil. In this case, the default options are used.
|
|
|
|
//
|
|
|
|
// If game implements FinalScreenDrawer, its DrawFinalScreen is called after Draw.
|
|
|
|
// The argument screen represents the final screen. The argument offscreen is an offscreen modified at Draw.
|
2023-01-28 11:06:38 +01:00
|
|
|
// If game does not implement FinalScreenDrawer, the default rendering for the final screen is used.
|
2022-12-09 06:07:04 +01:00
|
|
|
//
|
|
|
|
// game's functions are called on the same goroutine.
|
|
|
|
//
|
|
|
|
// On browsers, it is strongly recommended to use iframe if you embed an Ebitengine application in your website.
|
|
|
|
//
|
|
|
|
// RunGameWithOptions must be called on the main thread.
|
|
|
|
// Note that Ebitengine bounds the main goroutine to the main OS thread by runtime.LockOSThread.
|
|
|
|
//
|
|
|
|
// Ebitengine tries to call game's Update function 60 times a second by default. In other words,
|
|
|
|
// TPS (ticks per second) is 60 by default.
|
|
|
|
// This is not related to framerate (display's refresh rate).
|
|
|
|
//
|
|
|
|
// RunGameWithOptions returns error when 1) an error happens in the underlying graphics driver, 2) an audio error happens
|
|
|
|
// or 3) Update returns an error. In the case of 3), RunGameWithOptions returns the same error so far, but it is recommended to
|
|
|
|
// use errors.Is when you check the returned error is the error you want, rather than comparing the values
|
|
|
|
// with == or != directly.
|
|
|
|
//
|
|
|
|
// If you want to terminate a game on desktops, it is recommended to return Termination at Update, which will halt
|
|
|
|
// execution without returning an error value from RunGameWithOptions.
|
|
|
|
//
|
|
|
|
// The size unit is device-independent pixel.
|
|
|
|
//
|
|
|
|
// Don't call RunGame or RunGameWithOptions twice or more in one process.
|
|
|
|
func RunGameWithOptions(game Game, options *RunGameOptions) error {
|
2021-04-03 11:44:41 +02:00
|
|
|
defer atomic.StoreInt32(&isRunGameEnded_, 1)
|
|
|
|
|
2021-04-17 10:30:48 +02:00
|
|
|
initializeWindowPositionIfNeeded(WindowSize())
|
2022-12-09 13:23:41 +01:00
|
|
|
|
|
|
|
op := toUIRunOptions(options)
|
|
|
|
// This is necessary to change the result of IsScreenTransparent.
|
|
|
|
if op.ScreenTransparent {
|
|
|
|
atomic.StoreInt32(&screenTransparent, 1)
|
|
|
|
} else {
|
|
|
|
atomic.StoreInt32(&screenTransparent, 0)
|
|
|
|
}
|
|
|
|
g := newGameForUI(game, op.ScreenTransparent)
|
|
|
|
|
|
|
|
if err := ui.Get().Run(g, op); err != nil {
|
2022-08-27 14:33:40 +02:00
|
|
|
if errors.Is(err, Termination) {
|
2019-12-16 02:52:53 +01:00
|
|
|
return nil
|
|
|
|
}
|
2022-08-27 14:33:40 +02:00
|
|
|
|
2019-12-16 02:52:53 +01:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2021-04-03 11:44:41 +02:00
|
|
|
func isRunGameEnded() bool {
|
|
|
|
return atomic.LoadInt32(&isRunGameEnded_) != 0
|
|
|
|
}
|
|
|
|
|
2020-03-22 07:32:11 +01:00
|
|
|
// ScreenSizeInFullscreen returns the size in device-independent pixels when the game is fullscreen.
|
|
|
|
// The adopted monitor is the 'current' monitor which the window belongs to.
|
2022-08-27 14:33:40 +02:00
|
|
|
// The returned value can be given to SetSize function if the perfectly fit fullscreen is needed.
|
2020-03-22 07:32:11 +01:00
|
|
|
//
|
2022-06-16 05:05:09 +02:00
|
|
|
// On browsers, ScreenSizeInFullscreen returns the 'window' (global object) size, not 'screen' size.
|
|
|
|
// ScreenSizeInFullscreen's returning value is different from the actual screen size and this is a known issue (#2145).
|
|
|
|
// For browsers, it is recommended to use Screen API (https://developer.mozilla.org/en-US/docs/Web/API/Screen) if needed.
|
2020-03-22 07:32:11 +01:00
|
|
|
//
|
|
|
|
// On mobiles, ScreenSizeInFullscreen returns (0, 0) so far.
|
|
|
|
//
|
|
|
|
// ScreenSizeInFullscreen's use cases are limited. If you are making a fullscreen application, you can use RunGame and
|
|
|
|
// the Game interface's Layout function instead. If you are making a not-fullscreen application but the application's
|
|
|
|
// behavior depends on the monitor size, ScreenSizeInFullscreen is useful.
|
|
|
|
//
|
2022-08-27 14:33:40 +02:00
|
|
|
// ScreenSizeInFullscreen must be called on the main thread before ebiten.RunGame, and is concurrent-safe after
|
|
|
|
// ebiten.RunGame.
|
2018-10-09 16:27:29 +02:00
|
|
|
func ScreenSizeInFullscreen() (int, int) {
|
2022-02-06 08:08:22 +01:00
|
|
|
return ui.Get().ScreenSizeInFullscreen()
|
2018-05-04 09:09:55 +02:00
|
|
|
}
|
|
|
|
|
2019-12-14 04:30:03 +01:00
|
|
|
// CursorMode returns the current cursor mode.
|
2017-08-12 08:39:41 +02:00
|
|
|
//
|
2019-12-14 04:30:03 +01:00
|
|
|
// CursorMode returns CursorModeHidden on mobiles.
|
|
|
|
//
|
|
|
|
// CursorMode is concurrent-safe.
|
|
|
|
func CursorMode() CursorModeType {
|
2022-02-06 08:08:22 +01:00
|
|
|
return ui.Get().CursorMode()
|
2017-08-12 08:39:41 +02:00
|
|
|
}
|
|
|
|
|
2019-12-14 04:30:03 +01:00
|
|
|
// SetCursorMode sets the render and capture mode of the mouse cursor.
|
|
|
|
// CursorModeVisible sets the cursor to always be visible.
|
|
|
|
// CursorModeHidden hides the system cursor when over the window.
|
|
|
|
// CursorModeCaptured hides the system cursor and locks it to the window.
|
|
|
|
//
|
2021-04-15 20:27:33 +02:00
|
|
|
// CursorModeCaptured also works on browsers.
|
|
|
|
// When the user exits the captured mode not by SetCursorMode but by the UI (e.g., pressing ESC),
|
2021-04-16 04:57:48 +02:00
|
|
|
// the previous cursor mode is set automatically.
|
2023-07-06 18:39:19 +02:00
|
|
|
//
|
2023-07-06 18:17:28 +02:00
|
|
|
// On browsers, setting CursorModeCaptured might be delayed especially just after escaping from a capture.
|
2016-09-03 10:17:54 +02:00
|
|
|
//
|
2023-07-06 18:39:19 +02:00
|
|
|
// On browsers, capturing a cursor requires a user gesture, otherwise SetCursorMode does nothing but leave an error message in console.
|
|
|
|
// This behavior varies across browser implementations.
|
|
|
|
// Check a user interaction before calling capturing a cursor e.g. by IsMouseButtonPressed or IsKeyPressed.
|
|
|
|
//
|
2019-12-14 04:30:03 +01:00
|
|
|
// SetCursorMode does nothing on mobiles.
|
2017-08-12 08:39:41 +02:00
|
|
|
//
|
2019-12-14 04:30:03 +01:00
|
|
|
// SetCursorMode is concurrent-safe.
|
|
|
|
func SetCursorMode(mode CursorModeType) {
|
2022-02-06 08:08:22 +01:00
|
|
|
ui.Get().SetCursorMode(mode)
|
2019-12-14 04:30:03 +01:00
|
|
|
}
|
|
|
|
|
2021-07-22 12:17:14 +02:00
|
|
|
// CursorShape returns the current cursor shape.
|
|
|
|
//
|
|
|
|
// CursorShape returns CursorShapeDefault on mobiles.
|
|
|
|
//
|
|
|
|
// CursorShape is concurrent-safe.
|
2021-04-11 07:21:38 +02:00
|
|
|
func CursorShape() CursorShapeType {
|
2022-02-06 08:08:22 +01:00
|
|
|
return ui.Get().CursorShape()
|
2021-04-11 07:21:38 +02:00
|
|
|
}
|
|
|
|
|
2021-07-22 12:17:14 +02:00
|
|
|
// SetCursorShape sets the cursor shape.
|
|
|
|
//
|
2023-01-15 18:26:41 +01:00
|
|
|
// If the platform doesn't implement the given shape, the default cursor shape is used.
|
|
|
|
//
|
2021-07-22 12:17:14 +02:00
|
|
|
// SetCursorShape is concurrent-safe.
|
2021-04-11 07:21:38 +02:00
|
|
|
func SetCursorShape(shape CursorShapeType) {
|
2022-02-06 08:08:22 +01:00
|
|
|
ui.Get().SetCursorShape(shape)
|
2021-04-11 07:21:38 +02:00
|
|
|
}
|
|
|
|
|
2019-10-21 21:07:14 +02:00
|
|
|
// IsFullscreen reports whether the current mode is fullscreen or not.
|
2017-07-01 06:07:44 +02:00
|
|
|
//
|
2021-04-27 16:58:32 +02:00
|
|
|
// IsFullscreen always returns false on mobiles.
|
2017-09-30 18:59:34 +02:00
|
|
|
//
|
2018-07-14 18:04:46 +02:00
|
|
|
// IsFullscreen is concurrent-safe.
|
2017-06-29 17:35:34 +02:00
|
|
|
func IsFullscreen() bool {
|
2022-02-06 08:08:22 +01:00
|
|
|
return ui.Get().IsFullscreen()
|
2017-06-29 17:35:34 +02:00
|
|
|
}
|
|
|
|
|
2021-04-27 16:58:32 +02:00
|
|
|
// SetFullscreen changes the current mode to fullscreen or not on desktops and browsers.
|
2017-07-01 06:07:44 +02:00
|
|
|
//
|
2021-04-21 15:50:00 +02:00
|
|
|
// In fullscreen mode, the game screen is automatically enlarged
|
2017-07-01 06:07:44 +02:00
|
|
|
// to fit with the monitor. The current scale value is ignored.
|
|
|
|
//
|
2022-05-25 15:48:19 +02:00
|
|
|
// On desktops, Ebitengine uses 'windowed' fullscreen mode, which doesn't change
|
2017-07-01 06:07:44 +02:00
|
|
|
// your monitor's resolution.
|
|
|
|
//
|
2023-07-06 18:39:19 +02:00
|
|
|
// On browsers, triggering fullscreen requires a user gesture, otherwise SetFullscreen does nothing but leave an error message in console.
|
|
|
|
// This behavior varies across browser implementations.
|
|
|
|
// Check a user interaction before triggering fullscreen e.g. by IsMouseButtonPressed or IsKeyPressed.
|
2021-04-27 16:58:32 +02:00
|
|
|
//
|
|
|
|
// SetFullscreen does nothing on mobiles.
|
2017-07-21 19:15:09 +02:00
|
|
|
//
|
2021-04-18 10:35:46 +02:00
|
|
|
// SetFullscreen does nothing on macOS when the window is fullscreened natively by the macOS desktop
|
|
|
|
// instead of SetFullscreen(true).
|
|
|
|
//
|
2018-07-14 18:04:46 +02:00
|
|
|
// SetFullscreen is concurrent-safe.
|
2017-06-29 17:35:34 +02:00
|
|
|
func SetFullscreen(fullscreen bool) {
|
2022-02-06 08:08:22 +01:00
|
|
|
ui.Get().SetFullscreen(fullscreen)
|
2017-06-29 17:35:34 +02:00
|
|
|
}
|
2017-08-02 16:37:50 +02:00
|
|
|
|
2020-03-20 16:08:40 +01:00
|
|
|
// IsFocused returns a boolean value indicating whether
|
2020-01-16 02:47:23 +01:00
|
|
|
// the game is in focus or in the foreground.
|
|
|
|
//
|
2020-03-20 16:34:12 +01:00
|
|
|
// IsFocused will only return true if IsRunnableOnUnfocused is false.
|
2020-01-16 02:47:23 +01:00
|
|
|
//
|
2020-03-20 16:08:40 +01:00
|
|
|
// IsFocused is concurrent-safe.
|
|
|
|
func IsFocused() bool {
|
2022-02-06 08:08:22 +01:00
|
|
|
return ui.Get().IsFocused()
|
2020-01-16 02:47:23 +01:00
|
|
|
}
|
|
|
|
|
2020-03-20 16:34:12 +01:00
|
|
|
// IsRunnableOnUnfocused returns a boolean value indicating whether
|
2017-09-13 20:37:38 +02:00
|
|
|
// the game runs even in background.
|
2017-08-02 16:37:50 +02:00
|
|
|
//
|
2020-03-20 16:34:12 +01:00
|
|
|
// IsRunnableOnUnfocused is concurrent-safe.
|
|
|
|
func IsRunnableOnUnfocused() bool {
|
2022-02-06 08:08:22 +01:00
|
|
|
return ui.Get().IsRunnableOnUnfocused()
|
2020-03-20 16:34:12 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// SetRunnableOnUnfocused sets the state if the game runs even in background.
|
2017-08-02 16:37:50 +02:00
|
|
|
//
|
2020-10-06 17:30:46 +02:00
|
|
|
// If the given value is true, the game runs even in background e.g. when losing focus.
|
|
|
|
// The initial state is true.
|
2017-08-02 16:37:50 +02:00
|
|
|
//
|
|
|
|
// Known issue: On browsers, even if the state is on, the game doesn't run in background tabs.
|
|
|
|
// This is because browsers throttles background tabs not to often update.
|
|
|
|
//
|
2020-03-20 16:34:12 +01:00
|
|
|
// SetRunnableOnUnfocused does nothing on mobiles so far.
|
2017-08-02 16:37:50 +02:00
|
|
|
//
|
2020-03-20 16:34:12 +01:00
|
|
|
// SetRunnableOnUnfocused is concurrent-safe.
|
|
|
|
func SetRunnableOnUnfocused(runnableOnUnfocused bool) {
|
2022-02-06 08:08:22 +01:00
|
|
|
ui.Get().SetRunnableOnUnfocused(runnableOnUnfocused)
|
2020-03-20 16:34:12 +01:00
|
|
|
}
|
|
|
|
|
2018-10-09 16:27:29 +02:00
|
|
|
// DeviceScaleFactor returns a device scale factor value of the current monitor which the window belongs to.
|
2018-01-03 08:52:41 +01:00
|
|
|
//
|
2018-01-03 11:23:29 +01:00
|
|
|
// DeviceScaleFactor returns a meaningful value on high-DPI display environment,
|
|
|
|
// otherwise DeviceScaleFactor returns 1.
|
2018-01-03 08:52:41 +01:00
|
|
|
//
|
2018-05-04 20:15:17 +02:00
|
|
|
// DeviceScaleFactor might panic on init function on some devices like Android.
|
2018-05-04 08:26:47 +02:00
|
|
|
// Then, it is not recommended to call DeviceScaleFactor from init functions.
|
|
|
|
//
|
2020-10-20 20:17:40 +02:00
|
|
|
// DeviceScaleFactor must be called on the main thread before the main loop, and is concurrent-safe after the main
|
|
|
|
// loop.
|
2021-04-17 10:33:30 +02:00
|
|
|
//
|
|
|
|
// DeviceScaleFactor is concurrent-safe.
|
|
|
|
//
|
|
|
|
// BUG: DeviceScaleFactor value is not affected by SetWindowPosition before RunGame (#1575).
|
2018-01-03 11:23:29 +01:00
|
|
|
func DeviceScaleFactor() float64 {
|
2022-02-06 08:08:22 +01:00
|
|
|
return ui.Get().DeviceScaleFactor()
|
2018-01-02 21:25:22 +01:00
|
|
|
}
|
2018-07-14 13:50:09 +02:00
|
|
|
|
|
|
|
// IsVsyncEnabled returns a boolean value indicating whether
|
|
|
|
// the game uses the display's vsync.
|
|
|
|
func IsVsyncEnabled() bool {
|
2023-10-15 09:10:13 +02:00
|
|
|
return ui.Get().FPSMode() == ui.FPSModeVsyncOn
|
2018-07-14 13:50:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// SetVsyncEnabled sets a boolean value indicating whether
|
|
|
|
// the game uses the display's vsync.
|
|
|
|
func SetVsyncEnabled(enabled bool) {
|
2021-07-22 16:55:26 +02:00
|
|
|
if enabled {
|
2023-10-14 17:06:07 +02:00
|
|
|
ui.Get().SetFPSMode(ui.FPSModeVsyncOn)
|
2021-07-22 16:55:26 +02:00
|
|
|
} else {
|
2023-10-14 17:06:07 +02:00
|
|
|
ui.Get().SetFPSMode(ui.FPSModeVsyncOffMaximum)
|
2021-07-22 16:55:26 +02:00
|
|
|
}
|
2018-07-14 13:50:09 +02:00
|
|
|
}
|
2018-07-16 18:42:19 +02:00
|
|
|
|
2021-07-22 18:07:28 +02:00
|
|
|
// FPSModeType is a type of FPS modes.
|
2022-10-28 18:10:23 +02:00
|
|
|
//
|
|
|
|
// Deprecated: as of v2.5. Use SetVsyncEnabled instead.
|
2022-02-13 09:23:52 +01:00
|
|
|
type FPSModeType = ui.FPSModeType
|
2021-07-22 18:07:28 +02:00
|
|
|
|
|
|
|
const (
|
|
|
|
// FPSModeVsyncOn indicates that the game tries to sync the display's refresh rate.
|
|
|
|
// FPSModeVsyncOn is the default mode.
|
2022-10-28 18:10:23 +02:00
|
|
|
//
|
|
|
|
// Deprecated: as of v2.5. Use SetVsyncEnabled(true) instead.
|
2022-02-06 09:43:52 +01:00
|
|
|
FPSModeVsyncOn FPSModeType = ui.FPSModeVsyncOn
|
2021-07-22 18:07:28 +02:00
|
|
|
|
2021-09-01 10:17:54 +02:00
|
|
|
// FPSModeVsyncOffMaximum indicates that the game doesn't sync with vsync, and
|
2021-07-22 18:07:28 +02:00
|
|
|
// the game is updated whenever possible.
|
|
|
|
//
|
|
|
|
// Be careful that FPSModeVsyncOffMaximum might consume a lot of battery power.
|
|
|
|
//
|
|
|
|
// In FPSModeVsyncOffMaximum, the game's Draw is called almost without sleeping.
|
|
|
|
// The game's Update is called based on the specified TPS.
|
2022-10-28 18:10:23 +02:00
|
|
|
//
|
|
|
|
// Deprecated: as of v2.5. Use SetVsyncEnabled(false) instead.
|
2022-02-06 09:43:52 +01:00
|
|
|
FPSModeVsyncOffMaximum FPSModeType = ui.FPSModeVsyncOffMaximum
|
2021-07-22 18:07:28 +02:00
|
|
|
|
2021-09-01 10:17:54 +02:00
|
|
|
// FPSModeVsyncOffMinimum indicates that the game doesn't sync with vsync, and
|
2021-07-22 18:07:28 +02:00
|
|
|
// the game is updated only when necessary.
|
|
|
|
//
|
|
|
|
// FPSModeVsyncOffMinimum is useful for relatively static applications to save battery power.
|
|
|
|
//
|
|
|
|
// In FPSModeVsyncOffMinimum, the game's Update and Draw are called only when
|
2022-02-04 14:46:12 +01:00
|
|
|
// 1) new inputting except for gamepads is detected, or 2) ScheduleFrame is called.
|
2022-07-17 04:25:45 +02:00
|
|
|
// In FPSModeVsyncOffMinimum, TPS is SyncWithFPS no matter what TPS is specified at SetTPS.
|
2022-10-28 18:10:23 +02:00
|
|
|
//
|
2022-12-19 19:09:03 +01:00
|
|
|
// Deprecated: as of v2.5. Use SetScreenClearedEveryFrame(false) instead.
|
2022-10-28 18:10:23 +02:00
|
|
|
// See examples/skipdraw for GPU optimization with SetScreenClearedEveryFrame(false).
|
2022-02-06 09:43:52 +01:00
|
|
|
FPSModeVsyncOffMinimum FPSModeType = ui.FPSModeVsyncOffMinimum
|
2021-07-22 18:07:28 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
// FPSMode returns the current FPS mode.
|
|
|
|
//
|
|
|
|
// FPSMode is concurrent-safe.
|
2022-10-28 18:10:23 +02:00
|
|
|
//
|
|
|
|
// Deprecated: as of v2.5. Use SetVsyncEnabled instead.
|
2021-07-22 18:07:28 +02:00
|
|
|
func FPSMode() FPSModeType {
|
2023-10-15 09:10:13 +02:00
|
|
|
return ui.Get().FPSMode()
|
2021-07-22 18:07:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// SetFPSMode sets the FPS mode.
|
2021-09-01 10:17:54 +02:00
|
|
|
// The default FPS mode is FPSModeVsyncOn.
|
2021-07-22 18:07:28 +02:00
|
|
|
//
|
|
|
|
// SetFPSMode is concurrent-safe.
|
2022-10-28 18:10:23 +02:00
|
|
|
//
|
|
|
|
// Deprecated: as of v2.5. Use SetVsyncEnabled instead.
|
2021-07-22 18:07:28 +02:00
|
|
|
func SetFPSMode(mode FPSModeType) {
|
2023-10-14 17:06:07 +02:00
|
|
|
ui.Get().SetFPSMode(mode)
|
2021-07-22 18:07:28 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// ScheduleFrame schedules a next frame when the current FPS mode is FPSModeVsyncOffMinimum.
|
|
|
|
//
|
|
|
|
// ScheduleFrame is concurrent-safe.
|
2022-10-28 18:10:23 +02:00
|
|
|
//
|
|
|
|
// Deprecated: as of v2.5. Use SetScreenClearedEveryFrame(false) instead.
|
|
|
|
// See examples/skipdraw for GPU optimization with SetScreenClearedEveryFrame(false).
|
2021-07-22 18:07:28 +02:00
|
|
|
func ScheduleFrame() {
|
2022-02-06 08:08:22 +01:00
|
|
|
ui.Get().ScheduleFrame()
|
2021-07-22 18:07:28 +02:00
|
|
|
}
|
|
|
|
|
2022-07-17 04:25:45 +02:00
|
|
|
// TPS returns the current maximum TPS.
|
|
|
|
//
|
|
|
|
// TPS is concurrent-safe.
|
|
|
|
func TPS() int {
|
|
|
|
return clock.TPS()
|
|
|
|
}
|
|
|
|
|
2018-07-17 15:41:27 +02:00
|
|
|
// MaxTPS returns the current maximum TPS.
|
2018-07-16 18:42:19 +02:00
|
|
|
//
|
2022-07-17 04:25:45 +02:00
|
|
|
// Deprecated: as of v2.4. Use TPS instead.
|
2018-07-17 15:41:27 +02:00
|
|
|
func MaxTPS() int {
|
2022-07-17 04:25:45 +02:00
|
|
|
return TPS()
|
2018-07-16 18:42:19 +02:00
|
|
|
}
|
|
|
|
|
2022-07-17 04:25:45 +02:00
|
|
|
// ActualTPS returns the current TPS (ticks per second),
|
2022-07-12 05:25:55 +02:00
|
|
|
// that represents how many Update function is called in a second.
|
2018-07-17 19:17:06 +02:00
|
|
|
//
|
2021-09-08 15:45:26 +02:00
|
|
|
// This value is for measurement and/or debug, and your game logic should not rely on this value.
|
|
|
|
//
|
2022-07-17 04:25:45 +02:00
|
|
|
// ActualTPS is concurrent-safe.
|
|
|
|
func ActualTPS() float64 {
|
2022-04-13 17:57:47 +02:00
|
|
|
return clock.ActualTPS()
|
2018-07-17 19:11:00 +02:00
|
|
|
}
|
|
|
|
|
2022-07-17 04:25:45 +02:00
|
|
|
// CurrentTPS returns the current TPS (ticks per second),
|
|
|
|
// that represents how many Update function is called in a second.
|
|
|
|
//
|
|
|
|
// Deprecated: as of v2.4. Use ActualTPS instead.
|
|
|
|
func CurrentTPS() float64 {
|
|
|
|
return ActualTPS()
|
|
|
|
}
|
|
|
|
|
2021-07-22 15:44:58 +02:00
|
|
|
// SyncWithFPS is a special TPS value that means TPS syncs with FPS.
|
|
|
|
const SyncWithFPS = clock.SyncWithFPS
|
|
|
|
|
|
|
|
// UncappedTPS is a special TPS value that means TPS syncs with FPS.
|
|
|
|
//
|
|
|
|
// Deprecated: as of v2.2. Use SyncWithFPS instead.
|
|
|
|
const UncappedTPS = SyncWithFPS
|
2018-07-17 15:33:53 +02:00
|
|
|
|
2022-07-17 04:25:45 +02:00
|
|
|
// SetTPS sets the maximum TPS (ticks per second),
|
2018-07-17 15:33:53 +02:00
|
|
|
// that represents how many updating function is called per second.
|
2018-07-16 18:42:19 +02:00
|
|
|
// The initial value is 60.
|
|
|
|
//
|
2021-07-22 15:44:58 +02:00
|
|
|
// If tps is SyncWithFPS, TPS is uncapped and the game is updated per frame.
|
2022-07-17 04:25:45 +02:00
|
|
|
// If tps is negative but not SyncWithFPS, SetTPS panics.
|
2018-07-16 18:42:19 +02:00
|
|
|
//
|
2022-07-17 04:25:45 +02:00
|
|
|
// SetTPS is concurrent-safe.
|
|
|
|
func SetTPS(tps int) {
|
2022-07-12 05:47:34 +02:00
|
|
|
clock.SetTPS(tps)
|
2018-07-16 18:42:19 +02:00
|
|
|
}
|
2019-11-30 16:07:41 +01:00
|
|
|
|
2022-07-17 04:25:45 +02:00
|
|
|
// SetMaxTPS sets the maximum TPS (ticks per second),
|
|
|
|
// that represents how many updating function is called per second.
|
|
|
|
//
|
|
|
|
// Deprecated: as of v2.4. Use SetTPS instead.
|
|
|
|
func SetMaxTPS(tps int) {
|
|
|
|
SetTPS(tps)
|
|
|
|
}
|
|
|
|
|
2019-11-30 16:07:41 +01:00
|
|
|
// IsScreenTransparent reports whether the window is transparent.
|
2020-02-09 13:56:48 +01:00
|
|
|
//
|
|
|
|
// IsScreenTransparent is concurrent-safe.
|
2022-12-09 13:23:41 +01:00
|
|
|
//
|
|
|
|
// Deprecated: as of v2.5.
|
2019-11-30 16:07:41 +01:00
|
|
|
func IsScreenTransparent() bool {
|
2022-12-09 13:23:41 +01:00
|
|
|
if !ui.IsScreenTransparentAvailable() {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
return atomic.LoadInt32(&screenTransparent) != 0
|
2019-11-30 16:07:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
// SetScreenTransparent sets the state if the window is transparent.
|
|
|
|
//
|
2019-12-16 02:52:53 +01:00
|
|
|
// SetScreenTransparent panics if SetScreenTransparent is called after the main loop.
|
2019-11-30 16:07:41 +01:00
|
|
|
//
|
|
|
|
// SetScreenTransparent does nothing on mobiles.
|
2020-02-09 13:56:48 +01:00
|
|
|
//
|
|
|
|
// SetScreenTransparent is concurrent-safe.
|
2022-12-09 13:23:41 +01:00
|
|
|
//
|
|
|
|
// Deprecated: as of v2.5. Use RunGameWithOptions instead.
|
2019-11-30 16:07:41 +01:00
|
|
|
func SetScreenTransparent(transparent bool) {
|
2022-12-09 13:23:41 +01:00
|
|
|
if transparent {
|
|
|
|
atomic.StoreInt32(&screenTransparent, 1)
|
|
|
|
} else {
|
|
|
|
atomic.StoreInt32(&screenTransparent, 0)
|
|
|
|
}
|
2019-11-30 16:07:41 +01:00
|
|
|
}
|
2020-02-09 15:03:03 +01:00
|
|
|
|
2022-12-09 13:23:41 +01:00
|
|
|
var screenTransparent int32 = 0
|
|
|
|
|
2020-02-09 15:03:03 +01:00
|
|
|
// SetInitFocused sets whether the application is focused on show.
|
|
|
|
// The default value is true, i.e., the application is focused.
|
|
|
|
//
|
|
|
|
// SetInitFocused does nothing on mobile.
|
|
|
|
//
|
|
|
|
// SetInitFocused panics if this is called after the main loop.
|
|
|
|
//
|
2023-01-28 11:06:38 +01:00
|
|
|
// SetInitFocused is concurrent-safe.
|
2022-12-09 11:04:52 +01:00
|
|
|
//
|
|
|
|
// Deprecated: as of v2.5. Use RunGameWithOptions instead.
|
2020-02-09 15:03:03 +01:00
|
|
|
func SetInitFocused(focused bool) {
|
2022-12-09 11:04:52 +01:00
|
|
|
if focused {
|
|
|
|
atomic.StoreInt32(&initUnfocused, 0)
|
|
|
|
} else {
|
|
|
|
atomic.StoreInt32(&initUnfocused, 1)
|
|
|
|
}
|
2020-02-09 15:03:03 +01:00
|
|
|
}
|
2022-12-09 06:07:04 +01:00
|
|
|
|
2022-12-09 11:04:52 +01:00
|
|
|
var initUnfocused int32 = 0
|
|
|
|
|
2022-12-09 06:07:04 +01:00
|
|
|
func toUIRunOptions(options *RunGameOptions) *ui.RunOptions {
|
|
|
|
if options == nil {
|
2022-12-09 11:04:52 +01:00
|
|
|
return &ui.RunOptions{
|
2022-12-09 13:23:41 +01:00
|
|
|
InitUnfocused: atomic.LoadInt32(&initUnfocused) != 0,
|
|
|
|
ScreenTransparent: atomic.LoadInt32(&screenTransparent) != 0,
|
2022-12-09 11:04:52 +01:00
|
|
|
}
|
2022-12-09 06:07:04 +01:00
|
|
|
}
|
|
|
|
return &ui.RunOptions{
|
2022-12-09 13:23:41 +01:00
|
|
|
GraphicsLibrary: ui.GraphicsLibrary(options.GraphicsLibrary),
|
|
|
|
InitUnfocused: options.InitUnfocused,
|
|
|
|
ScreenTransparent: options.ScreenTransparent,
|
2022-12-12 17:03:19 +01:00
|
|
|
SkipTaskbar: options.SkipTaskbar,
|
2022-12-09 06:07:04 +01:00
|
|
|
}
|
|
|
|
}
|
2023-01-21 15:34:20 +01:00
|
|
|
|
2023-01-22 18:48:50 +01:00
|
|
|
// DroppedFiles returns a virtual file system that includes only dropped files and/or directories
|
|
|
|
// at its root directory, at the time Update is called.
|
2023-01-21 15:34:20 +01:00
|
|
|
//
|
2023-01-22 18:48:50 +01:00
|
|
|
// DroppedFiles works on desktops and browsers.
|
2023-01-21 15:34:20 +01:00
|
|
|
//
|
2023-01-22 18:48:50 +01:00
|
|
|
// DroppedFiles is concurrent-safe.
|
|
|
|
func DroppedFiles() fs.FS {
|
|
|
|
return theInputState.droppedFiles()
|
2023-01-21 15:34:20 +01:00
|
|
|
}
|