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

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

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

revision 1772 by torben, Tue Apr 3 20:34:54 2012 UTC revision 1773 by torben, Thu Apr 5 12:37:13 2012 UTC
# Line 2  package dk.thoerup.bukkit.hoeruputils; Line 2  package dk.thoerup.bukkit.hoeruputils;
2    
3    
4  import java.util.HashMap;  import java.util.HashMap;
5    import java.util.List;
6  import java.util.Set;  import java.util.Set;
7  import java.util.TreeMap;  import java.util.TreeMap;
8  import java.util.TreeSet;  import java.util.TreeSet;
# Line 35  public class SnitchingChest  implements Line 36  public class SnitchingChest  implements
36                    
37          HashMap<String, ItemCount> contentMap = new HashMap<String, ItemCount>();          HashMap<String, ItemCount> contentMap = new HashMap<String, ItemCount>();
38                    
39          HashMap<Location,String> chestMap = new HashMap<Location, String>();          HashMap<Location,SnitchingChestBean> chestMap = new HashMap<Location, SnitchingChestBean>();
40    
41                    
42          HoerupUtilsPlugin plugin;          HoerupUtilsPlugin plugin;
43          Server server;          Server server;
44                    
45          public SnitchingChest(HoerupUtilsPlugin plugin) {          public SnitchingChest(HoerupUtilsPlugin plugin, Runnable r) {
46                  this.plugin = plugin;                  this.plugin = plugin;
47                  server = plugin.getServer();                  server = plugin.getServer();
48                                    try {
49                  loadChests();                          loadChests();
50                    } catch (Exception e) {
51                            e.printStackTrace();
52                            //r.run();
53                            loadChests();
54                    }
55          }          }
56                    
57    
# Line 69  public class SnitchingChest  implements Line 75  public class SnitchingChest  implements
75                                    
76                  Location loc2 = getNeighborChest(loc);                  Location loc2 = getNeighborChest(loc);
77                                    
78                  String owner = chestMap.get(loc);                  SnitchingChestBean chest = chestMap.get(loc);
79                  if (owner != null) {                  if (chest != null) {
80                          if (owner.equals(player.getName())) {                          if (chest.getOwner().equals(player.getName())) {
81                                  player.sendMessage("[SnitchingChest] Removing surveillance from chest");                                  player.sendMessage("[SnitchingChest] Removing surveillance from chest");
82                                  chestMap.remove(loc);                                  removeChest(loc);
83                                  if (loc2 != null) {                                  if (loc2 != null) {
84                                          chestMap.remove(loc2);                                                                            removeChest(loc2);                                      
85                                  }                                  }
                                 saveChests();  
86                          } else {                          } else {
87                                  player.sendMessage("[SnitchingChest] Chest is already under surveillance");                                  player.sendMessage("[SnitchingChest] Chest is already under surveillance");
88                          }                          }
# Line 85  public class SnitchingChest  implements Line 90  public class SnitchingChest  implements
90                          return true;                          return true;
91                  }                  }
92                                    
93                  chestMap.put(loc, player.getName() );                  SnitchingChestBean chest1 = createChest(player.getName(), "", loc);
94                    //chestMap.put(loc, chest1);
95                    addChest(loc, chest1);
96                  if (loc2 != null) {                  if (loc2 != null) {
97                          chestMap.put(loc2, player.getName() );                          
98                            SnitchingChestBean chest2 = createChest (player.getName(), "", loc2);
99                            addChest(loc, chest2);
100                            //chestMap.put(loc2, chest2 );
101                  }                  }
102                    
103                  player.sendMessage("[SnitchingChest] Chest is now under surveillance");                  player.sendMessage("[SnitchingChest] Chest is now under surveillance");
104                  saveChests();                  
105                                    
106                  return true;                  return true;
107          }          }
# Line 99  public class SnitchingChest  implements Line 109  public class SnitchingChest  implements
109          @EventHandler          @EventHandler
110          public void onBlockBreak(BlockBreakEvent event) {          public void onBlockBreak(BlockBreakEvent event) {
111                  Location loc = event.getBlock().getLocation();                  Location loc = event.getBlock().getLocation();
112                  String owner = chestMap.get(loc);                  SnitchingChestBean chest = chestMap.get(loc);
113                  if (owner != null) {                  if (chest != null) {
114                          if (owner.equals(event.getPlayer().getName())) {                          if (chest.getOwner().equals(event.getPlayer().getName())) {
115                                  chestMap.remove(loc);                                  removeChest(loc);
                                 saveChests();                            
116                                  event.getPlayer().sendMessage("[SnitchingChest] The destroyed chest was under surveillance");                                  event.getPlayer().sendMessage("[SnitchingChest] The destroyed chest was under surveillance");
117                          } else {                          } else {
118                                  event.setCancelled(true);                                  event.setCancelled(true);
# Line 111  public class SnitchingChest  implements Line 120  public class SnitchingChest  implements
120                          }                          }
121                  }                  }
122          }          }
123            public void addChest(Location loc, SnitchingChestBean chest) {
124                    chestMap.put(loc, chest);
125                    plugin.getDatabase().save(chest);
126            }
127            
128            void removeChest(Location loc) {
129                    SnitchingChestBean chest = chestMap.remove(loc);
130                    plugin.getDatabase().delete(chest);
131            }
132            
133            void loadChests() {            
134                    List<SnitchingChestBean> chestlist = plugin.getDatabase().find( SnitchingChestBean.class).findList();
135                    for (SnitchingChestBean chest : chestlist) {
136                            Location loc = getChestLocation(server, chest);
137                            chestMap.put(loc, chest);      
138                    }
139            }
140                    
141          void loadChests() {          
142            public SnitchingChestBean createChest(String owner, String description, Location loc) {
143                                    
144                    SnitchingChestBean chest = new SnitchingChestBean();
145                    chest.setOwner(owner);
146                    chest.setDescription(description);
147                    setChestLocation(chest, loc);
148    
149                    return chest;
150            }
151            
152            
153            public void setChestLocation(SnitchingChestBean chest, Location loc) {
154                    chest.setWorld( loc.getWorld().getName() );
155                    chest.setX( loc.getBlockX() );
156                    chest.setY( loc.getBlockY() );
157                    chest.setZ( loc.getBlockZ() );          
158          }          }
159                    
160            public Location getChestLocation(Server server, SnitchingChestBean chest) {
161                    World wrld = server.getWorld(chest.getWorld());
162                    return new Location(wrld,chest.getX(),chest.getY(),chest.getZ());              
163            }
164            
165    
166            /*
167          void saveChests() {          void saveChests() {
168                                    
169          }          }*/
170                    
171          Location getNeighborChest(Location loc) {          Location getNeighborChest(Location loc) {
172                  World world = loc.getWorld();                  World world = loc.getWorld();
# Line 165  public class SnitchingChest  implements Line 213  public class SnitchingChest  implements
213                  if (holder instanceof Chest || holder instanceof DoubleChest) {                  if (holder instanceof Chest || holder instanceof DoubleChest) {
214                          Location loc = getChestLocation(holder);                          Location loc = getChestLocation(holder);
215                                                    
216                          String owner = chestMap.get( loc );                          SnitchingChestBean chest = chestMap.get( loc );
217                          if (owner == null) {                                                      if (chest == null) {                            
218                                  return; //chest not surveyed by this plugin                                  return; //chest not surveyed by this plugin
219                          }                          }
220                                    
221                                                                                                    
222                          Player player = (Player) event.getPlayer();                          Player player = (Player) event.getPlayer();
223                          if (player.getName().equals(owner)) {                          if (player.getName().equals(chest.getOwner() )) {
224                                  return; //chest is owned by it's own player                                  return; //chest is owned by it's own player
225                          }                                                }                      
226                                                    
# Line 192  public class SnitchingChest  implements Line 240  public class SnitchingChest  implements
240                  InventoryHolder holder = event.getInventory().getHolder();                  InventoryHolder holder = event.getInventory().getHolder();
241                  if (holder instanceof Chest || holder instanceof DoubleChest) {                  if (holder instanceof Chest || holder instanceof DoubleChest) {
242                          Location loc = getChestLocation(holder);                          Location loc = getChestLocation(holder);
243                          String ownerName = chestMap.get(loc);                          SnitchingChestBean chest = chestMap.get(loc);
244                          OfflinePlayer owner = server.getOfflinePlayer(ownerName);                          OfflinePlayer owner = server.getOfflinePlayer( chest.getOwner() );
245                                                    
246                                                    
247                          Player player = (Player) event.getPlayer();                          Player player = (Player) event.getPlayer();

Legend:
Removed from v.1772  
changed lines
  Added in v.1773

  ViewVC Help
Powered by ViewVC 1.1.20