-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathecsBenchmark.cpp
More file actions
112 lines (90 loc) · 2.33 KB
/
Copy pathecsBenchmark.cpp
File metadata and controls
112 lines (90 loc) · 2.33 KB
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
#include "benchmark.h"
#include "../engine/ecs/registry.h"
#include "../util/log.h"
namespace P3D::Engine {
class ECSGetFromRegistryBenchmark : public Benchmark {
public:
ECSGetFromRegistryBenchmark() : Benchmark("ecsGetFromRegistryBenchmark") {}
Registry64 registry;
std::vector<int> v{1, 2, 3, 4, 5, 6};
int errors = 0;
struct A : public RC {
int i;
A(int i) : i(i) {}
};
void init() override {
int amount = 1000000;
for(int i = 0; i < amount; i++) {
auto id = registry.create();
registry.add<A>(id, i);
}
}
void run() override {
int i = 0;
auto view = registry.view<A>();
for(auto entity : view) {
auto& comp = *registry.get<A>(entity);
if(comp.i != i)
errors++;
i++;
}
}
void printResults(double timeTaken) override {
Log::error("Amount of errors: %d\n", errors);
}
} ecsGetFromRegistryBenchmark;
class ECSGetFromViewConjunctionBenchmark : public Benchmark {
public:
ECSGetFromViewConjunctionBenchmark() : Benchmark("ecsGetFromViewConjunctionBenchmark") {}
Registry64 registry;
int errors = 0;
struct A : public RC { int i; A(int i) : i(i) {} };
void init() override {
int amount = 1000000;
for(int i = 0; i < amount; i++) {
auto id = registry.create();
registry.add<A>(id, i);
}
}
void run() override {
int i = 0;
auto view = registry.view<Registry64::conj<A>>();
for(auto entity : view) {
auto comp = view.get<A>(entity);
if(comp->i != i)
errors++;
i++;
}
}
void printResults(double timeTaken) override {
Log::error("Amount of errors: %d\n", errors);
}
} ecsGetFromViewConjunctionBenchmark;
/*class ECSGetFromViewDisjunctionBenchmark : public Benchmark {
public:
ECSGetFromViewDisjunctionBenchmark() : Benchmark("ecsGetFromViewDisjunctionBenchmark") {}
Registry64 registry;
int errors = 0;
struct A : public RefCountable { int i; A(int i) : i(i) {} };
void init() override {
int amount = 1000000;
for (int i = 0; i < amount; i++) {
auto id = registry.create();
registry.add<A>(id, i);
}
}
void run() override {
int i = 0;
auto view = registry.view(Registry64::disjunction<A>());
for (auto entity : view) {
auto comp = view.get<A>(entity);
if (comp->i != i)
errors++;
i++;
}
}
void printResults(double timeTaken) override {
Log::error("Amount of errors: %d\n", errors);
}
} ecsGetFromViewDisjunctionBenchmark;*/
};