summaryrefslogtreecommitdiff
path: root/sim/src/TeamManager.h
blob: 4f6c0afb8a5b5c5077037f4c652679d65070e590 (plain)
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
#pragma once

#include <random>
#include <vector>

#include <entt/entity/registry.hpp>

#include <kurator/engine/Context.h>


namespace kurator
{
namespace sim
{


class TeamManager
{
public:
	using Team = std::vector<entt::entity>;
	TeamManager();
	void add(int team, entt::entity entity);
	entt::entity random(int exclude);
	void update(engine::Context& ctx);
private:
	std::vector<Team> teams;
	std::mt19937 generator;
};


}  // namespace sim
}  // namespace kurator