blob: 71fd39dddcbd1bcb92e4013233920e59d0e82258 (
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
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
|
package ch.asynk.tankontank.engine;
import java.util.Set;
import java.util.LinkedHashSet;
import java.util.Collection;
public class TileSet extends LinkedHashSet<Tile> implements Board.TileCollection
{
private final Board board;
private int overlay;
public TileSet(Board board, int overlay, int n)
{
super(n);
this.board = board;
this.overlay = overlay;
}
public Tile first()
{
return iterator().next();
}
public void show()
{
enable(overlay, true);
}
public void hide()
{
enable(overlay, false);
}
public void enable(int i, boolean enable)
{
for (Tile tile : this)
board.enableOverlayOn(tile, i, enable);
}
public void getPawns(Collection<Pawn> pawns)
{
pawns.clear();
for (Tile tile : this)
pawns.add(tile.getTopPawn());
}
public int fromNodes(Collection<SearchBoard.Node> nodes)
{
clear();
for (SearchBoard.Node node : nodes) {
Tile tile = board.getTile(node.col, node.row);
add(tile);
}
return size();
}
}
|