summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/attribute/AttributeModifier.java
diff options
context:
space:
mode:
authorSenmori <thesenmori@gmail.com>2018-09-21 20:41:38 +1000
committermd_5 <git@md-5.net>2018-09-21 20:50:57 +1000
commitcbb4fc1673f278d61b5238df15aa1a1fb69655cc (patch)
treef1d6603a466f9f25f39645db8a89a9d9bbc3b210 /src/main/java/org/bukkit/attribute/AttributeModifier.java
parent4b9a93eccfefb73860fbbf6e6ea072676e26ef92 (diff)
downloadbukkit-cbb4fc1673f278d61b5238df15aa1a1fb69655cc.tar
bukkit-cbb4fc1673f278d61b5238df15aa1a1fb69655cc.tar.gz
bukkit-cbb4fc1673f278d61b5238df15aa1a1fb69655cc.tar.lz
bukkit-cbb4fc1673f278d61b5238df15aa1a1fb69655cc.tar.xz
bukkit-cbb4fc1673f278d61b5238df15aa1a1fb69655cc.zip
SPIGOT-1916: Attribute modifiers for ItemStacks
Diffstat (limited to 'src/main/java/org/bukkit/attribute/AttributeModifier.java')
-rw-r--r--src/main/java/org/bukkit/attribute/AttributeModifier.java49
1 files changed, 46 insertions, 3 deletions
diff --git a/src/main/java/org/bukkit/attribute/AttributeModifier.java b/src/main/java/org/bukkit/attribute/AttributeModifier.java
index 3c0c4bc5..a3a69ffa 100644
--- a/src/main/java/org/bukkit/attribute/AttributeModifier.java
+++ b/src/main/java/org/bukkit/attribute/AttributeModifier.java
@@ -5,6 +5,7 @@ import java.util.Map;
import java.util.UUID;
import org.apache.commons.lang.Validate;
import org.bukkit.configuration.serialization.ConfigurationSerializable;
+import org.bukkit.inventory.EquipmentSlot;
import org.bukkit.util.NumberConversions;
/**
@@ -16,20 +17,25 @@ public class AttributeModifier implements ConfigurationSerializable {
private final String name;
private final double amount;
private final Operation operation;
+ private final EquipmentSlot slot;
public AttributeModifier(String name, double amount, Operation operation) {
this(UUID.randomUUID(), name, amount, operation);
}
public AttributeModifier(UUID uuid, String name, double amount, Operation operation) {
- Validate.notNull(uuid, "uuid");
- Validate.notEmpty(name, "Name cannot be empty");
- Validate.notNull(operation, "operation");
+ this(uuid, name, amount, operation, null);
+ }
+ public AttributeModifier(UUID uuid, String name, double amount, Operation operation, EquipmentSlot slot) {
+ Validate.notNull(uuid, "UUID cannot be null");
+ Validate.notEmpty(name, "Name cannot be empty");
+ Validate.notNull(operation, "Operation cannot be null");
this.uuid = uuid;
this.name = name;
this.amount = amount;
this.operation = operation;
+ this.slot = slot;
}
/**
@@ -68,6 +74,16 @@ public class AttributeModifier implements ConfigurationSerializable {
return operation;
}
+ /**
+ * Get the {@link EquipmentSlot} this AttributeModifier is active on,
+ * or null if this modifier is applicable for any slot.
+ *
+ * @return the slot
+ */
+ public EquipmentSlot getSlot() {
+ return slot;
+ }
+
@Override
public Map<String, Object> serialize() {
Map<String, Object> data = new HashMap<String, Object>();
@@ -75,10 +91,37 @@ public class AttributeModifier implements ConfigurationSerializable {
data.put("name", name);
data.put("operation", operation.ordinal());
data.put("amount", amount);
+ if (slot != null) {
+ data.put("slot", slot.name());
+ }
return data;
}
+ @Override
+ public boolean equals(Object other) {
+ if (!(other instanceof AttributeModifier)) {
+ return false;
+ }
+ AttributeModifier mod = (AttributeModifier) other;
+ boolean slots = (this.slot != null ? (this.slot == mod.slot) : mod.slot != null);
+ return this.uuid.equals(mod.uuid) && this.name.equals(mod.name) && this.amount == mod.amount && this.operation == mod.operation && slots;
+ }
+
+ @Override
+ public String toString() {
+ return "AttributeModifier{"
+ + "uuid=" + this.uuid.toString()
+ + ", name=" + this.name
+ + ", operation=" + this.operation.name()
+ + ", amount=" + this.amount
+ + ", slot=" + (this.slot != null ? this.slot.name() : "")
+ + "}";
+ }
+
public static AttributeModifier deserialize(Map<String, Object> args) {
+ if (args.containsKey("slot")) {
+ return new AttributeModifier(UUID.fromString((String) args.get("uuid")), (String) args.get("name"), NumberConversions.toDouble(args.get("amount")), Operation.values()[NumberConversions.toInt(args.get("operation"))], EquipmentSlot.valueOf((args.get("slot").toString().toUpperCase())));
+ }
return new AttributeModifier(UUID.fromString((String) args.get("uuid")), (String) args.get("name"), NumberConversions.toDouble(args.get("amount")), Operation.values()[NumberConversions.toInt(args.get("operation"))]);
}