Uses of Class
mstar.MudPlayer

Uses of MudPlayer in
 

Methods in that return MudPlayer
 MudPlayer TinyMudParsePlayer.parse(java.lang.String s)
          Parses the player data that is returned from the collaborative environment and returns a MudPlayer class that represents the player.
 

Uses of MudPlayer in mstar
 

Methods in mstar that return MudPlayer
abstract  MudPlayer ParsePlayer.parse(java.lang.String s)
          Parses the player data that is returned from the collaborative environment and returns a MudPlayer class that represents the player.
 MudPlayer PlayerMap.getMudPlayer(MudPlayer p)
          Given a player find the player in the map.
 MudPlayer PlayerMap.getMudPlayer(int id)
          Given the id of a player in the map locate and return that player.
 MudPlayer PlayerMap.getMudPlayer(java.lang.String name)
          Locate a player with the given name.
 

Methods in mstar with parameters of type MudPlayer
 void PlayerMap.add(MudPlayer player)
          Adds a player to the map and writes the map back to disk.
 void PlayerMap.fastAdd(MudPlayer player)
          Adds a player to the map but does not write the maps to disk.
 MudPlayer PlayerMap.getMudPlayer(MudPlayer p)
          Given a player find the player in the map.
 boolean PlayerMap.playerExists(MudPlayer theMudPlayer)
          Determines if a MudPlayer in the map exists given another MudPlayer.
 

Constructors in mstar with parameters of type MudPlayer
PlayerMap.PlayerMap(MudPlayer player)
          Create a player map and add the specified player.