summaryrefslogtreecommitdiff
path: root/YWD/src/main/java/fyresmodjam/entities/EntityMysteryPotion.java
blob: 6c4eef50c14bf4f29705c652a4af5a4e450620b2 (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
package fyresmodjam.entities;

import java.util.Iterator;
import java.util.List;

import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import fyresmodjam.ModjamMod;
import fyresmodjam.blessings.BlessingUtils;
import fyresmodjam.handlers.CommonTickHandler;
import fyresmodjam.handlers.NewPacketHandler;
import net.minecraft.entity.EntityLivingBase;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.entity.projectile.EntityThrowable;
import net.minecraft.init.Items;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.potion.Potion;
import net.minecraft.potion.PotionEffect;
import net.minecraft.util.AxisAlignedBB;
import net.minecraft.util.MovingObjectPosition;
import net.minecraft.util.StatCollector;
import net.minecraft.world.World;

public class EntityMysteryPotion extends EntityThrowable {

	public EntityMysteryPotion(World par1World) {
		super(par1World);
	}

	public EntityMysteryPotion(World par1World,
			EntityLivingBase par2EntityLivingBase, int par3) {
		this(par1World, par2EntityLivingBase, null);
	}

	public EntityMysteryPotion(World par1World,
			EntityLivingBase par2EntityLivingBase,
			ItemStack par4ItemStack) {
		super(par1World, par2EntityLivingBase);

		if (par4ItemStack != null) {
			int damage = par4ItemStack.getItemDamage();
			dataWatcher.updateObject(24, damage);
			if (damage % 13 < 12) {
				dataWatcher.updateObject(25,
						CommonTickHandler.worldData.potionDurations[damage
								% 13]);
			}
		}
	}

	@Override
	public void entityInit() {
		super.entityInit();

		dataWatcher.addObject(24, 0);
		dataWatcher.addObject(25, 0);
	}

	@SideOnly(Side.CLIENT)
	public EntityMysteryPotion(World par1World, double par2,
			double par4, double par6, int par8) {
		this(par1World, par2, par4, par6,
				new ItemStack(Items.potionitem, 1, par8));
	}

	public EntityMysteryPotion(World par1World, double par2,
			double par4, double par6,
			ItemStack par4ItemStack) {
		super(par1World, par2, par4, par6);

		if (par4ItemStack != null) {
			int damage = par4ItemStack.getItemDamage();
			dataWatcher.updateObject(24, damage);
			dataWatcher.updateObject(25,
					CommonTickHandler.worldData.potionDurations[damage
							% 13]);
		}
	}

	@Override
	protected float getGravityVelocity() {
		return 0.05F;
	}

	@Override
	protected float func_70182_d() {
		return 0.5F;
	}

	@Override
	protected float func_70183_g() {
		return -20.0F;
	}

	@Override
	@SuppressWarnings("rawtypes")
	protected void onImpact(
			MovingObjectPosition par1MovingObjectPosition) {
		if (!worldObj.isRemote) {
			AxisAlignedBB axisalignedbb = boundingBox
					.expand(4.0D, 2.0D, 4.0D);
			List list1 = worldObj.getEntitiesWithinAABB(
					EntityLivingBase.class,
					axisalignedbb);

			if (list1 != null && !list1.isEmpty()) {
				int type = getDataWatcher()
						.getWatchableObjectInt(24)
						% 13;
				int j = type >= 12
						? (5 + ModjamMod.r.nextInt(
								26))
						: getDataWatcher()
								.getWatchableObjectInt(
										25);

				int damage = 0;

				if (type >= 12 || (BlessingUtils
						.hasBlessing(getThrower(),
								"BlessingAlchemist"))) {
					damage = ModjamMod.r.nextInt(
							Potion.potionTypes.length);
					while (Potion.potionTypes[damage] == null) {
						damage = ModjamMod.r
								.nextInt(Potion.potionTypes.length);
					}
				} else {
					damage = CommonTickHandler.worldData.potionValues[type];
				}

				Iterator iterator = list1.iterator();

				while (iterator.hasNext()) {
					EntityLivingBase entitylivingbase = (EntityLivingBase) iterator
							.next();
					double d0 = getDistanceSqToEntity(
							entitylivingbase);

					if (d0 < 16.0D) {
						if (Potion.potionTypes[damage]
								.isInstant()) {
							Potion.potionTypes[damage]
									.affectEntity(getThrower(),
											entitylivingbase,
											1,
											1);
						} else {
							entitylivingbase.addPotionEffect(
									new PotionEffect(
											damage,
											j * 20,
											1,
											false));
						}
					}
				}

				if (getThrower() instanceof EntityPlayer) {
					EntityPlayer par3EntityPlayer = (EntityPlayer) getThrower();

					if (type < 12 && (!BlessingUtils
							.hasBlessing(getThrower(),
									"BlessingAlchemist"))) {
						if (!par3EntityPlayer
								.getEntityData()
								.hasKey("PotionKnowledge")) {
							par3EntityPlayer.getEntityData()
									.setIntArray("PotionKnowledge",
											new int[] {
													-1,
													-1,
													-1,
													-1,
													-1,
													-1,
													-1,
													-1,
													-1,
													-1,
													-1,
													-1
											});
						}

						if (par3EntityPlayer
								.getEntityData()
								.getIntArray("PotionKnowledge")[type] == -1) {
							par3EntityPlayer.getEntityData()
									.getIntArray("PotionKnowledge")[type] = 1;

							NewPacketHandler.UPDATE_POTION_KNOWLEDGE
									.sendToPlayer(par3EntityPlayer,
											par3EntityPlayer.getEntityData()
													.getIntArray("PotionKnowledge"));

							Potion potion = Potion.potionTypes[CommonTickHandler.worldData.potionValues[type]];
							String name = StatCollector
									.translateToLocal(
											potion.getName())
									+ " Potion";

							if (!potion.isInstant()) {
								int time = CommonTickHandler.worldData.potionDurations[type];
								name += " (" + time
										+ " seconds)";
							}

							NewPacketHandler.SEND_MESSAGE
									.sendToPlayer(par3EntityPlayer,
											"\u00A7oYou learnt Mystery Potion #"
													+ (type + 1)
													+ " was a "
													+ name
													+ "!");
						}
					} else {
						Potion potion = Potion.potionTypes[damage];
						String name = StatCollector
								.translateToLocal(
										potion.getName())
								+ " Potion";
						if (!potion.isInstant()) {
							name += " (" + j + " seconds)";
						}

						NewPacketHandler.SEND_MESSAGE
								.sendToPlayer(par3EntityPlayer,
										"\u00A7oYou threw a "
												+ name
												+ ".");
					}
				}
			}

			worldObj.playAuxSFX(2002, (int) Math.round(posX),
					(int) Math.round(posY),
					(int) Math.round(posZ), 1);
			setDead();
		}
	}

	@Override
	public void readEntityFromNBT(NBTTagCompound par1NBTTagCompound) {
		super.readEntityFromNBT(par1NBTTagCompound);
	}

	@Override
	public void writeEntityToNBT(NBTTagCompound par1NBTTagCompound) {
		super.writeEntityToNBT(par1NBTTagCompound);
	}
}