mirror of
https://github.com/hajimehoshi/ebiten.git
synced 2024-11-10 13:07:26 +01:00
93 lines
3.1 KiB
HTML
93 lines
3.1 KiB
HTML
<!DOCTYPE html>
|
|
<link rel="shortcut icon" href="../favicon.png" type="image/png" >
|
|
<link rel="icon" href="../favicon.png" type="image/png" >
|
|
<title>Ebiten example - gamepad</title>
|
|
<link rel="stylesheet" href="/stylesheets/bootstrap.min.css">
|
|
<link rel="stylesheet" href="/stylesheets/highlight-github.css">
|
|
<link rel="stylesheet" href="/stylesheets/ebiten.css">
|
|
|
|
<header class="navbar"><div class="container">
|
|
<div class="navbar-header">
|
|
<a class="navbar-brand" href="/">Ebiten</a>
|
|
</div>
|
|
<nav class="collapse navbar-collapse">
|
|
<ul class="nav navbar-nav navbar-right">
|
|
<li><a href="https://github.com/hajimehoshi/ebiten">GitHub</a></li>
|
|
<li><a href="http://godoc.org/github.com/hajimehoshi/ebiten">GoDoc</a></li>
|
|
<li><a href="https://github.com/hajimehoshi/ebiten/wiki">Wiki</a>
|
|
</ul>
|
|
</nav>
|
|
</header>
|
|
|
|
<main><div class="container">
|
|
|
|
<h2>Ebiten example - gamepad</h2>
|
|
<iframe src="gamepad.content.html" width="640" height="480"></iframe>
|
|
<pre><code class="language-go">// +build example
|
|
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
"log"
|
|
"strconv"
|
|
"strings"
|
|
|
|
"github.com/hajimehoshi/ebiten"
|
|
"github.com/hajimehoshi/ebiten/ebitenutil"
|
|
)
|
|
|
|
const (
|
|
screenWidth = 320
|
|
screenHeight = 240
|
|
)
|
|
|
|
func update(screen *ebiten.Image) error {
|
|
// TODO: API to get the available, lowest ID
|
|
const gamepadID = 0
|
|
axes := []string{}
|
|
pressedButtons := []string{}
|
|
|
|
maxAxis := ebiten.GamepadAxisNum(gamepadID)
|
|
for a := 0; a < maxAxis; a++ {
|
|
v := ebiten.GamepadAxis(gamepadID, a)
|
|
axes = append(axes, fmt.Sprintf("%d: %0.6f", a, v))
|
|
}
|
|
|
|
maxButton := ebiten.GamepadButton(ebiten.GamepadButtonNum(gamepadID))
|
|
for b := ebiten.GamepadButton(gamepadID); b < maxButton; b++ {
|
|
if ebiten.IsGamepadButtonPressed(gamepadID, b) {
|
|
pressedButtons = append(pressedButtons, strconv.Itoa(int(b)))
|
|
}
|
|
}
|
|
|
|
str := `Gamepad
|
|
Axes:
|
|
{{.Axes}}
|
|
Pressed Buttons: {{.Buttons}}`
|
|
str = strings.Replace(str, "{{.Axes}}", strings.Join(axes, "\n "), -1)
|
|
str = strings.Replace(str, "{{.Buttons}}", strings.Join(pressedButtons, ", "), -1)
|
|
if err := ebitenutil.DebugPrint(screen, str); err != nil {
|
|
return err
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func main() {
|
|
if err := ebiten.Run(update, screenWidth, screenHeight, 2, "Gamepad (Ebiten Demo)"); err != nil {
|
|
log.Fatal(err)
|
|
}
|
|
}
|
|
</code></pre>
|
|
|
|
</div></main>
|
|
|
|
<footer><div class="container">
|
|
<p>© 2013 Hajime Hoshi</p>
|
|
<p>Code is licensed under <a href="https://github.com/hajimehoshi/ebiten/blob/master/LICENSE">Apache License 2.0</a>.</p>
|
|
<p>The content of this page is licensed under <a href="https://creativecommons.org/licenses/by/4.0/">the Creative Commons Attribution 4.0 License</a>.</p>
|
|
</div></footer>
|
|
|
|
<script src="/scripts/highlight.pack.js"></script>
|
|
<script>hljs.initHighlightingOnLoad();</script>
|