2016-06-24 20:41:56 +02:00
|
|
|
// Copyright 2016 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.
|
|
|
|
|
2021-08-17 05:27:19 +02:00
|
|
|
//go:build android || ios
|
2017-01-25 17:32:33 +01:00
|
|
|
// +build android ios
|
2016-06-24 20:41:56 +02:00
|
|
|
|
2019-08-11 07:31:16 +02:00
|
|
|
package ebitenmobileview
|
2016-06-24 20:41:56 +02:00
|
|
|
|
|
|
|
import (
|
2021-10-16 13:37:01 +02:00
|
|
|
"runtime"
|
|
|
|
|
2020-10-03 19:35:13 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/driver"
|
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/uidriver/mobile"
|
2016-06-24 20:41:56 +02:00
|
|
|
)
|
|
|
|
|
2016-06-25 08:50:03 +02:00
|
|
|
type position struct {
|
|
|
|
x int
|
|
|
|
y int
|
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
2021-10-16 13:37:01 +02:00
|
|
|
keys = map[driver.Key]struct{}{}
|
|
|
|
runes []rune
|
|
|
|
touches = map[driver.TouchID]position{}
|
|
|
|
|
|
|
|
// gamepads is updated only at Android.
|
2021-10-16 11:16:38 +02:00
|
|
|
gamepads = map[driver.GamepadID]mobile.Gamepad{}
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
touchSlice []mobile.Touch
|
|
|
|
gamepadSlice []mobile.Gamepad
|
2016-06-25 08:50:03 +02:00
|
|
|
)
|
|
|
|
|
2020-02-18 17:51:03 +01:00
|
|
|
func updateInput() {
|
2021-10-16 11:16:38 +02:00
|
|
|
touchSlice = touchSlice[:0]
|
2016-06-25 08:50:03 +02:00
|
|
|
for id, position := range touches {
|
2021-10-16 11:16:38 +02:00
|
|
|
touchSlice = append(touchSlice, mobile.Touch{
|
2019-03-30 17:08:04 +01:00
|
|
|
ID: id,
|
|
|
|
X: position.x,
|
|
|
|
Y: position.y,
|
|
|
|
})
|
2016-06-24 20:41:56 +02:00
|
|
|
}
|
2020-03-22 11:02:56 +01:00
|
|
|
|
2021-10-16 13:37:01 +02:00
|
|
|
mobile.Get().UpdateInput(keys, runes, touchSlice)
|
2020-03-22 11:02:56 +01:00
|
|
|
|
2021-10-16 13:37:01 +02:00
|
|
|
if runtime.GOOS == "android" {
|
|
|
|
gamepadSlice = gamepadSlice[:0]
|
|
|
|
for _, g := range gamepads {
|
|
|
|
gamepadSlice = append(gamepadSlice, g)
|
|
|
|
}
|
|
|
|
mobile.Get().UpdateGamepads(gamepadSlice)
|
|
|
|
}
|
2016-06-24 20:41:56 +02:00
|
|
|
}
|