我试图执行http://simbad.sourceforge.net/code/Example1.java,即:
package examples;
import simbad.gui.Simbad;
import simbad.sim.*;
import javax.vecmath.Vector3d;
import javax.vecmath.Vector3f;
public class Example1 {
/** Describe the robot */
static public class Robot extends Agent {
RangeSensorBelt sonars;
CameraSensor camera;
public Robot(Vector3d position, String name) {
super(position, name);
// Add camera
camera = RobotFactory.addCameraSensor(this);
// Add sonars
sonars = RobotFactory.addSonarBeltSensor(this);
}
/** This method is called by the simulator engine on reset. */
public void initBehavior() {
// nothing particular in this case
}
/** This method is call cyclically (20 times per second) by the simulator engine. */
public void performBehavior() {
// progress at 0.5 m/s
setTranslationalVelocity(0.5);
// frequently change orientation
if ((getCounter() % 100) == 0)
setRotationalVelocity(Math.PI / 2 * (0.5 - Math.random()));
// print front sonar every 100 frames
if (getCounter() % 100 == 0)
System.out
.println("Sonar num 0 = " + sonars.getMeasurement(0));
}
}
/** Describe the environement */
static public class MyEnv extends EnvironmentDescription {
public MyEnv() {
light1IsOn = true;
light2IsOn = false;
Wall w1 = new Wall(new Vector3d(9, 0, 0), 19, 1, this);
w1.rotate90(1);
add(w1);
Wall w2 = new Wall(new Vector3d(-9, 0, 0), 19, 2, this);
w2.rotate90(1);
add(w2);
Wall w3 = new Wall(new Vector3d(0, 0, 9), 19, 1, this);
add(w3);
Wall w4 = new Wall(new Vector3d(0, 0, -9), 19, 2, this);
add(w4);
Box b1 = new Box(new Vector3d(-3, 0, -3), new Vector3f(1, 1, 1),
this);
add(b1);
add(new Arch(new Vector3d(3, 0, -3), this));
add(new Robot(new Vector3d(0, 0, 0), "robot 1"));
}
}
public static void main(String[] args) {
// request antialising
System.setProperty("j3d.implicitAntialiasing", "true");
// create Simbad instance with given environment
Simbad frame = new Simbad(new MyEnv(), false);
}
}
我使用https://stackoverflow.com/a/20863447/8045544技术启动了Simbad 1.4。我还设法使用Eclipse IDE启动模拟器。但是当我尝试运行代码时,Simbad打开演示模型而不是我的Example1教程代码。 如果我使用命令提示符编译并运行程序:
javac Example1.java
java Example1
我收到错误:
Error: Could not find or load main class Example1
答案 0 :(得分:0)
您的Example1
位于examples
个包裹中。
您需要将Examples1.java
放在examples
文件夹中,然后从上面的一个文件夹中执行:
javac examples/Example1.java
java examples/Example1