2015-01-11 17:54:18 +01:00
|
|
|
// Copyright 2015 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.
|
|
|
|
|
2018-03-14 17:26:21 +01:00
|
|
|
// +build example jsgo
|
2016-08-25 17:40:39 +02:00
|
|
|
|
2015-01-11 17:54:18 +01:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2015-01-12 05:33:21 +01:00
|
|
|
"fmt"
|
2015-01-11 17:54:18 +01:00
|
|
|
"log"
|
|
|
|
"strconv"
|
|
|
|
"strings"
|
2016-02-15 17:13:04 +01:00
|
|
|
|
|
|
|
"github.com/hajimehoshi/ebiten"
|
|
|
|
"github.com/hajimehoshi/ebiten/ebitenutil"
|
2018-02-16 19:50:43 +01:00
|
|
|
"github.com/hajimehoshi/ebiten/inpututil"
|
2015-01-11 17:54:18 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
2017-10-25 20:44:49 +02:00
|
|
|
screenWidth = 640
|
|
|
|
screenHeight = 480
|
2015-01-11 17:54:18 +01:00
|
|
|
)
|
|
|
|
|
2018-04-29 21:34:15 +02:00
|
|
|
var (
|
|
|
|
gamepadIDs = map[int]struct{}{}
|
|
|
|
)
|
|
|
|
|
2015-01-11 17:54:18 +01:00
|
|
|
func update(screen *ebiten.Image) error {
|
2018-04-29 21:34:15 +02:00
|
|
|
// Log the gamepad connection events.
|
2018-04-29 19:51:38 +02:00
|
|
|
for _, id := range inpututil.JustConnectedGamepadIDs() {
|
|
|
|
log.Printf("gamepad connected: id: %d", id)
|
2018-04-29 21:34:15 +02:00
|
|
|
gamepadIDs[id] = struct{}{}
|
2018-04-29 19:51:38 +02:00
|
|
|
}
|
2018-04-29 21:34:15 +02:00
|
|
|
for id := range gamepadIDs {
|
|
|
|
if inpututil.IsGamepadJustDisconnected(id) {
|
|
|
|
log.Printf("gamepad disconnected: id: %d", id)
|
|
|
|
delete(gamepadIDs, id)
|
|
|
|
}
|
2018-04-29 19:51:38 +02:00
|
|
|
}
|
|
|
|
|
2018-04-29 20:07:02 +02:00
|
|
|
ids := ebiten.GamepadIDs()
|
|
|
|
axes := map[int][]string{}
|
|
|
|
pressedButtons := map[int][]string{}
|
|
|
|
|
2017-10-26 16:59:09 +02:00
|
|
|
for _, id := range ids {
|
|
|
|
maxAxis := ebiten.GamepadAxisNum(id)
|
2017-10-25 20:44:49 +02:00
|
|
|
for a := 0; a < maxAxis; a++ {
|
2017-10-26 16:59:09 +02:00
|
|
|
v := ebiten.GamepadAxis(id, a)
|
|
|
|
axes[id] = append(axes[id], fmt.Sprintf("%d:%0.2f", a, v))
|
2017-10-25 20:44:49 +02:00
|
|
|
}
|
2017-10-26 16:59:09 +02:00
|
|
|
maxButton := ebiten.GamepadButton(ebiten.GamepadButtonNum(id))
|
|
|
|
for b := ebiten.GamepadButton(id); b < maxButton; b++ {
|
|
|
|
if ebiten.IsGamepadButtonPressed(id, b) {
|
|
|
|
pressedButtons[id] = append(pressedButtons[id], strconv.Itoa(int(b)))
|
2017-10-25 20:44:49 +02:00
|
|
|
}
|
2018-02-16 19:50:43 +01:00
|
|
|
|
2018-04-29 21:34:15 +02:00
|
|
|
// Log button events.
|
2018-02-16 19:50:43 +01:00
|
|
|
if inpututil.IsGamepadButtonJustPressed(id, b) {
|
2018-04-29 19:51:38 +02:00
|
|
|
log.Printf("button pressed: id: %d, button: %d", id, b)
|
2018-02-16 19:50:43 +01:00
|
|
|
}
|
|
|
|
if inpututil.IsGamepadButtonJustReleased(id, b) {
|
2018-04-29 19:51:38 +02:00
|
|
|
log.Printf("button released: id: %d, button: %d", id, b)
|
2018-02-16 19:50:43 +01:00
|
|
|
}
|
2015-01-11 17:54:18 +01:00
|
|
|
}
|
|
|
|
}
|
2017-10-25 20:44:49 +02:00
|
|
|
|
2018-07-09 17:36:43 +02:00
|
|
|
if ebiten.IsDrawingSkipped() {
|
2017-05-16 03:35:58 +02:00
|
|
|
return nil
|
|
|
|
}
|
2015-01-12 05:33:21 +01:00
|
|
|
|
2018-01-28 12:10:50 +01:00
|
|
|
// Draw the current gamepad status.
|
2017-10-25 20:52:23 +02:00
|
|
|
str := ""
|
2017-10-26 16:59:09 +02:00
|
|
|
if len(ids) > 0 {
|
|
|
|
for _, id := range ids {
|
|
|
|
str += fmt.Sprintf("Gamepad (ID: %d):\n", id)
|
|
|
|
str += fmt.Sprintf(" Axes: %s\n", strings.Join(axes[id], ", "))
|
|
|
|
str += fmt.Sprintf(" Buttons: %s\n", strings.Join(pressedButtons[id], ", "))
|
|
|
|
str += "\n"
|
2017-10-25 20:44:49 +02:00
|
|
|
}
|
2017-10-26 16:59:09 +02:00
|
|
|
} else {
|
|
|
|
str = "Please connect your gamepad."
|
2017-10-25 20:44:49 +02:00
|
|
|
}
|
2017-03-04 15:00:19 +01:00
|
|
|
ebitenutil.DebugPrint(screen, str)
|
2015-01-11 17:54:18 +01:00
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
2017-10-25 20:44:49 +02:00
|
|
|
if err := ebiten.Run(update, screenWidth, screenHeight, 1, "Gamepad (Ebiten Demo)"); err != nil {
|
2015-01-11 17:54:18 +01:00
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|