2022-02-06 09:43:52 +01:00
|
|
|
// Copyright 2022 The Ebiten Authors
|
2019-12-14 04:30:03 +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.
|
|
|
|
|
2022-02-06 09:43:52 +01:00
|
|
|
package ui
|
|
|
|
|
|
|
|
import (
|
|
|
|
"errors"
|
2022-03-21 14:47:13 +01:00
|
|
|
|
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/atlas"
|
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/mipmap"
|
2022-02-06 09:43:52 +01:00
|
|
|
)
|
|
|
|
|
2022-02-06 10:30:31 +01:00
|
|
|
type MouseButton int
|
|
|
|
|
|
|
|
const (
|
|
|
|
MouseButtonLeft MouseButton = iota
|
|
|
|
MouseButtonRight
|
|
|
|
MouseButtonMiddle
|
|
|
|
)
|
|
|
|
|
|
|
|
type TouchID int
|
|
|
|
|
2022-02-06 09:43:52 +01:00
|
|
|
// 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")
|
|
|
|
|
2022-02-13 09:23:52 +01:00
|
|
|
type FPSModeType int
|
2022-02-06 09:43:52 +01:00
|
|
|
|
|
|
|
const (
|
2022-02-13 09:23:52 +01:00
|
|
|
FPSModeVsyncOn FPSModeType = iota
|
2022-02-06 09:43:52 +01:00
|
|
|
FPSModeVsyncOffMaximum
|
|
|
|
FPSModeVsyncOffMinimum
|
|
|
|
)
|
2019-12-14 04:30:03 +01:00
|
|
|
|
|
|
|
type CursorMode int
|
|
|
|
|
|
|
|
const (
|
2021-04-10 20:29:09 +02:00
|
|
|
CursorModeVisible CursorMode = iota
|
2019-12-14 04:30:03 +01:00
|
|
|
CursorModeHidden
|
|
|
|
CursorModeCaptured
|
|
|
|
)
|
2021-04-11 07:21:38 +02:00
|
|
|
|
|
|
|
type CursorShape int
|
|
|
|
|
|
|
|
const (
|
|
|
|
CursorShapeDefault CursorShape = iota
|
|
|
|
CursorShapeText
|
|
|
|
CursorShapeCrosshair
|
|
|
|
CursorShapePointer
|
2021-05-02 07:50:50 +02:00
|
|
|
CursorShapeEWResize
|
|
|
|
CursorShapeNSResize
|
2021-04-11 07:21:38 +02:00
|
|
|
)
|
2021-12-29 14:08:59 +01:00
|
|
|
|
|
|
|
type WindowResizingMode int
|
|
|
|
|
|
|
|
const (
|
|
|
|
WindowResizingModeDisabled WindowResizingMode = iota
|
|
|
|
WindowResizingModeOnlyFullscreenEnabled
|
|
|
|
WindowResizingModeEnabled
|
|
|
|
)
|
2022-03-21 14:47:13 +01:00
|
|
|
|
2022-03-21 15:00:50 +01:00
|
|
|
type UserInterface struct {
|
|
|
|
userInterfaceImpl
|
|
|
|
}
|
|
|
|
|
|
|
|
var theUI = &UserInterface{}
|
|
|
|
|
|
|
|
func Get() *UserInterface {
|
|
|
|
// TODO: Get is a legacy API to access this package. Remove this.
|
|
|
|
return theUI
|
|
|
|
}
|
|
|
|
|
2022-03-21 14:47:13 +01:00
|
|
|
func (u *UserInterface) imageAt(mipmap *mipmap.Mipmap, x, y int) (r, g, b, a byte, err error) {
|
2022-03-21 16:02:37 +01:00
|
|
|
return mipmap.At(u.graphicsDriver, x, y)
|
2022-03-21 14:47:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (u *UserInterface) dumpScreenshot(mipmap *mipmap.Mipmap, name string, blackbg bool) error {
|
2022-03-21 16:02:37 +01:00
|
|
|
return mipmap.DumpScreenshot(u.graphicsDriver, name, blackbg)
|
2022-03-21 14:47:13 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (u *UserInterface) dumpImages(dir string) error {
|
2022-03-21 16:02:37 +01:00
|
|
|
return atlas.DumpImages(u.graphicsDriver, dir)
|
2022-03-21 14:47:13 +01:00
|
|
|
}
|