2019-04-07 11:55:56 +02:00
|
|
|
// Copyright 2016 Hajime Hoshi
|
2014-12-24 03:04:10 +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.
|
2014-12-09 15:16:04 +01:00
|
|
|
|
2023-10-01 16:24:42 +02:00
|
|
|
//go:build android || ios
|
2019-04-07 11:55:56 +02:00
|
|
|
|
2022-02-06 08:08:22 +01:00
|
|
|
package ui
|
2014-12-08 14:51:40 +01:00
|
|
|
|
2022-12-16 10:34:14 +01:00
|
|
|
type TouchForInput struct {
|
|
|
|
ID TouchID
|
2015-01-11 17:54:18 +01:00
|
|
|
|
2022-12-16 10:34:14 +01:00
|
|
|
// X is in device-independent pixels.
|
|
|
|
X float64
|
2018-02-12 12:23:24 +01:00
|
|
|
|
2022-12-16 10:34:14 +01:00
|
|
|
// Y is in device-independent pixels.
|
|
|
|
Y float64
|
2019-03-30 18:57:44 +01:00
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) updateInputStateFromOutside(keys map[Key]struct{}, runes []rune, touches []TouchForInput) {
|
2022-12-16 10:34:14 +01:00
|
|
|
u.m.Lock()
|
|
|
|
defer u.m.Unlock()
|
2019-03-30 18:57:44 +01:00
|
|
|
|
2022-12-16 10:34:14 +01:00
|
|
|
for k := range u.inputState.KeyPressed {
|
|
|
|
_, ok := keys[Key(k)]
|
|
|
|
u.inputState.KeyPressed[k] = ok
|
2016-05-26 18:31:30 +02:00
|
|
|
}
|
|
|
|
|
2023-01-21 16:04:30 +01:00
|
|
|
u.inputState.Runes = append(u.inputState.Runes, runes...)
|
2020-02-18 16:57:19 +01:00
|
|
|
|
2023-09-17 14:48:42 +02:00
|
|
|
u.touches = u.touches[:0]
|
2023-01-21 16:04:30 +01:00
|
|
|
for _, t := range touches {
|
2023-09-17 14:48:42 +02:00
|
|
|
u.touches = append(u.touches, t)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-10-14 19:51:23 +02:00
|
|
|
func (u *UserInterface) updateInputState() error {
|
2023-09-17 14:48:42 +02:00
|
|
|
u.m.Lock()
|
|
|
|
defer u.m.Unlock()
|
|
|
|
|
2024-02-12 07:03:07 +01:00
|
|
|
s := theMonitor.DeviceScaleFactor()
|
2023-09-17 14:48:42 +02:00
|
|
|
|
|
|
|
u.inputState.Touches = u.inputState.Touches[:0]
|
|
|
|
for _, t := range u.touches {
|
|
|
|
x, y := u.context.clientPositionToLogicalPosition(t.X, t.Y, s)
|
2023-01-21 16:04:30 +01:00
|
|
|
u.inputState.Touches = append(u.inputState.Touches, Touch{
|
|
|
|
ID: t.ID,
|
|
|
|
X: int(x),
|
|
|
|
Y: int(y),
|
|
|
|
})
|
2020-02-18 16:57:19 +01:00
|
|
|
}
|
2023-09-17 07:22:58 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2023-10-14 17:06:07 +02:00
|
|
|
func (u *UserInterface) KeyName(key Key) string {
|
2022-08-13 06:33:52 +02:00
|
|
|
// TODO: Implement this.
|
|
|
|
return ""
|
|
|
|
}
|