mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
59 lines
1.9 KiB
Go
59 lines
1.9 KiB
Go
// 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 driver
|
|
|
|
import (
|
|
"errors"
|
|
"image"
|
|
)
|
|
|
|
type UIContext interface {
|
|
SetSize(width, height int, scale float64)
|
|
Update(afterFrameUpdate func()) error
|
|
SuspendAudio()
|
|
ResumeAudio()
|
|
}
|
|
|
|
// RegularTermination represents a regular termination.
|
|
// Run can return this error, and if this error is received,
|
|
// the game loop should be terminated as soon as possible.
|
|
var RegularTermination = errors.New("regular termination")
|
|
|
|
type UI interface {
|
|
DeviceScaleFactor() float64
|
|
IsCursorVisible() bool
|
|
IsFullscreen() bool
|
|
IsRunnableInBackground() bool
|
|
IsVsyncEnabled() bool
|
|
IsWindowDecorated() bool
|
|
IsWindowResizable() bool
|
|
Run(width, height int, scale float64, title string, context UIContext, graphics Graphics) error
|
|
RunWithoutMainLoop(width, height int, scale float64, title string, context UIContext, graphics Graphics) <-chan error
|
|
ScreenPadding() (x0, y0, x1, y1 float64)
|
|
ScreenScale() float64
|
|
ScreenSizeInFullscreen() (int, int)
|
|
SetCursorVisible(visible bool)
|
|
SetFullscreen(fullscreen bool)
|
|
SetRunnableInBackground(runnableInBackground bool)
|
|
SetScreenScale(scale float64)
|
|
SetScreenSize(width, height int)
|
|
SetVsyncEnabled(enabled bool)
|
|
SetWindowDecorated(decorated bool)
|
|
SetWindowIcon(iconImages []image.Image)
|
|
SetWindowResizable(resizable bool)
|
|
SetWindowTitle(title string)
|
|
Input() Input
|
|
}
|