2021-12-17 07:03:23 +01:00
|
|
|
// Copyright 2021 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.
|
|
|
|
|
2022-08-12 05:40:23 +02:00
|
|
|
//go:build nintendosdk
|
2021-12-17 07:03:23 +01:00
|
|
|
|
2022-02-06 08:08:22 +01:00
|
|
|
package ui
|
2021-12-17 07:03:23 +01:00
|
|
|
|
2022-12-31 17:16:52 +01:00
|
|
|
// #cgo !darwin LDFLAGS: -Wl,-unresolved-symbols=ignore-all
|
|
|
|
// #cgo darwin LDFLAGS: -Wl,-undefined,dynamic_lookup
|
|
|
|
//
|
|
|
|
// #include "input_nintendosdk.h"
|
2023-01-01 10:01:14 +01:00
|
|
|
//
|
|
|
|
// const int kScreenWidth = 1920;
|
|
|
|
// const int kScreenHeight = 1080;
|
2022-12-31 17:16:52 +01:00
|
|
|
import "C"
|
2021-12-17 07:03:23 +01:00
|
|
|
|
2022-12-16 10:34:14 +01:00
|
|
|
func (u *userInterfaceImpl) updateInputState() {
|
2022-12-31 17:16:52 +01:00
|
|
|
C.ebitengine_UpdateTouches()
|
|
|
|
|
2022-12-16 10:34:14 +01:00
|
|
|
u.nativeTouches = u.nativeTouches[:0]
|
2022-12-31 17:16:52 +01:00
|
|
|
if n := int(C.ebitengine_GetTouchCount()); n > 0 {
|
|
|
|
if cap(u.nativeTouches) < n {
|
|
|
|
u.nativeTouches = make([]C.struct_Touch, n)
|
|
|
|
} else {
|
|
|
|
u.nativeTouches = u.nativeTouches[:n]
|
|
|
|
}
|
|
|
|
C.ebitengine_GetTouches(&u.nativeTouches[0])
|
|
|
|
}
|
2021-12-17 07:03:23 +01:00
|
|
|
|
2023-01-21 16:04:30 +01:00
|
|
|
u.m.Lock()
|
|
|
|
defer u.m.Unlock()
|
|
|
|
|
|
|
|
u.inputState.Touches = u.inputState.Touches[:0]
|
|
|
|
for _, t := range u.nativeTouches {
|
2022-12-31 17:16:52 +01:00
|
|
|
x, y := u.context.clientPositionToLogicalPosition(float64(t.x), float64(t.y), deviceScaleFactor)
|
2023-01-21 16:04:30 +01:00
|
|
|
u.inputState.Touches = append(u.inputState.Touches, Touch{
|
|
|
|
ID: TouchID(t.id),
|
|
|
|
X: int(x),
|
|
|
|
Y: int(y),
|
|
|
|
})
|
2021-12-17 07:03:23 +01:00
|
|
|
}
|
|
|
|
}
|
2022-08-13 06:33:52 +02:00
|
|
|
|
|
|
|
func KeyName(key Key) string {
|
|
|
|
return ""
|
|
|
|
}
|