Package net.sf.freecol.server.ai.mission
Class BuildColonyMission
- java.lang.Object
-
- net.sf.freecol.common.model.FreeColObject
-
- net.sf.freecol.server.ai.AIObject
-
- net.sf.freecol.server.ai.mission.Mission
-
- net.sf.freecol.server.ai.mission.BuildColonyMission
-
- All Implemented Interfaces:
java.lang.Comparable<FreeColObject>
,ObjectWithId
public final class BuildColonyMission extends Mission
Mission for building aColony
.- See Also:
Colony
-
-
Field Summary
Fields Modifier and Type Field Description private int
colonyValue
The value of a targetTile
.private static java.util.logging.Logger
logger
private static java.lang.String
tag
The tag for this mission.static java.lang.String
TAG
private Location
target
The target of this mission.private static java.lang.String
TARGET_TAG
-
Fields inherited from class net.sf.freecol.server.ai.mission.Mission
AIUNITDIED, AIUNITNULL, MINIMUM_TRANSPORT_PRIORITY, NO_MORE_MOVES_LEFT, NO_PATH_TO_TARGET, NORMAL_TRANSPORT_PRIORITY, TARGETINVALID, TARGETNOTFOUND, TARGETNULL, TARGETOWNERSHIP, UNITNOTAPERSON, UNITNOTOFFENSIVE, UNITNOTONMAP
-
Fields inherited from class net.sf.freecol.server.ai.AIObject
initialized
-
Fields inherited from class net.sf.freecol.common.model.FreeColObject
ARRAY_SIZE_TAG, DEFAULT_CLASS_INDEX, fcoComparator, ID_ATTRIBUTE_TAG, PARTIAL_ATTRIBUTE_TAG, VALUE_TAG
-
-
Constructor Summary
Constructors Constructor Description BuildColonyMission(AIMain aiMain, AIUnit aiUnit, FreeColXMLReader xr)
Creates a newBuildColonyMission
from a reader.BuildColonyMission(AIMain aiMain, AIUnit aiUnit, Location target)
Creates a mission for the givenAIUnit
.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description Mission
doMission(LogBuilder lb)
Performs the mission.static Location
extractTarget(AIUnit aiUnit, PathNode path)
Extract a valid target for this mission from a path.static Location
findMissionTarget(AIUnit aiUnit, int range, boolean deferOK)
Finds a site for a new colony or a backup colony to go to.Location
findTarget()
Finds a new target for this mission.private static PathNode
findTargetPath(AIUnit aiUnit, int range, boolean deferOK)
Finds a site for a new colony.int
getBaseTransportPriority()
Get the base transport priority for the unit performing this mission.private int
getColonyValue(Tile tile)
Get the colony value for a tile.private static GoalDecider
getGoalDecider(AIUnit aiUnit, boolean deferOK)
Gets aGoalDecider
for finding the best colonyTile
, optionally falling back to the nearest colony.Location
getTarget()
Gets the target of this mission, if any.java.lang.String
getXMLTagName()
Get the serialization tag for this object.private static java.lang.String
invalidColonyReason(AIUnit aiUnit, Colony colony)
Why is this mission invalid with a given colony target?static java.lang.String
invalidMissionReason(AIUnit aiUnit)
Why would this mission be invalid with the given AI unit?static java.lang.String
invalidMissionReason(AIUnit aiUnit, Location loc)
Why would this mission be invalid with the given AI unit and location?java.lang.String
invalidReason()
Why is this mission invalid? Mission subclasses must implement this routine, which probably should start by checking invalidAIUnitReason.private static java.lang.String
invalidTileReason(AIUnit aiUnit, Tile tile)
Why is this mission invalid with a given tile target?private static java.lang.String
invalidUnitReason(AIUnit aiUnit)
Why would this mission be invalid with the given unit?protected void
readAttributes(FreeColXMLReader xr)
Reads the attributes of this object from an XML stream.static float
scorePath(AIUnit aiUnit, PathNode path)
Gets the value of a path to a colony building site.void
setTarget(Location target)
Sets the target of this mission, if any.protected void
writeAttributes(FreeColXMLWriter xw)
Write the attributes of this object to a stream.-
Methods inherited from class net.sf.freecol.server.ai.mission.Mission
dispose, findCircleTarget, getAIPlayer, getAIRandom, getAIUnit, getBestSettlement, getEuropeanAIPlayer, getPlayer, getTransportDestination, getUnit, invalidAIUnitReason, invalidAttackReason, invalidNewMissionReason, invalidTargetReason, invalidTargetReason, invalidTransportableReason, isOneTime, isTargetReason, isValid, lbAt, lbAttack, lbDodge, lbDone, lbDrop, lbFail, lbMove, lbRetarget, lbWait, moveRandomly, moveRandomlyTurn, resolveBlockage, retargetMission, setInitialized, toString, toXML, travelToTarget
-
Methods inherited from class net.sf.freecol.server.ai.AIObject
addAIObjectWithId, checkIntegrity, checkIntegrity, copyIn, getAIMain, getGame, getSpecification, isDisposed, setGame, setSpecification
-
Methods inherited from class net.sf.freecol.common.model.FreeColObject
addAbility, addFeatures, addModifier, addPropertyChangeListener, addPropertyChangeListener, apply, apply, applyModifiers, applyModifiers, arrayKey, compareIds, compareTo, containsAbilityKey, containsModifierKey, copy, copy, copy, copy, copyInCast, dumpObject, equals, fireIndexedPropertyChange, fireIndexedPropertyChange, fireIndexedPropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, firePropertyChange, getAbilities, getAbilities, getAbilities, getAbilities, getClassIndex, getDefenceModifiers, getDisplayObject, getFeatureContainer, getFreeColObjectClass, getFreeColObjectClassByName, getId, getIdNumber, getIdType, getIdTypeByName, getModifiers, getModifiers, getModifiers, getModifiers, getObjectClassIndex, getPropertyChangeListeners, getPropertyChangeListeners, getPropertyChangeSupport, getSortedAbilities, getSortedModifiers, getSuffix, getSuffix, hasAbility, hasAbility, hasAbility, hashCode, hasListeners, hasModifier, hasModifier, hasModifier, idEquals, invokeMethod, logFreeColObjects, readChild, readChildren, readFromXML, readFromXMLPartial, removeAbilities, removeAbility, removeFeatures, removeModifier, removeModifiers, removePropertyChangeListener, removePropertyChangeListener, save, save, save, save, serialize, serialize, serialize, serialize, setId, toXML, toXMLPartial, toXMLPartial, writeChildren
-
-
-
-
Field Detail
-
logger
private static final java.util.logging.Logger logger
-
TAG
public static final java.lang.String TAG
- See Also:
- Constant Field Values
-
tag
private static final java.lang.String tag
The tag for this mission.- See Also:
- Constant Field Values
-
target
private Location target
The target of this mission. It can either be a Tile where a Colony should be built, or an existing connected Colony owned by this player to go to before retargeting.
-
colonyValue
private int colonyValue
The value of a targetTile
.
-
TARGET_TAG
private static final java.lang.String TARGET_TAG
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
BuildColonyMission
public BuildColonyMission(AIMain aiMain, AIUnit aiUnit, Location target)
Creates a mission for the givenAIUnit
.- Parameters:
aiMain
- The main AI-object.aiUnit
- TheAIUnit
this mission is created for.target
- The targetLocation
for this mission.
-
BuildColonyMission
public BuildColonyMission(AIMain aiMain, AIUnit aiUnit, FreeColXMLReader xr) throws javax.xml.stream.XMLStreamException
Creates a newBuildColonyMission
from a reader.- Parameters:
aiMain
- The main AI-object.aiUnit
- TheAIUnit
this mission is created for.xr
- The input stream containing the XML.- Throws:
javax.xml.stream.XMLStreamException
- if a problem was encountered during parsing.- See Also:
FreeColObject.readFromXML(net.sf.freecol.common.io.FreeColXMLReader)
-
-
Method Detail
-
getColonyValue
private int getColonyValue(Tile tile)
Get the colony value for a tile.- Parameters:
tile
- TheTile
to test.- Returns:
- The colony value for this player.
-
extractTarget
public static Location extractTarget(AIUnit aiUnit, PathNode path)
Extract a valid target for this mission from a path.- Parameters:
aiUnit
- AAIUnit
to perform the mission.path
- APathNode
to extract a target from, (uses the unit location if null).- Returns:
- A target for this mission, or null if none found.
-
scorePath
public static float scorePath(AIUnit aiUnit, PathNode path)
Gets the value of a path to a colony building site.- Parameters:
aiUnit
- TheAIUnit
to build the colony.path
- ThePathNode
to check.- Returns:
- A score for the target.
-
getGoalDecider
private static GoalDecider getGoalDecider(AIUnit aiUnit, boolean deferOK)
Gets aGoalDecider
for finding the best colonyTile
, optionally falling back to the nearest colony.- Parameters:
aiUnit
- TheAIUnit
that is searching.deferOK
- Enable colony fallback.- Returns:
- A suitable
GoalDecider
.
-
findTargetPath
private static PathNode findTargetPath(AIUnit aiUnit, int range, boolean deferOK)
Finds a site for a new colony. Favour closer sites.- Parameters:
aiUnit
- TheAIUnit
to execute this mission.range
- An upper bound on the number of moves.deferOK
- Enables deferring to a fallback colony.- Returns:
- A path to the new target, or null if none found.
-
findMissionTarget
public static Location findMissionTarget(AIUnit aiUnit, int range, boolean deferOK)
Finds a site for a new colony or a backup colony to go to.- Parameters:
aiUnit
- TheAIUnit
to find a colony site with.range
- An upper bound on the number of moves.deferOK
- Enables deferring to a fallback colony.- Returns:
- A new target for this mission.
-
invalidUnitReason
private static java.lang.String invalidUnitReason(AIUnit aiUnit)
Why would this mission be invalid with the given unit?- Parameters:
aiUnit
- TheAIUnit
to test.- Returns:
- A reason why the mission would be invalid with the unit, or null if none found.
-
invalidColonyReason
private static java.lang.String invalidColonyReason(AIUnit aiUnit, Colony colony)
Why is this mission invalid with a given colony target?- Parameters:
aiUnit
- TheAIUnit
to check.colony
- The potential targetColony
.- Returns:
- A reason for mission invalidity, or null if none found.
-
invalidTileReason
private static java.lang.String invalidTileReason(AIUnit aiUnit, Tile tile)
Why is this mission invalid with a given tile target?- Parameters:
aiUnit
- TheAIUnit
to check.tile
- The potential targetTile
.- Returns:
- A reason for mission invalidity, or null if none found.
-
invalidMissionReason
public static java.lang.String invalidMissionReason(AIUnit aiUnit)
Why would this mission be invalid with the given AI unit?- Parameters:
aiUnit
- TheAIUnit
to check.- Returns:
- A reason for mission invalidity, or null if none found.
-
invalidMissionReason
public static java.lang.String invalidMissionReason(AIUnit aiUnit, Location loc)
Why would this mission be invalid with the given AI unit and location?- Parameters:
aiUnit
- TheAIUnit
to check.loc
- TheLocation
to check.- Returns:
- A reason for invalidity, or null if none found.
-
getBaseTransportPriority
public int getBaseTransportPriority()
Get the base transport priority for the unit performing this mission.- Overrides:
getBaseTransportPriority
in classMission
- Returns:
- A base transport priority.
-
getTarget
public Location getTarget()
Gets the target of this mission, if any.
-
setTarget
public void setTarget(Location target)
Sets the target of this mission, if any. The actual target is handled in the missions that really have them, this is a helper to make sure the unit is updated.
-
findTarget
public Location findTarget()
Finds a new target for this mission.- Specified by:
findTarget
in classMission
- Returns:
- A new target for this mission.
-
invalidReason
public java.lang.String invalidReason()
Why is this mission invalid? Mission subclasses must implement this routine, which probably should start by checking invalidAIUnitReason. A mission can be invalid for a number of subclass-specific reasons. For example: a seek-and-destroy mission could be invalid because of a improved stance towards the targeted player.- Specified by:
invalidReason
in classMission
- Returns:
- A reason for mission invalidity, or null if none found.
-
doMission
public Mission doMission(LogBuilder lb)
Performs the mission.
-
writeAttributes
protected void writeAttributes(FreeColXMLWriter xw) throws javax.xml.stream.XMLStreamException
Write the attributes of this object to a stream. To be overridden if required by any object that has attributes and uses the toXML(FreeColXMLWriter, String) call.- Overrides:
writeAttributes
in classMission
- Parameters:
xw
- TheFreeColXMLWriter
to write to.- Throws:
javax.xml.stream.XMLStreamException
- if there are any problems writing to the stream.
-
readAttributes
protected void readAttributes(FreeColXMLReader xr) throws javax.xml.stream.XMLStreamException
Reads the attributes of this object from an XML stream.- Overrides:
readAttributes
in classMission
- Parameters:
xr
- TheFreeColXMLReader
to read from.- Throws:
javax.xml.stream.XMLStreamException
- if there is a problem reading the stream.
-
getXMLTagName
public java.lang.String getXMLTagName()
Get the serialization tag for this object.- Specified by:
getXMLTagName
in classFreeColObject
- Returns:
- The tag.
-
-