view src/alice/test/topology/movement/CheckMyName.java @ 94:38f4021353c5 working

"setKey" is in the instance
author sugi
date Mon, 18 Jun 2012 17:10:23 +0900
parents 6601f8854126
children df786bf8f036
line wrap: on
line source

package alice.test.topology.movement;

import java.util.regex.Matcher;
import java.util.regex.Pattern;

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

public class CheckMyName extends CodeSegment {
	Receiver host = ids.create(CommandType.PEEK);
	Pattern pattern = Pattern.compile("^(node|cli)([0-9]+)$");
	
	
	@Override
	public void run(){
		
		String name = host.asString();
		Matcher matcher = pattern.matcher(name);
		
		matcher.find();
		String type = matcher.group(1);
		int cliNum = new Integer(matcher.group(2));
		
		if (type.equals("cli")){
			System.out.println("cli"+cliNum);
			
			MakeFrame frame =  new MakeFrame();
			
			MakeObject obj3 = new MakeObject(frame);
			frame.register(obj3);
			new CheckFishLocation(obj3,"fish3X");
			
			MakeObject obj = new MakeObject(frame);
			frame.register(obj);
			new CheckFishLocation(obj,"fish1X");
									
		}else if(type.equals("node")){
			System.out.println("node0");
			ods.update("local", "fish3X", 0);
			ods.update("local", "fish1X", -1000);
	
			
		}
	}
}