42 lines
992 B
Java
42 lines
992 B
Java
import domain.C3PO;
|
|
import domain.R2D2;
|
|
import robot.exceptions.RobotException;
|
|
|
|
public class Main {
|
|
public static void main(String[] args) {
|
|
|
|
C3PO Herbert = new C3PO(0, "Herbert");
|
|
R2D2 Gudrun = new R2D2(0, "Gdurun");
|
|
int[] input = {6,5,4,3,2,1};
|
|
int[] input2 = input;
|
|
//Herbert.triggerPowerSwitch();
|
|
//Gudrun.triggerPowerSwitch();
|
|
|
|
try{
|
|
Herbert.speak(input);
|
|
}catch(RobotException re){
|
|
System.out.println(re);
|
|
}
|
|
|
|
try{
|
|
Gudrun.think(input2);
|
|
}catch(RobotException re){
|
|
System.out.println(re);
|
|
}
|
|
//System.out.println("Was neues ausgeben");
|
|
|
|
//just some testing
|
|
/*C3PO Herbert = new C3PO(0, "Herbert");
|
|
int[] input = {6,5,4,3,2,1};
|
|
Herbert.triggerPowerSwitch();
|
|
try{
|
|
String asString = Herbert.speak(input);
|
|
System.out.println(asString);
|
|
}catch(RobotException re){
|
|
System.out.println(re);
|
|
}
|
|
|
|
*/
|
|
}
|
|
}
|