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

86 lines
1.7 KiB
Java
Raw Normal View History

2022-12-27 11:09:41 +01:00
package tpe.exceptions.roboter;
2023-01-08 15:28:19 +01:00
//import java.util.*;
2022-12-27 11:09:41 +01:00
2023-01-08 15:28:19 +01:00
import tpe.exceptions.RobotException;
import tpe.exceptions.RobotIllegalStateException;
import tpe.exceptions.RobotMagicValueException;
2022-12-27 11:09:41 +01:00
2023-01-08 15:28:19 +01:00
public class C3PO extends Robots{
RobotType robotType;
// private RobotException lastException;
// private String name;
// private boolean powerSwitch;
private int id;
StringBuilder sb = new StringBuilder();
2022-12-27 11:09:41 +01:00
2023-01-08 15:28:19 +01:00
public C3PO(String name, int id) {
super(name);
this.id = id;
this.name = name;
robotType = RobotType.C3PO;
2022-12-27 11:09:41 +01:00
}
@Override
2023-01-08 15:28:19 +01:00
public String speak(int[] zahlen) throws RobotException {
for (int i = 0; i < zahlen.length; i++) {
sb.append(zahlen[i]);
if (i < zahlen.length - 1) {
sb.append(", ");
}
}
2022-12-27 11:09:41 +01:00
2023-01-08 15:28:19 +01:00
String output = sb.toString();
return output;
2022-12-27 11:09:41 +01:00
}
@Override
2023-01-08 15:28:19 +01:00
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;
/**
* hier wird die Zahl solange nach links getauscht bis die Zahl links nicht mehr kleiner
* ist als die Zahl rechts, oder die Zahl ganz links ist.
*/
while (k > 0 && zahlen[k - 1] < z) {
zahlen[k] = zahlen[k - 1];
k--;
}
zahlen[k] = z;
}
}
2022-12-27 11:09:41 +01:00
2023-01-08 15:28:19 +01:00
return zahlen;
}
2022-12-27 11:09:41 +01:00
2023-01-08 15:28:19 +01:00
public RobotType getRobotType() {
return this.robotType;
2022-12-27 11:09:41 +01:00
}
@Override
2023-01-08 15:28:19 +01:00
public int getId() {
return id;
2022-12-27 11:09:41 +01:00
}
}