summaryrefslogtreecommitdiffstats
path: root/src/jrummikub/model/StoneSet.java
blob: ba966252e28aa23cd4cd57313295ef1e51eb4535 (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
84
85
86
87
88
89
90
91
92
package jrummikub.model;

import java.util.ArrayList;
import java.util.Collections;
import java.util.Iterator;
import java.util.List;

import sun.reflect.generics.reflectiveObjects.NotImplementedException;

import jrummikub.util.Pair;

/** Class managing {@link Stone}s joined together to form sets */
public class StoneSet implements Iterable<Stone> {
	private List<Stone> stones;

	public StoneSet(Stone stone) {
	  stones = Collections.singletonList(stone);
	}

	public StoneSet(List<Stone> stones) {
	  this.stones = new ArrayList<Stone>(stones);
	}

	/** Test for rule conflict within the StoneSet */
	public boolean isValid() {
		return false;

	}

	/**
	 * Splits the StoneSet at a specified {@link Position} and returns two new
	 * Stone Sets
	 * 
	 * @param position
	 *            Splitting {@link Position}
	 */
	public Pair<StoneSet, StoneSet> splitAt(int position) {
		//Exception falls falscher index
		if (position==0||position==stones.size()){
			
		}
		else {
			
		}
		return null;

	}

	/**
	 * Joins StoneSet to another StoneSet and returns the resulting new StoneSet
	 * 
	 * @param other
	 *            StoneSet to be joined to active StoneSet
	 */
	public StoneSet join(StoneSet other) {
		return null;

	}

	public int size() {
		return stones.size();
	}

	public Stone get(int i) {
		return stones.get(i);
	}

  @Override
  public Iterator<Stone> iterator() {
    final Iterator<Stone> it = stones.iterator();
    
    return new Iterator<Stone>(){

      @Override
      public boolean hasNext() {
        return it.hasNext();
      }

      @Override
      public Stone next() {
        return it.next();
      }

      @Override
      public void remove() {
        // removing stones is impossible
        
        throw new NotImplementedException();        
      }};
  }

}