summaryrefslogtreecommitdiffstats
path: root/Essentials/src/com/earth2me/essentials/OfflinePlayer.java
blob: f1bac2ae4c018e661f3435e942981a8f490c21b2 (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
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
package com.earth2me.essentials;

import java.net.InetSocketAddress;
import java.util.HashSet;
import java.util.List;
import org.bukkit.Location;
import org.bukkit.Server;
import org.bukkit.World;
import org.bukkit.block.Block;
import org.bukkit.entity.Arrow;
import org.bukkit.entity.Egg;
import org.bukkit.entity.Entity;
import org.bukkit.entity.Player;
import org.bukkit.entity.Snowball;
import org.bukkit.entity.Vehicle;
import org.bukkit.inventory.ItemStack;
import org.bukkit.inventory.PlayerInventory;
import org.bukkit.util.Vector;


public class OfflinePlayer implements Player
{
	private final String name;
	private Location location = new Location(null, 0, 0, 0, 0, 0);

	public OfflinePlayer(String name)
	{
		this.name = name;
	}

	public boolean isOnline()
	{
		return false;
	}

	public boolean isOp()
	{
		return false;
	}

	public void sendMessage(String string)
	{
	}

	public String getDisplayName()
	{
		return name;
	}

	public void setDisplayName(String string)
	{
	}

	public void setCompassTarget(Location lctn)
	{
	}

	public InetSocketAddress getAddress()
	{
		return null;
	}

	public void kickPlayer(String string)
	{
	}

	public String getName()
	{
		return name;
	}

	public PlayerInventory getInventory()
	{
		return null;
	}

	public ItemStack getItemInHand()
	{
		return null;
	}

	public void setItemInHand(ItemStack is)
	{
	}

	public int getHealth()
	{
		return 0;
	}

	public void setHealth(int i)
	{
	}

	public Egg throwEgg()
	{
		return null;
	}

	public Snowball throwSnowball()
	{
		return null;
	}

	public Arrow shootArrow()
	{
		return null;
	}

	public boolean isInsideVehicle()
	{
		return false;
	}

	public boolean leaveVehicle()
	{
		return false;
	}

	public Vehicle getVehicle()
	{
		return null;
	}

	public Location getLocation()
	{
		return location;
	}

	public World getWorld()
	{
		return null;
	}

	public void teleportTo(Location lctn)
	{
	}

	public void teleportTo(Entity entity)
	{
	}

	public int getEntityId()
	{
		return -1;
	}

	public boolean performCommand(String string)
	{
		return false;
	}

	public boolean isPlayer()
	{
		return false;
	}

	public int getRemainingAir()
	{
		throw new UnsupportedOperationException("Not supported yet.");
	}

	public void setRemainingAir(int i)
	{
		throw new UnsupportedOperationException("Not supported yet.");
	}

	public int getMaximumAir()
	{
		throw new UnsupportedOperationException("Not supported yet.");
	}

	public void setMaximumAir(int i)
	{
		throw new UnsupportedOperationException("Not supported yet.");
	}

	public boolean isSneaking()
	{
		return false;
	}

	public void setSneaking(boolean bln)
	{
		throw new UnsupportedOperationException("Not supported yet.");
	}

	public void updateInventory()
	{
		throw new UnsupportedOperationException("Not supported yet.");
	}

	public void chat(String string)
	{
		throw new UnsupportedOperationException("Not supported yet.");
	}

	public double getEyeHeight()
	{
		throw new UnsupportedOperationException("Not supported yet.");
	}

	public double getEyeHeight(boolean bln)
	{
		throw new UnsupportedOperationException("Not supported yet.");
	}

	public List<Block> getLineOfSight(HashSet<Byte> hs, int i)
	{
		throw new UnsupportedOperationException("Not supported yet.");
	}

	public Block getTargetBlock(HashSet<Byte> hs, int i)
	{
		throw new UnsupportedOperationException("Not supported yet.");
	}

	public List<Block> getLastTwoTargetBlocks(HashSet<Byte> hs, int i)
	{
		throw new UnsupportedOperationException("Not supported yet.");
	}

	public int getFireTicks()
	{
		throw new UnsupportedOperationException("Not supported yet.");
	}

	public int getMaxFireTicks()
	{
		throw new UnsupportedOperationException("Not supported yet.");
	}

	public void setFireTicks(int i)
	{
		throw new UnsupportedOperationException("Not supported yet.");
	}

	public void remove()
	{
		throw new UnsupportedOperationException("Not supported yet.");
	}

	public Server getServer()
	{
		return Essentials.getStatic() == null ? null : Essentials.getStatic().getServer();
	}

	public Vector getMomentum()
	{
		throw new UnsupportedOperationException("Not supported yet.");
	}

	public void setMomentum(Vector vector)
	{
		throw new UnsupportedOperationException("Not supported yet.");
	}

	public void setVelocity(Vector vector)
	{
		throw new UnsupportedOperationException("Not supported yet.");
	}

	public Vector getVelocity()
	{
		throw new UnsupportedOperationException("Not supported yet.");
	}

	public void damage(int i)
	{
		throw new UnsupportedOperationException("Not supported yet.");
	}

	public void damage(int i, Entity entity)
	{
		throw new UnsupportedOperationException("Not supported yet.");
	}

	public Location getEyeLocation()
	{
		throw new UnsupportedOperationException("Not supported yet.");
	}

	public void sendRawMessage(String string) {
		throw new UnsupportedOperationException("Not supported yet.");
	}
}