Mercurial > hg > Database > Alice
view src/main/java/alice/test/topology/aquarium/fx/SetTranslate.java @ 467:6e304a7a60e7 dispose
remove white space
author | sugi |
---|---|
date | Sat, 22 Nov 2014 12:08:24 +0900 |
parents | aefbe41fcf12 |
children | c9175c310987 |
line wrap: on
line source
package alice.test.topology.aquarium.fx; import javafx.application.Platform; import javafx.geometry.Point3D; import javafx.scene.Group; import alice.codesegment.CodeSegment; import alice.datasegment.CommandType; import alice.datasegment.Receiver; public class SetTranslate extends CodeSegment { private Receiver info = ids.create(CommandType.TAKE); // object instance private Receiver info1 = ids.create(CommandType.TAKE); // absolute fish position value private Receiver info2 = ids.create(CommandType.PEEK); // median private boolean executed = false; public SetTranslate(String key) { info.setKey(key); info1.setKey(key+"absoluteP"); info2.setKey("median"); } @Override public void run() { if (!executed) { executed = true; new SendDataOthers(info1, info1.key); // javafx's Scene can be accessed only FX application thread. Platform.runLater(this); } else { Group fish = info.asClass(Group.class); FishInfo fp = info1.asClass(FishInfo.class); int median = info2.asInteger(); fish.setRotate(fp.rotate); fish.setRotationAxis(new Point3D(fp.rolX,fp.rolY,fp.rolZ)); fish.setTranslateX(fp.getX() - median); fish.setTranslateY(fp.getY()); fish.setTranslateZ(fp.getZ()); ods.flip(info); executed = false; new SetTranslate(info.key); } } }