.. java:import:: java.io Serializable .. java:import:: edu.cwru.sepia.util DeepEquatable .. java:import:: edu.cwru.sepia.util Direction Action ====== .. java:package:: edu.cwru.sepia.action :noindex: .. java:type:: public class Action implements Serializable, DeepEquatable The primary class of issued commands. Action is immutable and it's subtypes should be as well. Contains factory methods for easy construction of valid actions. :author: The Condor Fields ------ type ^^^^ .. java:field:: protected final ActionType type :outertype: Action unitId ^^^^^^ .. java:field:: protected final int unitId :outertype: Action Constructors ------------ Action ^^^^^^ .. java:constructor:: public Action(int unitId, ActionType type) :outertype: Action Methods ------- createCompoundAttack ^^^^^^^^^^^^^^^^^^^^ .. java:method:: public static Action createCompoundAttack(int unitid, int targetid) :outertype: Action This is a TargetedAction, taking as parameters the acting unit's ID and the target's ID. When executed, it moves into range of a unit, then attacks it once. :param unitid: Acting unit's ID :param targetid: createCompoundBuild ^^^^^^^^^^^^^^^^^^^ .. java:method:: public static Action createCompoundBuild(int unitid, int templateID, int x, int y) :outertype: Action This is a LocatedProductionAction, taking as parameters the acting unit's ID and the ID of the template of the building that you are trying to build, as well as x and y coordinates of where to build it. When executed, it uses repeated PRIMITIVEMOVEs to reach the specified location, then does PRIMITIVEBUILD until the building is done. :param unitid: Acting unit's ID :param templateID: :param x: :param y: createCompoundDeposit ^^^^^^^^^^^^^^^^^^^^^ .. java:method:: public static Action createCompoundDeposit(int unitid, int targetid) :outertype: Action This is a TargetedAction, taking as parameters the acting unit's ID and the ID of a town hall to deposit at. When executed, it does PRIMITIVEMOVEs until next to the specified town hall, then performs a PRIMITIVEDEPOSIT on it. :param unitid: Acting unit's ID :param targetid: createCompoundGather ^^^^^^^^^^^^^^^^^^^^ .. java:method:: public static Action createCompoundGather(int unitid, int targetid) :outertype: Action This is a TargetedAction, taking as parameters the acting unit's ID and the ID of a resource node to gather from. When executed, it does PRIMITIVEMOVEs until next to the specified node, then performs a PRIMITIVEGATHER on it. :param unitid: Acting unit's ID :param targetid: createCompoundMove ^^^^^^^^^^^^^^^^^^ .. java:method:: public static Action createCompoundMove(int unitid, int x, int y) :outertype: Action This is a LocatedAction, taking as parameters the acting unit's ID and the x and y coordinates of where to move. When executed, it does PRIMITIVEMOVEs to reach that location. :param unitid: Acting unit's ID :param x: :param y: createCompoundProduction ^^^^^^^^^^^^^^^^^^^^^^^^ .. java:method:: public static Action createCompoundProduction(int unitid, int templateID) :outertype: Action This is a ProductionAction, taking as parameters the acting unit's ID and the ID of the template of the unit or upgrade that you are trying to build. When executed, it does PRIMITIVEPRODUCE until the unit or upgrade is completed. :param unitid: Acting unit's ID :param templateID: createFail ^^^^^^^^^^ .. java:method:: public static Action createFail(int unitid) :outertype: Action Used internally to indicate that a compound action failed, and it should be redone :param unitid: Acting unit's ID createPermanentFail ^^^^^^^^^^^^^^^^^^^ .. java:method:: public static Action createPermanentFail(int unitid) :outertype: Action Used internally to indicate that a compound action failed permanently, and it should be aborted :param unitid: Acting unit's ID createPrimitiveAttack ^^^^^^^^^^^^^^^^^^^^^ .. java:method:: public static Action createPrimitiveAttack(int unitid, int targetid) :outertype: Action This is a TargetedAction, taking as parameters the acting unit's ID and the target's ID. When executed, it attempts to attack the targeted unit, failing when it out of range. :param unitid: Acting unit's ID :param targetid: createPrimitiveBuild ^^^^^^^^^^^^^^^^^^^^ .. java:method:: public static Action createPrimitiveBuild(int unitid, int templateID) :outertype: Action This is a ProductionAction, taking as parameters the acting unit's ID and the ID of the template of the building that you are trying to build. When executed, it does one turn's work toward building that kind of building on the spot the unit is at. As all buildings take one turn to build, this is enough to complete it, making a building on the spot and moving the builder off to one side. :param unitid: Acting unit's ID Acting unit's ID :param templateID: Template ID of the building type to build createPrimitiveDeposit ^^^^^^^^^^^^^^^^^^^^^^ .. java:method:: public static Action createPrimitiveDeposit(int unitid, Direction d) :outertype: Action This is a DirectedAction, taking as parameters the acting unit's ID and a direction to attempt to deposit in. When executed, it looks in the specified direction for a town hall, if there is a town hall that you control, it moves resources from the unit's inventory and gives them to you. :param unitid: Acting unit's ID :param d: createPrimitiveGather ^^^^^^^^^^^^^^^^^^^^^ .. java:method:: public static Action createPrimitiveGather(int unitid, Direction d) :outertype: Action This is a DirectedAction, taking as parameters the acting unit's ID and a direction to attempt to gather in. When executed, it looks in the specified direction for a resource node, if there is a node, it moves resources from the node into the unit's inventory. :param unitid: Acting unit's ID :param d: createPrimitiveMove ^^^^^^^^^^^^^^^^^^^ .. java:method:: public static Action createPrimitiveMove(int unitid, Direction d) :outertype: Action This is a DirectedAction, taking as parameters the acting unit's ID and a direction to attempt to move. When executed, it attempts to move in that direction, failing if another unit is already there. :param unitid: Acting unit's ID :param d: createPrimitiveProduction ^^^^^^^^^^^^^^^^^^^^^^^^^ .. java:method:: public static Action createPrimitiveProduction(int unitid, int templateID) :outertype: Action This is a ProductionAction, taking as parameters the acting unit's ID and the ID of the template of the unit or upgrade that you are trying to build. When executed, it does one turn's work toward the creation of the unit or upgrade specified. As all units and upgrades take one turn to make, this is enough to complete it. If it is a unit being made, the new unit is put to one side after being made. :param unitid: Acting unit's ID :param templateID: deepEquals ^^^^^^^^^^ .. java:method:: @Override public boolean deepEquals(Object other) :outertype: Action equals ^^^^^^ .. java:method:: @Override public boolean equals(Object other) :outertype: Action getType ^^^^^^^ .. java:method:: public ActionType getType() :outertype: Action Get the type of action being done :return: The ActionType of the action getUnitId ^^^^^^^^^ .. java:method:: public int getUnitId() :outertype: Action Get the id of the unit doing the action. :return: The id of the unit doing the action hashCode ^^^^^^^^ .. java:method:: @Override public int hashCode() :outertype: Action toString ^^^^^^^^ .. java:method:: @Override public String toString() :outertype: Action