/[projects]/miscJava/bukkit-minecraft-plugins/HoerupUtils/src/main/java/dk/thoerup/bukkit/hoeruputils/HomeCommand.java
ViewVC logotype

Diff of /miscJava/bukkit-minecraft-plugins/HoerupUtils/src/main/java/dk/thoerup/bukkit/hoeruputils/HomeCommand.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1684 by torben, Fri Jan 27 12:21:27 2012 UTC revision 1864 by torben, Mon Oct 15 13:39:03 2012 UTC
# Line 6  import java.io.IOException; Line 6  import java.io.IOException;
6  import org.bukkit.ChatColor;  import org.bukkit.ChatColor;
7  import org.bukkit.Location;  import org.bukkit.Location;
8  import org.bukkit.World;  import org.bukkit.World;
9    import org.bukkit.OfflinePlayer;
10  import org.bukkit.command.Command;  import org.bukkit.command.Command;
11  import org.bukkit.command.CommandExecutor;  import org.bukkit.command.CommandExecutor;
12  import org.bukkit.command.CommandSender;  import org.bukkit.command.CommandSender;
# Line 51  public class HomeCommand implements Comm Line 52  public class HomeCommand implements Comm
52                  String name = p.getName();                  String name = p.getName();
53    
54                  if ( command.getName().equals("home") ) {                  if ( command.getName().equals("home") ) {
55                            tpUser(p, name);
56                          String worldName = config.getString( name + ".world");                  }
57                          if (worldName != null) {                  if ( command.getName().equals("ophome") ) {
58                                  double yaw = config.getDouble( name + ".yaw", 0.0);                              if (args.length != 1) {
59                                  double pitch = config.getDouble( name + ".pitch", 0.0);                                  p.sendMessage("Usage: /ophome <player>");
60                                  double x = config.getDouble( name + ".x", 0.0);                                  return true;
61                                  double y = config.getDouble( name + ".y", 0.0);                          }
62                                  double z = config.getDouble( name + ".z", 0.0);                          if ( p.isOp() ) {
63                                    OfflinePlayer op = sender.getServer().getOfflinePlayer(args[0]);        
64                                  World world = p.getServer().getWorld(worldName);                                  if (op.hasPlayedBefore() == false && op.isOnline() == false) {
65                                  int blockX = (int) Math.floor(x);                                          sender.sendMessage("Player not found");                                
66                                  int blockZ = (int) Math.floor(z);                                  } else {
67                                  world.loadChunk(blockX, blockZ);                                                  tpUser(p, op.getName() );
68                                    }
                                 final Location loc = new Location( world, x, y, z, (float)yaw, (float)pitch);  
   
                                 Runnable r = new Runnable() {  
                                         public void run() {  
                                                 p.teleport(loc);  
                                         }  
                                 };  
                                 int tickCount = 2; // 2 ticks = 100ms  
   
                                 p.getServer().getScheduler().scheduleSyncDelayedTask(plugin, r, tickCount);  
   
69                          } else {                          } else {
70                                  p.sendMessage(ChatColor.YELLOW + "You haven't set a home yet!");                                  p.sendMessage("Only operators may use this command");
71                          }                          }
72                  }                  }
73    
# Line 100  public class HomeCommand implements Comm Line 90  public class HomeCommand implements Comm
90                                    
91                  return true;                  return true;
92          }          }
93            
94            private void tpUser(final Player p, String name) {
95                    String worldName = config.getString( name + ".world");
96                    if (worldName != null) {
97                            double yaw = config.getDouble( name + ".yaw", 0.0);    
98                            double pitch = config.getDouble( name + ".pitch", 0.0);
99                            double x = config.getDouble( name + ".x", 0.0);
100                            double y = config.getDouble( name + ".y", 0.0);
101                            double z = config.getDouble( name + ".z", 0.0);
102    
103                            World world = p.getServer().getWorld(worldName);
104                            int blockX = (int) Math.floor(x);
105                            int blockZ = (int) Math.floor(z);
106                            world.loadChunk(blockX, blockZ);        
107    
108                            final Location loc = new Location( world, x, y, z, (float)yaw, (float)pitch);
109    
110                            Runnable r = new Runnable() {
111                                    public void run() {
112                                            p.teleport(loc);
113                                    }
114                            };
115                            int tickCount = 2; // 2 ticks = 100ms
116    
117                            p.getServer().getScheduler().scheduleSyncDelayedTask(plugin, r, tickCount);
118    
119                    } else {
120                            p.sendMessage(ChatColor.YELLOW + "You haven't set a home yet!");
121                    }
122                    
123            }
124  }  }

Legend:
Removed from v.1684  
changed lines
  Added in v.1864

  ViewVC Help
Powered by ViewVC 1.1.20