-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathbenchmarks_test.go
133 lines (119 loc) · 3.32 KB
/
benchmarks_test.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
package ecs_test
import (
"fmt"
"math/rand"
"testing"
"github.com/andygeiss/ecs"
)
func BenchmarkEntityManager_Get_With_1_Entity_Id_Found(b *testing.B) {
m := ecs.NewEntityManager()
m.Add(ecs.NewEntity("foo", nil))
for i := 0; i < b.N; i++ {
m.Get("foo")
}
}
func BenchmarkEntityManager_Get_With_1000_Entities_Id_Not_Found(b *testing.B) {
m := ecs.NewEntityManager()
for i := 0; i < 1000; i++ {
m.Add(ecs.NewEntity("foo", nil))
}
for i := 0; i < b.N; i++ {
m.Get("1000")
}
}
func BenchmarkEntityManager_FilterByMask_With_1000_Entities(b *testing.B) {
m := ecs.NewEntityManager()
for i := 0; i < 1000; i++ {
m.Add(ecs.NewEntity(fmt.Sprintf("%d", i), []ecs.Component{
&mockComponent{name: "position", mask: 1},
&mockComponent{name: "size", mask: 2},
&mockComponent{name: "velocity", mask: 3},
}))
}
for i := 0; i < b.N; i++ {
m.FilterByMask(1 | 2 | 3)
}
}
func BenchmarkEntityManager_FilterByNames_With_1000_Entities(b *testing.B) {
m := ecs.NewEntityManager()
for i := 0; i < 1000; i++ {
m.Add(ecs.NewEntity(fmt.Sprintf("%d", i), []ecs.Component{
&mockComponent{name: "position", mask: 1},
&mockComponent{name: "size", mask: 2},
&mockComponent{name: "velocity", mask: 3},
}))
}
for i := 0; i < b.N; i++ {
m.FilterByNames("position", "size", "velocity")
}
}
func BenchmarkEngine_Run(b *testing.B) {
entityCounts := []int{100, 1000, 10000}
systemCounts := []int{1, 2, 4}
for _, systemCount := range systemCounts {
for _, entityCount := range entityCounts {
b.Run(fmt.Sprintf("%d system(s) with %d entities", systemCount, entityCount), func(b *testing.B) {
b.ResetTimer()
em := ecs.NewEntityManager()
em.Add(generateEntities(entityCount)...)
sm := ecs.NewSystemManager()
sm.Add(generateUseAllEntitiesSystems(systemCount)...)
engine := ecs.NewDefaultEngine(em, sm)
engine.Setup()
defer engine.Teardown()
for i := 0; i < b.N; i++ {
engine.Run()
}
})
}
}
}
/*
_ _ _
_ _| |_(_) |___
| | | | __| | / __|
| |_| | |_| | \__ \
\__,_|\__|_|_|___/
*/
func generateEntities(count int) []*ecs.Entity {
out := make([]*ecs.Entity, count)
for i := 0; i < count; i++ {
out[i] = ecs.NewEntity(
fmt.Sprintf("e%d", rand.Uint64()),
[]ecs.Component{
&mockComponent{mask: 1},
},
)
}
return out
}
func generateUseAllEntitiesSystems(count int) []ecs.System {
out := make([]ecs.System, count)
for i := 0; i < count-1; i++ {
out[i] = &mockupUseAllEntitiesSystem{}
}
out[count-1] = &mockupShouldStopSystem{}
return out
}
// mockupUseAllEntitiesSystem works on all entities from the defaultEntityManager which represents the worst-case scenario for performance.
type mockupUseAllEntitiesSystem struct{}
func (s *mockupUseAllEntitiesSystem) Process(entityManager ecs.EntityManager) (state int) {
for range entityManager.FilterByMask(1) {
}
return ecs.StateEngineContinue
}
func (s *mockupUseAllEntitiesSystem) Setup() {
}
func (s *mockupUseAllEntitiesSystem) Teardown() {
}
// mockupShouldStopSystem is the last System in the queue and should stop the defaultEngine.
type mockupShouldStopSystem struct{}
func (s *mockupShouldStopSystem) Process(entityManager ecs.EntityManager) (state int) {
for range entityManager.FilterByMask(1) {
}
return ecs.StateEngineStop
}
func (s *mockupShouldStopSystem) Setup() {
}
func (s *mockupShouldStopSystem) Teardown() {
}