summaryrefslogtreecommitdiffstats
path: root/core/src/ch/asynk/tankontank/engine/PawnSet.java
blob: d06fdd2fabfcdaf9809789ae2c4f19872c22bc0d (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
package ch.asynk.tankontank.engine;

import java.util.Iterator;
import java.util.Collection;
import java.util.LinkedHashSet;

public class PawnSet extends LinkedHashSet<Pawn> implements Board.PawnCollection
{
    private final Board board;

    public PawnSet(Board board, int n)
    {
        super(n);
        this.board = board;
    }

    public Pawn first()
    {
        if (isEmpty()) return null;
        return iterator().next();
    }

    public void enable(int i, boolean enable)
    {
        for (Pawn pawn : this)
            pawn.enableOverlay(i, enable);
    }

    public void collectTiles(Board.TileCollection tiles)
    {
        tiles.clear();
        for (Pawn pawn : this)
            tiles.add(pawn.getTile());
    }

    public int fromNodes(Collection<SearchBoard.Node> nodes)
    {
        clear();
        for (SearchBoard.Node node : nodes) {
            Tile tile = board.getTile(node.col, node.row);
            Iterator<Pawn> pawns = tile.iterator();
            while(pawns.hasNext())
                add(pawns.next());
        }

        return size();
    }
}