2015-01-06 13:52:36 +01:00
|
|
|
// Copyright 2015 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.
|
|
|
|
|
2023-10-01 16:14:47 +02:00
|
|
|
//go:build !android && !ios && !js && !nintendosdk && !playstation5
|
2015-01-06 13:52:36 +01:00
|
|
|
|
2022-02-06 08:08:22 +01:00
|
|
|
package ui
|
2015-01-06 13:52:36 +01:00
|
|
|
|
|
|
|
import (
|
2021-03-27 10:40:39 +01:00
|
|
|
"math"
|
2017-04-11 04:56:05 +02:00
|
|
|
|
2022-02-05 13:52:06 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/gamepad"
|
2020-10-03 19:35:13 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/glfw"
|
2015-01-06 13:52:36 +01:00
|
|
|
)
|
|
|
|
|
2022-02-06 10:30:31 +01:00
|
|
|
var glfwMouseButtonToMouseButton = map[glfw.MouseButton]MouseButton{
|
2022-11-22 20:40:31 +01:00
|
|
|
glfw.MouseButtonLeft: MouseButton0,
|
2022-11-27 05:51:07 +01:00
|
|
|
glfw.MouseButtonMiddle: MouseButton1,
|
|
|
|
glfw.MouseButtonRight: MouseButton2,
|
2023-10-03 20:04:44 +02:00
|
|
|
glfw.MouseButton4: MouseButton3,
|
|
|
|
glfw.MouseButton5: MouseButton4,
|
2015-01-06 20:04:04 +01:00
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) registerInputCallbacks() error {
|
2023-10-07 16:21:29 +02:00
|
|
|
if _, err := u.window.SetCharModsCallback(func(w *glfw.Window, char rune, mods glfw.ModifierKey) {
|
2022-12-16 10:34:14 +01:00
|
|
|
// As this function is called from GLFW callbacks, the current thread is main.
|
|
|
|
u.m.Lock()
|
|
|
|
defer u.m.Unlock()
|
|
|
|
u.inputState.appendRune(char)
|
2023-10-07 16:21:29 +02:00
|
|
|
}); err != nil {
|
2023-10-03 16:07:53 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2023-10-07 16:21:29 +02:00
|
|
|
if _, err := u.window.SetScrollCallback(func(w *glfw.Window, xoff float64, yoff float64) {
|
2022-12-16 10:34:14 +01:00
|
|
|
// As this function is called from GLFW callbacks, the current thread is main.
|
|
|
|
u.m.Lock()
|
|
|
|
defer u.m.Unlock()
|
|
|
|
u.inputState.WheelX += xoff
|
|
|
|
u.inputState.WheelY += yoff
|
2023-10-07 16:21:29 +02:00
|
|
|
}); err != nil {
|
2023-10-03 16:07:53 +02:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
2022-12-16 10:34:14 +01:00
|
|
|
}
|
2020-11-18 11:33:20 +01:00
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) updateInputState() error {
|
2023-09-17 08:12:58 +02:00
|
|
|
var err error
|
|
|
|
u.mainThread.Call(func() {
|
|
|
|
err = u.updateInputStateImpl()
|
|
|
|
})
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
// updateInputStateImpl must be called from the main thread.
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) updateInputStateImpl() error {
|
2022-12-16 10:34:14 +01:00
|
|
|
u.m.Lock()
|
|
|
|
defer u.m.Unlock()
|
2020-11-18 12:43:29 +01:00
|
|
|
|
2022-12-16 10:34:14 +01:00
|
|
|
for uk, gk := range uiKeyToGLFWKey {
|
2023-10-03 16:07:53 +02:00
|
|
|
s, err := u.window.GetKey(gk)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
u.inputState.KeyPressed[uk] = s == glfw.Press
|
2020-10-16 22:16:02 +02:00
|
|
|
}
|
2022-12-16 10:34:14 +01:00
|
|
|
for gb, ub := range glfwMouseButtonToMouseButton {
|
2023-10-03 16:07:53 +02:00
|
|
|
s, err := u.window.GetMouseButton(gb)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
u.inputState.MouseButtonPressed[ub] = s == glfw.Press
|
2020-10-16 22:16:02 +02:00
|
|
|
}
|
2023-09-16 21:37:22 +02:00
|
|
|
|
2023-10-03 16:07:53 +02:00
|
|
|
m, err := u.currentMonitor()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2024-02-12 07:03:07 +01:00
|
|
|
s := m.DeviceScaleFactor()
|
2023-09-16 21:37:22 +02:00
|
|
|
|
|
|
|
cx, cy := u.savedCursorX, u.savedCursorY
|
|
|
|
defer func() {
|
|
|
|
u.savedCursorX = math.NaN()
|
|
|
|
u.savedCursorY = math.NaN()
|
|
|
|
}()
|
|
|
|
|
|
|
|
if !math.IsNaN(cx) && !math.IsNaN(cy) {
|
|
|
|
cx2, cy2 := u.context.logicalPositionToClientPosition(cx, cy, s)
|
2024-03-03 15:27:02 +01:00
|
|
|
cx2 = dipToGLFWPixel(cx2, s)
|
|
|
|
cy2 = dipToGLFWPixel(cy2, s)
|
2023-10-03 16:07:53 +02:00
|
|
|
if err := u.window.SetCursorPos(cx2, cy2); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2023-09-16 21:37:22 +02:00
|
|
|
} else {
|
2023-10-03 16:07:53 +02:00
|
|
|
cx2, cy2, err := u.window.GetCursorPos()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2024-03-03 15:27:02 +01:00
|
|
|
cx2 = dipFromGLFWPixel(cx2, s)
|
|
|
|
cy2 = dipFromGLFWPixel(cy2, s)
|
2023-09-16 21:37:22 +02:00
|
|
|
cx, cy = u.context.clientPositionToLogicalPosition(cx2, cy2, s)
|
|
|
|
}
|
2021-03-27 10:40:39 +01:00
|
|
|
|
|
|
|
// AdjustPosition can return NaN at the initialization.
|
|
|
|
if !math.IsNaN(cx) && !math.IsNaN(cy) {
|
2023-09-16 20:43:18 +02:00
|
|
|
u.inputState.CursorX, u.inputState.CursorY = cx, cy
|
2021-03-27 10:40:39 +01:00
|
|
|
}
|
2020-10-16 22:16:02 +02:00
|
|
|
|
2022-06-24 13:20:49 +02:00
|
|
|
if err := gamepad.Update(); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
2022-02-05 13:52:06 +01:00
|
|
|
return nil
|
2021-08-23 14:44:49 +02:00
|
|
|
}
|
2022-08-13 06:33:52 +02:00
|
|
|
|
2023-10-14 17:06:07 +02:00
|
|
|
func (u *UserInterface) KeyName(key Key) string {
|
2022-08-13 06:33:52 +02:00
|
|
|
if !u.isRunning() {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
gk, ok := uiKeyToGLFWKey[key]
|
|
|
|
if !ok {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
var name string
|
2022-12-28 07:59:53 +01:00
|
|
|
u.mainThread.Call(func() {
|
2023-09-02 08:24:59 +02:00
|
|
|
if u.isTerminated() {
|
|
|
|
return
|
|
|
|
}
|
2023-10-03 16:07:53 +02:00
|
|
|
n, err := glfw.GetKeyName(gk, 0)
|
|
|
|
if err != nil {
|
2023-10-15 08:50:39 +02:00
|
|
|
u.setError(err)
|
2023-10-03 16:07:53 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
name = n
|
2022-08-13 06:33:52 +02:00
|
|
|
})
|
|
|
|
return name
|
|
|
|
}
|
2023-09-16 21:37:22 +02:00
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) saveCursorPosition() {
|
2023-09-16 21:37:22 +02:00
|
|
|
u.m.Lock()
|
|
|
|
defer u.m.Unlock()
|
|
|
|
|
|
|
|
u.savedCursorX = u.inputState.CursorX
|
|
|
|
u.savedCursorY = u.inputState.CursorY
|
|
|
|
}
|