NoCheatPlus/NCPCore/src/main/java/fr/neatmonster/nocheatplus/penalties/DefaultPenaltyList.java

114 lines
3.7 KiB
Java

/*
* This program 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.
*
* This program 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 this program. If not, see <http://www.gnu.org/licenses/>.
*/
package fr.neatmonster.nocheatplus.penalties;
import java.util.Iterator;
import java.util.LinkedHashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.util.Map.Entry;
public class DefaultPenaltyList implements IPenaltyList {
/**
* Desperation.
*
* @author asofold
*
* @param <RI>
*/
private static class GenericNode<RI> {
private final List<Penalty<RI>> penalties = new LinkedList<Penalty<RI>>();
/**
*
* @param input
* @param removeAppliedPenalties
* See {@link Penalty#apply(Object)}.
* @return True if the list has been emptied, false otherwise.
*/
private boolean apply(final RI input, final boolean removeAppliedPenalties) {
final Iterator<Penalty<RI>> it = penalties.iterator();
while (it.hasNext()) {
if (it.next().apply(input) && removeAppliedPenalties) {
it.remove();
}
}
return penalties.isEmpty();
}
}
private boolean willCancel = false;
private final Map<Class<?>, GenericNode<?>> penaltyMap = new LinkedHashMap<Class<?>, GenericNode<?>>();
@Override
public <RI> void addPenalty(final Class<RI> registeredInput,
final Penalty<RI> penalty) {
if (penalty == CancelPenalty.CANCEL) {
willCancel = true;
}
else {
@SuppressWarnings("unchecked")
GenericNode<RI> node = (GenericNode<RI>) penaltyMap.get(registeredInput);
if (node == null) {
node = new GenericNode<RI>();
penaltyMap.put(registeredInput, node);
}
node.penalties.add(penalty);
}
}
@Override
public <RI, I extends RI> void applyPenaltiesPrecisely(
final Class<RI> type, final I input,
final boolean removeAppliedPenalties) {
@SuppressWarnings("unchecked")
final GenericNode<RI> node = (GenericNode<RI>) penaltyMap.get(type);
if (node != null && node.apply(input, removeAppliedPenalties)
&& removeAppliedPenalties) {
penaltyMap.remove(type);
}
}
@SuppressWarnings("unchecked")
@Override
public <I> void applyAllApplicablePenalties(final I input,
final boolean removeAppliedPenalties) {
final Class<?> inputClass = input.getClass();
final Iterator<Entry<Class<?>, GenericNode<?>>> it = penaltyMap.entrySet().iterator();
while (it.hasNext()) {
final Entry<Class<?>, GenericNode<?>> entry = it.next();
if (entry.getKey().isAssignableFrom(inputClass) &&
((GenericNode<? super I>) entry.getValue()).apply(input, removeAppliedPenalties)
&& removeAppliedPenalties) {
it.remove();
}
}
}
@Override
public boolean isEmpty() {
return penaltyMap.isEmpty();
}
@Override
public boolean willCancel() {
return willCancel;
}
}