RoboterFabrik/Roboter/tpe/exceptions/roboter/C3PO.java

57 lines
1.1 KiB
Java

package tpe.exceptions.roboter;
import tpe.exceptions.RobotIllegalStateException;
import tpe.exceptions.RobotMagicValueException;
public class C3PO extends Robots {
RobotType robotType;
private int id;
StringBuilder sb = new StringBuilder();
public C3PO(String name, int id) {
super(name);
this.id = id;
this.name = name;
robotType = RobotType.C3PO;
}
@Override
public int[] think(int[] zahlen) throws RobotIllegalStateException, RobotMagicValueException {
if (!isPowerOn()) {
throw new RobotIllegalStateException("Der Roboter ist ausgeschaltet!", this.getName());
} else if (checkRobotMagicValueException(zahlen) == true) {
throw new RobotMagicValueException("Zahl 42 kann nicht verarbeitet werden!", this.getName());
} else {
int z;
for (int i = 1; i < zahlen.length; i++) {
z = zahlen[i];
int k = i;
while (k > 0 && zahlen[k - 1] < z) {
zahlen[k] = zahlen[k - 1];
k--;
}
zahlen[k] = z;
}
}
return zahlen;
}
public RobotType getRobotType() {
return this.robotType;
}
@Override
public int getId() {
return id;
}
}