1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package nl.tudelft.goal.ut2004.visualizer.util;
18
19 import java.util.ArrayList;
20 import java.util.Collection;
21
22 import cz.cuni.amis.pogamut.unreal.bot.IUnrealBot;
23
24
25
26
27
28
29
30 public class SelectableIUnrealBot {
31
32 IUnrealBot bot;
33
34 public SelectableIUnrealBot(IUnrealBot bot) {
35 this.bot = bot;
36 }
37
38 public IUnrealBot getIUnrealBot() {
39 return bot;
40 }
41
42 @Override
43 public String toString() {
44 return bot.getName();
45 }
46
47 public static Collection<SelectableIUnrealBot> fromCollection(
48 Collection<? extends IUnrealBot> agents) {
49
50 Collection<SelectableIUnrealBot> ret = new ArrayList<SelectableIUnrealBot>(
51 agents.size());
52
53 for (IUnrealBot bot : agents) {
54 ret.add(new SelectableIUnrealBot(bot));
55 }
56
57 return ret;
58 }
59
60 }