2022-02-01 18:17:26 +01:00
|
|
|
// 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.
|
|
|
|
|
2022-02-04 15:29:09 +01:00
|
|
|
//go:build !darwin && !js && !linux && !windows
|
2022-02-01 18:17:26 +01:00
|
|
|
|
|
|
|
package gamepad
|
|
|
|
|
|
|
|
import (
|
|
|
|
"time"
|
2022-08-11 05:35:20 +02:00
|
|
|
|
|
|
|
"github.com/hajimehoshi/ebiten/v2/internal/gamepaddb"
|
2022-02-01 18:17:26 +01:00
|
|
|
)
|
|
|
|
|
2022-06-24 18:36:13 +02:00
|
|
|
type nativeGamepadsImpl struct{}
|
2022-02-01 18:17:26 +01:00
|
|
|
|
2022-06-24 18:36:13 +02:00
|
|
|
func newNativeGamepadsImpl() nativeGamepads {
|
|
|
|
return &nativeGamepadsImpl{}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (*nativeGamepadsImpl) init(gamepads *gamepads) error {
|
2022-02-01 18:17:26 +01:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-06-24 18:36:13 +02:00
|
|
|
func (*nativeGamepadsImpl) update(gamepads *gamepads) error {
|
2022-02-01 18:17:26 +01:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-06-24 18:36:13 +02:00
|
|
|
type nativeGamepadImpl struct{}
|
2022-02-01 18:17:26 +01:00
|
|
|
|
2022-06-24 18:36:13 +02:00
|
|
|
func (*nativeGamepadImpl) update(gamepad *gamepads) error {
|
2022-02-01 18:17:26 +01:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2022-06-24 18:36:13 +02:00
|
|
|
func (*nativeGamepadImpl) hasOwnStandardLayoutMapping() bool {
|
2022-02-01 18:17:26 +01:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2023-03-03 15:29:04 +01:00
|
|
|
func (*nativeGamepadImpl) standardAxisInOwnMapping(axis gamepaddb.StandardAxis) mappingInput {
|
|
|
|
return nil
|
2022-08-11 05:35:20 +02:00
|
|
|
}
|
|
|
|
|
2023-03-03 15:29:04 +01:00
|
|
|
func (*nativeGamepadImpl) standardButtonInOwnMapping(button gamepaddb.StandardButton) mappingInput {
|
|
|
|
return nil
|
2022-08-11 05:35:20 +02:00
|
|
|
}
|
|
|
|
|
2022-06-24 18:36:13 +02:00
|
|
|
func (*nativeGamepadImpl) axisCount() int {
|
2022-02-01 18:17:26 +01:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2022-06-24 18:36:13 +02:00
|
|
|
func (*nativeGamepadImpl) buttonCount() int {
|
2022-02-01 18:17:26 +01:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2022-06-24 18:36:13 +02:00
|
|
|
func (*nativeGamepadImpl) hatCount() int {
|
2022-02-01 18:17:26 +01:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2022-06-24 18:36:13 +02:00
|
|
|
func (*nativeGamepadImpl) axisValue(axis int) float64 {
|
2022-02-01 18:17:26 +01:00
|
|
|
return 0
|
|
|
|
}
|
|
|
|
|
2022-06-24 18:36:13 +02:00
|
|
|
func (*nativeGamepadImpl) isButtonPressed(button int) bool {
|
2022-02-01 18:17:26 +01:00
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2022-06-24 18:36:13 +02:00
|
|
|
func (*nativeGamepadImpl) buttonValue(button int) float64 {
|
2023-03-03 15:29:04 +01:00
|
|
|
return 0
|
2022-02-01 18:17:26 +01:00
|
|
|
}
|
|
|
|
|
2022-06-24 18:36:13 +02:00
|
|
|
func (*nativeGamepadImpl) hatState(hat int) int {
|
2022-02-01 18:17:26 +01:00
|
|
|
return hatCentered
|
|
|
|
}
|
|
|
|
|
2022-06-24 18:36:13 +02:00
|
|
|
func (g *nativeGamepadImpl) vibrate(duration time.Duration, strongMagnitude float64, weakMagnitude float64) {
|
2022-02-01 18:17:26 +01:00
|
|
|
}
|