blob: 77652a6f40e63e386c8cbeff0846f609412352e2 (
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
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
|
package jrummikub.model;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;
import jrummikub.util.Pair;
/**
* Mock class for {@link Table}
*/
@SuppressWarnings("serial")
public class MockTable implements ITable {
/** */
public Map<Stone, StoneSet> findStoneSet = new HashMap<Stone, StoneSet>();
/** */
public boolean valid = false;
/** */
public MockTable clonedTable;
/** */
public List<Pair<StoneSet, Position>> sets = new ArrayList<Pair<StoneSet, Position>>();
@Override
public void pickUpStone(Stone stone) {
// TODO: Auto-generated method stub
}
@Override
public boolean isValid() {
return valid;
}
@Override
public void drop(StoneSet object, Position position) {
sets.add(new Pair<StoneSet, Position>(object, position));
}
@Override
public Position getPosition(StoneSet object) {
// TODO Auto-generated method stub
return null;
}
@Override
public boolean pickUp(StoneSet object) {
return false;
}
@Override
public Iterator<Pair<StoneSet, Position>> iterator() {
return sets.iterator();
}
@Override
public StoneSet findStoneSet(Stone stone) {
return findStoneSet.get(stone);
}
public MockTable clone() {
if (clonedTable == null)
return this;
return clonedTable;
}
@Override
public int getSize() {
return sets.size();
}
@Override
public boolean contains(StoneSet object) {
for (Pair<StoneSet, Position> set : sets) {
if (set.getFirst() == object) {
return true;
}
}
return false;
}
}
|