2015-01-13 15:03:37 +01:00
|
|
|
// Copyright 2015 Hajime Hoshi
|
|
|
|
//
|
|
|
|
// 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
|
2016-08-25 17:40:39 +02:00
|
|
|
|
2015-01-13 15:03:37 +01:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2018-03-14 17:16:41 +01:00
|
|
|
"bytes"
|
2015-01-13 15:03:37 +01:00
|
|
|
"fmt"
|
2018-03-14 17:16:41 +01:00
|
|
|
"image"
|
2015-01-13 15:03:37 +01:00
|
|
|
_ "image/png"
|
|
|
|
"log"
|
2017-05-27 21:09:04 +02:00
|
|
|
"math"
|
2015-01-13 15:03:37 +01:00
|
|
|
"math/rand"
|
2016-02-15 17:13:04 +01:00
|
|
|
|
2020-10-03 19:35:13 +02:00
|
|
|
"github.com/hajimehoshi/ebiten/v2"
|
|
|
|
"github.com/hajimehoshi/ebiten/v2/ebitenutil"
|
|
|
|
"github.com/hajimehoshi/ebiten/v2/examples/resources/images"
|
2015-01-13 15:03:37 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
const (
|
|
|
|
screenWidth = 320
|
|
|
|
screenHeight = 240
|
2017-05-27 21:09:04 +02:00
|
|
|
maxAngle = 256
|
2015-01-13 15:03:37 +01:00
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
2017-05-27 18:02:54 +02:00
|
|
|
ebitenImage *ebiten.Image
|
2015-01-13 15:03:37 +01:00
|
|
|
)
|
|
|
|
|
2020-05-30 14:29:45 +02:00
|
|
|
func init() {
|
|
|
|
// 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.
|
|
|
|
img, _, err := image.Decode(bytes.NewReader(images.Ebiten_png))
|
|
|
|
if err != nil {
|
|
|
|
log.Fatal(err)
|
|
|
|
}
|
2020-10-05 18:03:30 +02:00
|
|
|
origEbitenImage := ebiten.NewImageFromImage(img)
|
2020-05-30 14:29:45 +02:00
|
|
|
|
|
|
|
w, h := origEbitenImage.Size()
|
2020-10-05 17:33:05 +02:00
|
|
|
ebitenImage = ebiten.NewImage(w, h)
|
2020-05-30 14:29:45 +02:00
|
|
|
|
|
|
|
op := &ebiten.DrawImageOptions{}
|
|
|
|
op.ColorM.Scale(1, 1, 1, 0.5)
|
|
|
|
ebitenImage.DrawImage(origEbitenImage, op)
|
|
|
|
}
|
|
|
|
|
2015-01-13 15:03:37 +01:00
|
|
|
type Sprite struct {
|
2016-10-27 17:39:55 +02:00
|
|
|
imageWidth int
|
|
|
|
imageHeight int
|
|
|
|
x int
|
|
|
|
y int
|
|
|
|
vx int
|
|
|
|
vy int
|
2017-05-27 21:09:04 +02:00
|
|
|
angle int
|
2015-01-13 15:03:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *Sprite) Update() {
|
|
|
|
s.x += s.vx
|
|
|
|
s.y += s.vy
|
|
|
|
if s.x < 0 {
|
|
|
|
s.x = -s.x
|
|
|
|
s.vx = -s.vx
|
2018-06-17 11:44:32 +02:00
|
|
|
} else if mx := screenWidth - s.imageWidth; mx <= s.x {
|
|
|
|
s.x = 2*mx - s.x
|
2016-10-27 17:39:55 +02:00
|
|
|
s.vx = -s.vx
|
2015-01-13 15:03:37 +01:00
|
|
|
}
|
|
|
|
if s.y < 0 {
|
|
|
|
s.y = -s.y
|
|
|
|
s.vy = -s.vy
|
2018-06-17 11:44:32 +02:00
|
|
|
} else if my := screenHeight - s.imageHeight; my <= s.y {
|
|
|
|
s.y = 2*my - s.y
|
2015-01-13 15:03:37 +01:00
|
|
|
s.vy = -s.vy
|
|
|
|
}
|
2017-05-27 21:09:04 +02:00
|
|
|
s.angle++
|
2018-06-17 11:44:32 +02:00
|
|
|
if s.angle == maxAngle {
|
|
|
|
s.angle = 0
|
|
|
|
}
|
2015-01-13 15:03:37 +01:00
|
|
|
}
|
|
|
|
|
2015-01-29 15:59:55 +01:00
|
|
|
type Sprites struct {
|
|
|
|
sprites []*Sprite
|
|
|
|
num int
|
|
|
|
}
|
2015-01-13 15:03:37 +01:00
|
|
|
|
2016-10-26 19:43:43 +02:00
|
|
|
func (s *Sprites) Update() {
|
2018-06-17 15:05:34 +02:00
|
|
|
for i := 0; i < s.num; i++ {
|
|
|
|
s.sprites[i].Update()
|
2015-01-13 15:03:37 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-01-29 15:59:55 +01:00
|
|
|
const (
|
|
|
|
MinSprites = 0
|
2016-07-16 12:17:57 +02:00
|
|
|
MaxSprites = 50000
|
2015-01-29 15:59:55 +01:00
|
|
|
)
|
|
|
|
|
2020-05-30 14:29:45 +02:00
|
|
|
type Game struct {
|
2021-07-09 19:03:48 +02:00
|
|
|
touchIDs []ebiten.TouchID
|
|
|
|
sprites Sprites
|
|
|
|
op ebiten.DrawImageOptions
|
|
|
|
inited bool
|
2020-05-30 14:29:45 +02:00
|
|
|
}
|
2018-03-14 17:16:41 +01:00
|
|
|
|
2020-05-30 14:29:45 +02:00
|
|
|
func (g *Game) init() {
|
|
|
|
defer func() {
|
|
|
|
g.inited = true
|
|
|
|
}()
|
2018-03-14 17:16:41 +01:00
|
|
|
|
2020-05-30 14:29:45 +02:00
|
|
|
g.sprites.sprites = make([]*Sprite, MaxSprites)
|
|
|
|
g.sprites.num = 500
|
|
|
|
for i := range g.sprites.sprites {
|
2018-01-29 20:19:16 +01:00
|
|
|
w, h := ebitenImage.Size()
|
|
|
|
x, y := rand.Intn(screenWidth-w), rand.Intn(screenHeight-h)
|
|
|
|
vx, vy := 2*rand.Intn(2)-1, 2*rand.Intn(2)-1
|
|
|
|
a := rand.Intn(maxAngle)
|
2020-05-30 14:29:45 +02:00
|
|
|
g.sprites.sprites[i] = &Sprite{
|
2018-01-29 20:19:16 +01:00
|
|
|
imageWidth: w,
|
|
|
|
imageHeight: h,
|
|
|
|
x: x,
|
|
|
|
y: y,
|
|
|
|
vx: vx,
|
|
|
|
vy: vy,
|
|
|
|
angle: a,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-07-09 19:03:48 +02:00
|
|
|
func (g *Game) leftTouched() bool {
|
|
|
|
for _, id := range g.touchIDs {
|
2019-10-17 18:56:54 +02:00
|
|
|
x, _ := ebiten.TouchPosition(id)
|
|
|
|
if x < screenWidth/2 {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2021-07-09 19:03:48 +02:00
|
|
|
func (g *Game) rightTouched() bool {
|
|
|
|
for _, id := range g.touchIDs {
|
2019-10-17 18:56:54 +02:00
|
|
|
x, _ := ebiten.TouchPosition(id)
|
|
|
|
if x >= screenWidth/2 {
|
|
|
|
return true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false
|
|
|
|
}
|
|
|
|
|
2020-10-04 10:42:54 +02:00
|
|
|
func (g *Game) Update() error {
|
2020-05-30 14:29:45 +02:00
|
|
|
if !g.inited {
|
|
|
|
g.init()
|
|
|
|
}
|
2021-07-09 19:03:48 +02:00
|
|
|
g.touchIDs = ebiten.AppendTouchIDs(g.touchIDs[:0])
|
2020-05-30 14:29:45 +02:00
|
|
|
|
2020-06-28 15:22:52 +02:00
|
|
|
// Decrease the number of the sprites.
|
2021-07-09 19:03:48 +02:00
|
|
|
if ebiten.IsKeyPressed(ebiten.KeyArrowLeft) || g.leftTouched() {
|
2020-05-30 14:29:45 +02:00
|
|
|
g.sprites.num -= 20
|
|
|
|
if g.sprites.num < MinSprites {
|
|
|
|
g.sprites.num = MinSprites
|
2015-01-29 15:59:55 +01:00
|
|
|
}
|
|
|
|
}
|
2018-01-29 20:19:16 +01:00
|
|
|
|
2020-06-28 15:22:52 +02:00
|
|
|
// Increase the number of the sprites.
|
2021-07-09 19:03:48 +02:00
|
|
|
if ebiten.IsKeyPressed(ebiten.KeyArrowRight) || g.rightTouched() {
|
2020-05-30 14:29:45 +02:00
|
|
|
g.sprites.num += 20
|
|
|
|
if MaxSprites < g.sprites.num {
|
|
|
|
g.sprites.num = MaxSprites
|
2015-01-29 15:59:55 +01:00
|
|
|
}
|
|
|
|
}
|
2018-01-29 20:19:16 +01:00
|
|
|
|
2020-05-30 14:29:45 +02:00
|
|
|
g.sprites.Update()
|
|
|
|
return nil
|
|
|
|
}
|
2018-01-29 20:19:16 +01:00
|
|
|
|
2020-05-30 14:29:45 +02:00
|
|
|
func (g *Game) Draw(screen *ebiten.Image) {
|
2018-01-29 20:19:16 +01:00
|
|
|
// Draw each sprite.
|
|
|
|
// DrawImage can be called many many times, but in the implementation,
|
|
|
|
// the actual draw call to GPU is very few since these calls satisfy
|
|
|
|
// some conditions e.g. all the rendering sources and targets are same.
|
|
|
|
// For more detail, see:
|
2020-10-03 19:35:13 +02:00
|
|
|
// https://pkg.go.dev/github.com/hajimehoshi/ebiten/v2#Image.DrawImage
|
2017-05-27 21:09:04 +02:00
|
|
|
w, h := ebitenImage.Size()
|
2020-05-30 14:29:45 +02:00
|
|
|
for i := 0; i < g.sprites.num; i++ {
|
|
|
|
s := g.sprites.sprites[i]
|
|
|
|
g.op.GeoM.Reset()
|
|
|
|
g.op.GeoM.Translate(-float64(w)/2, -float64(h)/2)
|
|
|
|
g.op.GeoM.Rotate(2 * math.Pi * float64(s.angle) / maxAngle)
|
|
|
|
g.op.GeoM.Translate(float64(w)/2, float64(h)/2)
|
|
|
|
g.op.GeoM.Translate(float64(s.x), float64(s.y))
|
|
|
|
screen.DrawImage(ebitenImage, &g.op)
|
2015-01-13 15:03:37 +01:00
|
|
|
}
|
2018-09-29 19:27:33 +02:00
|
|
|
msg := fmt.Sprintf(`TPS: %0.2f
|
2018-12-22 17:23:38 +01:00
|
|
|
FPS: %0.2f
|
2015-01-29 15:59:55 +01:00
|
|
|
Num of sprites: %d
|
2020-05-30 14:29:45 +02:00
|
|
|
Press <- or -> to change the number of sprites`, ebiten.CurrentTPS(), ebiten.CurrentFPS(), g.sprites.num)
|
2017-05-29 15:56:56 +02:00
|
|
|
ebitenutil.DebugPrint(screen, msg)
|
2020-05-30 14:29:45 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
func (g *Game) Layout(outsideWidth, outsideHeight int) (int, int) {
|
|
|
|
return screenWidth, screenHeight
|
2015-01-13 15:03:37 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
func main() {
|
2020-05-30 14:29:45 +02:00
|
|
|
ebiten.SetWindowSize(screenWidth*2, screenHeight*2)
|
|
|
|
ebiten.SetWindowTitle("Sprites (Ebiten Demo)")
|
|
|
|
if err := ebiten.RunGame(&Game{}); err != nil {
|
2015-01-13 15:03:37 +01:00
|
|
|
log.Fatal(err)
|
|
|
|
}
|
|
|
|
}
|