2017-07-21 17:10:22 +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.
|
|
|
|
|
2021-06-24 14:49:37 +02:00
|
|
|
//go:build example
|
2020-10-06 17:45:54 +02:00
|
|
|
// +build example
|
2017-07-21 17:10:22 +02:00
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2018-03-14 17:16:41 +01:00
|
|
|
"bytes"
|
2017-07-21 17:10:22 +02:00
|
|
|
"image"
|
|
|
|
"image/color"
|
2018-02-10 19:31:30 +01:00
|
|
|
_ "image/png"
|
2017-07-21 17:10:22 +02:00
|
|
|
"log"
|
|
|
|
"strings"
|
|
|
|
|
|
|
|
"golang.org/x/image/font"
|
|
|
|
"golang.org/x/image/font/gofont/goregular"
|
2020-10-03 16:12:39 +02:00
|
|
|
"golang.org/x/image/font/opentype"
|
2017-07-21 17:10:22 +02:00
|
|
|
|
2020-10-03 19:35:13 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/v2"
|
|
|
|
"github.com/hajimehoshi/ebiten/v2/examples/resources/images"
|
|
|
|
"github.com/hajimehoshi/ebiten/v2/inpututil"
|
|
|
|
"github.com/hajimehoshi/ebiten/v2/text"
|
2017-07-21 17:10:22 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
lineHeight = 16
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
uiImage *ebiten.Image
|
|
|
|
uiFont font.Face
|
|
|
|
uiFontMHeight int
|
|
|
|
)
|
|
|
|
|
|
|
|
func init() {
|
2018-03-16 04:05:53 +01:00
|
|
|
// Decode image from a byte slice instead of a file so that
|
|
|
|
// this example works in any working directory.
|
|
|
|
// If you want to use a file, there are some options:
|
|
|
|
// 1) Use os.Open and pass the file to the image decoder.
|
|
|
|
// This is a very regular way, but doesn't work on browsers.
|
|
|
|
// 2) Use ebitenutil.OpenFile and pass the file to the image decoder.
|
|
|
|
// This works even on browsers.
|
|
|
|
// 3) Use ebitenutil.NewImageFromFile to create an ebiten.Image directly from a file.
|
|
|
|
// This also works on browsers.
|
2018-03-14 17:16:41 +01:00
|
|
|
img, _, err := image.Decode(bytes.NewReader(images.UI_png))
|
2017-07-21 17:10:22 +02:00
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
2020-10-05 18:03:30 +02:00
|
|
|
uiImage = ebiten.NewImageFromImage(img)
|
2017-07-21 17:10:22 +02:00
|
|
|
|
2020-10-03 16:12:39 +02:00
|
|
|
tt, err := opentype.Parse(goregular.TTF)
|
2017-07-21 17:10:22 +02:00
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
2020-10-03 16:12:39 +02:00
|
|
|
uiFont, err = opentype.NewFace(tt, &opentype.FaceOptions{
|
2017-07-21 17:10:22 +02:00
|
|
|
Size: 12,
|
|
|
|
DPI: 72,
|
|
|
|
Hinting: font.HintingFull,
|
|
|
|
})
|
2020-10-03 16:12:39 +02:00
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
2017-07-21 17:10:22 +02:00
|
|
|
b, _, _ := uiFont.GlyphBounds('M')
|
|
|
|
uiFontMHeight = (b.Max.Y - b.Min.Y).Ceil()
|
|
|
|
}
|
|
|
|
|
|
|
|
type imageType int
|
|
|
|
|
|
|
|
const (
|
|
|
|
imageTypeButton imageType = iota
|
|
|
|
imageTypeButtonPressed
|
|
|
|
imageTypeTextBox
|
|
|
|
imageTypeVScollBarBack
|
|
|
|
imageTypeVScollBarFront
|
|
|
|
imageTypeCheckBox
|
|
|
|
imageTypeCheckBoxPressed
|
|
|
|
imageTypeCheckBoxMark
|
|
|
|
)
|
|
|
|
|
|
|
|
var imageSrcRects = map[imageType]image.Rectangle{
|
|
|
|
imageTypeButton: image.Rect(0, 0, 16, 16),
|
|
|
|
imageTypeButtonPressed: image.Rect(16, 0, 32, 16),
|
|
|
|
imageTypeTextBox: image.Rect(0, 16, 16, 32),
|
|
|
|
imageTypeVScollBarBack: image.Rect(16, 16, 24, 32),
|
|
|
|
imageTypeVScollBarFront: image.Rect(24, 16, 32, 32),
|
|
|
|
imageTypeCheckBox: image.Rect(0, 32, 16, 48),
|
|
|
|
imageTypeCheckBoxPressed: image.Rect(16, 32, 32, 48),
|
|
|
|
imageTypeCheckBoxMark: image.Rect(32, 32, 48, 48),
|
|
|
|
}
|
|
|
|
|
|
|
|
const (
|
|
|
|
screenWidth = 640
|
|
|
|
screenHeight = 480
|
|
|
|
)
|
|
|
|
|
|
|
|
type Input struct {
|
|
|
|
mouseButtonState int
|
|
|
|
}
|
|
|
|
|
|
|
|
func drawNinePatches(dst *ebiten.Image, dstRect image.Rectangle, srcRect image.Rectangle) {
|
|
|
|
srcX := srcRect.Min.X
|
|
|
|
srcY := srcRect.Min.Y
|
|
|
|
srcW := srcRect.Dx()
|
|
|
|
srcH := srcRect.Dy()
|
|
|
|
|
|
|
|
dstX := dstRect.Min.X
|
|
|
|
dstY := dstRect.Min.Y
|
|
|
|
dstW := dstRect.Dx()
|
|
|
|
dstH := dstRect.Dy()
|
|
|
|
|
|
|
|
op := &ebiten.DrawImageOptions{}
|
|
|
|
for j := 0; j < 3; j++ {
|
|
|
|
for i := 0; i < 3; i++ {
|
|
|
|
op.GeoM.Reset()
|
|
|
|
|
|
|
|
sx := srcX
|
|
|
|
sy := srcY
|
|
|
|
sw := srcW / 4
|
|
|
|
sh := srcH / 4
|
|
|
|
dx := 0
|
|
|
|
dy := 0
|
|
|
|
dw := sw
|
|
|
|
dh := sh
|
|
|
|
switch i {
|
|
|
|
case 1:
|
|
|
|
sx = srcX + srcW/4
|
|
|
|
sw = srcW / 2
|
|
|
|
dx = srcW / 4
|
|
|
|
dw = dstW - 2*srcW/4
|
|
|
|
case 2:
|
|
|
|
sx = srcX + 3*srcW/4
|
|
|
|
dx = dstW - srcW/4
|
|
|
|
}
|
|
|
|
switch j {
|
|
|
|
case 1:
|
|
|
|
sy = srcY + srcH/4
|
|
|
|
sh = srcH / 2
|
|
|
|
dy = srcH / 4
|
|
|
|
dh = dstH - 2*srcH/4
|
|
|
|
case 2:
|
|
|
|
sy = srcY + 3*srcH/4
|
|
|
|
dy = dstH - srcH/4
|
|
|
|
}
|
|
|
|
|
|
|
|
op.GeoM.Scale(float64(dw)/float64(sw), float64(dh)/float64(sh))
|
|
|
|
op.GeoM.Translate(float64(dx), float64(dy))
|
|
|
|
op.GeoM.Translate(float64(dstX), float64(dstY))
|
2018-10-23 16:27:27 +02:00
|
|
|
dst.DrawImage(uiImage.SubImage(image.Rect(sx, sy, sx+sw, sy+sh)).(*ebiten.Image), op)
|
2017-07-21 17:10:22 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
type Button struct {
|
2017-07-22 20:21:02 +02:00
|
|
|
Rect image.Rectangle
|
|
|
|
Text string
|
2017-07-21 17:10:22 +02:00
|
|
|
|
|
|
|
mouseDown bool
|
2018-01-30 16:45:42 +01:00
|
|
|
|
|
|
|
onPressed func(b *Button)
|
2017-07-21 17:10:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Button) Update() {
|
2018-02-04 15:51:15 +01:00
|
|
|
if ebiten.IsMouseButtonPressed(ebiten.MouseButtonLeft) {
|
2017-07-21 17:10:22 +02:00
|
|
|
x, y := ebiten.CursorPosition()
|
2017-07-22 20:21:02 +02:00
|
|
|
if b.Rect.Min.X <= x && x < b.Rect.Max.X && b.Rect.Min.Y <= y && y < b.Rect.Max.Y {
|
2017-07-21 17:10:22 +02:00
|
|
|
b.mouseDown = true
|
|
|
|
} else {
|
|
|
|
b.mouseDown = false
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if b.mouseDown {
|
2018-01-30 16:45:42 +01:00
|
|
|
if b.onPressed != nil {
|
|
|
|
b.onPressed(b)
|
|
|
|
}
|
2017-07-21 17:10:22 +02:00
|
|
|
}
|
|
|
|
b.mouseDown = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (b *Button) Draw(dst *ebiten.Image) {
|
|
|
|
t := imageTypeButton
|
|
|
|
if b.mouseDown {
|
|
|
|
t = imageTypeButtonPressed
|
|
|
|
}
|
2017-07-22 20:21:02 +02:00
|
|
|
drawNinePatches(dst, b.Rect, imageSrcRects[t])
|
2017-07-21 17:10:22 +02:00
|
|
|
|
|
|
|
bounds, _ := font.BoundString(uiFont, b.Text)
|
|
|
|
w := (bounds.Max.X - bounds.Min.X).Ceil()
|
2017-07-22 20:21:02 +02:00
|
|
|
x := b.Rect.Min.X + (b.Rect.Dx()-w)/2
|
|
|
|
y := b.Rect.Max.Y - (b.Rect.Dy()-uiFontMHeight)/2
|
2017-07-21 17:10:22 +02:00
|
|
|
text.Draw(dst, b.Text, uiFont, x, y, color.Black)
|
|
|
|
}
|
|
|
|
|
2018-01-30 16:45:42 +01:00
|
|
|
func (b *Button) SetOnPressed(f func(b *Button)) {
|
|
|
|
b.onPressed = f
|
2017-07-21 17:10:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
const VScrollBarWidth = 16
|
|
|
|
|
|
|
|
type VScrollBar struct {
|
|
|
|
X int
|
|
|
|
Y int
|
|
|
|
Height int
|
|
|
|
|
|
|
|
thumbRate float64
|
|
|
|
thumbOffset int
|
|
|
|
dragging bool
|
|
|
|
draggingStartOffset int
|
|
|
|
draggingStartY int
|
|
|
|
contentOffset int
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v *VScrollBar) thumbSize() int {
|
|
|
|
const minThumbSize = VScrollBarWidth
|
|
|
|
|
|
|
|
r := v.thumbRate
|
|
|
|
if r > 1 {
|
|
|
|
r = 1
|
|
|
|
}
|
|
|
|
s := int(float64(v.Height) * r)
|
|
|
|
if s < minThumbSize {
|
|
|
|
return minThumbSize
|
|
|
|
}
|
|
|
|
return s
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v *VScrollBar) thumbRect() image.Rectangle {
|
|
|
|
if v.thumbRate >= 1 {
|
|
|
|
return image.Rectangle{}
|
|
|
|
}
|
|
|
|
|
|
|
|
s := v.thumbSize()
|
|
|
|
return image.Rect(v.X, v.Y+v.thumbOffset, v.X+VScrollBarWidth, v.Y+v.thumbOffset+s)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v *VScrollBar) maxThumbOffset() int {
|
|
|
|
return v.Height - v.thumbSize()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v *VScrollBar) ContentOffset() int {
|
|
|
|
return v.contentOffset
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v *VScrollBar) Update(contentHeight int) {
|
|
|
|
v.thumbRate = float64(v.Height) / float64(contentHeight)
|
|
|
|
|
2018-02-04 15:51:15 +01:00
|
|
|
if !v.dragging && inpututil.IsMouseButtonJustPressed(ebiten.MouseButtonLeft) {
|
2017-07-21 17:10:22 +02:00
|
|
|
x, y := ebiten.CursorPosition()
|
|
|
|
tr := v.thumbRect()
|
|
|
|
if tr.Min.X <= x && x < tr.Max.X && tr.Min.Y <= y && y < tr.Max.Y {
|
|
|
|
v.dragging = true
|
|
|
|
v.draggingStartOffset = v.thumbOffset
|
|
|
|
v.draggingStartY = y
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if v.dragging {
|
2018-02-04 15:51:15 +01:00
|
|
|
if ebiten.IsMouseButtonPressed(ebiten.MouseButtonLeft) {
|
2017-07-21 17:10:22 +02:00
|
|
|
_, y := ebiten.CursorPosition()
|
|
|
|
v.thumbOffset = v.draggingStartOffset + (y - v.draggingStartY)
|
|
|
|
if v.thumbOffset < 0 {
|
|
|
|
v.thumbOffset = 0
|
|
|
|
}
|
|
|
|
if v.thumbOffset > v.maxThumbOffset() {
|
|
|
|
v.thumbOffset = v.maxThumbOffset()
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
v.dragging = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
v.contentOffset = 0
|
|
|
|
if v.thumbRate < 1 {
|
|
|
|
v.contentOffset = int(float64(contentHeight) * float64(v.thumbOffset) / float64(v.Height))
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (v *VScrollBar) Draw(dst *ebiten.Image) {
|
|
|
|
sd := image.Rect(v.X, v.Y, v.X+VScrollBarWidth, v.Y+v.Height)
|
|
|
|
drawNinePatches(dst, sd, imageSrcRects[imageTypeVScollBarBack])
|
|
|
|
|
|
|
|
if v.thumbRate < 1 {
|
|
|
|
drawNinePatches(dst, v.thumbRect(), imageSrcRects[imageTypeVScollBarFront])
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const (
|
|
|
|
textBoxPaddingLeft = 8
|
|
|
|
)
|
|
|
|
|
|
|
|
type TextBox struct {
|
2017-07-22 20:21:02 +02:00
|
|
|
Rect image.Rectangle
|
|
|
|
Text string
|
2017-07-21 17:10:22 +02:00
|
|
|
|
|
|
|
contentBuf *ebiten.Image
|
|
|
|
vScrollBar *VScrollBar
|
|
|
|
offsetX int
|
|
|
|
offsetY int
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *TextBox) AppendLine(line string) {
|
|
|
|
if t.Text == "" {
|
|
|
|
t.Text = line
|
|
|
|
} else {
|
|
|
|
t.Text += "\n" + line
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *TextBox) Update() {
|
|
|
|
if t.vScrollBar == nil {
|
|
|
|
t.vScrollBar = &VScrollBar{}
|
|
|
|
}
|
2017-07-22 20:21:02 +02:00
|
|
|
t.vScrollBar.X = t.Rect.Max.X - VScrollBarWidth
|
|
|
|
t.vScrollBar.Y = t.Rect.Min.Y
|
|
|
|
t.vScrollBar.Height = t.Rect.Dy()
|
2017-07-21 17:10:22 +02:00
|
|
|
|
|
|
|
_, h := t.contentSize()
|
|
|
|
t.vScrollBar.Update(h)
|
|
|
|
|
|
|
|
t.offsetX = 0
|
|
|
|
t.offsetY = t.vScrollBar.ContentOffset()
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *TextBox) contentSize() (int, int) {
|
|
|
|
h := len(strings.Split(t.Text, "\n")) * lineHeight
|
2017-07-22 20:21:02 +02:00
|
|
|
return t.Rect.Dx(), h
|
2017-07-21 17:10:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (t *TextBox) viewSize() (int, int) {
|
2017-07-22 20:21:02 +02:00
|
|
|
return t.Rect.Dx() - VScrollBarWidth - textBoxPaddingLeft, t.Rect.Dy()
|
2017-07-21 17:10:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (t *TextBox) contentOffset() (int, int) {
|
|
|
|
return t.offsetX, t.offsetY
|
|
|
|
}
|
|
|
|
|
|
|
|
func (t *TextBox) Draw(dst *ebiten.Image) {
|
2017-07-22 20:21:02 +02:00
|
|
|
drawNinePatches(dst, t.Rect, imageSrcRects[imageTypeTextBox])
|
2017-07-21 17:10:22 +02:00
|
|
|
|
|
|
|
if t.contentBuf != nil {
|
|
|
|
vw, vh := t.viewSize()
|
|
|
|
w, h := t.contentBuf.Size()
|
|
|
|
if vw > w || vh > h {
|
|
|
|
t.contentBuf.Dispose()
|
|
|
|
t.contentBuf = nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if t.contentBuf == nil {
|
|
|
|
w, h := t.viewSize()
|
2020-10-05 17:33:05 +02:00
|
|
|
t.contentBuf = ebiten.NewImage(w, h)
|
2017-07-21 17:10:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
t.contentBuf.Clear()
|
|
|
|
for i, line := range strings.Split(t.Text, "\n") {
|
|
|
|
x := -t.offsetX + textBoxPaddingLeft
|
|
|
|
y := -t.offsetY + i*lineHeight + lineHeight - (lineHeight-uiFontMHeight)/2
|
|
|
|
if y < -lineHeight {
|
|
|
|
continue
|
|
|
|
}
|
2018-01-30 16:49:49 +01:00
|
|
|
if _, h := t.viewSize(); y >= h+lineHeight {
|
2017-07-21 17:10:22 +02:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
text.Draw(t.contentBuf, line, uiFont, x, y, color.Black)
|
|
|
|
}
|
|
|
|
op := &ebiten.DrawImageOptions{}
|
2017-07-22 20:21:02 +02:00
|
|
|
op.GeoM.Translate(float64(t.Rect.Min.X), float64(t.Rect.Min.Y))
|
2017-07-21 17:10:22 +02:00
|
|
|
dst.DrawImage(t.contentBuf, op)
|
|
|
|
|
|
|
|
t.vScrollBar.Draw(dst)
|
|
|
|
}
|
|
|
|
|
|
|
|
const (
|
|
|
|
checkboxWidth = 16
|
|
|
|
checkboxHeight = 16
|
|
|
|
checkboxPaddingLeft = 8
|
|
|
|
)
|
|
|
|
|
|
|
|
type CheckBox struct {
|
|
|
|
X int
|
|
|
|
Y int
|
|
|
|
Text string
|
|
|
|
|
2018-01-30 16:45:42 +01:00
|
|
|
checked bool
|
|
|
|
mouseDown bool
|
|
|
|
|
|
|
|
onCheckChanged func(c *CheckBox)
|
2017-07-21 17:10:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (c *CheckBox) width() int {
|
|
|
|
b, _ := font.BoundString(uiFont, c.Text)
|
|
|
|
w := (b.Max.X - b.Min.X).Ceil()
|
|
|
|
return checkboxWidth + checkboxPaddingLeft + w
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *CheckBox) Update() {
|
2018-02-04 15:51:15 +01:00
|
|
|
if ebiten.IsMouseButtonPressed(ebiten.MouseButtonLeft) {
|
2017-07-21 17:10:22 +02:00
|
|
|
x, y := ebiten.CursorPosition()
|
|
|
|
if c.X <= x && x < c.X+c.width() && c.Y <= y && y < c.Y+checkboxHeight {
|
|
|
|
c.mouseDown = true
|
|
|
|
} else {
|
|
|
|
c.mouseDown = false
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if c.mouseDown {
|
2018-01-30 16:45:42 +01:00
|
|
|
c.checked = !c.checked
|
|
|
|
if c.onCheckChanged != nil {
|
|
|
|
c.onCheckChanged(c)
|
|
|
|
}
|
2017-07-21 17:10:22 +02:00
|
|
|
}
|
|
|
|
c.mouseDown = false
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *CheckBox) Draw(dst *ebiten.Image) {
|
|
|
|
t := imageTypeCheckBox
|
|
|
|
if c.mouseDown {
|
|
|
|
t = imageTypeCheckBoxPressed
|
|
|
|
}
|
|
|
|
r := image.Rect(c.X, c.Y, c.X+checkboxWidth, c.Y+checkboxHeight)
|
|
|
|
drawNinePatches(dst, r, imageSrcRects[t])
|
|
|
|
if c.checked {
|
|
|
|
drawNinePatches(dst, r, imageSrcRects[imageTypeCheckBoxMark])
|
|
|
|
}
|
|
|
|
|
|
|
|
x := c.X + checkboxWidth + checkboxPaddingLeft
|
|
|
|
y := (c.Y + 16) - (16-uiFontMHeight)/2
|
|
|
|
text.Draw(dst, c.Text, uiFont, x, y, color.Black)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *CheckBox) Checked() bool {
|
|
|
|
return c.checked
|
|
|
|
}
|
|
|
|
|
2018-01-30 16:45:42 +01:00
|
|
|
func (c *CheckBox) SetOnCheckChanged(f func(c *CheckBox)) {
|
|
|
|
c.onCheckChanged = f
|
2017-07-21 17:10:22 +02:00
|
|
|
}
|
|
|
|
|
2020-06-07 14:36:46 +02:00
|
|
|
type Game struct {
|
|
|
|
button1 *Button
|
|
|
|
button2 *Button
|
|
|
|
checkBox *CheckBox
|
|
|
|
textBoxLog *TextBox
|
|
|
|
}
|
|
|
|
|
2021-07-21 17:15:30 +02:00
|
|
|
func NewGame() *Game {
|
|
|
|
g := &Game{}
|
2020-06-07 14:36:46 +02:00
|
|
|
g.button1 = &Button{
|
2017-07-22 20:21:02 +02:00
|
|
|
Rect: image.Rect(16, 16, 144, 48),
|
|
|
|
Text: "Button 1",
|
2017-07-21 17:10:22 +02:00
|
|
|
}
|
2020-06-07 14:36:46 +02:00
|
|
|
g.button2 = &Button{
|
2017-07-22 20:21:02 +02:00
|
|
|
Rect: image.Rect(160, 16, 288, 48),
|
|
|
|
Text: "Button 2",
|
2017-07-21 17:10:22 +02:00
|
|
|
}
|
2020-06-07 14:36:46 +02:00
|
|
|
g.checkBox = &CheckBox{
|
2017-07-21 17:10:22 +02:00
|
|
|
X: 16,
|
|
|
|
Y: 64,
|
|
|
|
Text: "Check Box!",
|
|
|
|
}
|
2020-06-07 14:36:46 +02:00
|
|
|
g.textBoxLog = &TextBox{
|
2017-07-22 20:21:02 +02:00
|
|
|
Rect: image.Rect(16, 96, 624, 464),
|
2017-07-21 17:10:22 +02:00
|
|
|
}
|
|
|
|
|
2020-06-07 14:36:46 +02:00
|
|
|
g.button1.SetOnPressed(func(b *Button) {
|
|
|
|
g.textBoxLog.AppendLine("Button 1 Pressed")
|
2018-01-30 16:45:42 +01:00
|
|
|
})
|
2020-06-07 14:36:46 +02:00
|
|
|
g.button2.SetOnPressed(func(b *Button) {
|
|
|
|
g.textBoxLog.AppendLine("Button 2 Pressed")
|
2018-01-30 16:45:42 +01:00
|
|
|
})
|
2020-06-07 14:36:46 +02:00
|
|
|
g.checkBox.SetOnCheckChanged(func(c *CheckBox) {
|
2017-07-21 17:10:22 +02:00
|
|
|
msg := "Check box check changed"
|
2018-01-30 16:45:42 +01:00
|
|
|
if c.Checked() {
|
2017-07-21 17:10:22 +02:00
|
|
|
msg += " (Checked)"
|
|
|
|
} else {
|
|
|
|
msg += " (Unchecked)"
|
|
|
|
}
|
2020-06-07 14:36:46 +02:00
|
|
|
g.textBoxLog.AppendLine(msg)
|
2018-01-30 16:45:42 +01:00
|
|
|
})
|
2021-07-21 17:15:30 +02:00
|
|
|
return g
|
2018-01-30 16:45:42 +01:00
|
|
|
}
|
|
|
|
|
2020-10-04 10:42:54 +02:00
|
|
|
func (g *Game) Update() error {
|
2020-06-07 14:36:46 +02:00
|
|
|
g.button1.Update()
|
|
|
|
g.button2.Update()
|
|
|
|
g.checkBox.Update()
|
|
|
|
g.textBoxLog.Update()
|
|
|
|
return nil
|
|
|
|
}
|
2017-07-21 17:10:22 +02:00
|
|
|
|
2020-06-07 14:36:46 +02:00
|
|
|
func (g *Game) Draw(screen *ebiten.Image) {
|
2017-07-21 17:10:22 +02:00
|
|
|
screen.Fill(color.RGBA{0xeb, 0xeb, 0xeb, 0xff})
|
2020-06-07 14:36:46 +02:00
|
|
|
g.button1.Draw(screen)
|
|
|
|
g.button2.Draw(screen)
|
|
|
|
g.checkBox.Draw(screen)
|
|
|
|
g.textBoxLog.Draw(screen)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (g *Game) Layout(outsideWidth, outsideHeight int) (int, int) {
|
|
|
|
return screenWidth, screenHeight
|
2017-07-21 17:10:22 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
2020-06-07 14:36:46 +02:00
|
|
|
ebiten.SetWindowSize(screenWidth, screenHeight)
|
|
|
|
ebiten.SetWindowTitle("UI (Ebiten Demo)")
|
2021-07-21 17:15:30 +02:00
|
|
|
if err := ebiten.RunGame(NewGame()); err != nil {
|
2017-07-21 17:10:22 +02:00
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|