public final class Zone
extends java.lang.Object
Modifier and Type | Field and Description |
---|---|
private OrderedPair<java.lang.Double> |
_center
The center coordinates of this zone as an ordered pair (x, y).
|
private java.util.function.BiFunction<java.lang.Double,java.lang.Double,java.lang.Boolean> |
_circleFunction
A function that tests if a coordinate pair is within the boundaries of this zone.
|
private org.bukkit.ChatColor |
_color
The zone's color.
|
private java.util.Map<org.bukkit.entity.EntityType,java.util.HashSet<org.bukkit.inventory.ItemStack>> |
_customDrops
Stores this zone's custom drops.
|
private java.lang.String |
_name
The zone's name.
|
private int |
_radius
The zone's radius, in whole blocks.
|
private java.util.Map<org.bukkit.attribute.Attribute,java.lang.Double> |
_scalarMap
Stores this zone's attribute scalars.
|
private Shape |
_shape
The shape of this zone.
|
private java.util.function.BiFunction<java.lang.Double,java.lang.Double,java.lang.Boolean> |
_squareFunction
A function that tests if a coordinate pair is within the boundaries of this zone.
|
private org.bukkit.World |
_world
The world in which this zone is located.
|
private double |
_xpScalar
This zone's xp scalar.
|
Constructor and Description |
---|
Zone(org.bukkit.configuration.ConfigurationSection configurationSection)
Constructor.
|
Zone(java.lang.String name,
org.bukkit.World world,
org.bukkit.ChatColor color,
int radius,
double x,
double z,
Shape shape)
Constructor.
|
Modifier and Type | Method and Description |
---|---|
(package private) void |
addCustomDrop(org.bukkit.entity.EntityType entityType,
org.bukkit.inventory.ItemStack itemStack)
Adds a custom drop to this zone for an entity type.
|
(package private) void |
configure(org.bukkit.entity.LivingEntity livingEntity)
Configures a LivingEntity's
AttributeInstance based on this zone's attributes. |
(package private) boolean |
contains(org.bukkit.Location location)
Determines if this zone contains the given location.
|
(package private) java.util.Map<org.bukkit.entity.EntityType,java.util.HashSet<org.bukkit.inventory.ItemStack>> |
getAllDrops()
Returns all custom drops defined in this zone.
|
(package private) org.bukkit.ChatColor |
getColor()
Returns this zone's color.
|
(package private) java.util.HashSet<org.bukkit.inventory.ItemStack> |
getCustomDrops(org.bukkit.entity.EntityType entityType)
Get a custom drop for an entity type.
|
(package private) java.lang.String |
getDescription()
Returns a short description of this zone.
|
private java.util.HashSet<org.bukkit.inventory.ItemStack> |
getDrops(org.bukkit.entity.EntityType entityType)
Returns a set of all custom drops for a particular
EntityType . |
(package private) java.lang.String |
getFormattedName()
Returns this zone's name with its color applied.
|
java.lang.String |
getName()
Returns this zone's name.
|
(package private) int |
getRadius()
Returns this zone's radius.
|
(package private) java.util.Map<org.bukkit.attribute.Attribute,java.lang.Double> |
getScalars()
Returns a map of all of the scalars defined in this zone.
|
private void |
load(org.bukkit.configuration.ConfigurationSection zoneSection)
Configures this zone based on data loaded from a
ConfigurationSection . |
(package private) boolean |
removeCustomDrop(org.bukkit.entity.EntityType entityType,
org.bukkit.inventory.ItemStack itemStack)
Removes an entity type's custom drop in this zone.
|
(package private) void |
save(org.bukkit.configuration.ConfigurationSection zoneSection)
Writes this zone's data to a
ConfigurationSection . |
(package private) int |
scaleXp(int xp)
Scales the given xp according to this zone's xp scalar.
|
(package private) void |
setCenter(double x,
double z)
Set the center of this zone to new coordinates.
|
(package private) void |
setScalar(org.bukkit.attribute.Attribute attribute,
double value)
Sets the given
Attribute to the given value. |
(package private) void |
setXpScalar(double scalar)
Sets this zone's XP scalar.
|
private java.lang.String _name
private org.bukkit.ChatColor _color
private OrderedPair<java.lang.Double> _center
private int _radius
private org.bukkit.World _world
private Shape _shape
private double _xpScalar
private final java.util.Map<org.bukkit.attribute.Attribute,java.lang.Double> _scalarMap
private final java.util.Map<org.bukkit.entity.EntityType,java.util.HashSet<org.bukkit.inventory.ItemStack>> _customDrops
private final java.util.function.BiFunction<java.lang.Double,java.lang.Double,java.lang.Boolean> _circleFunction
private final java.util.function.BiFunction<java.lang.Double,java.lang.Double,java.lang.Boolean> _squareFunction
public Zone(java.lang.String name, org.bukkit.World world, org.bukkit.ChatColor color, int radius, double x, double z, Shape shape)
name
- the zone's name.world
- the world in which this zone is located.color
- the zone's color.radius
- the zone's radius, in whole blocks.x
- the x-coordinate of the zone center.z
- the z-coordinate of the zone center.shape
- the Shape
of the zone.Zone(org.bukkit.configuration.ConfigurationSection configurationSection)
configurationSection
- the configuration to load.public java.lang.String getName()
org.bukkit.ChatColor getColor()
java.lang.String getFormattedName()
java.lang.String getDescription()
int getRadius()
void setCenter(double x, double z)
x
- the x coordinate of the new center.z
- the z coordinate of the new center.boolean contains(org.bukkit.Location location)
location
- the location.void configure(org.bukkit.entity.LivingEntity livingEntity)
AttributeInstance
based on this zone's attributes.livingEntity
- the LivingEntity to configure.void setScalar(org.bukkit.attribute.Attribute attribute, double value)
Attribute
to the given value. This only applies to mobs in this zone.attribute
- the attribute to set.value
- the value.void setXpScalar(double scalar)
scalar
- the xp scalar to set.int scaleXp(int xp)
xp
- the xp to be scaled.java.util.Map<org.bukkit.attribute.Attribute,java.lang.Double> getScalars()
void addCustomDrop(org.bukkit.entity.EntityType entityType, org.bukkit.inventory.ItemStack itemStack)
entityType
- the entity type to drop the item(s).itemStack
- the item(s).java.util.HashSet<org.bukkit.inventory.ItemStack> getCustomDrops(org.bukkit.entity.EntityType entityType)
entityType
- the entity type.boolean removeCustomDrop(org.bukkit.entity.EntityType entityType, org.bukkit.inventory.ItemStack itemStack)
entityType
- the entity type whose drop should be removed.itemStack
- the custom drop to be removed.private java.util.HashSet<org.bukkit.inventory.ItemStack> getDrops(org.bukkit.entity.EntityType entityType)
EntityType
. May be empty but not null.entityType
- the entity type.java.util.Map<org.bukkit.entity.EntityType,java.util.HashSet<org.bukkit.inventory.ItemStack>> getAllDrops()
void save(org.bukkit.configuration.ConfigurationSection zoneSection)
ConfigurationSection
.zoneSection
- the ConfigurationSection
.private void load(org.bukkit.configuration.ConfigurationSection zoneSection)
ConfigurationSection
.zoneSection
- the ConfigurationSection
.