-
-
Notifications
You must be signed in to change notification settings - Fork 660
/
main.go
199 lines (175 loc) · 4.47 KB
/
main.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
// Copyright 2018 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.
package main
import (
"bytes"
"fmt"
"image"
_ "image/png"
"log"
"math"
"math/rand"
"github.com/hajimehoshi/ebiten/v2"
"github.com/hajimehoshi/ebiten/v2/ebitenutil"
"github.com/hajimehoshi/ebiten/v2/examples/resources/images"
"github.com/hajimehoshi/ebiten/v2/inpututil"
)
const (
screenWidth = 1920
screenHeight = 1080
maxAngle = 256
)
var (
ebitenImage *ebiten.Image
)
func init() {
// Decode an image from the image file's byte slice.
img, _, err := image.Decode(bytes.NewReader(images.Ebiten_png))
if err != nil {
log.Fatal(err)
}
origEbitenImage := ebiten.NewImageFromImage(img)
s := origEbitenImage.Bounds().Size()
ebitenImage = ebiten.NewImage(s.X, s.Y)
op := &ebiten.DrawImageOptions{}
op.ColorScale.ScaleAlpha(0.5)
ebitenImage.DrawImage(origEbitenImage, op)
}
type Sprite struct {
imageWidth int
imageHeight int
x int
y int
vx int
vy int
angle int
}
func (s *Sprite) Update() {
s.x += s.vx
s.y += s.vy
if s.x < 0 {
s.x = -s.x
s.vx = -s.vx
} else if screenWidth <= s.x+s.imageWidth {
s.x = 2*(screenWidth-s.imageWidth) - s.x
s.vx = -s.vx
}
if s.y < 0 {
s.y = -s.y
s.vy = -s.vy
} else if screenHeight <= s.y+s.imageHeight {
s.y = 2*(screenHeight-s.imageHeight) - s.y
s.vy = -s.vy
}
s.angle++
s.angle %= maxAngle
}
type Sprites struct {
sprites []*Sprite
num int
}
func (s *Sprites) Update() {
for _, sprite := range s.sprites {
sprite.Update()
}
}
const (
MinSprites = 0
MaxSprites = 50000
)
type Game struct {
sprites Sprites
op ebiten.DrawImageOptions
inited bool
}
func (g *Game) init() {
defer func() {
g.inited = true
}()
g.sprites.sprites = make([]*Sprite, MaxSprites)
g.sprites.num = 500
for i := range g.sprites.sprites {
w, h := ebitenImage.Bounds().Dx(), ebitenImage.Bounds().Dy()
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)
g.sprites.sprites[i] = &Sprite{
imageWidth: w,
imageHeight: h,
x: x,
y: y,
vx: vx,
vy: vy,
angle: a,
}
}
}
func (g *Game) Update() error {
if !g.inited {
g.init()
}
if inpututil.IsKeyJustPressed(ebiten.KeyQ) {
return ebiten.Termination
}
// Decrease the number of the sprites.
if ebiten.IsKeyPressed(ebiten.KeyArrowLeft) {
g.sprites.num -= 20
if g.sprites.num < MinSprites {
g.sprites.num = MinSprites
}
}
// Increase the number of the sprites.
if ebiten.IsKeyPressed(ebiten.KeyArrowRight) {
g.sprites.num += 20
if MaxSprites < g.sprites.num {
g.sprites.num = MaxSprites
}
}
g.sprites.Update()
return nil
}
func (g *Game) Draw(screen *ebiten.Image) {
// 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://pkg.go.dev/github.com/hajimehoshi/ebiten/v2#Image.DrawImage
w, h := ebitenImage.Bounds().Dx(), ebitenImage.Bounds().Dy()
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)
}
msg := fmt.Sprintf(`TPS: %0.2f
FPS: %0.2f
Num of sprites: %d
Press <- or -> to change the number of sprites
Press Q to quit`, ebiten.ActualTPS(), ebiten.ActualFPS(), g.sprites.num)
ebitenutil.DebugPrint(screen, msg)
}
func (g *Game) Layout(outsideWidth, outsideHeight int) (int, int) {
return screenWidth, screenHeight
}
func main() {
ebiten.SetFullscreen(true)
ebiten.SetWindowTitle("Sprites HD (Ebitengine Demo)")
if err := ebiten.RunGame(&Game{}); err != nil {
log.Fatal(err)
}
}