org.spongepowered.api.event.entity.AffectEntityEvent 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.entity;
import org.spongepowered.api.entity.Entity;
import org.spongepowered.api.entity.EntitySnapshot;
import org.spongepowered.api.event.Cancellable;
import org.spongepowered.api.event.Event;
import org.spongepowered.api.event.Order;
import org.spongepowered.api.event.impl.entity.AbstractAffectEntityEvent;
import org.spongepowered.api.util.annotation.eventgen.ImplementedBy;
import org.spongepowered.api.util.annotation.eventgen.PropertySettings;
import org.spongepowered.api.world.explosion.Explosion;
import org.spongepowered.api.world.server.ServerLocation;
import java.util.List;
import java.util.function.Predicate;
/**
* An event that affects multiple {@link Entity} instances as a bulk action.
* The constraint is that if an action can be deemed as necessary for selective
* individualized processing, such as {@link DamageEntityEvent},
* the actioned {@link Event} is handled individually. If a bulk of
* {@link Entity} instances are being affected, for example by an
* {@link Explosion} "damaging" a varying amount of {@link Entity} instances.
* Other cases will be included as necessary.
*/
@ImplementedBy(AbstractAffectEntityEvent.class)
public interface AffectEntityEvent extends Event, Cancellable {
/**
* Gets an {@link List} of the entity data
* un-affected by event changes.
*
* This method MUST be called at {@link Order#PRE} in order
* to be properly initialized, after which it can be called at any time.
* If it is not first called at {@link Order#PRE}, it will throw an {@link IllegalStateException}
* when invoked.
*
* @return The ImmutableList
* @throws IllegalStateException If the method is called after the pre order
*/
@PropertySettings(requiredParameter = false, generateMethods = false)
List entitySnapshots() throws IllegalStateException;
/**
* Gets the {@link List} of entities who will be affected after event
* resolution.
* This list can only be modified using {@link AffectEntityEvent#filterEntities(Predicate)}.
*
* @return The list of entities that will be affected.
*/
@PropertySettings(requiredParameter = true, generateMethods = false)
List entities();
/**
* Filters out {@link ServerLocation}'s from
* {@link AffectEntityEvent#entities()} to be affected by this event.
*
* Locations for which the predicate returns false
will
* be removed from {@link #entities()}.
*
* @param predicate The predicate to use for filtering
*/
default void filterEntityLocations(Predicate predicate) {
filterEntities(entity -> entity.location().onServer().map(predicate::test).orElse(false));
}
/**
* Filters out {@link Entity}'s from {@link AffectEntityEvent#entities()}
* to be affected by this event.
*
* Entities for which the predicate returns false
will
* be removed from {@link #entities()}.
*
* @param predicate The predicate to use for filtering
*/
void filterEntities(Predicate predicate);
}