221 lines
5.8 KiB
Java
221 lines
5.8 KiB
Java
package org.bukkit.craftbukkit.entity;
|
|
|
|
import java.util.List;
|
|
import net.minecraft.server.EntityAreaEffectCloud;
|
|
import net.minecraft.server.EntityLiving;
|
|
import net.minecraft.server.MobEffect;
|
|
import net.minecraft.server.MobEffectList;
|
|
|
|
import org.apache.commons.lang.Validate;
|
|
import org.bukkit.Color;
|
|
import org.bukkit.Particle;
|
|
import org.bukkit.craftbukkit.CraftParticle;
|
|
import org.bukkit.craftbukkit.CraftServer;
|
|
import org.bukkit.craftbukkit.potion.CraftPotionUtil;
|
|
import org.bukkit.entity.AreaEffectCloud;
|
|
import org.bukkit.entity.EntityType;
|
|
import org.bukkit.potion.PotionEffect;
|
|
import org.bukkit.potion.PotionEffectType;
|
|
import org.bukkit.projectiles.ProjectileSource;
|
|
import org.bukkit.potion.PotionData;
|
|
|
|
import com.google.common.collect.ImmutableList;
|
|
|
|
public class CraftAreaEffectCloud extends CraftEntity implements AreaEffectCloud {
|
|
|
|
public CraftAreaEffectCloud(CraftServer server, EntityAreaEffectCloud entity) {
|
|
super(server, entity);
|
|
}
|
|
|
|
@Override
|
|
public EntityAreaEffectCloud getHandle() {
|
|
return (EntityAreaEffectCloud) super.getHandle();
|
|
}
|
|
|
|
@Override
|
|
public EntityType getType() {
|
|
return EntityType.AREA_EFFECT_CLOUD;
|
|
}
|
|
|
|
@Override
|
|
public int getDuration() {
|
|
return getHandle().getDuration();
|
|
}
|
|
|
|
@Override
|
|
public void setDuration(int duration) {
|
|
getHandle().setDuration(duration);
|
|
}
|
|
|
|
@Override
|
|
public int getWaitTime() {
|
|
return getHandle().waitTime;
|
|
}
|
|
|
|
@Override
|
|
public void setWaitTime(int waitTime) {
|
|
getHandle().setWaitTime(waitTime);
|
|
}
|
|
|
|
@Override
|
|
public int getReapplicationDelay() {
|
|
return getHandle().reapplicationDelay;
|
|
}
|
|
|
|
@Override
|
|
public void setReapplicationDelay(int delay) {
|
|
getHandle().reapplicationDelay = delay;
|
|
}
|
|
|
|
@Override
|
|
public int getDurationOnUse() {
|
|
return getHandle().durationOnUse;
|
|
}
|
|
|
|
@Override
|
|
public void setDurationOnUse(int duration) {
|
|
getHandle().durationOnUse = duration;
|
|
}
|
|
|
|
@Override
|
|
public float getRadius() {
|
|
return getHandle().getRadius();
|
|
}
|
|
|
|
@Override
|
|
public void setRadius(float radius) {
|
|
getHandle().setRadius(radius);
|
|
}
|
|
|
|
@Override
|
|
public float getRadiusOnUse() {
|
|
return getHandle().radiusOnUse;
|
|
}
|
|
|
|
@Override
|
|
public void setRadiusOnUse(float radius) {
|
|
getHandle().setRadiusOnUse(radius);
|
|
}
|
|
|
|
@Override
|
|
public float getRadiusPerTick() {
|
|
return getHandle().radiusPerTick;
|
|
}
|
|
|
|
@Override
|
|
public void setRadiusPerTick(float radius) {
|
|
getHandle().setRadiusPerTick(radius);
|
|
}
|
|
|
|
@Override
|
|
public Particle getParticle() {
|
|
return CraftParticle.toBukkit(getHandle().getParticle());
|
|
}
|
|
|
|
@Override
|
|
public void setParticle(Particle particle) {
|
|
getHandle().setParticle(CraftParticle.toNMS(particle));
|
|
}
|
|
|
|
@Override
|
|
public Color getColor() {
|
|
return Color.fromRGB(getHandle().getColor());
|
|
}
|
|
|
|
@Override
|
|
public void setColor(Color color) {
|
|
getHandle().setColor(color.asRGB());
|
|
}
|
|
|
|
@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());
|
|
}
|
|
|
|
public ProjectileSource getSource() {
|
|
return getHandle().projectileSource;
|
|
}
|
|
|
|
public void setSource(ProjectileSource shooter) {
|
|
if (shooter instanceof CraftLivingEntity) {
|
|
getHandle().setSource((EntityLiving) ((CraftLivingEntity) shooter).getHandle());
|
|
} else {
|
|
getHandle().setSource((EntityLiving) null);
|
|
}
|
|
getHandle().projectileSource = shooter;
|
|
}
|
|
}
|