|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectde.rico.adventure.actions.AbstractAction
de.rico.adventure.actions.custom.PickUp
public class PickUp
This game action can be used to let a playable character pick up an item from the room he is currently located in.
Constructor Summary | |
---|---|
PickUp(PlayableCharacter player,
Item item)
Creates a new item pick up action. |
|
PickUp(PlayableCharacter player,
Item item,
java.lang.String animName)
Creates a new item pick up action with the specified animation attached to it. |
Method Summary | |
---|---|
void |
draw(javax.media.opengl.GL gl)
This method renders the game action, if needed. |
void |
finishUp()
Implementations of this method hold code that needs to be called before the game action can be removed from the queue (prematurely) without causing side effects. |
void |
update(long elapsedTime)
This method updates the game action |
Methods inherited from class de.rico.adventure.actions.AbstractAction |
---|
getEntity |
Methods inherited from class java.lang.Object |
---|
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public PickUp(PlayableCharacter player, Item item)
player
- player character that picks up the itemitem
- item to pick uppublic PickUp(PlayableCharacter player, Item item, java.lang.String animName)
player
- player character that picks up the itemitem
- item to pick upanimName
- name of the animation to play while the
action is activeMethod Detail |
---|
public void update(long elapsedTime)
AbstractAction
update
in class AbstractAction
elapsedTime
- time between two framespublic void draw(javax.media.opengl.GL gl)
AbstractAction
draw
in class AbstractAction
public void finishUp()
AbstractAction
finishUp
in class AbstractAction
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |