All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.barrybecker4.game.twoplayer.go.board.elements.position.GoBoardPositionSet Maven / Gradle / Ivy

There is a newer version: 1.6
Show newest version
/** Copyright by Barry G. Becker, 2000-2011. Licensed under MIT License: http://www.opensource.org/licenses/MIT  */
package com.barrybecker4.game.twoplayer.go.board.elements.position;

import java.util.LinkedHashSet;
import java.util.Set;

/**
 *  A set of GoBoardPositions.
 *
 *  @author Barry Becker
 */
public class GoBoardPositionSet extends LinkedHashSet {

    public GoBoardPositionSet() {}

    public GoBoardPositionSet(Set set) {
        super(set);
    }

    /**
     * Note: there is no concept of order.
     * @return one of the members
     */
    public GoBoardPosition getOneMember() {
        return iterator().next();
    }

    /**
     * Set the visited flag back to false for a set of stones.
     * Returns the whole list of stones to unvisited state.
     */
    public void unvisitPositions() {
        for (GoBoardPosition position : this) {
            position.setVisited(false);
        }
    }

    /**
     * pretty print a list of all the current groups (and the strings they contain)
     * @return string form of list of stones.
     */
    String toString(String title) {
        StringBuilder buf = new StringBuilder(title);
        buf.append("\n  ");
        for (GoBoardPosition stone : this) {
            buf.append(stone.toString()).append(", ");
        }
        return buf.substring(0, buf.length() - 2);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy