Skip to content

Commit

Permalink
Remove exceptions for reversed and shuffled
Browse files Browse the repository at this point in the history
  • Loading branch information
JRoy committed Jul 22, 2019
1 parent df989a2 commit 0fa7f38
Show file tree
Hide file tree
Showing 2 changed files with 83 additions and 92 deletions.
168 changes: 82 additions & 86 deletions src/main/java/ch/njol/skript/expressions/ExprReversedList.java
Original file line number Diff line number Diff line change
@@ -1,86 +1,82 @@
/**
* 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 2011-2017 Peter Güttinger and contributors
*/
package ch.njol.skript.expressions;

import java.util.Arrays;
import java.util.Collections;
import java.util.List;

import org.bukkit.event.Event;
import org.eclipse.jdt.annotation.Nullable;

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;
import ch.njol.skript.lang.util.SimpleExpression;
import ch.njol.util.Kleenean;

@Name("Reversed List")
@Description("Reverses given list.")
@Examples({"set {_list::*} to reversed {_list::*}"})
@Since("INSERT VERSION")
public class ExprReversedList extends SimpleExpression<Object> {

static {
Skript.registerExpression(ExprReversedList.class, Object.class, ExpressionType.COMBINED, "reversed %objects%");
}

@SuppressWarnings("null")
private Expression<Object> list;

@SuppressWarnings("unchecked")
@Override
public boolean init(Expression<?>[] exprs, int matchedPattern, Kleenean isDelayed, SkriptParser.ParseResult parseResult) {
list = (Expression<Object>) exprs[0];
return true;
}

@Nullable
@Override
protected Object[] get(Event e) {
List<Object> reversed = Arrays.asList(list.getAll(e).clone());
try {
Collections.reverse(reversed);
} catch (UnsupportedOperationException ex) {
Skript.error("Tried to reverse a list, but an exception was thrown!");
}
return reversed.toArray();
}

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

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

@Override
public String toString(@Nullable Event e, boolean debug) {
return "reversed list";
}
}
/**
* 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 2011-2017 Peter Güttinger and contributors
*/
package ch.njol.skript.expressions;

import java.util.Arrays;
import java.util.Collections;
import java.util.List;

import org.bukkit.event.Event;
import org.eclipse.jdt.annotation.Nullable;

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;
import ch.njol.skript.lang.util.SimpleExpression;
import ch.njol.util.Kleenean;

@Name("Reversed List")
@Description("Reverses given list.")
@Examples({"set {_list::*} to reversed {_list::*}"})
@Since("INSERT VERSION")
public class ExprReversedList extends SimpleExpression<Object> {

static {
Skript.registerExpression(ExprReversedList.class, Object.class, ExpressionType.COMBINED, "reversed %objects%");
}

@SuppressWarnings("null")
private Expression<Object> list;

@SuppressWarnings("unchecked")
@Override
public boolean init(Expression<?>[] exprs, int matchedPattern, Kleenean isDelayed, SkriptParser.ParseResult parseResult) {
list = (Expression<Object>) exprs[0];
return true;
}

@Nullable
@Override
protected Object[] get(Event e) {
List<Object> reversed = Arrays.asList(list.getAll(e).clone());
Collections.reverse(reversed);
return reversed.toArray();
}

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

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

@Override
public String toString(@Nullable Event e, boolean debug) {
return "reversed list";
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -65,12 +65,7 @@ public boolean init(Expression<?>[] exprs, int matchedPattern, Kleenean isDelaye
protected Object[] get(Event e) {
Object[] origin = list.getAll(e);
List<Object> shuffled = Arrays.asList(origin.clone()); // Not yet shuffled...

try {
Collections.shuffle(shuffled);
} catch (IllegalArgumentException ex) { // In case elements are not comparable
Skript.error("Tried to sort a list, but some objects are not comparable!");
}
Collections.shuffle(shuffled);
return shuffled.toArray();
}

Expand Down

0 comments on commit 0fa7f38

Please sign in to comment.