view src/main/java/alice/test/topology/aquarium/SendLocation.java @ 613:ae13e4854c55 dispose

j3d maven repository
author suruga
date Mon, 24 Jul 2017 19:12:10 +0900
parents aefbe41fcf12
children 15eeb439830c
line wrap: on
line source

package alice.test.topology.aquarium;

import alice.codesegment.CodeSegment;
import alice.datasegment.CommandType;
import alice.datasegment.Receiver;


public class SendLocation extends CodeSegment {

    private Receiver position = ids.create(CommandType.PEEK);
    float x;
    float y;
    float z;

    public SendLocation(float x,float y,float z){
        this.x = x;
        this.y = y;
        this.z = z;
        position.setKey("fish");
    }

    @Override
    public void run() {
        FishPoint fp = this.position.asClass(FishPoint.class);
        fp.setXYZ(fp.getX()+x, fp.getY()+y, fp.getZ()+z);
        ods.update("fish", fp);

    }

}