package io.github.bi0qaw.biosphere.expression; import ch.njol.skript.doc.Description; import ch.njol.skript.doc.Examples; import ch.njol.skript.doc.Name; import ch.njol.skript.lang.Expression; import ch.njol.skript.lang.SkriptParser.ParseResult; import ch.njol.skript.lang.util.SimpleExpression; import ch.njol.util.Kleenean; import io.github.bi0qaw.biosphere.util.LocationLib; import org.bukkit.Location; import org.bukkit.event.Event; import org.jetbrains.annotations.Nullable; @Name("Location Line") @Description("Creates a list of locations in the shape of a line. The density value controls the amount of points. A higher number increases the amount of points. A density of 1 corresponds to 1 point per block.") @Examples("show happy villager at line between player's head and location 5 in front of player's head with density 5") public class ExprLocationLine extends SimpleExpression{ private Expression location1; private Expression location2; private Expression density; @Override public Class getReturnType() { return Location.class; } @Override public boolean isSingle() { return false; } @SuppressWarnings("unchecked") @Override public boolean init(Expression[] expr, int arg1, Kleenean arg2, ParseResult arg3) { location1 = (Expression) expr[0]; location2 = (Expression) expr[1]; density = (Expression) expr[2]; return true; } @Override public String toString(@Nullable Event arg0, boolean arg1) { return "line from " + location1.toString(arg0, arg1) + " to " + location2.toString(arg0, arg1); } @Override @Nullable protected Location[] get(Event e) { double d = density.getSingle(e).doubleValue(); return LocationLib.getLine(location1.getArray(e), location2.getSingle(e), d); } }