2015-01-02 07:20:05 +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.
|
|
|
|
|
2022-02-06 08:08:22 +01:00
|
|
|
package ui
|
2015-01-02 07:20:05 +01:00
|
|
|
|
2015-01-12 06:36:13 +01:00
|
|
|
import (
|
2019-04-30 19:15:28 +02:00
|
|
|
"syscall/js"
|
2018-04-01 16:20:45 +02:00
|
|
|
"unicode"
|
2020-12-16 04:41:49 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
stringKeydown = js.ValueOf("keydown")
|
|
|
|
stringKeyup = js.ValueOf("keyup")
|
|
|
|
stringMousedown = js.ValueOf("mousedown")
|
|
|
|
stringMouseup = js.ValueOf("mouseup")
|
|
|
|
stringMousemove = js.ValueOf("mousemove")
|
|
|
|
stringWheel = js.ValueOf("wheel")
|
|
|
|
stringTouchstart = js.ValueOf("touchstart")
|
|
|
|
stringTouchend = js.ValueOf("touchend")
|
|
|
|
stringTouchmove = js.ValueOf("touchmove")
|
2015-01-12 06:36:13 +01:00
|
|
|
)
|
|
|
|
|
2022-12-16 10:34:14 +01:00
|
|
|
func jsKeyToID(key js.Value) Key {
|
2020-12-16 05:29:32 +01:00
|
|
|
// js.Value cannot be used as a map key.
|
|
|
|
// As the number of keys is around 100, just a dumb loop should work.
|
2022-12-16 10:34:14 +01:00
|
|
|
for uiKey, jsKey := range uiKeyToJSKey {
|
|
|
|
if jsKey.Equal(key) {
|
|
|
|
return uiKey
|
2020-12-16 05:29:32 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return -1
|
|
|
|
}
|
|
|
|
|
2022-02-06 10:30:31 +01:00
|
|
|
var codeToMouseButton = map[int]MouseButton{
|
2022-11-22 20:40:31 +01:00
|
|
|
0: MouseButton0, // Left
|
2022-11-27 05:51:07 +01:00
|
|
|
1: MouseButton1, // Middle
|
|
|
|
2: MouseButton2, // Right
|
2022-11-22 20:28:34 +01:00
|
|
|
3: MouseButton3,
|
|
|
|
4: MouseButton4,
|
2017-04-11 04:56:05 +02:00
|
|
|
}
|
|
|
|
|
2022-12-16 10:34:14 +01:00
|
|
|
func (u *userInterfaceImpl) keyDown(code js.Value) {
|
2023-01-23 16:32:08 +01:00
|
|
|
id := jsKeyToID(code)
|
|
|
|
if id < 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
u.inputState.KeyPressed[id] = true
|
2018-06-17 17:38:30 +02:00
|
|
|
}
|
|
|
|
|
2022-12-16 10:34:14 +01:00
|
|
|
func (u *userInterfaceImpl) keyUp(code js.Value) {
|
2023-01-23 16:32:08 +01:00
|
|
|
id := jsKeyToID(code)
|
|
|
|
if id < 0 {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
u.inputState.KeyPressed[id] = false
|
2015-01-02 07:20:05 +01:00
|
|
|
}
|
2015-01-06 15:41:03 +01:00
|
|
|
|
2022-12-16 10:34:14 +01:00
|
|
|
func (u *userInterfaceImpl) mouseDown(code int) {
|
|
|
|
u.inputState.MouseButtonPressed[codeToMouseButton[code]] = true
|
2015-01-06 15:41:03 +01:00
|
|
|
}
|
|
|
|
|
2022-12-16 10:34:14 +01:00
|
|
|
func (u *userInterfaceImpl) mouseUp(code int) {
|
|
|
|
u.inputState.MouseButtonPressed[codeToMouseButton[code]] = false
|
2015-01-06 15:41:03 +01:00
|
|
|
}
|
|
|
|
|
2022-12-16 10:34:14 +01:00
|
|
|
func (u *userInterfaceImpl) updateInputFromEvent(e js.Value) error {
|
2020-12-16 04:41:49 +01:00
|
|
|
// Avoid using js.Value.String() as String creates a Uint8Array via a TextEncoder and causes a heavy
|
|
|
|
// overhead (#1437).
|
|
|
|
switch t := e.Get("type"); {
|
2021-06-07 14:43:25 +02:00
|
|
|
case t.Equal(stringKeydown):
|
2022-07-12 16:09:34 +02:00
|
|
|
if str := e.Get("key").String(); isKeyString(str) {
|
|
|
|
for _, r := range str {
|
2022-12-16 10:34:14 +01:00
|
|
|
u.inputState.appendRune(r)
|
2022-07-12 16:09:34 +02:00
|
|
|
}
|
|
|
|
}
|
2022-12-16 10:34:14 +01:00
|
|
|
u.keyDown(e.Get("code"))
|
2021-06-07 14:43:25 +02:00
|
|
|
case t.Equal(stringKeyup):
|
2022-12-16 10:34:14 +01:00
|
|
|
u.keyUp(e.Get("code"))
|
2021-06-07 14:43:25 +02:00
|
|
|
case t.Equal(stringMousedown):
|
2022-12-16 10:34:14 +01:00
|
|
|
u.mouseDown(e.Get("button").Int())
|
|
|
|
u.setMouseCursorFromEvent(e)
|
2021-06-07 14:43:25 +02:00
|
|
|
case t.Equal(stringMouseup):
|
2022-12-16 10:34:14 +01:00
|
|
|
u.mouseUp(e.Get("button").Int())
|
|
|
|
u.setMouseCursorFromEvent(e)
|
2021-06-07 14:43:25 +02:00
|
|
|
case t.Equal(stringMousemove):
|
2022-12-16 10:34:14 +01:00
|
|
|
u.setMouseCursorFromEvent(e)
|
2021-06-07 14:43:25 +02:00
|
|
|
case t.Equal(stringWheel):
|
2019-04-06 16:32:19 +02:00
|
|
|
// TODO: What if e.deltaMode is not DOM_DELTA_PIXEL?
|
2022-12-16 10:34:14 +01:00
|
|
|
u.inputState.WheelX = -e.Get("deltaX").Float()
|
|
|
|
u.inputState.WheelY = -e.Get("deltaY").Float()
|
2021-06-07 14:43:25 +02:00
|
|
|
case t.Equal(stringTouchstart) || t.Equal(stringTouchend) || t.Equal(stringTouchmove):
|
2022-12-16 10:34:14 +01:00
|
|
|
u.updateTouchesFromEvent(e)
|
2018-04-01 16:20:45 +02:00
|
|
|
}
|
2021-07-22 18:07:28 +02:00
|
|
|
|
2022-12-16 10:34:14 +01:00
|
|
|
u.forceUpdateOnMinimumFPSMode()
|
2022-09-20 06:19:40 +02:00
|
|
|
return nil
|
2018-04-01 16:20:45 +02:00
|
|
|
}
|
|
|
|
|
2022-12-16 10:34:14 +01:00
|
|
|
func (u *userInterfaceImpl) setMouseCursorFromEvent(e js.Value) {
|
|
|
|
if u.context == nil {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2023-07-05 02:24:26 +02:00
|
|
|
s := u.DeviceScaleFactor()
|
|
|
|
x, y := u.context.clientPositionToLogicalPosition(e.Get("clientX").Float(), e.Get("clientY").Float(), s)
|
|
|
|
u.origCursorX, u.origCursorY = int(x), int(y)
|
|
|
|
|
2022-12-16 10:34:14 +01:00
|
|
|
if u.cursorMode == CursorModeCaptured {
|
2023-04-10 08:25:02 +02:00
|
|
|
dx, dy := e.Get("movementX").Float()/s, e.Get("movementY").Float()/s
|
|
|
|
// TODO: Keep float64 values.
|
2022-12-16 10:34:14 +01:00
|
|
|
u.inputState.CursorX += int(dx)
|
|
|
|
u.inputState.CursorY += int(dy)
|
2021-04-15 19:26:10 +02:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2022-12-16 10:34:14 +01:00
|
|
|
u.inputState.CursorX, u.inputState.CursorY = int(x), int(y)
|
2021-04-15 19:26:10 +02:00
|
|
|
}
|
|
|
|
|
2022-12-16 10:34:14 +01:00
|
|
|
func (u *userInterfaceImpl) recoverCursorPosition() {
|
|
|
|
u.inputState.CursorX, u.inputState.CursorY = u.origCursorX, u.origCursorY
|
2018-04-01 16:20:45 +02:00
|
|
|
}
|
|
|
|
|
2022-12-16 10:34:14 +01:00
|
|
|
func (u *userInterfaceImpl) updateTouchesFromEvent(e js.Value) {
|
2023-01-21 16:04:30 +01:00
|
|
|
u.inputState.Touches = u.inputState.Touches[:0]
|
2022-12-16 10:34:14 +01:00
|
|
|
|
|
|
|
touches := e.Get("targetTouches")
|
|
|
|
for i := 0; i < touches.Length(); i++ {
|
|
|
|
t := touches.Call("item", i)
|
2022-12-27 04:52:07 +01:00
|
|
|
x, y := u.context.clientPositionToLogicalPosition(t.Get("clientX").Float(), t.Get("clientY").Float(), u.DeviceScaleFactor())
|
2023-01-21 16:04:30 +01:00
|
|
|
u.inputState.Touches = append(u.inputState.Touches, Touch{
|
|
|
|
ID: TouchID(t.Get("identifier").Int()),
|
|
|
|
X: int(x),
|
|
|
|
Y: int(y),
|
|
|
|
})
|
2018-04-01 16:20:45 +02:00
|
|
|
}
|
|
|
|
}
|
2020-12-20 12:25:18 +01:00
|
|
|
|
2022-07-12 16:09:34 +02:00
|
|
|
func isKeyString(str string) bool {
|
|
|
|
// From https://www.w3.org/TR/uievents-key/#keys-unicode,
|
|
|
|
//
|
|
|
|
// A key string is a string containing a 0 or 1 non-control characters
|
|
|
|
// ("base" characters) followed by 0 or more combining characters. The
|
|
|
|
// string MUST be in Normalized Form C (NFC) as described in
|
|
|
|
// [UnicodeNormalizationForms].
|
|
|
|
//
|
|
|
|
// A non-control character is any valid Unicode character except those
|
|
|
|
// that are part of the "Other, Control" ("Cc") General Category.
|
|
|
|
//
|
|
|
|
// A combining character is any valid Unicode character in the "Mark,
|
|
|
|
// Spacing Combining" ("Mc") General Category or with a non-zero
|
|
|
|
// Combining Class.
|
|
|
|
for i, r := range str {
|
|
|
|
if i == 0 {
|
|
|
|
if unicode.Is(unicode.Cc, r) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
if !unicode.Is(unicode.Mc, r) {
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true
|
|
|
|
}
|
2022-08-13 06:33:52 +02:00
|
|
|
|
|
|
|
var (
|
|
|
|
jsKeyboard = js.Global().Get("navigator").Get("keyboard")
|
|
|
|
jsKeyboardGetLayoutMap js.Value
|
|
|
|
jsKeyboardGetLayoutMapCh chan js.Value
|
|
|
|
jsKeyboardGetLayoutMapCallback js.Func
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
|
|
|
if !jsKeyboard.Truthy() {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
jsKeyboardGetLayoutMap = jsKeyboard.Get("getLayoutMap").Call("bind", jsKeyboard)
|
|
|
|
jsKeyboardGetLayoutMapCh = make(chan js.Value, 1)
|
|
|
|
jsKeyboardGetLayoutMapCallback = js.FuncOf(func(this js.Value, args []js.Value) any {
|
|
|
|
jsKeyboardGetLayoutMapCh <- args[0]
|
|
|
|
return nil
|
|
|
|
})
|
|
|
|
}
|
|
|
|
|
|
|
|
func KeyName(key Key) string {
|
|
|
|
return theUI.keyName(key)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (u *userInterfaceImpl) keyName(key Key) string {
|
|
|
|
if !u.running {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
// keyboardLayoutMap is reset every tick.
|
|
|
|
if u.keyboardLayoutMap.IsUndefined() {
|
|
|
|
if !jsKeyboard.Truthy() {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
|
|
|
// Invoke getLayoutMap every tick to detect the keyboard change.
|
|
|
|
// TODO: Calling this every tick might be inefficient. Is there a way to detect a keyboard change?
|
|
|
|
jsKeyboardGetLayoutMap.Invoke().Call("then", jsKeyboardGetLayoutMapCallback)
|
|
|
|
u.keyboardLayoutMap = <-jsKeyboardGetLayoutMapCh
|
|
|
|
}
|
|
|
|
|
|
|
|
n := u.keyboardLayoutMap.Call("get", uiKeyToJSKey[key])
|
|
|
|
if n.IsUndefined() {
|
|
|
|
return ""
|
|
|
|
}
|
|
|
|
return n.String()
|
|
|
|
}
|
2022-12-25 07:29:04 +01:00
|
|
|
|
|
|
|
func UpdateInputFromEvent(e js.Value) {
|
|
|
|
theUI.updateInputFromEvent(e)
|
|
|
|
}
|