Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add potion effect tier #4632

Merged
merged 16 commits into from
Aug 17, 2022
Merged
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
81 changes: 81 additions & 0 deletions src/main/java/ch/njol/skript/expressions/ExprPotionEffectTier.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
/**
* This file is part of Skript.
*
* Skript is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* Skript is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with Skript. If not, see <http://www.gnu.org/licenses/>.
*
* Copyright Peter Güttinger, SkriptLang team and contributors
*/
package ch.njol.skript.expressions;

import ch.njol.skript.Skript;
import ch.njol.skript.doc.Description;
import ch.njol.skript.doc.Examples;
import ch.njol.skript.doc.Name;
import ch.njol.skript.doc.Since;
import ch.njol.skript.lang.Expression;
import ch.njol.skript.lang.ExpressionType;
import ch.njol.skript.lang.SkriptParser.ParseResult;
import ch.njol.skript.lang.util.SimpleExpression;
import ch.njol.util.Kleenean;
import org.bukkit.entity.LivingEntity;
import org.bukkit.event.Event;
import org.bukkit.potion.PotionEffect;
import org.bukkit.potion.PotionEffectType;
import org.eclipse.jdt.annotation.Nullable;

@Name("Potion Effect Tier")
@Description("Returns the tier of an entities potion effect.")
Ankoki marked this conversation as resolved.
Show resolved Hide resolved
@Examples("if the amplifier of haste of player >= 3:")
@Since("INSERT VERSION")
public class ExprPotionEffectTier extends SimpleExpression<Number> {
TheLimeGlass marked this conversation as resolved.
Show resolved Hide resolved

static {
Skript.registerExpression(ExprPotionEffectTier.class, Number.class, ExpressionType.SIMPLE,
"[the] [potion] (tier|amplifier|level) of %potioneffecttype% of %livingentity%");
Ankoki marked this conversation as resolved.
Show resolved Hide resolved
}

private Expression<PotionEffectType> typeExpr;
private Expression<LivingEntity> entityExpr;

@Override
TheLimeGlass marked this conversation as resolved.
Show resolved Hide resolved
public boolean init(Expression<?>[] exprs, int matchedPattern, Kleenean isDelayed, ParseResult parseResult) {
typeExpr = (Expression<PotionEffectType>) exprs[0];
entityExpr = (Expression<LivingEntity>) exprs[1];
return true;
}

@Override
protected @Nullable Number[] get(Event event) {
Ankoki marked this conversation as resolved.
Show resolved Hide resolved
PotionEffectType type = typeExpr.getSingle(event);
LivingEntity entity = entityExpr.getSingle(event);
if (type == null || entity == null) return new Number[0];
Ankoki marked this conversation as resolved.
Show resolved Hide resolved
PotionEffect effect = entity.getPotionEffect(type);
return new Number[]{effect == null ? 0 : effect.getAmplifier() + 1};
}

@Override
public boolean isSingle() {
return true;
}

@Override
public Class<? extends Number> getReturnType() {
return Number.class;
}

@Override
public String toString(@Nullable Event e, boolean debug) {
return "tier of " + typeExpr.toString(e, debug) + " of " + entityExpr.toString(e, debug);
Ankoki marked this conversation as resolved.
Show resolved Hide resolved
}
Ankoki marked this conversation as resolved.
Show resolved Hide resolved
}