mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
07a7aca1b3
This change was removed at ef45058037
accidentally.
Updates #1173
Updates #2039
290 lines
5.9 KiB
Go
290 lines
5.9 KiB
Go
// Copyright 2022 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.
|
|
|
|
package gamepad
|
|
|
|
import (
|
|
"sync"
|
|
"time"
|
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/gamepaddb"
|
|
)
|
|
|
|
type ID int
|
|
|
|
const (
|
|
hatCentered = 0
|
|
hatUp = 1
|
|
hatRight = 2
|
|
hatDown = 4
|
|
hatLeft = 8
|
|
hatRightUp = hatRight | hatUp
|
|
hatRightDown = hatRight | hatDown
|
|
hatLeftUp = hatLeft | hatUp
|
|
hatLeftDown = hatLeft | hatDown
|
|
)
|
|
|
|
type gamepads struct {
|
|
inited bool
|
|
gamepads []*Gamepad
|
|
m sync.Mutex
|
|
|
|
nativeGamepads
|
|
}
|
|
|
|
var theGamepads gamepads
|
|
|
|
// AppendGamepadIDs is concurrent-safe.
|
|
func AppendGamepadIDs(ids []ID) []ID {
|
|
return theGamepads.appendGamepadIDs(ids)
|
|
}
|
|
|
|
// Update is concurrent-safe.
|
|
func Update() error {
|
|
return theGamepads.update()
|
|
}
|
|
|
|
// Get is concurrent-safe.
|
|
func Get(id ID) *Gamepad {
|
|
return theGamepads.get(id)
|
|
}
|
|
|
|
func (g *gamepads) appendGamepadIDs(ids []ID) []ID {
|
|
g.m.Lock()
|
|
defer g.m.Unlock()
|
|
|
|
for i, gp := range g.gamepads {
|
|
if gp != nil {
|
|
ids = append(ids, ID(i))
|
|
}
|
|
}
|
|
return ids
|
|
}
|
|
|
|
func (g *gamepads) update() error {
|
|
g.m.Lock()
|
|
defer g.m.Unlock()
|
|
|
|
if !g.inited {
|
|
if err := g.nativeGamepads.init(g); err != nil {
|
|
return err
|
|
}
|
|
g.inited = true
|
|
}
|
|
|
|
if err := g.nativeGamepads.update(g); err != nil {
|
|
return err
|
|
}
|
|
|
|
// A gamepad can be detected even though there are not. Apparently, some special devices are
|
|
// recognized as gamepads by OSes. In this case, the number of the 'buttons' can exceeds the
|
|
// maximum. Skip such devices as a tentative solution (#1173, #2039).
|
|
g.remove(func(gamepad *Gamepad) bool {
|
|
return gamepad.ButtonCount() > ButtonNum
|
|
})
|
|
|
|
for _, gp := range g.gamepads {
|
|
if gp == nil {
|
|
continue
|
|
}
|
|
if err := gp.update(g); err != nil {
|
|
return err
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (g *gamepads) get(id ID) *Gamepad {
|
|
g.m.Lock()
|
|
defer g.m.Unlock()
|
|
|
|
if id < 0 || int(id) >= len(g.gamepads) {
|
|
return nil
|
|
}
|
|
return g.gamepads[id]
|
|
}
|
|
|
|
func (g *gamepads) find(cond func(*Gamepad) bool) *Gamepad {
|
|
for _, gp := range g.gamepads {
|
|
if gp == nil {
|
|
continue
|
|
}
|
|
if cond(gp) {
|
|
return gp
|
|
}
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func (g *gamepads) add(name, sdlID string) *Gamepad {
|
|
for i, gp := range g.gamepads {
|
|
if gp == nil {
|
|
gp := &Gamepad{
|
|
name: name,
|
|
sdlID: sdlID,
|
|
}
|
|
g.gamepads[i] = gp
|
|
return gp
|
|
}
|
|
}
|
|
|
|
gp := &Gamepad{
|
|
name: name,
|
|
sdlID: sdlID,
|
|
}
|
|
g.gamepads = append(g.gamepads, gp)
|
|
return gp
|
|
}
|
|
|
|
func (g *gamepads) remove(cond func(*Gamepad) bool) {
|
|
for i, gp := range g.gamepads {
|
|
if gp == nil {
|
|
continue
|
|
}
|
|
if cond(gp) {
|
|
g.gamepads[i] = nil
|
|
}
|
|
}
|
|
}
|
|
|
|
type Gamepad struct {
|
|
name string
|
|
sdlID string
|
|
m sync.Mutex
|
|
|
|
nativeGamepad
|
|
}
|
|
|
|
func (g *Gamepad) update(gamepads *gamepads) error {
|
|
g.m.Lock()
|
|
defer g.m.Unlock()
|
|
|
|
return g.nativeGamepad.update(gamepads)
|
|
}
|
|
|
|
// Name is concurrent-safe.
|
|
func (g *Gamepad) Name() string {
|
|
// This is immutable and doesn't have to be protected by a mutex.
|
|
if name := gamepaddb.Name(g.sdlID); name != "" {
|
|
return name
|
|
}
|
|
return g.name
|
|
}
|
|
|
|
// SDLID is concurrent-safe.
|
|
func (g *Gamepad) SDLID() string {
|
|
// This is immutable and doesn't have to be protected by a mutex.
|
|
return g.sdlID
|
|
}
|
|
|
|
// AxisCount is concurrent-safe.
|
|
func (g *Gamepad) AxisCount() int {
|
|
g.m.Lock()
|
|
defer g.m.Unlock()
|
|
|
|
return g.nativeGamepad.axisCount()
|
|
}
|
|
|
|
// ButtonCount is concurrent-safe.
|
|
func (g *Gamepad) ButtonCount() int {
|
|
g.m.Lock()
|
|
defer g.m.Unlock()
|
|
|
|
return g.nativeGamepad.buttonCount()
|
|
}
|
|
|
|
// HatCount is concurrent-safe.
|
|
func (g *Gamepad) HatCount() int {
|
|
g.m.Lock()
|
|
defer g.m.Unlock()
|
|
|
|
return g.nativeGamepad.hatCount()
|
|
}
|
|
|
|
// Axis is concurrent-safe.
|
|
func (g *Gamepad) Axis(axis int) float64 {
|
|
g.m.Lock()
|
|
defer g.m.Unlock()
|
|
|
|
return g.nativeGamepad.axisValue(axis)
|
|
}
|
|
|
|
// Button is concurrent-safe.
|
|
func (g *Gamepad) Button(button int) bool {
|
|
g.m.Lock()
|
|
defer g.m.Unlock()
|
|
|
|
return g.nativeGamepad.isButtonPressed(button)
|
|
}
|
|
|
|
// Hat is concurrent-safe.
|
|
func (g *Gamepad) Hat(hat int) int {
|
|
g.m.Lock()
|
|
defer g.m.Unlock()
|
|
|
|
return g.nativeGamepad.hatState(hat)
|
|
}
|
|
|
|
// IsStandardLayoutAvailable is concurrent-safe.
|
|
func (g *Gamepad) IsStandardLayoutAvailable() bool {
|
|
g.m.Lock()
|
|
defer g.m.Unlock()
|
|
|
|
if gamepaddb.HasStandardLayoutMapping(g.sdlID) {
|
|
return true
|
|
}
|
|
return g.hasOwnStandardLayoutMapping()
|
|
}
|
|
|
|
// StandardAxisValue is concurrent-safe.
|
|
func (g *Gamepad) StandardAxisValue(axis gamepaddb.StandardAxis) float64 {
|
|
if gamepaddb.HasStandardLayoutMapping(g.sdlID) {
|
|
return gamepaddb.AxisValue(g.sdlID, axis, g)
|
|
}
|
|
if g.hasOwnStandardLayoutMapping() {
|
|
return g.nativeGamepad.axisValue(int(axis))
|
|
}
|
|
return 0
|
|
}
|
|
|
|
// StandardButtonValue is concurrent-safe.
|
|
func (g *Gamepad) StandardButtonValue(button gamepaddb.StandardButton) float64 {
|
|
if gamepaddb.HasStandardLayoutMapping(g.sdlID) {
|
|
return gamepaddb.ButtonValue(g.sdlID, button, g)
|
|
}
|
|
if g.hasOwnStandardLayoutMapping() {
|
|
return g.nativeGamepad.buttonValue(int(button))
|
|
}
|
|
return 0
|
|
}
|
|
|
|
// IsStandardButtonPressed is concurrent-safe.
|
|
func (g *Gamepad) IsStandardButtonPressed(button gamepaddb.StandardButton) bool {
|
|
if gamepaddb.HasStandardLayoutMapping(g.sdlID) {
|
|
return gamepaddb.IsButtonPressed(g.sdlID, button, g)
|
|
}
|
|
if g.hasOwnStandardLayoutMapping() {
|
|
return g.nativeGamepad.isButtonPressed(int(button))
|
|
}
|
|
return false
|
|
}
|
|
|
|
// Vibrate is concurrent-safe.
|
|
func (g *Gamepad) Vibrate(duration time.Duration, strongMagnitude float64, weakMagnitude float64) {
|
|
g.m.Lock()
|
|
defer g.m.Unlock()
|
|
|
|
g.nativeGamepad.vibrate(duration, strongMagnitude, weakMagnitude)
|
|
}
|