Merge remote-tracking branch 'origin/main'

This commit is contained in:
schrom01 2021-11-26 11:44:31 +01:00
commit 235798ff97
1 changed files with 17 additions and 2 deletions

View File

@ -94,7 +94,22 @@ public class SiedlerBoard extends HexBoard<Land, Settlement, Road, String> {
* @return the list with the adjacent {@link Land}s * @return the list with the adjacent {@link Land}s
*/ */
public List<Land> getLandsForCorner(Point corner) { public List<Land> getLandsForCorner(Point corner) {
//TODO: Implement. Point above = new Point(corner.x, corner.y + 2);
return Collections.emptyList(); Point below = new Point(corner.x, corner.y -2);
Land[] lands = new Land[3];
if (hasField(above)) {
lands[0] = getField(above);
lands[1] = getField(new Point(corner.x + 1, corner.y - 1));
lands[2] = getField(new Point(corner.x - 1, corner.y - 1));
}
else if (hasField(below)) {
lands[0] = getField(below);
lands[1] = getField(new Point(corner.x + 1, corner.y + 1));
lands[2] = getField(new Point(corner.x - 1, corner.y + 1));
}
else {
return Collections.emptyList();
}
return Collections.unmodifiableList(Arrays.asList(lands));
} }
} }