2021-10-23 11:27:27 +02: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.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"log"
|
|
|
|
"time"
|
|
|
|
|
|
|
|
"github.com/hajimehoshi/ebiten/v2"
|
|
|
|
"github.com/hajimehoshi/ebiten/v2/ebitenutil"
|
|
|
|
"github.com/hajimehoshi/ebiten/v2/inpututil"
|
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
screenWidth = 640
|
|
|
|
screenHeight = 480
|
|
|
|
)
|
|
|
|
|
|
|
|
type Game struct {
|
2021-12-04 14:14:02 +01:00
|
|
|
touchIDs []ebiten.TouchID
|
|
|
|
gamepadIDs []ebiten.GamepadID
|
|
|
|
touchCounter int
|
2021-10-23 11:27:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (g *Game) Update() error {
|
2022-04-11 17:05:55 +02:00
|
|
|
g.touchIDs = inpututil.AppendJustPressedTouchIDs(g.touchIDs[:0])
|
2021-10-23 11:27:27 +02:00
|
|
|
if len(g.touchIDs) > 0 {
|
2021-12-04 14:14:02 +01:00
|
|
|
g.touchCounter++
|
|
|
|
op := &ebiten.VibrateOptions{
|
|
|
|
Duration: 200 * time.Millisecond,
|
2022-01-10 08:19:29 +01:00
|
|
|
Magnitude: 0.5*float64(g.touchCounter%2) + 0.5,
|
2021-12-04 14:14:02 +01:00
|
|
|
}
|
|
|
|
ebiten.Vibrate(op)
|
2021-10-23 11:27:27 +02:00
|
|
|
}
|
|
|
|
|
2021-10-24 18:39:01 +02:00
|
|
|
g.gamepadIDs = g.gamepadIDs[:0]
|
|
|
|
g.gamepadIDs = ebiten.AppendGamepadIDs(g.gamepadIDs)
|
|
|
|
for _, id := range g.gamepadIDs {
|
|
|
|
for b := ebiten.GamepadButton0; b <= ebiten.GamepadButtonMax; b++ {
|
|
|
|
if !inpututil.IsGamepadButtonJustPressed(id, b) {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
// TODO: Test weak-magnitude.
|
|
|
|
op := &ebiten.VibrateGamepadOptions{
|
|
|
|
Duration: 200 * time.Millisecond,
|
|
|
|
StrongMagnitude: 1,
|
|
|
|
WeakMagnitude: 0,
|
|
|
|
}
|
|
|
|
ebiten.VibrateGamepad(id, op)
|
|
|
|
break
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-10-23 11:27:27 +02:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (g *Game) Draw(screen *ebiten.Image) {
|
2021-10-24 18:39:01 +02:00
|
|
|
msg := "Touch the screen to vibrate the screen."
|
|
|
|
if len(g.gamepadIDs) > 0 {
|
|
|
|
msg += "\nPress a gamepad button to vibrate the gamepad."
|
|
|
|
}
|
|
|
|
ebitenutil.DebugPrint(screen, msg)
|
2021-10-23 11:27:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (g *Game) Layout(outsideWidth, outsideHeight int) (int, int) {
|
|
|
|
return screenWidth, screenHeight
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
2022-08-29 04:16:39 +02:00
|
|
|
ebiten.SetWindowTitle("Vibrate (Ebitengine Demo)")
|
2021-10-23 11:27:27 +02:00
|
|
|
if err := ebiten.RunGame(&Game{}); err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|