WorldGuard/src/main/java/com/sk89q/worldguard/bukkit/cause/Cause.java

244 lines
7.1 KiB
Java
Raw Normal View History

2014-08-13 04:48:20 +02:00
/*
* WorldGuard, a suite of tools for Minecraft
* Copyright (C) sk89q <http://www.sk89q.com>
* Copyright (C) WorldGuard team and contributors
*
* This program is free software: you can redistribute it and/or modify it
* under the terms of the GNU Lesser 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 Lesser General Public License
* for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.sk89q.worldguard.bukkit.cause;
import com.google.common.base.Joiner;
2014-08-15 10:43:37 +02:00
import com.sk89q.worldguard.bukkit.util.WGMetadata;
import org.bukkit.block.Block;
2014-08-15 10:43:37 +02:00
import org.bukkit.entity.Entity;
import org.bukkit.entity.EntityType;
2014-08-13 04:48:20 +02:00
import org.bukkit.entity.Player;
import org.bukkit.entity.Projectile;
2014-08-15 10:43:37 +02:00
import org.bukkit.entity.TNTPrimed;
2014-08-13 08:17:36 +02:00
import org.bukkit.entity.Tameable;
import org.bukkit.entity.Vehicle;
2014-08-15 10:43:37 +02:00
import org.bukkit.metadata.Metadatable;
2014-08-13 04:48:20 +02:00
import javax.annotation.Nullable;
import java.util.ArrayList;
import java.util.Collections;
import java.util.List;
import static com.google.common.base.Preconditions.checkNotNull;
/**
* An instance of this object describes the actors that played a role in
* causing an event, with the ability to describe a situation where one actor
* controls several other actors to create the event.
*
* <p>For example, if a player fires an arrow that hits an item frame, the player
* is the initiator, while the arrow is merely controlled by the player to
* hit the item frame.</p>
*/
public class Cause {
2014-08-15 10:43:37 +02:00
private static final String CAUSE_KEY = "worldguard.cause";
2014-08-13 04:48:20 +02:00
private static final Cause UNKNOWN = new Cause(Collections.emptyList());
private final List<Object> causes;
/**
* Create a new instance.
*
* @param causes a list of causes
*/
private Cause(List<Object> causes) {
checkNotNull(causes);
this.causes = causes;
}
/**
* Return whether a cause is known. This method will return true if
* the list of causes is empty or the list of causes only contains
* objects that really are not root causes (i.e primed TNT).
2014-08-13 04:48:20 +02:00
*
* @return true if known
*/
public boolean isKnown() {
if (causes.isEmpty()) {
return false;
}
boolean found = false;
for (Object object : causes) {
if (!(object instanceof TNTPrimed) && !(object instanceof Vehicle)) {
found = true;
break;
}
}
return found;
2014-08-13 04:48:20 +02:00
}
@Nullable
public Object getRootCause() {
if (!causes.isEmpty()) {
return causes.get(0);
}
return null;
}
2014-08-13 04:48:20 +02:00
@Nullable
public Player getFirstPlayer() {
2014-08-13 04:48:20 +02:00
for (Object object : causes) {
if (object instanceof Player) {
return (Player) object;
}
}
return null;
}
2014-08-15 10:43:37 +02:00
@Nullable
public Entity getFirstEntity() {
2014-08-15 10:43:37 +02:00
for (Object object : causes) {
if (object instanceof Entity) {
return (Entity) object;
}
}
return null;
}
2014-08-19 08:31:19 +02:00
@Nullable
public Block getFirstBlock() {
for (Object object : causes) {
if (object instanceof Block) {
return (Block) object;
}
}
return null;
}
/**
* Find the first type matching one in the given array.
*
* @param types an array of types
* @return a found type or null
*/
@Nullable
public EntityType find(EntityType... types) {
for (Object object : causes) {
if (object instanceof Entity) {
for (EntityType type : types) {
if (((Entity) object).getType() == type) {
return type;
}
}
}
}
return null;
}
2014-08-13 04:48:20 +02:00
@Override
public String toString() {
return Joiner.on(" | ").join(causes);
}
/**
* Expand an cause object.
*
* @param list the list to add elements to
* @param element an array of objects
*/
private static void expand(List<Object> list, @Nullable Object ... element) {
if (element != null) {
for (Object o : element) {
if (o == null) {
continue;
}
2014-08-24 11:49:58 +02:00
if (o instanceof TNTPrimed) {
expand(list, ((TNTPrimed) o).getSource());
} else if (o instanceof Projectile) {
expand(list, ((Projectile) o).getShooter());
} else if (o instanceof Vehicle) {
expand(list, ((Vehicle) o).getPassenger());
} else if (o instanceof Tameable) {
expand(list, ((Tameable) o).getOwner());
}
2014-08-15 10:43:37 +02:00
// Add manually tracked parent causes
Object source = o;
int index = list.size();
while (source instanceof Metadatable && !(source instanceof Block)) {
2014-08-15 10:43:37 +02:00
source = WGMetadata.getIfPresent((Metadatable) source, CAUSE_KEY, Object.class);
if (source != null) {
list.add(index, source);
}
}
2014-08-24 11:49:58 +02:00
list.add(o);
2014-08-13 04:48:20 +02:00
}
}
}
/**
* Create a new instance with the given objects as the cause,
* where the first-most object is the initial initiator and those
* following it are controlled by the previous entry.
*
* @param cause an array of causing objects
* @return a cause
*/
public static Cause create(@Nullable Object ... cause) {
if (cause != null) {
List<Object> causes = new ArrayList<Object>(cause.length);
expand(causes, cause);
return new Cause(causes);
} else {
return UNKNOWN;
}
}
/**
* Create a new instance that indicates that the cause is not known.
*
* @return a cause
*/
public static Cause unknown() {
return UNKNOWN;
}
2014-08-15 10:43:37 +02:00
/**
* Add a parent cause to a {@code Metadatable} object.
*
* <p>Note that {@code target} cannot be an instance of
* {@link Block} because {@link #create(Object...)} will not bother
* checking for such data on blocks (because it is relatively costly
* to do so).</p>
*
2014-08-15 10:43:37 +02:00
* @param target the target
* @param parent the parent cause
* @throws IllegalArgumentException thrown if {@code target} is an instance of {@link Block}
2014-08-15 10:43:37 +02:00
*/
public static void trackParentCause(Metadatable target, Object parent) {
if (target instanceof Block) {
throw new IllegalArgumentException("Can't track causes on Blocks because Cause doesn't check block metadata");
}
2014-08-15 10:43:37 +02:00
WGMetadata.put(target, CAUSE_KEY, parent);
}
2014-08-13 04:48:20 +02:00
}