ebiten/examples/inputchars/main.go

61 lines
1.3 KiB
Go
Raw Normal View History

2017-08-14 21:11:51 +02:00
// Copyright 2017 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.
// +build example
package main
import (
"log"
2017-08-15 17:09:20 +02:00
"strings"
2017-08-14 21:11:51 +02:00
"github.com/hajimehoshi/ebiten"
"github.com/hajimehoshi/ebiten/ebitenutil"
)
2017-08-15 05:14:01 +02:00
var (
2017-08-15 17:09:20 +02:00
text = "Type on the keyboard:\n"
2017-08-15 05:14:01 +02:00
counter = 0
)
2017-08-14 21:11:51 +02:00
func update(screen *ebiten.Image) error {
2017-08-15 17:09:20 +02:00
text += string(ebiten.InputChars())
ss := strings.Split(text, "\n")
if len(ss) > 10 {
text = strings.Join(ss[len(ss)-10:], "\n")
}
2017-08-15 17:09:20 +02:00
if ebiten.IsKeyPressed(ebiten.KeyEnter) && !strings.HasSuffix(text, "\n") {
text += "\n"
2017-08-14 21:11:51 +02:00
}
2017-08-14 21:11:51 +02:00
counter++
2017-08-15 05:14:01 +02:00
2017-08-14 21:11:51 +02:00
if ebiten.IsRunningSlowly() {
return nil
}
2017-08-15 05:14:01 +02:00
2017-08-15 17:09:20 +02:00
t := text
2017-08-14 21:11:51 +02:00
if counter%60 < 30 {
2017-08-15 17:09:20 +02:00
t += "_"
2017-08-14 21:11:51 +02:00
}
2017-08-15 17:09:20 +02:00
ebitenutil.DebugPrint(screen, t)
return nil
2017-08-14 21:11:51 +02:00
}
func main() {
2017-08-15 17:18:54 +02:00
if err := ebiten.Run(update, 320, 240, 2.0, "Input Chars (Ebiten Demo)"); err != nil {
2017-08-15 05:14:01 +02:00
log.Fatal(err)
}
2017-08-14 21:11:51 +02:00
}