ebiten/example/game/input/input.go

101 lines
2.0 KiB
Go
Raw Normal View History

2013-07-02 18:27:04 +02:00
package input
import (
2013-07-04 16:57:53 +02:00
"fmt"
2013-10-14 04:34:58 +02:00
"github.com/hajimehoshi/go-ebiten"
"github.com/hajimehoshi/go-ebiten/graphics"
"github.com/hajimehoshi/go-ebiten/graphics/matrix"
2013-07-04 16:57:53 +02:00
"image"
"os"
2013-07-02 18:27:04 +02:00
)
type Input struct {
2013-11-29 20:24:52 +01:00
textTextureId graphics.TextureId
inputStateUpdatedCh chan ebiten.InputStateUpdatedEvent
x int
y int
2013-07-02 18:27:04 +02:00
}
func New() *Input {
2013-11-29 19:21:10 +01:00
return &Input{
2013-11-29 20:24:52 +01:00
inputStateUpdatedCh: make(chan ebiten.InputStateUpdatedEvent),
x: -1,
y: -1,
2013-11-29 19:21:10 +01:00
}
}
2013-12-01 13:23:03 +01:00
func (game *Input) OnInputStateUpdated(e ebiten.InputStateUpdatedEvent) {
go func() {
e := e
game.inputStateUpdatedCh <- e
}()
2013-07-02 18:27:04 +02:00
}
2013-10-20 08:51:26 +02:00
func (game *Input) InitTextures(tf graphics.TextureFactory) {
2013-07-04 16:57:53 +02:00
file, err := os.Open("images/text.png")
if err != nil {
panic(err)
}
defer file.Close()
img, _, err := image.Decode(file)
if err != nil {
panic(err)
}
2013-11-28 18:38:18 +01:00
if game.textTextureId, err = tf.CreateTextureFromImage(img); err != nil {
2013-07-04 16:57:53 +02:00
panic(err)
}
}
2013-11-29 20:24:52 +01:00
func (game *Input) Update() {
2013-11-29 19:21:10 +01:00
events:
for {
select {
2013-11-29 20:24:52 +01:00
case e := <-game.inputStateUpdatedCh:
2013-11-29 19:21:10 +01:00
game.x, game.y = e.X, e.Y
default:
break events
}
}
2013-07-02 18:27:04 +02:00
}
func (game *Input) Draw(g graphics.Canvas) {
2013-10-11 20:20:13 +02:00
g.Fill(128, 128, 255)
2013-07-04 16:57:53 +02:00
str := fmt.Sprintf(`Input State:
X: %d
2013-11-29 19:21:10 +01:00
Y: %d`, game.x, game.y)
2013-07-04 16:57:53 +02:00
game.drawText(g, str, 5, 5)
2013-07-02 18:27:04 +02:00
}
func (game *Input) drawText(g graphics.Canvas, text string, x, y int) {
2013-07-04 16:57:53 +02:00
const letterWidth = 6
const letterHeight = 16
parts := []graphics.TexturePart{}
textX := 0
textY := 0
for _, c := range text {
if c == '\n' {
textX = 0
textY += letterHeight
continue
}
code := int(c)
x := (code % 32) * letterWidth
y := (code / 32) * letterHeight
source := graphics.Rect{x, y, letterWidth, letterHeight}
parts = append(parts, graphics.TexturePart{
LocationX: textX,
LocationY: textY,
Source: source,
})
textX += letterWidth
}
geometryMatrix := matrix.IdentityGeometry()
geometryMatrix.Translate(float64(x), float64(y))
colorMatrix := matrix.IdentityColor()
2013-10-21 15:18:10 +02:00
g.DrawTextureParts(game.textTextureId, parts,
2013-07-04 16:57:53 +02:00
geometryMatrix, colorMatrix)
2013-07-02 18:27:04 +02:00
}