127 lines
3.5 KiB
Java
127 lines
3.5 KiB
Java
package org.bukkit.craftbukkit.entity;
|
|
|
|
import com.google.common.collect.ImmutableList;
|
|
import java.util.List;
|
|
import net.minecraft.server.EntityTippedArrow;
|
|
import net.minecraft.server.MobEffect;
|
|
import net.minecraft.server.MobEffectList;
|
|
import org.apache.commons.lang.Validate;
|
|
import org.bukkit.Color;
|
|
import org.bukkit.craftbukkit.CraftServer;
|
|
import org.bukkit.craftbukkit.potion.CraftPotionUtil;
|
|
import org.bukkit.entity.Arrow;
|
|
import org.bukkit.entity.EntityType;
|
|
import org.bukkit.potion.PotionData;
|
|
import org.bukkit.potion.PotionEffect;
|
|
import org.bukkit.potion.PotionEffectType;
|
|
|
|
public class CraftTippedArrow extends CraftArrow implements Arrow {
|
|
|
|
public CraftTippedArrow(CraftServer server, EntityTippedArrow entity) {
|
|
super(server, entity);
|
|
}
|
|
|
|
@Override
|
|
public EntityTippedArrow getHandle() {
|
|
return (EntityTippedArrow) entity;
|
|
}
|
|
|
|
@Override
|
|
public String toString() {
|
|
return "CraftTippedArrow";
|
|
}
|
|
|
|
@Override
|
|
public EntityType getType() {
|
|
return EntityType.ARROW;
|
|
}
|
|
|
|
@Override
|
|
public boolean addCustomEffect(PotionEffect effect, boolean override) {
|
|
int effectId = effect.getType().getId();
|
|
MobEffect existing = null;
|
|
for (MobEffect mobEffect : getHandle().effects) {
|
|
if (MobEffectList.getId(mobEffect.getMobEffect()) == effectId) {
|
|
existing = mobEffect;
|
|
}
|
|
}
|
|
if (existing != null) {
|
|
if (!override) {
|
|
return false;
|
|
}
|
|
getHandle().effects.remove(existing);
|
|
}
|
|
getHandle().a(CraftPotionUtil.fromBukkit(effect));
|
|
getHandle().refreshEffects();
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
public void clearCustomEffects() {
|
|
getHandle().effects.clear();
|
|
getHandle().refreshEffects();
|
|
}
|
|
|
|
@Override
|
|
public List<PotionEffect> getCustomEffects() {
|
|
ImmutableList.Builder<PotionEffect> builder = ImmutableList.builder();
|
|
for (MobEffect effect : getHandle().effects) {
|
|
builder.add(CraftPotionUtil.toBukkit(effect));
|
|
}
|
|
return builder.build();
|
|
}
|
|
|
|
@Override
|
|
public boolean hasCustomEffect(PotionEffectType type) {
|
|
for (MobEffect effect : getHandle().effects) {
|
|
if (CraftPotionUtil.equals(effect.getMobEffect(), type)) {
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
@Override
|
|
public boolean hasCustomEffects() {
|
|
return !getHandle().effects.isEmpty();
|
|
}
|
|
|
|
@Override
|
|
public boolean removeCustomEffect(PotionEffectType effect) {
|
|
int effectId = effect.getId();
|
|
MobEffect existing = null;
|
|
for (MobEffect mobEffect : getHandle().effects) {
|
|
if (MobEffectList.getId(mobEffect.getMobEffect()) == effectId) {
|
|
existing = mobEffect;
|
|
}
|
|
}
|
|
if (existing == null) {
|
|
return false;
|
|
}
|
|
getHandle().effects.remove(existing);
|
|
getHandle().refreshEffects();
|
|
return true;
|
|
}
|
|
|
|
@Override
|
|
public void setBasePotionData(PotionData data) {
|
|
Validate.notNull(data, "PotionData cannot be null");
|
|
getHandle().setType(CraftPotionUtil.fromBukkit(data));
|
|
}
|
|
|
|
@Override
|
|
public PotionData getBasePotionData() {
|
|
return CraftPotionUtil.toBukkit(getHandle().getType());
|
|
}
|
|
|
|
@Override
|
|
public void setColor(Color color) {
|
|
getHandle().setColor(color.asRGB());
|
|
}
|
|
|
|
@Override
|
|
public Color getColor() {
|
|
return Color.fromRGB(getHandle().getColor());
|
|
}
|
|
}
|