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

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

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1773 - (show annotations) (download)
Thu Apr 5 12:37:13 2012 UTC (12 years, 1 month ago) by torben
File size: 8598 byte(s)
add persistance to SnitchingChest
1 package dk.thoerup.bukkit.hoeruputils;
2
3
4 import java.util.HashMap;
5 import java.util.List;
6 import java.util.Set;
7 import java.util.TreeMap;
8 import java.util.TreeSet;
9
10 import org.bukkit.Location;
11 import org.bukkit.Material;
12 import org.bukkit.OfflinePlayer;
13 import org.bukkit.Server;
14 import org.bukkit.World;
15 import org.bukkit.block.Block;
16 import org.bukkit.block.Chest;
17 import org.bukkit.block.DoubleChest;
18 import org.bukkit.command.Command;
19 import org.bukkit.command.CommandExecutor;
20 import org.bukkit.command.CommandSender;
21 import org.bukkit.entity.Player;
22 import org.bukkit.event.EventHandler;
23 import org.bukkit.event.Listener;
24 import org.bukkit.event.block.BlockBreakEvent;
25 import org.bukkit.event.inventory.InventoryCloseEvent;
26 import org.bukkit.event.inventory.InventoryOpenEvent;
27 import org.bukkit.inventory.InventoryHolder;
28 import org.bukkit.inventory.ItemStack;
29
30
31 public class SnitchingChest implements Listener, CommandExecutor{
32
33 class ItemCount extends TreeMap<Integer,Integer> {
34 private static final long serialVersionUID = 1L;
35 };
36
37 HashMap<String, ItemCount> contentMap = new HashMap<String, ItemCount>();
38
39 HashMap<Location,SnitchingChestBean> chestMap = new HashMap<Location, SnitchingChestBean>();
40
41
42 HoerupUtilsPlugin plugin;
43 Server server;
44
45 public SnitchingChest(HoerupUtilsPlugin plugin, Runnable r) {
46 this.plugin = plugin;
47 server = plugin.getServer();
48 try {
49 loadChests();
50 } catch (Exception e) {
51 e.printStackTrace();
52 //r.run();
53 loadChests();
54 }
55 }
56
57
58 @Override
59 public boolean onCommand(CommandSender sender, Command command, String label, String[] args) {
60 if (! (sender instanceof Player) ) {
61 sender.sendMessage("this is not a console command!");
62 return true;
63 }
64
65 Player player = (Player) sender;
66
67
68 Block b = player.getTargetBlock(null, 30);
69 Location loc = b.getLocation();
70
71 if (b.getTypeId() != 54) {
72 player.sendMessage("[SnitchingChest] Please look at the chest you want to be a snitch");
73 return true;
74 }
75
76 Location loc2 = getNeighborChest(loc);
77
78 SnitchingChestBean chest = chestMap.get(loc);
79 if (chest != null) {
80 if (chest.getOwner().equals(player.getName())) {
81 player.sendMessage("[SnitchingChest] Removing surveillance from chest");
82 removeChest(loc);
83 if (loc2 != null) {
84 removeChest(loc2);
85 }
86 } else {
87 player.sendMessage("[SnitchingChest] Chest is already under surveillance");
88 }
89
90 return true;
91 }
92
93 SnitchingChestBean chest1 = createChest(player.getName(), "", loc);
94 //chestMap.put(loc, chest1);
95 addChest(loc, chest1);
96 if (loc2 != null) {
97
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");
104
105
106 return true;
107 }
108
109 @EventHandler
110 public void onBlockBreak(BlockBreakEvent event) {
111 Location loc = event.getBlock().getLocation();
112 SnitchingChestBean chest = chestMap.get(loc);
113 if (chest != null) {
114 if (chest.getOwner().equals(event.getPlayer().getName())) {
115 removeChest(loc);
116 event.getPlayer().sendMessage("[SnitchingChest] The destroyed chest was under surveillance");
117 } else {
118 event.setCancelled(true);
119 event.getPlayer().sendMessage("You can't destroy that chest");
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
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() {
168
169 }*/
170
171 Location getNeighborChest(Location loc) {
172 World world = loc.getWorld();
173
174 Location target = new Location(world, loc.getX()+1, loc.getY(), loc.getZ() );
175 if (world.getBlockAt(target).getType() == Material.CHEST )
176 return target;
177
178 target = new Location(world, loc.getX()-1, loc.getY(), loc.getZ() );
179 if (world.getBlockAt(target).getType() == Material.CHEST )
180 return target;
181
182 target = new Location(world, loc.getX(), loc.getY(), loc.getZ() +1);
183 if (world.getBlockAt(target).getType() == Material.CHEST )
184 return target;
185
186 target = new Location(world, loc.getX(), loc.getY(), loc.getZ() -1);
187 if (world.getBlockAt(target).getType() == Material.CHEST )
188 return target;
189
190 return null;
191 }
192
193
194 Location getChestLocation(InventoryHolder holder) {
195 Location loc;
196 if ( holder instanceof Chest) {
197 loc = ( (Chest)holder).getLocation();
198 } else {
199 loc = ( (DoubleChest)holder).getLocation();
200 }
201 return loc;
202 }
203
204 @EventHandler
205 public void onChestOpen(InventoryOpenEvent event) {
206
207 if (! (event.getPlayer() instanceof Player)) {
208 return;
209 }
210
211
212 InventoryHolder holder = event.getInventory().getHolder();
213 if (holder instanceof Chest || holder instanceof DoubleChest) {
214 Location loc = getChestLocation(holder);
215
216 SnitchingChestBean chest = chestMap.get( loc );
217 if (chest == null) {
218 return; //chest not surveyed by this plugin
219 }
220
221
222 Player player = (Player) event.getPlayer();
223 if (player.getName().equals(chest.getOwner() )) {
224 return; //chest is owned by it's own player
225 }
226
227 ItemCount contents = countItems( event.getInventory().getContents() );
228
229 contentMap.put(player.getName(), contents );
230 }
231 }
232
233 @EventHandler
234 public void onChestClose(InventoryCloseEvent event) {
235 if (! (event.getPlayer() instanceof Player)) {
236 return;
237 }
238
239
240 InventoryHolder holder = event.getInventory().getHolder();
241 if (holder instanceof Chest || holder instanceof DoubleChest) {
242 Location loc = getChestLocation(holder);
243 SnitchingChestBean chest = chestMap.get(loc);
244 OfflinePlayer owner = server.getOfflinePlayer( chest.getOwner() );
245
246
247 Player player = (Player) event.getPlayer();
248
249 ItemCount savedContent = contentMap.get( player.getName() );
250
251 if (savedContent == null) {
252 return;
253 }
254 contentMap.remove( player.getName() );
255
256 ItemCount content = countItems( event.getInventory().getContents() );
257
258 Set<Integer> combinedKeyset = new TreeSet<Integer>();
259 combinedKeyset.addAll( savedContent.keySet() );
260 combinedKeyset.addAll( content.keySet() );
261
262 for (Integer item : combinedKeyset ) {
263 Integer savedcount = savedContent.get(item);
264 Integer count = content.get(item);
265
266 if (savedcount == null)
267 savedcount = 0;
268 if (count == null)
269 count = 0;
270
271
272 int diff = Math.abs( savedcount - count);
273 String msg = null;
274 if (count > savedcount) {
275 msg = player.getName() + " added " + diff + " units of " + item + " to " + owner + "'s chest";
276 }
277 if (count < savedcount) {
278 msg = player.getName() + " removed " + diff + " units of " + item + " from " + owner + "'s chest";
279 }
280
281 if (msg != null) {
282 plugin.getLogger().info(msg);
283 plugin.getMessageWrapper().sendMessage(owner, msg);
284 }
285
286 }
287
288 }
289 }
290
291 ItemCount countItems(ItemStack[] input) {
292 ItemCount output = new ItemCount();
293 for (int i=0; i<input.length; i++) {
294 ItemStack current = input[i];
295 if (current == null)
296 continue;
297
298 int type = current.getTypeId();
299
300 Integer amount = output.get(type);
301 if (amount == null)
302 amount = 0;
303
304 output.put(type, amount + current.getAmount() );
305 }
306 return output;
307 }
308 /*
309 ItemStack[] cloneItemStacks(ItemStack[] input) {
310 ItemStack[] output = new ItemStack[ input.length ];
311 for (int i=0; i<input.length; i++) {
312 if (input[i] != null) {
313 output[i] = input[i].clone();
314 } else {
315 output[i] = new ItemStack(0, 0);
316 }
317 }
318 return output;
319 }*/
320
321
322 }

  ViewVC Help
Powered by ViewVC 1.1.20