summaryrefslogtreecommitdiffstats
path: root/EssentialsProtect/src/com/earth2me/essentials/protect/data/ProtectedBlockMemory.java
blob: 53dee66d2a6f3d6fbbbfc3e3aa1f0b6f90f95908 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
package com.earth2me.essentials.protect.data;

import java.util.ArrayList;
import java.util.HashMap;
import java.util.HashSet;
import java.util.List;
import java.util.Map.Entry;
import java.util.Set;
import org.bukkit.World;
import org.bukkit.block.Block;
import org.bukkit.plugin.Plugin;

public class ProtectedBlockMemory implements IProtectedBlock {

	List<String> worlds = new ArrayList<String>();
	List<String> playerNames = new ArrayList<String>();
	IProtectedBlock storage;
	Plugin plugin;

	class ProtectedLocation {

		int x;
		int y;
		int z;
		int w;

		private ProtectedLocation(Block block, int worldId) {
			this.x = block.getX();
			this.y = block.getY();
			this.z = block.getZ();
			this.w = worldId;
		}

		private ProtectedLocation(OwnedBlock ownedBlock, int worldId) {
			this.x = ownedBlock.x;
			this.y = ownedBlock.y;
			this.z = ownedBlock.z;
			this.w = worldId;
		}

		@Override
		public boolean equals(Object o) {
			if (o instanceof ProtectedLocation) {
				ProtectedLocation pl = (ProtectedLocation) o;
				return x == pl.x && y == pl.y && z == pl.z && w == pl.w;
			}
			return false;
		}

		@Override
		public int hashCode() {
			return x ^ y ^ z ^ w;
		}
	}

	class ProtectedBy {

		private int playerId = -1;
		private Set<Integer> playerIds;

		private ProtectedBy() {
		}

		private void add(int playerId) {
			if (this.playerId == -1 || this.playerId == playerId) {
				this.playerId = playerId;
			} else {
				if (playerIds == null) {
					playerIds = new HashSet<Integer>(4);
					playerIds.add(this.playerId);
				}
				playerIds.add(playerId);
			}
		}

		private boolean contains(int playerId) {
			if (playerIds == null) {
				return this.playerId == playerId;
			}
			return playerIds.contains(playerId);
		}

		private List<String> getPlayers(List<String> playerNames) {
			if (playerIds == null) {
				List<String> list = new ArrayList<String>(2);
				list.add(playerNames.get(playerId));
				return list;
			}
			List<String> list = new ArrayList<String>(playerIds.size());
			for (Integer integer : playerIds) {
				list.add(playerNames.get(integer));
			}
			return list;
		}

		private int size() {
			if (playerIds == null) {
				return 1;
			}
			return playerIds.size();
		}
	}
	HashMap<ProtectedLocation, ProtectedBy> blocks = new HashMap<ProtectedLocation, ProtectedBy>();

	public ProtectedBlockMemory(IProtectedBlock storage) {
		this.storage = storage;
		importProtections(storage.exportProtections());
	}

	public void clearProtections() {
		blocks.clear();
	}

	public final void importProtections(List<OwnedBlock> blocks) {
		for (OwnedBlock ownedBlock : blocks) {
			ProtectedLocation pl = new ProtectedLocation(ownedBlock, getWorldId(ownedBlock.world));
			if (ownedBlock.playerName == null) {
				continue;
			}
			protectBlock(pl, ownedBlock.playerName);
		}
	}

	public List<OwnedBlock> exportProtections() {
		List<OwnedBlock> blockList = new ArrayList<OwnedBlock>(blocks.size());
		for (Entry<ProtectedLocation, ProtectedBy> entry : blocks.entrySet()) {
			for (String name : entry.getValue().getPlayers(playerNames)) {
				OwnedBlock ob = new OwnedBlock();
				ob.x = entry.getKey().x;
				ob.y = entry.getKey().y;
				ob.z = entry.getKey().z;
				ob.world = worlds.get(entry.getKey().w);
				ob.playerName = name;
				blockList.add(ob);
			}
		}
		return blockList;
	}

	public void protectBlock(final Block block, final String playerName) {
		ProtectedLocation pl = new ProtectedLocation(block, getWorldId(block.getWorld()));
		protectBlock(pl, playerName);
		plugin.getServer().getScheduler().scheduleAsyncDelayedTask(plugin, new Runnable() {
			public void run() {
				storage.protectBlock(block, playerName);
			}
		});
	}

	private void protectBlock(ProtectedLocation pl, String playerName) {
		int playerId = getPlayerId(playerName);
		ProtectedBy pb = blocks.get(pl);
		if (pb == null) {
			pb = new ProtectedBy();
			blocks.put(pl, pb);
		}
		pb.add(playerId);
	}

	public boolean isProtected(Block block, String playerName) {
		int playerId = getPlayerId(playerName);
		ProtectedLocation pl = new ProtectedLocation(block, getWorldId(block.getWorld()));
		ProtectedBy pb = blocks.get(pl);
		return !pb.contains(playerId);
	}

	public List<String> getOwners(Block block) {
		ProtectedLocation pl = new ProtectedLocation(block, getWorldId(block.getWorld()));
		ProtectedBy pb = blocks.get(pl);
		return pb.getPlayers(playerNames);
	}

	public int unprotectBlock(final Block block) {
		ProtectedLocation pl = new ProtectedLocation(block, getWorldId(block.getWorld()));
		ProtectedBy pb = blocks.remove(pl);
		plugin.getServer().getScheduler().scheduleAsyncDelayedTask(plugin, new Runnable() {
			public void run() {
				storage.unprotectBlock(block);
			}
		});
		return pb.size();
	}

	private int getPlayerId(String playername) {
		int id = playerNames.indexOf(playername);
		if (id < 0) {
			playerNames.add(playername);
			id = playerNames.indexOf(playername);
		}
		return id;
	}

	private int getWorldId(World world) {
		return getWorldId(world.getName());
	}

	private int getWorldId(String name) {
		int id = worlds.indexOf(name);
		if (id < 0) {
			worlds.add(name);
			id = worlds.indexOf(name);
		}
		return id;
	}
}