mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 04:57:26 +01:00
examples/gamepad: add vibrations
This commit is contained in:
parent
55c7a2df6c
commit
be356390e0
@ -23,6 +23,7 @@ import (
|
||||
"sort"
|
||||
"strconv"
|
||||
"strings"
|
||||
"time"
|
||||
|
||||
"github.com/hajimehoshi/ebiten/v2"
|
||||
"github.com/hajimehoshi/ebiten/v2/ebitenutil"
|
||||
@ -87,6 +88,28 @@ func (g *Game) Update() error {
|
||||
for b := ebiten.StandardGamepadButton(0); b <= ebiten.StandardGamepadButtonMax; b++ {
|
||||
// Log button events.
|
||||
if inpututil.IsStandardGamepadButtonJustPressed(id, b) {
|
||||
var strong float64
|
||||
var weak float64
|
||||
switch b {
|
||||
case ebiten.StandardGamepadButtonLeftTop,
|
||||
ebiten.StandardGamepadButtonLeftLeft,
|
||||
ebiten.StandardGamepadButtonLeftRight,
|
||||
ebiten.StandardGamepadButtonLeftBottom:
|
||||
weak = 0.5
|
||||
case ebiten.StandardGamepadButtonRightTop,
|
||||
ebiten.StandardGamepadButtonRightLeft,
|
||||
ebiten.StandardGamepadButtonRightRight,
|
||||
ebiten.StandardGamepadButtonRightBottom:
|
||||
strong = 0.5
|
||||
}
|
||||
if strong > 0 || weak > 0 {
|
||||
op := &ebiten.VibrateGamepadOptions{
|
||||
Duration: 200 * time.Millisecond,
|
||||
StrongMagnitude: strong,
|
||||
WeakMagnitude: weak,
|
||||
}
|
||||
ebiten.VibrateGamepad(id, op)
|
||||
}
|
||||
log.Printf("standard button pressed: id: %d, button: %d", id, b)
|
||||
}
|
||||
if inpututil.IsStandardGamepadButtonJustReleased(id, b) {
|
||||
|
Loading…
Reference in New Issue
Block a user