1 26 27 28 import org.objectweb.mobilitools.smi.api.Agency; 29 import org.objectweb.mobilitools.smi.api.*; 30 import java.applet.*; 31 import java.io.*; 32 33 34 41 public class SmiTest implements MobileObject 42 { 43 44 String my_name; 45 46 boolean running; 47 48 transient Agency my_agency; 49 50 51 54 public SmiTest() 55 { 56 System.out.println("SmiTest default constructor"); 57 } 58 59 60 64 public SmiTest(Object arg) 65 { 66 System.out.println("SmiTest constructor with argument " + arg); 67 } 68 69 70 74 75 80 public void afterBirth(AgentSystem agency, AgentInfo entry, Object argument) 81 throws BadOperation 82 { 83 my_agency = (Agency)agency; 84 my_name = new String (entry.getName().identity()); 85 System.out.println("agent " + (new Name(entry.getName().getStringRepresentation())).toString()); 86 running = true; 87 playSound("12312.au"); 88 if (! confirm(my_name + ".afterBirth() is OK ([y]/n)?", true)) 89 { 90 throw new BadOperation(BadOperation.REJECTED, "Agent creation is denied."); 91 } 92 } 93 94 95 100 public void beforeMove(Location location, String place) 101 throws BadOperation 102 { 103 if (! confirm( 104 my_name 105 + ".beforeMove(" 106 + location.getRegion() + " " 107 + location.getAgency() + ", " 108 + place + ") is OK ([y]/n)?", 109 true)) 110 { 111 throw new BadOperation(BadOperation.REJECTED, "Agent move is denied."); 112 } 113 } 114 115 116 121 public void afterMove(AgentSystem agency, Location location, String place) 122 throws BadOperation 123 { 124 my_agency = (Agency)agency; 125 playSound("12312.au"); 126 if (!confirm( 127 my_name 128 + ".afterMove(" 129 + location.getRegion() + " " 130 + location.getAgency() + ", " 131 + place + ") is OK ([y]/n)?", 132 true)) 133 { 134 throw new BadOperation(BadOperation.REJECTED, "Agent re-installation is denied."); 135 } 136 } 137 138 139 143 public void afterMoveFailed( 144 Location location, 145 String place, 146 int reason, 147 String message) 148 { 149 playSound("12312.au"); 150 System.out.println( 151 my_name 152 + ".afterMoveFailed(" 153 + location.getRegion() + " " 154 + location.getAgency() + ", " 155 + place + ")"); 156 System.out.println("code " + String.valueOf(reason) + ": " + message); 157 } 158 159 160 163 public void beforeShutdown() 164 { 165 System.out.println(my_name + ".beforeShutdown()"); 166 } 167 168 169 172 public void beforeDeath() 173 { 174 System.out.println(my_name + ".beforeDeath()"); 175 } 176 177 178 182 public void beforeResume() 183 throws BadOperation 184 { 185 if (running) 186 { 187 throw new BadOperation(BadOperation.RUNNING, "Agent activity was already running."); 188 } 189 running = true; 190 System.out.println(my_name + ".resume()"); 191 } 192 193 194 198 public void beforeSuspend() 199 throws BadOperation 200 { 201 if (! running) 202 { 203 throw new BadOperation(BadOperation.RUNNING, "Agent activity was already suspended."); 204 } 205 running = false; 206 System.out.println(my_name + ".suspend()"); 207 } 208 209 210 214 215 222 boolean confirm(String message, boolean defaultYes) 223 { 224 try 225 { 226 System.out.print(message); 227 String reply = (new BufferedReader(new InputStreamReader(System.in))).readLine(); 228 return reply.equalsIgnoreCase("y") || (defaultYes && ! reply.equalsIgnoreCase("n")); 229 } 230 catch (IOException e) 231 { 232 e.printStackTrace(); 233 } 234 return defaultYes; 235 } 236 237 238 242 void playSound(String resourcename) 243 { 244 try 245 { 246 Applet.newAudioClip(getClass().getClassLoader().getResource(resourcename)).play(); 247 } 248 catch (Exception ex) 249 { 250 System.err.println("could not load and play audio resource " + resourcename + "\n" + ex); 251 252 } 253 } 254 } 255
| Popular Tags
|