ebiten/examples/sprites/main.go

177 lines
3.9 KiB
Go
Raw Normal View History

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.
// +build example jsgo
2015-01-13 15:03:37 +01:00
package main
import (
"bytes"
2015-01-13 15:03:37 +01:00
"fmt"
"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
"github.com/hajimehoshi/ebiten"
"github.com/hajimehoshi/ebiten/ebitenutil"
"github.com/hajimehoshi/ebiten/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 (
ebitenImage *ebiten.Image
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
2016-10-27 17:39:55 +02:00
} else if screenWidth <= s.x+s.imageWidth {
s.x = 2*(screenWidth-s.imageWidth) - s.x
s.vx = -s.vx
2015-01-13 15:03:37 +01:00
}
if s.y < 0 {
s.y = -s.y
s.vy = -s.vy
2016-10-27 17:39:55 +02:00
} else if screenHeight <= s.y+s.imageHeight {
s.y = 2*(screenHeight-s.imageHeight) - s.y
2015-01-13 15:03:37 +01:00
s.vy = -s.vy
}
2017-05-27 21:09:04 +02:00
s.angle++
s.angle %= maxAngle
2015-01-13 15:03:37 +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() {
for _, sprite := range s.sprites {
2015-01-13 15:03:37 +01:00
sprite.Update()
}
}
const (
MinSprites = 0
MaxSprites = 50000
)
var (
sprites = &Sprites{make([]*Sprite, MaxSprites), 500}
op = &ebiten.DrawImageOptions{}
)
2018-01-29 20:19:16 +01:00
func init() {
img, _, err := image.Decode(bytes.NewReader(images.Ebiten_png))
2018-01-29 20:19:16 +01:00
if err != nil {
log.Fatal(err)
}
origEbitenImage, _ := ebiten.NewImageFromImage(img, ebiten.FilterDefault)
w, h := origEbitenImage.Size()
ebitenImage, _ = ebiten.NewImage(w, h, ebiten.FilterNearest)
2018-01-29 20:19:16 +01:00
op := &ebiten.DrawImageOptions{}
op.ColorM.Scale(1, 1, 1, 0.5)
ebitenImage.DrawImage(origEbitenImage, op)
2018-01-29 20:19:16 +01:00
for i := range sprites.sprites {
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)
sprites.sprites[i] = &Sprite{
imageWidth: w,
imageHeight: h,
x: x,
y: y,
vx: vx,
vy: vy,
angle: a,
}
}
}
2015-01-13 15:03:37 +01:00
func update(screen *ebiten.Image) error {
2018-01-29 20:19:16 +01:00
// Decrease the nubmer of the sprites.
if ebiten.IsKeyPressed(ebiten.KeyLeft) {
sprites.num -= 20
if sprites.num < MinSprites {
sprites.num = MinSprites
}
}
2018-01-29 20:19:16 +01:00
// Increase the nubmer of the sprites.
if ebiten.IsKeyPressed(ebiten.KeyRight) {
sprites.num += 20
if MaxSprites < sprites.num {
sprites.num = MaxSprites
}
}
2018-01-29 20:19:16 +01:00
2015-01-13 15:03:37 +01:00
sprites.Update()
if ebiten.IsRunningSlowly() {
return nil
}
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:
// https://godoc.org/github.com/hajimehoshi/ebiten#Image.DrawImage
2017-05-27 21:09:04 +02:00
w, h := ebitenImage.Size()
for i := 0; i < sprites.num; i++ {
s := sprites.sprites[i]
2017-05-25 15:50:47 +02:00
op.GeoM.Reset()
2017-05-27 21:09:04 +02:00
op.GeoM.Translate(-float64(w)/2, -float64(h)/2)
op.GeoM.Rotate(2 * math.Pi * float64(s.angle) / maxAngle)
op.GeoM.Translate(float64(w)/2, float64(h)/2)
op.GeoM.Translate(float64(s.x), float64(s.y))
screen.DrawImage(ebitenImage, op)
2015-01-13 15:03:37 +01:00
}
msg := fmt.Sprintf(`FPS: %0.2f
Num of sprites: %d
Press <- or -> to change the number of sprites`, ebiten.CurrentFPS(), sprites.num)
2017-05-29 15:56:56 +02:00
ebitenutil.DebugPrint(screen, msg)
2015-01-13 15:03:37 +01:00
return nil
}
func main() {
if err := ebiten.Run(update, screenWidth, screenHeight, 2, "Sprites (Ebiten Demo)"); err != nil {
log.Fatal(err)
}
}