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-10-21 15:18:10 +02:00
|
|
|
textTextureId graphics.TextureId
|
2013-10-17 17:45:12 +02:00
|
|
|
inputState ebiten.InputState
|
2013-07-02 18:27:04 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func New() *Input {
|
|
|
|
return &Input{}
|
|
|
|
}
|
|
|
|
|
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-07-05 14:02:17 +02:00
|
|
|
func (game *Input) Update(context ebiten.GameContext) {
|
|
|
|
game.inputState = context.InputState()
|
2013-07-02 18:27:04 +02:00
|
|
|
}
|
|
|
|
|
2013-11-29 14:06:22 +01: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
|
|
|
|
Y: %d`, game.inputState.X, game.inputState.Y)
|
|
|
|
game.drawText(g, str, 5, 5)
|
2013-07-02 18:27:04 +02:00
|
|
|
}
|
|
|
|
|
2013-11-29 14:06:22 +01: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
|
|
|
}
|