public class CustomItem
extends java.lang.Object
Server.registerCustomItem(net.risingworld.api.objects.custom.CustomItem)
Modifier and Type | Class and Description |
---|---|
static interface |
CustomItem.Action
An "action" interface which is called for primary/secondary action.
|
static class |
CustomItem.Hand
Determines in which hand the item is held (more precisely, which hand the item gets attached to)
|
class |
CustomItem.Variation
Represents an item "variation".
|
Constructor and Description |
---|
CustomItem(java.lang.String uuid,
java.lang.String name)
Creates a new custom item, or more precisely, meta data for a custom item.
|
Modifier and Type | Method and Description |
---|---|
Vector3f |
getFPBodyPosition() |
Quaternion |
getFPBodyRotation() |
CustomItem.Hand |
getHand() |
Definitions.HitDamageDefinition |
getHitDamageDefinition() |
float |
getHitDamageFactor() |
ImageInformation |
getIcon()
Gets the ImageInformation object which is used as icon for this custom item.
|
Vector3f |
getItemPosition()
Sets the "offset" of the item in the player hands.
|
Quaternion |
getItemRotation()
Sets the rotation of the item in the player hands.
|
java.lang.String[] |
getLocalizedNames() |
int |
getMaxStacksize()
Gets the max amount of items that can be stacked.
|
ModelInformation |
getModel()
Gets the ModelInformation object which is used for this custom item.
|
float |
getModelSize()
Gets the model size.
|
java.lang.String |
getName()
Gets the item name.
|
int |
getNumberOfVariations() |
Animation |
getPlayerIdleAnimation() |
Animation |
getPlayerPrimaryAnimation() |
Animation |
getPlayerSecondaryAnimation() |
CustomItem.Action |
getPrimaryAction() |
float |
getPrimaryActionDelay() |
CustomItem.Action |
getSecondaryAction() |
float |
getSecondaryActionDelay() |
ImageInformation |
getTexture()
Gets the ImageInformation object which is used as texture for this custom item.
|
java.lang.String |
getUUID()
Gets the UUID of this item.
|
CustomItem.Variation[] |
getVariations() |
void |
setFPBodyPosition(float x,
float y,
float z)
Sets the "offset" of the player body in first person view.
|
void |
setFPBodyPosition(Vector3f position)
Sets the "offset" of the player body in first person view.
|
void |
setFPBodyRotation(float x,
float y,
float z,
float w)
Sets the rotation of the player body in first person view.
|
void |
setFPBodyRotation(Quaternion rotation)
Sets the rotation of the player body in first person view.
|
void |
setHand(CustomItem.Hand hand)
Determines in which hand the item is being held (left hand, right hand, no hand).
|
void |
setHitDamageDefinition(Definitions.HitDamageDefinition definition)
Sets a hit damage definition for this item.
|
void |
setHitDamageFactor(float factor)
Sets the damage factor for hits.
|
void |
setIcon(ImageInformation icon)
Sets the item icon (visible in inventory, chests, hotbar etc).
|
void |
setItemPosition(float x,
float y,
float z) |
void |
setItemPosition(Vector3f position) |
void |
setItemRotation(float x,
float y,
float z,
float w) |
void |
setItemRotation(Quaternion rotation) |
void |
setLocalizedNames(java.lang.String... names)
Sets a (localized) name of the item.
|
void |
setMaxStacksize(int stacksize)
Sets the max amount of items that can be stacked.
|
void |
setModel(ModelInformation model,
ImageInformation texture,
float modelSize)
Sets a model for this item, including the according texture.
|
void |
setPlayerIdleAnimation(Animation animation)
Sets the idle animation of the player when this item is equipped.
|
void |
setPrimaryAction(Animation primaryAnimation,
float triggerDelay,
CustomItem.Action action)
Defines the (custom) primary action and animation for this item.
|
void |
setPrimaryFPBodyPosition(float x,
float y,
float z)
Sets the "offset" of the player body in first person view.
|
void |
setSecondaryAction(Animation secondaryAnimation,
float triggerDelay,
CustomItem.Action action) |
void |
setVariation(int variation,
ImageInformation texture,
ImageInformation icon) |
public CustomItem(java.lang.String uuid, java.lang.String name)
uuid
- a unique UUID for the item. It's highly important that this UUID never
changes, and it's also important to make sure that there are no collisions with
the UUID of another item. For example, you could use the package
name as part of the UUID: "com.yourname.pluginname.items.pickaxesteel"name
- the internal item name, e.g. "pickaxe1" or "magicaxe". This is not the name
that's shown to the player (see setLocalizedNames(java.lang.String...)
for that).
Allowed characters: A-Z, a-z, 0-9 and _
public void setMaxStacksize(int stacksize)
stacksize
- the new stack size.public int getMaxStacksize()
public void setModel(ModelInformation model, ImageInformation texture, float modelSize)
model
- the ModelInformation object which represents the model file.texture
- the ImageInformation object, which represents the texture image.modelSize
- the model scale factor. Default is 1.0fpublic void setIcon(ImageInformation icon)
icon
- the ImageInformation object, which represents the icon for this item.public ModelInformation getModel()
public ImageInformation getTexture()
public ImageInformation getIcon()
public void setVariation(int variation, ImageInformation texture, ImageInformation icon)
public int getNumberOfVariations()
public CustomItem.Variation[] getVariations()
public void setHand(CustomItem.Hand hand)
hand
- the hand in which the item is being held. Set to Hand.None
if you don't want the player to hold the item in his hands.public CustomItem.Hand getHand()
public java.lang.String getUUID()
public void setLocalizedNames(java.lang.String... names)
names
- an array of all localized names for this item. If you want to support
multiple languages, you have set the name like this: "en=Pickaxe" or "de=Spitzhacke" etc.
example [Set an english, german and french item name]
CustomItem item = new CustomItem("123124124123123_customItems_pickaxe", "pickaxe", Type.Item);
item.setLocalizedNames(new String[]{"en=Pickaxe", "de=Spitzhacke", "fr=Pioche"});
example [Set a universal item name, which is used in all languages]
CustomItem item = new CustomItem("9d8jsxK3n2nsiuhME3_sword1", "sword", Type.Item);
item.setLocalizedNames(new String[]{"Mighty Sword"});public java.lang.String[] getLocalizedNames()
public void setItemPosition(Vector3f position)
public void setItemPosition(float x, float y, float z)
public void setItemRotation(Quaternion rotation)
public void setItemRotation(float x, float y, float z, float w)
public Vector3f getItemPosition()
public Quaternion getItemRotation()
public void setFPBodyPosition(Vector3f position)
position
- the offset of the player body (in first person view).public void setFPBodyPosition(float x, float y, float z)
x
- the x offset of the player body (in first person view).y
- the y offset of the player body (in first person view).z
- the z offset of the player body (in first person view).public Vector3f getFPBodyPosition()
public void setFPBodyRotation(Quaternion rotation)
rotation
- the rotation of the player body (in first person view).public void setFPBodyRotation(float x, float y, float z, float w)
x
- the x rotation component of the player body (in first person view).y
- the y rotation component of the player body (in first person view).z
- the z rotation component of the player body (in first person view).w
- the w rotation component of the player body (in first person view).public Quaternion getFPBodyRotation()
public void setPrimaryFPBodyPosition(float x, float y, float z)
x
- the x offset of the player body (in first person view).y
- the y offset of the player body (in first person view).z
- the z offset of the player body (in first person view).public java.lang.String getName()
public float getModelSize()
public void setHitDamageDefinition(Definitions.HitDamageDefinition definition)
PlayerHitEvent
, PlayerDestroyTerrainEvent
etc).
In other words, you can turn this item easily into a sword or pickaxe with the same
behaviour like the vanilla counterparts.definition
- the hit damage definition (see Definitions.getHitDamageDefinition(java.lang.String)
).
Alternatively you can create a new damage definition (currently not supported).public Definitions.HitDamageDefinition getHitDamageDefinition()
public void setHitDamageFactor(float factor)
setHitDamageDefinition(net.risingworld.api.utils.Definitions.HitDamageDefinition)
).
The damage factor multiplies the default damage of the HitDamageDefinition
by the given value. Default value is 1.0ffactor
- the new damage factor, e.g. when setting 2.0f, the item will
deal the double amount of damage.setHitDamageDefinition(net.risingworld.api.utils.Definitions.HitDamageDefinition)
public float getHitDamageFactor()
public void setPlayerIdleAnimation(Animation animation)
Animation.Weapon1HandIdle
.animation
- the player idle animation when holding this item in his hands.public Animation getPlayerIdleAnimation()
public void setPrimaryAction(Animation primaryAnimation, float triggerDelay, CustomItem.Action action)
primaryAnimation
- the primary player animation.triggerDelay
- the delay until a "hit" is triggered (usually somewhere between 0 and 0.5 seconds).action
- an optional custom action that will be triggered.public void setSecondaryAction(Animation secondaryAnimation, float triggerDelay, CustomItem.Action action)
public Animation getPlayerPrimaryAnimation()
public float getPrimaryActionDelay()
public Animation getPlayerSecondaryAnimation()
public float getSecondaryActionDelay()
public CustomItem.Action getPrimaryAction()
public CustomItem.Action getSecondaryAction()