我正在研究使用RMI移动BALLS的分布式动画。
我的目标是以某种方式移动多个球,以便多个客户观察球的相同运动/位置,我使用的球对象是远程对象。
当球只有一个时,球正在移动,但是当我试图增加球的数量时,我失败了。
这里有一些代码片段,我应用循环来处理多个球:
在服务器上:
b[0] = new BallImpl(0, 50, 2, 3 ,Color.YELLOW,20);
b[1] = new BallImpl(50, 50, 4, 3,Color.BLUE,10);
b[2] = new BallImpl(40, 40, 5, 5, Color.PINK,30);
b[3] = new BallImpl(60, 70, 4, 6, Color.GREEN,40);
for (int i = 0; i < currentNumBalls; i++) {
Naming.rebind ("rmi://localhost/BouncingBall", b[i]); // registers Ball object
System.out.println ("remote ball object registered.");
}
在客户端网站上:
我如何查找远程球:
for (int i = 0; i < currentNumBalls; i++) {
try {
this.aBall[i] = (Ball) Naming.lookup("rmi://localhost/BouncingBall");
} catch (Exception e) {
System.out.println("Exception: " + e);
}
}
start();
那就是移动球代码:
public void moveballs() {
for (int i = 0; i < currentNumBalls; i++) {
try {
aBall[i].setBounds(pit.getWidth(), pit.getHeight());
aBall[i].move();
pit.repaint();
} catch (Exception e) {
e.printStackTrace();
}
}
}
这就是绘图代码:
public void drawballs(Graphics g) {
for (int i = 0; i < currentNumBalls; i++) {
try {
g.setColor(aBall[i].getColor());
g.fillOval(aBall[i].getX(), aBall[i].getY(), aBall[i].getradius(), aBall[i].getradius());
} catch (RemoteException e) {
e.printStackTrace();
}
}
}
有人可以指导我为什么我只能看到一个球在移动,其他球怎么样或者在这个设计中存在一些问题并且我以错误的方式使用RMI?或者推荐一些我可以实现目标的设计。
非常感谢,
jibby
答案 0 :(得分:0)
看起来你用相同的名字绑定所有球。你需要给他们不同的名字,如:
for (int i = 0; i < currentNumBalls; i++) {
Naming.rebind ("rmi://localhost/BouncingBall"+i, b[i]); //add index to the name
System.out.println ("remote ball object registered.");
}
然后在查找时,请使用:
for (int i = 0; i < currentNumBalls; i++) {
try {
this.aBall[i] = (Ball) Naming.lookup("rmi://localhost/BouncingBall"+i);
} catch (Exception e) {
System.out.println("Exception: " + e);
}
}