mirror of
https://github.com/SimplexDevelopment/ArcanumOcculta.git
synced 2025-07-04 22:56:40 +00:00
API done (I hope)
This commit is contained in:
@ -0,0 +1,19 @@
|
||||
package app.simplexdev.arcanumocculta.base;
|
||||
|
||||
import app.simplexdev.arcanumocculta.api.caster.AbstractCaster;
|
||||
import app.simplexdev.arcanumocculta.api.caster.CasterLevel;
|
||||
import app.simplexdev.arcanumocculta.api.caster.SpellBook;
|
||||
import app.simplexdev.arcanumocculta.api.wand.Wand;
|
||||
import org.bukkit.entity.Player;
|
||||
|
||||
public class SimpleCaster extends AbstractCaster
|
||||
{
|
||||
public SimpleCaster(Player player, Wand wand,
|
||||
SpellBook spellBook,
|
||||
CasterLevel level)
|
||||
{
|
||||
super(player, wand, spellBook, level);
|
||||
}
|
||||
|
||||
|
||||
}
|
@ -0,0 +1,7 @@
|
||||
package app.simplexdev.arcanumocculta.base;
|
||||
|
||||
import app.simplexdev.arcanumocculta.api.caster.AbstractSpellBook;
|
||||
|
||||
public class SimpleSpellBook extends AbstractSpellBook
|
||||
{
|
||||
}
|
@ -0,0 +1,18 @@
|
||||
package app.simplexdev.arcanumocculta.base;
|
||||
|
||||
import app.simplexdev.arcanumocculta.api.wand.AbstractWand;
|
||||
import app.simplexdev.arcanumocculta.api.wand.CapType;
|
||||
import app.simplexdev.arcanumocculta.api.wand.CoreType;
|
||||
import app.simplexdev.arcanumocculta.api.wand.GemType;
|
||||
import org.bukkit.inventory.ItemStack;
|
||||
|
||||
public class SimpleWand extends AbstractWand
|
||||
{
|
||||
public SimpleWand(String name, String description, ItemStack item,
|
||||
CapType capType,
|
||||
CoreType coreType,
|
||||
GemType gemType)
|
||||
{
|
||||
super(name, description, item, capType, coreType, gemType);
|
||||
}
|
||||
}
|
@ -1,99 +0,0 @@
|
||||
package app.simplexdev.arcanumocculta.base.book;
|
||||
|
||||
import app.simplexdev.arcanumocculta.api.book.SpellBook;
|
||||
import app.simplexdev.arcanumocculta.api.spell.Spell;
|
||||
import org.bukkit.ChatColor;
|
||||
import org.bukkit.Material;
|
||||
import org.bukkit.inventory.ItemStack;
|
||||
import org.bukkit.inventory.meta.ItemMeta;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
public abstract class AbstractSpellBook implements SpellBook {
|
||||
private final List<Spell> spellbook = new ArrayList<>();
|
||||
|
||||
private String name;
|
||||
private String description;
|
||||
private ItemStack itemStack;
|
||||
|
||||
protected AbstractSpellBook(final String name) {
|
||||
this.name = name;
|
||||
this.description = ChatColor.BLUE + "A simple spell book.";
|
||||
|
||||
final ItemStack stack = new ItemStack(Material.WRITTEN_BOOK, 1);
|
||||
ItemMeta meta = stack.getItemMeta();
|
||||
|
||||
if (meta != null) {
|
||||
meta.setDisplayName(name);
|
||||
meta.setLore(List.of(description));
|
||||
stack.setItemMeta(meta);
|
||||
}
|
||||
|
||||
this.itemStack = stack;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getBookName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setBookName(String name) {
|
||||
this.name = name;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getBookDescription() {
|
||||
return description;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setBookDescription(String description) {
|
||||
this.description = description;
|
||||
}
|
||||
|
||||
@Override
|
||||
public ItemStack getBookItem() {
|
||||
return itemStack;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setBookItem(final ItemStack stack) {
|
||||
this.itemStack = stack;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<Spell> getSpells() {
|
||||
return this.spellbook;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void addSpell(Spell spell) {
|
||||
this.spellbook.add(spell);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void removeSpell(Spell spell) {
|
||||
this.spellbook.remove(spell);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Spell getSpell(String name) {
|
||||
return getSpells()
|
||||
.stream()
|
||||
.filter(spell -> spell.getSpellName().equalsIgnoreCase(name))
|
||||
.findFirst()
|
||||
.orElse(null);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Spell getSpell(int index) {
|
||||
return getSpells().get(index);
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getSpellCount() {
|
||||
return getSpells().size();
|
||||
}
|
||||
}
|
@ -1,50 +0,0 @@
|
||||
package app.simplexdev.arcanumocculta.base.book;
|
||||
|
||||
import app.simplexdev.arcanumocculta.api.book.SpellTome;
|
||||
import app.simplexdev.arcanumocculta.api.spell.Spell;
|
||||
import org.bukkit.Material;
|
||||
import org.bukkit.inventory.ItemStack;
|
||||
import org.bukkit.inventory.meta.ItemMeta;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
public abstract class AbstractSpellTome implements SpellTome {
|
||||
private final Spell containedSpell;
|
||||
private final String name;
|
||||
private final String description;
|
||||
private final ItemStack item;
|
||||
|
||||
protected AbstractSpellTome(final String name, final String description, final Spell containedSpell) {
|
||||
this.containedSpell = containedSpell;
|
||||
this.name = name;
|
||||
this.description = description;
|
||||
final ItemStack stack = new ItemStack(Material.BOOK, 1);
|
||||
final ItemMeta meta = stack.getItemMeta();
|
||||
if (meta != null) {
|
||||
meta.setDisplayName(name);
|
||||
meta.setLore(List.of(description));
|
||||
stack.setItemMeta(meta);
|
||||
}
|
||||
this.item = stack;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getTomeName() {
|
||||
return this.name;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getTomeDescription() {
|
||||
return this.description;
|
||||
}
|
||||
|
||||
@Override
|
||||
public ItemStack getTomeItem() {
|
||||
return this.item;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Spell getContainedSpell() {
|
||||
return this.containedSpell;
|
||||
}
|
||||
}
|
@ -1,40 +0,0 @@
|
||||
package app.simplexdev.arcanumocculta.base.effect;
|
||||
|
||||
import app.simplexdev.arcanumocculta.api.effect.CompoundEffect;
|
||||
import org.bukkit.potion.PotionEffectType;
|
||||
|
||||
import java.time.Duration;
|
||||
|
||||
public abstract class AbstractCompoundEffect extends AbstractEffect implements CompoundEffect {
|
||||
private final PotionEffectType[] effectTypes;
|
||||
|
||||
protected AbstractCompoundEffect(Duration duration, float amplifier, boolean ambient, boolean forceDisplay, PotionEffectType... effectTypes) {
|
||||
super(duration, amplifier, ambient, forceDisplay);
|
||||
this.effectTypes = effectTypes;
|
||||
}
|
||||
|
||||
protected AbstractCompoundEffect(Duration duration, float amplifier, boolean forceDisplay, PotionEffectType... effectTypes) {
|
||||
super(duration, amplifier, forceDisplay);
|
||||
this.effectTypes = effectTypes;
|
||||
}
|
||||
|
||||
protected AbstractCompoundEffect(Duration duration, float amplifier, PotionEffectType... effectTypes) {
|
||||
super(duration, amplifier);
|
||||
this.effectTypes = effectTypes;
|
||||
}
|
||||
|
||||
protected AbstractCompoundEffect(Duration duration, PotionEffectType... effectTypes) {
|
||||
super(duration);
|
||||
this.effectTypes = effectTypes;
|
||||
}
|
||||
|
||||
protected AbstractCompoundEffect(PotionEffectType... effectTypes) {
|
||||
super();
|
||||
this.effectTypes = effectTypes;
|
||||
}
|
||||
|
||||
@Override
|
||||
public PotionEffectType[] getEffectTypes() {
|
||||
return new PotionEffectType[0];
|
||||
}
|
||||
}
|
@ -1,55 +0,0 @@
|
||||
package app.simplexdev.arcanumocculta.base.effect;
|
||||
|
||||
import app.simplexdev.arcanumocculta.api.effect.Effect;
|
||||
|
||||
import java.time.Duration;
|
||||
|
||||
public abstract class AbstractEffect implements Effect {
|
||||
private final Duration duration;
|
||||
private final float amplifier;
|
||||
private final boolean ambient;
|
||||
private final boolean forceDisplay;
|
||||
|
||||
protected AbstractEffect(Duration duration, float amplifier, boolean ambient, boolean forceDisplay) {
|
||||
this.duration = duration;
|
||||
this.amplifier = amplifier;
|
||||
this.ambient = ambient;
|
||||
this.forceDisplay = forceDisplay;
|
||||
}
|
||||
|
||||
protected AbstractEffect(Duration duration, float amplifier, boolean forceDisplay) {
|
||||
this(duration, amplifier, false, forceDisplay);
|
||||
}
|
||||
|
||||
protected AbstractEffect(Duration duration, float amplifier) {
|
||||
this(duration, amplifier, false, false);
|
||||
}
|
||||
|
||||
protected AbstractEffect(Duration duration) {
|
||||
this(duration, 1, false, false);
|
||||
}
|
||||
|
||||
protected AbstractEffect() {
|
||||
this(Duration.ofSeconds(5L), 1, false, false);
|
||||
}
|
||||
|
||||
@Override
|
||||
public Duration getDuration() {
|
||||
return duration;
|
||||
}
|
||||
|
||||
@Override
|
||||
public float getAmplifier() {
|
||||
return amplifier;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean isAmbient() {
|
||||
return ambient;
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean forceDisplay() {
|
||||
return forceDisplay;
|
||||
}
|
||||
}
|
@ -1,53 +0,0 @@
|
||||
package app.simplexdev.arcanumocculta.base.effect;
|
||||
|
||||
import app.simplexdev.arcanumocculta.api.effect.PassiveEffect;
|
||||
import app.simplexdev.arcanumocculta.api.effect.PassiveEffects;
|
||||
import app.simplexdev.arcanumocculta.api.player.Caster;
|
||||
|
||||
import java.time.Duration;
|
||||
|
||||
public abstract class AbstractPassiveEffect extends AbstractEffect implements PassiveEffect {
|
||||
|
||||
private final Caster wandHolder;
|
||||
private final PassiveEffects passiveEffect;
|
||||
|
||||
protected AbstractPassiveEffect(Duration duration, float amplifier, boolean ambient, boolean forceDisplay, Caster wandHolder, PassiveEffects passiveEffect) {
|
||||
super(duration, amplifier, ambient, forceDisplay);
|
||||
this.wandHolder = wandHolder;
|
||||
this.passiveEffect = passiveEffect;
|
||||
}
|
||||
|
||||
public AbstractPassiveEffect(Duration duration, float amplifier, boolean forceDisplay, Caster wandHolder, PassiveEffects passiveEffect) {
|
||||
super(duration, amplifier, forceDisplay);
|
||||
this.wandHolder = wandHolder;
|
||||
this.passiveEffect = passiveEffect;
|
||||
}
|
||||
|
||||
protected AbstractPassiveEffect(Duration duration, float amplifier, Caster wandHolder, PassiveEffects passiveEffect) {
|
||||
super(duration, amplifier);
|
||||
this.wandHolder = wandHolder;
|
||||
this.passiveEffect = passiveEffect;
|
||||
}
|
||||
|
||||
protected AbstractPassiveEffect(Duration duration, Caster wandHolder, PassiveEffects passiveEffect) {
|
||||
super(duration);
|
||||
this.wandHolder = wandHolder;
|
||||
this.passiveEffect = passiveEffect;
|
||||
}
|
||||
|
||||
protected AbstractPassiveEffect(Caster wandHolder, PassiveEffects passiveEffect) {
|
||||
super();
|
||||
this.wandHolder = wandHolder;
|
||||
this.passiveEffect = passiveEffect;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Caster getWandHolder() {
|
||||
return wandHolder;
|
||||
}
|
||||
|
||||
@Override
|
||||
public PassiveEffects getPassiveEffect() {
|
||||
return passiveEffect;
|
||||
}
|
||||
}
|
@ -1,40 +0,0 @@
|
||||
package app.simplexdev.arcanumocculta.base.effect;
|
||||
|
||||
import app.simplexdev.arcanumocculta.api.effect.SpellEffect;
|
||||
import org.bukkit.potion.PotionEffectType;
|
||||
|
||||
import java.time.Duration;
|
||||
|
||||
public abstract class AbstractSpellEffect extends AbstractEffect implements SpellEffect {
|
||||
private final PotionEffectType effectType;
|
||||
|
||||
protected AbstractSpellEffect(Duration duration, float amplifier, boolean ambient, boolean forceDisplay, PotionEffectType effectType) {
|
||||
super(duration, amplifier, ambient, forceDisplay);
|
||||
this.effectType = effectType;
|
||||
}
|
||||
|
||||
protected AbstractSpellEffect(Duration duration, float amplifier, boolean forceDisplay, PotionEffectType effectType) {
|
||||
super(duration, amplifier, forceDisplay);
|
||||
this.effectType = effectType;
|
||||
}
|
||||
|
||||
protected AbstractSpellEffect(Duration duration, float amplifier, PotionEffectType effectType) {
|
||||
super(duration, amplifier);
|
||||
this.effectType = effectType;
|
||||
}
|
||||
|
||||
protected AbstractSpellEffect(Duration duration, PotionEffectType effectType) {
|
||||
super(duration);
|
||||
this.effectType = effectType;
|
||||
}
|
||||
|
||||
protected AbstractSpellEffect(PotionEffectType effectType) {
|
||||
super();
|
||||
this.effectType = effectType;
|
||||
}
|
||||
|
||||
@Override
|
||||
public PotionEffectType getEffectType() {
|
||||
return effectType;
|
||||
}
|
||||
}
|
@ -1,124 +0,0 @@
|
||||
package app.simplexdev.arcanumocculta.base.player;
|
||||
|
||||
import app.simplexdev.arcanumocculta.api.book.SpellBook;
|
||||
import app.simplexdev.arcanumocculta.api.player.Caster;
|
||||
import app.simplexdev.arcanumocculta.api.player.SpellResistance;
|
||||
import org.bukkit.entity.Player;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
import java.util.UUID;
|
||||
|
||||
public abstract class AbstractCaster implements Caster {
|
||||
private final String name;
|
||||
private final UUID uuid;
|
||||
private final SpellBook spellBook;
|
||||
private final List<SpellResistance> spellResistances = new ArrayList<>();
|
||||
|
||||
private double maximumMana;
|
||||
private double currentMana;
|
||||
|
||||
protected AbstractCaster(final Player player, SpellBook spellBook) {
|
||||
this.name = player.getName();
|
||||
this.uuid = player.getUniqueId();
|
||||
this.spellBook = spellBook;
|
||||
|
||||
this.maximumMana = 20;
|
||||
this.currentMana = maximumMana;
|
||||
}
|
||||
|
||||
@Override
|
||||
public UUID getCasterUUID() {
|
||||
return uuid;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getDisplayName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
@Override
|
||||
public double getMaximumMana() {
|
||||
return maximumMana;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setMaximumMana(double mana) {
|
||||
this.maximumMana = mana;
|
||||
}
|
||||
|
||||
@Override
|
||||
public double getCurrentMana() {
|
||||
return currentMana;
|
||||
}
|
||||
|
||||
@Override
|
||||
public double addMana(double mana) {
|
||||
this.currentMana += mana;
|
||||
return getCurrentMana();
|
||||
}
|
||||
|
||||
@Override
|
||||
public double increaseMaximumMana(double mana) {
|
||||
this.maximumMana += mana;
|
||||
return getMaximumMana();
|
||||
}
|
||||
|
||||
@Override
|
||||
public double removeMana(double mana) {
|
||||
final double newMana = currentMana - mana;
|
||||
if (newMana < 0) {
|
||||
currentMana = 0;
|
||||
} else {
|
||||
currentMana = newMana;
|
||||
}
|
||||
return getCurrentMana();
|
||||
}
|
||||
|
||||
@Override
|
||||
public double decreaseMaximumMana(double mana) {
|
||||
final double newMana = maximumMana - mana;
|
||||
if (newMana < 0) {
|
||||
maximumMana = 0;
|
||||
} else {
|
||||
maximumMana = newMana;
|
||||
}
|
||||
return getMaximumMana();
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setMana(double mana) {
|
||||
if (mana > getMaximumMana()) {
|
||||
currentMana = getMaximumMana();
|
||||
} else if (mana < 0) {
|
||||
currentMana = 0;
|
||||
} else {
|
||||
currentMana = mana;
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public SpellBook getSpellbook() {
|
||||
return spellBook;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<SpellResistance> getSpellResistances() {
|
||||
return spellResistances;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void addSpellResistance(SpellResistance resistance) {
|
||||
this.spellResistances.add(resistance);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void removeSpellResistance(SpellResistance resistance) {
|
||||
this.spellResistances.remove(resistance);
|
||||
}
|
||||
|
||||
@Override
|
||||
public boolean hasResistance(int ordinal) {
|
||||
return getSpellResistances().stream().anyMatch(resistance -> resistance.getOrdinal() == ordinal);
|
||||
}
|
||||
}
|
@ -1,48 +0,0 @@
|
||||
package app.simplexdev.arcanumocculta.base.player;
|
||||
|
||||
import app.simplexdev.arcanumocculta.api.effect.PassiveEffect;
|
||||
import app.simplexdev.arcanumocculta.api.player.Wand;
|
||||
import org.bukkit.inventory.ItemStack;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.List;
|
||||
|
||||
public abstract class AbstractWand implements Wand {
|
||||
private final List<PassiveEffect> passiveEffects = new ArrayList<>();
|
||||
private String name;
|
||||
private String description;
|
||||
private ItemStack item;
|
||||
private double manaPenalty;
|
||||
|
||||
protected AbstractWand(String name, String description, ItemStack item, double manaPenalty) {
|
||||
this.name = name;
|
||||
this.description = description;
|
||||
this.item = item;
|
||||
this.manaPenalty = manaPenalty;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getWandName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getWandDescription() {
|
||||
return description;
|
||||
}
|
||||
|
||||
@Override
|
||||
public ItemStack getWandItem() {
|
||||
return item;
|
||||
}
|
||||
|
||||
@Override
|
||||
public double getManaPenalty() {
|
||||
return manaPenalty;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<PassiveEffect> getPassiveEffects() {
|
||||
return passiveEffects;
|
||||
}
|
||||
}
|
@ -1,30 +0,0 @@
|
||||
package app.simplexdev.arcanumocculta.base.player;
|
||||
|
||||
import app.simplexdev.arcanumocculta.api.player.SpellResistance;
|
||||
|
||||
public class SimpleSpellResistance implements SpellResistance {
|
||||
private final String name;
|
||||
private final double resistance;
|
||||
private final int ordinal;
|
||||
|
||||
public SimpleSpellResistance(String spellName, double resistance, int ordinal) {
|
||||
this.name = spellName;
|
||||
this.resistance = resistance;
|
||||
this.ordinal = ordinal;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getSpellName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
@Override
|
||||
public double getResistance() {
|
||||
return resistance;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getOrdinal() {
|
||||
return ordinal;
|
||||
}
|
||||
}
|
@ -1,68 +0,0 @@
|
||||
package app.simplexdev.arcanumocculta.base.spell;
|
||||
|
||||
import app.simplexdev.arcanumocculta.api.effect.Effect;
|
||||
import app.simplexdev.arcanumocculta.api.spell.Spell;
|
||||
|
||||
import java.time.Duration;
|
||||
|
||||
public abstract class AbstractSpell<T extends Effect> implements Spell<T> {
|
||||
private final String name;
|
||||
private final String description;
|
||||
private final double manaCost;
|
||||
private final Duration coolDown;
|
||||
private final int spellLevel;
|
||||
private final T spellEffect;
|
||||
|
||||
private long coolDownEnd;
|
||||
|
||||
protected AbstractSpell(String name, String description, double manaCost, Duration coolDown, int spellLevel, T effect) {
|
||||
this.name = name;
|
||||
this.description = description;
|
||||
this.manaCost = manaCost;
|
||||
this.coolDown = coolDown;
|
||||
this.spellLevel = spellLevel;
|
||||
this.spellEffect = effect;
|
||||
}
|
||||
|
||||
protected AbstractSpell(String name, String description, double manaCost, Duration coolDown, T effect) {
|
||||
this(name, description, manaCost, coolDown, 1, effect);
|
||||
}
|
||||
|
||||
protected AbstractSpell(String name, String description, double manaCost, T effect) {
|
||||
this(name, description, manaCost, Duration.ofSeconds(10L), effect);
|
||||
}
|
||||
|
||||
protected AbstractSpell(String name, String description, T effect) {
|
||||
this(name, description, 5.0, effect);
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getSpellName() {
|
||||
return name;
|
||||
}
|
||||
|
||||
@Override
|
||||
public String getSpellDescription() {
|
||||
return description;
|
||||
}
|
||||
|
||||
@Override
|
||||
public double getManaCost() {
|
||||
return manaCost;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Duration getCoolDown() {
|
||||
return coolDown;
|
||||
}
|
||||
|
||||
@Override
|
||||
public int getSpellLevel() {
|
||||
return spellLevel;
|
||||
}
|
||||
|
||||
@Override
|
||||
public T getEffect() {
|
||||
return spellEffect;
|
||||
}
|
||||
}
|
@ -1,143 +0,0 @@
|
||||
package app.simplexdev.arcanumocculta.base.spell;
|
||||
|
||||
import app.simplexdev.arcanumocculta.api.effect.CompoundEffect;
|
||||
import app.simplexdev.arcanumocculta.api.effect.Effect;
|
||||
import app.simplexdev.arcanumocculta.api.effect.SpecialEffect;
|
||||
import app.simplexdev.arcanumocculta.api.effect.SpellEffect;
|
||||
import app.simplexdev.arcanumocculta.api.player.Caster;
|
||||
import app.simplexdev.arcanumocculta.api.spell.Spell;
|
||||
import app.simplexdev.arcanumocculta.api.spell.SpellProjectile;
|
||||
import org.bukkit.Location;
|
||||
import org.bukkit.Particle;
|
||||
import org.bukkit.entity.AreaEffectCloud;
|
||||
import org.bukkit.entity.EntityType;
|
||||
import org.bukkit.entity.LivingEntity;
|
||||
import org.bukkit.entity.Projectile;
|
||||
import org.bukkit.potion.PotionEffect;
|
||||
import org.bukkit.potion.PotionEffectType;
|
||||
import org.bukkit.util.Vector;
|
||||
|
||||
import java.util.ArrayList;
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
|
||||
public abstract class AbstractSpellProjectile<T extends Projectile> implements SpellProjectile<T> {
|
||||
|
||||
private static final List<EntityType> accepted = List.of(
|
||||
EntityType.ARROW,
|
||||
EntityType.SPECTRAL_ARROW,
|
||||
EntityType.FIREBALL,
|
||||
EntityType.DRAGON_FIREBALL,
|
||||
EntityType.SMALL_FIREBALL,
|
||||
EntityType.WITHER_SKULL,
|
||||
EntityType.ENDER_PEARL,
|
||||
EntityType.SNOWBALL,
|
||||
EntityType.EGG,
|
||||
EntityType.TRIDENT,
|
||||
EntityType.FIREWORK,
|
||||
EntityType.LLAMA_SPIT,
|
||||
EntityType.SHULKER_BULLET,
|
||||
EntityType.FISHING_HOOK,
|
||||
EntityType.SPLASH_POTION,
|
||||
EntityType.THROWN_EXP_BOTTLE);
|
||||
|
||||
private final Class<T> projectile;
|
||||
private final List<Particle> particles;
|
||||
private final Caster caster;
|
||||
private final Spell<?> spell;
|
||||
|
||||
protected AbstractSpellProjectile(final Spell<?> spell, final Caster caster, final Class<T> projectile, final Particle... particles) {
|
||||
this.projectile = projectile;
|
||||
this.particles = Arrays.asList(particles);
|
||||
this.caster = caster;
|
||||
this.spell = spell;
|
||||
}
|
||||
|
||||
@Override
|
||||
public Class<T> getProjectileType() {
|
||||
return projectile;
|
||||
}
|
||||
|
||||
@Override
|
||||
public List<Particle> getParticles() {
|
||||
return particles;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void cast(Location target) {
|
||||
final Vector velocity = caster.bukkit().getEyeLocation().getDirection().multiply(2);
|
||||
final T launched = caster.bukkit().launchProjectile(getProjectileType(), velocity);
|
||||
|
||||
while (!launched.isDead()) {
|
||||
final double randomXOffset = Math.sin((Math.random() * 10 - 2) % Math.PI) * 5;
|
||||
final double randomYOffset = ((Math.random() * 10 - 2) % Math.PI) * 5;
|
||||
final double randomZOffset = Math.cos((Math.random() * 10 - 2) % (2 * Math.PI)) * 5;
|
||||
particles.forEach(particle -> launched.getWorld().spawnParticle(particle, launched.getLocation(), 1, randomXOffset, randomYOffset, randomZOffset));
|
||||
|
||||
if (launched.isOnGround()
|
||||
|| launched.isDead()
|
||||
|| launched.getTicksLived() > 100
|
||||
|| launched.getLocation().clone().equals(target)) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
final Effect effect = spell.getEffect();
|
||||
if (effect instanceof SpellEffect sp) {
|
||||
PotionEffect e = sp.getEffectType().createEffect((int) sp.getDuration().getSeconds(), (int) sp.getAmplifier());
|
||||
AreaEffectCloud cloud = (AreaEffectCloud) target.getWorld().spawnEntity(target, EntityType.AREA_EFFECT_CLOUD);
|
||||
cloud.addCustomEffect(e, true);
|
||||
cloud.setRadius(2.5F);
|
||||
cloud.setDuration((int) sp.getDuration().getSeconds());
|
||||
cloud.setSource(caster.bukkit());
|
||||
} else if (effect instanceof CompoundEffect sp) {
|
||||
final List<PotionEffect> effects = new ArrayList<>();
|
||||
for (PotionEffectType type : sp.getEffectTypes()) {
|
||||
PotionEffect e = type.createEffect((int) sp.getDuration().getSeconds(), (int) sp.getAmplifier());
|
||||
effects.add(e);
|
||||
}
|
||||
AreaEffectCloud cloud = (AreaEffectCloud) target.getWorld().spawnEntity(target, EntityType.AREA_EFFECT_CLOUD);
|
||||
for (PotionEffect e : effects) {
|
||||
cloud.addCustomEffect(e, true);
|
||||
}
|
||||
cloud.setRadius(2.5F);
|
||||
cloud.setDuration((int) sp.getDuration().getSeconds());
|
||||
cloud.setSource(caster.bukkit());
|
||||
}
|
||||
}
|
||||
|
||||
@Override
|
||||
public void cast(LivingEntity target) {
|
||||
final Vector velocity = caster.bukkit().getEyeLocation().getDirection().multiply(2);
|
||||
final T launched = caster.bukkit().launchProjectile(getProjectileType(), velocity);
|
||||
|
||||
while (!launched.isDead()) {
|
||||
final double randomXOffset = Math.sin((Math.random() * 10 - 2) % Math.PI) * 5;
|
||||
final double randomYOffset = ((Math.random() * 10 - 2) % Math.PI) * 5;
|
||||
final double randomZOffset = Math.cos((Math.random() * 10 - 2) % (2 * Math.PI)) * 5;
|
||||
particles.forEach(particle -> launched.getWorld().spawnParticle(particle, launched.getLocation(), 1, randomXOffset, randomYOffset, randomZOffset));
|
||||
|
||||
if (launched.isOnGround()
|
||||
|| launched.isDead()
|
||||
|| launched.getTicksLived() > 100
|
||||
|| launched.getLocation().clone().equals(target)) {
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
final Effect effect = spell.getEffect();
|
||||
if (effect instanceof SpellEffect sp) {
|
||||
PotionEffect e = sp.getEffectType().createEffect((int) sp.getDuration().getSeconds(), (int) sp.getAmplifier());
|
||||
target.addPotionEffect(e);
|
||||
} else if (effect instanceof CompoundEffect sp) {
|
||||
final List<PotionEffect> effects = new ArrayList<>();
|
||||
for (PotionEffectType type : sp.getEffectTypes()) {
|
||||
PotionEffect e = type.createEffect((int) sp.getDuration().getSeconds(), (int) sp.getAmplifier());
|
||||
effects.add(e);
|
||||
}
|
||||
target.addPotionEffects(effects);
|
||||
} else if (effect instanceof SpecialEffect sp) {
|
||||
sp.applyEffect(target);
|
||||
}
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user