Uses of Class
mstar.MudMap

Uses of MudMap in mstar
 

Methods in mstar that return MudMap
static MudMap MudMap.loadMap()
          Loads the MUD map from disk.
 MudMap Responder.getMap()
          Gets the map of the mud.
 

Methods in mstar with parameters of type MudMap
 void Responder.setMap(MudMap map)
          Sets the map of the mud.
 

Constructors in mstar with parameters of type MudMap
Responder.Responder(java.lang.String name, MudMap map)
          Creates a responder and sets the name of the robot to the specified name, and the map to the specified MudMap.
Responder.Responder(java.lang.String name, MudMap map, java.lang.String who)
          Creates a responder and sets the name of the robot to the specified name, the map to the specified MudMap, and who to the name of the character that the robot is responding to.
Responder.Responder(java.lang.String name, MudMap map, java.lang.String who, java.lang.String what)
          Creates a responder and sets the name of the robot to the specified name, the map to the specified MudMap, who to the name of the character that the robot is responding to, and what the character said to the robot.
Responder.Responder(java.lang.String name, MudMap map, java.lang.String who, java.lang.String what, java.io.DataInputStream in)
          Creates a responder and sets the name of the robot to the specified name, the map to the specified MudMap, who to the name of the character that the robot is responding to, what the character said to the robot, and the input stream that the robot can listen to the collaborative environment on.
Responder.Responder(java.lang.String name, MudMap map, java.lang.String who, java.lang.String what, java.io.DataInputStream in, java.io.PrintStream out)
          Creates a responder and sets the name of the robot to the specified name, the map to the specified MudMap, who to the name of the character that the robot is responding to, what the character said to the robot, the input stream that the robot can listen to the collaborative environment on, and the output stream that the robot can write to the collaborative environment on.
Responder.Responder(java.lang.String name, MudMap map, java.lang.String who, java.lang.String what, java.io.DataInputStream in, java.io.PrintStream out, java.util.Properties properties)
          Creates a responder and sets the name of the robot to the specified name, the map to the specified MudMap, who to the name of the character that the robot is responding to, what the character said to the robot, the input stream that the robot can listen to the collaborative environment on, the output stream that the robot can write to the collaborative environment on, and the properties that were set for the robot when it started.