Class PlayerCreateBlueprintEvent
java.lang.Object
net.risingworld.api.events.Event
net.risingworld.api.events.player.PlayerEvent
net.risingworld.api.events.player.PlayerCreateBlueprintEvent
- All Implemented Interfaces:
Cancellable
Called when a player wants to create a new blueprint (i.e when he has already selected an
area and wants to finally create the blueprint).
-
Field Summary
-
Method Summary
Modifier and TypeMethodDescriptionGets the bounds of the blueprint object, or more precisely, of the selected area.intGets the amount of construction elements (blocks) this blueprint contains.floatGets the max radius of the affected area.intGets the amount of objects (i.e furniture, doors, lamps etc) this blueprint contains.intGets the amount of plants (vegetation) this blueprint contains.Gets the target world position of the blueprint, or more precisely, the center position of the affected area.booleanDetermines if the event is cancelled.voidsetCancelled(boolean cancel) Cancels this event.Methods inherited from class net.risingworld.api.events.player.PlayerEvent
getPlayer
-
Method Details
-
getBounds
Gets the bounds of the blueprint object, or more precisely, of the selected area.- Returns:
- the bounds.
- Example: Get the min position and max position of the affected area of this blueprint
-
getPosition
Gets the target world position of the blueprint, or more precisely, the center position of the affected area. This is the same as callinggetBounds().getCenter()- Returns:
- the target world position.
-
getMaxExtent
public float getMaxExtent()Gets the max radius of the affected area. This function simply compares the half extents of the bounds and returns the greatest result.- Returns:
- the max radius of the affected area.
-
getConstructionCount
public int getConstructionCount()Gets the amount of construction elements (blocks) this blueprint contains.- Returns:
- the amount of construction elements.
-
getObjectCount
public int getObjectCount()Gets the amount of objects (i.e furniture, doors, lamps etc) this blueprint contains.- Returns:
- the amount of objects.
-
getPlantCount
public int getPlantCount()Gets the amount of plants (vegetation) this blueprint contains.- Returns:
- the amount of plants.
-
isCancelled
public boolean isCancelled()Description copied from interface:CancellableDetermines if the event is cancelled. If an event is cancelled, it will no longer be executed, but other plugins will still receive the event.
Please note: If the event is threaded, cancellation has no effect, i.e the event will still be executed.- Specified by:
isCancelledin interfaceCancellable- Returns:
- true if the event is cancelled, or false if not.
-
setCancelled
public void setCancelled(boolean cancel) Description copied from interface:CancellableCancels this event. This means it will no longer be executed, but other plugins will still receive the event.- Specified by:
setCancelledin interfaceCancellable- Parameters:
cancel- set to true if you want to cancel this event.- Example: Cancel "PlayerEnterAreaEvent", i.e prevent player from entering an area
-