generated from hummel/Bank-System
83 lines
1.8 KiB
Java
83 lines
1.8 KiB
Java
package tpe.exceptions.roboter;
|
|
|
|
import java.util.Arrays;
|
|
import java.util.stream.Collectors;
|
|
|
|
import tpe.exceptions.RobotException;
|
|
import tpe.exceptions.RobotIllegalStateException;
|
|
import tpe.exceptions.RobotMagicValueException;
|
|
|
|
|
|
public abstract class Robots implements Robot{
|
|
protected String name;
|
|
protected RobotException error;
|
|
protected boolean powerStatus;
|
|
/**
|
|
* Legt fest das ein Roboter standardmäßig einen Namen hat und setzt den Power Knopf bei Erstellung auf aus
|
|
* @param name
|
|
*/
|
|
public Robots(String name) {
|
|
this.name = name;
|
|
this.powerStatus = false;
|
|
}
|
|
@Override
|
|
public abstract int getId();
|
|
@Override
|
|
public String getName() {
|
|
return name;
|
|
}
|
|
@Override
|
|
public void triggerPowerSwitch() {
|
|
if(powerStatus==false)
|
|
powerStatus=true;
|
|
else
|
|
powerStatus=false;
|
|
|
|
}
|
|
@Override
|
|
public boolean isPowerOn() {
|
|
|
|
return powerStatus;
|
|
}
|
|
@Override
|
|
public RobotException getLastException() {
|
|
return error;
|
|
}
|
|
public boolean checkRobotMagicValueException(int[] zahlen) {
|
|
boolean error=false;
|
|
for(int i = 0; i < zahlen.length; i++) {
|
|
if(zahlen[i]==42) {
|
|
error=true;
|
|
}
|
|
}
|
|
return error;
|
|
}
|
|
public String speak(int[] zahlen) throws RobotException {
|
|
|
|
if(powerStatus==false)
|
|
{
|
|
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
|
|
if(zahlen[0]<zahlen[zahlen.length-1])
|
|
{
|
|
return Arrays.stream(zahlen)
|
|
.mapToObj(String::valueOf)
|
|
.collect(Collectors.joining(", "));
|
|
}
|
|
else
|
|
{
|
|
return Arrays.stream(zahlen)
|
|
.mapToObj(String::valueOf)
|
|
.collect(Collectors.joining("; "));
|
|
}
|
|
|
|
|
|
}
|
|
@Override
|
|
public abstract int[] think(int[] zahlen) throws RobotException;
|
|
}
|