org.spongepowered.api.event.impl.entity.AbstractModifierEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of spongeapi Show documentation
Show all versions of spongeapi Show documentation
A plugin API for Minecraft: Java Edition
The newest version!
/*
* This file is part of SpongeAPI, licensed under the MIT License (MIT).
*
* Copyright (c) SpongePowered
* Copyright (c) contributors
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package org.spongepowered.api.event.impl.entity;
import com.google.common.collect.ImmutableList;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.Maps;
import org.spongepowered.api.event.cause.entity.damage.ModifierFunction;
import org.spongepowered.api.event.entity.DamageEntityEvent;
import org.spongepowered.api.event.impl.AbstractEvent;
import org.spongepowered.api.util.Tuple;
import java.util.ArrayList;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import java.util.Objects;
import java.util.function.DoubleUnaryOperator;
/**
* An abstract base class for implementations of {@link DamageEntityEvent}.
*
* @param The modifier type to use
*/
public abstract class AbstractModifierEvent, M> extends AbstractEvent {
protected double originalFinalAmount;
protected List> originalModifiers;
protected Map originalModifierMap;
protected final LinkedHashMap modifiers = Maps.newLinkedHashMap();
protected final List modifierFunctions = new ArrayList<>();
protected ImmutableList init(double originalValue, List originalFunctions) {
final ImmutableList.Builder> modifierMapBuilder = ImmutableList.builder();
final ImmutableList.Builder functionListBuilder = ImmutableList.builder();
final ImmutableMap.Builder mapBuilder = ImmutableMap.builder();
double finalDamage = originalValue;
for (T tuple : originalFunctions) {
this.modifierFunctions.add(this.convertTuple(tuple.modifier(), tuple.function()));
final double tempDamage = tuple.function().applyAsDouble(finalDamage);
finalDamage += tempDamage;
modifierMapBuilder.add(new Tuple<>(tuple.modifier(), tempDamage));
mapBuilder.put(tuple.modifier(), tempDamage);
this.modifiers.put(tuple.modifier(), tempDamage);
functionListBuilder.add(this.convertTuple(tuple.modifier(), tuple.function()));
}
this.originalFinalAmount = finalDamage;
this.originalModifiers = modifierMapBuilder.build();
this.originalModifierMap = mapBuilder.build();
return functionListBuilder.build();
}
protected abstract T convertTuple(M obj, DoubleUnaryOperator function);
protected void recalculateDamages(final double baseAmount) {
double tempAmount = baseAmount;
this.modifiers.clear();
for (T entry : this.modifierFunctions) {
final double modifierAmount = entry.function().applyAsDouble(tempAmount);
if (this.modifiers.containsKey(entry.modifier())) {
final double oldAmount = this.modifiers.get(entry.modifier());
final double difference = oldAmount - modifierAmount;
if (oldAmount > 0) {
this.modifiers.put(entry.modifier(), Math.max(0, oldAmount - difference));
} else {
this.modifiers.put(entry.modifier(), Math.min(0, oldAmount - difference));
}
} else {
this.modifiers.put(entry.modifier(), modifierAmount);
}
tempAmount += modifierAmount;
}
}
protected double finalAmount(final double baseAmount) {
double damage = baseAmount;
for (final T entry : this.modifierFunctions) {
damage += entry.function().applyAsDouble(damage);
}
return damage;
}
/**
* Gets the modifiers affecting this event.
*
* @return The list of modifiers
*/
public List modifiers() {
final ImmutableList.Builder builder = ImmutableList.builder();
for (T entry : this.modifierFunctions) {
builder.add(entry);
}
return builder.build();
}
}