1 26 27 28 import org.objectweb.mobilitools.smi.api.*; 29 import org.objectweb.mobilitools.smi.goodies.BasicMobileObject; 30 import org.objectweb.mobilitools.smi.api.Agency; 31 import java.util.Properties ; 32 33 34 52 public class PingPong extends BasicMobileObject 53 { 54 String my_name; 55 56 57 public PingPong() 58 { 59 } 60 61 62 65 public String ping(PingPong agent) 66 { 67 return my_agency.getAgentInfo(agent).getName().toString() + " pings " + my_name; 68 } 69 70 71 75 76 79 public void afterBirth(AgentSystem agency, AgentInfo info, Object arg) 80 throws BadOperation 81 { 82 super.afterBirth(agency, info, arg); 83 my_name = info.getName().toString(); 84 try 85 { 86 my_agency.setLocalAgentProperty(this, "ping-pong", "yes"); 87 } 88 catch (BadOperation ex) 89 { 90 ex.printStackTrace(); 91 } 92 beforeResume(); 93 } 94 95 96 99 public void beforeResume() 100 { 101 Properties prop = new Properties (); 102 prop.put("ping-pong", "yes"); 103 Name[] list = my_agency.listLocalAgents(my_agency.makeAgentProfile(prop)); 104 for (int i = 0 ; i < list.length ; ++i) 105 { 106 AgentInfo info = my_agency.getAgentInfo(list[i]); 107 try 108 { 109 PingPong agent = (PingPong)my_agency.getAgentInfo(list[i]).getAgent(); 110 if (agent != this) 111 { 112 System.out.println(agent.ping(this)); 113 } 114 } 115 catch (ClassCastException ex) 116 { 117 System.err.println(my_name + " gets " + ex + " with agent " + info.getName()); 118 } 119 } 120 } 121 122 123 126 public void afterMove(AgentSystem agency, Location location, String place) 127 throws BadOperation 128 { 129 super.afterMove(agency, location, place); 130 beforeResume(); 131 } 132 } 133
| Popular Tags
|