Package VASSAL.counters
Class AreaOfEffect
java.lang.Object
VASSAL.search.AbstractImageFinder
VASSAL.counters.Decorator
VASSAL.counters.AreaOfEffect
- All Implemented Interfaces:
MapShader.ShadedPiece
,PropertyNameSource
,PropertySource
,EditablePiece
,GamePiece
,PropertyExporter
,StateMergeable
,TranslatablePiece
,PersistentPropertyContainer
,Auditable
,ImageSearchTarget
,SearchTarget
- Author:
- Scott Giese sgiese@sprintmail.com Displays a transparency surrounding the GamePiece which represents the Area of Effect of the GamePiece
-
Nested Class Summary
-
Field Summary
Modifier and TypeFieldDescriptionprotected String
protected NamedKeyStroke
protected boolean
Track the Globally active visibility of the trait.static final String
protected boolean
protected KeyCommand[]
protected static final int
protected static final Color
protected static final float
protected String
protected boolean
protected boolean
static final String
protected KeyCommand
protected boolean
Track the Locally active visibility of the trait.protected String
protected String
protected NamedKeyStroke
protected KeyCommand
protected String
protected NamedKeyStroke
protected KeyCommand
protected String
protected int
protected String
protected MapShader
protected Color
protected float
Fields inherited from interface VASSAL.counters.PropertyExporter
LOCALIZED_NAME
Fields inherited from interface VASSAL.i18n.TranslatablePiece
PREFIX
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
Draw this GamePieceprotected Area
getArea()
Returns the Area to add to (or subtract from) the area drawn by the MapShader's.Support for a basic-name-only description introduced later, so this default retrofits it from the full description if an explicit one is not defined.A plain-English description of this type of trait/piece - includes data from fields where appropriateIf Decorator contains a description *field*, returns the current contents of it.Return Internationalization (I18n) data for this pieceReturns a localized translation of the specified property value, if available.getName()
The plain English name for this piecegetProperty
(Object key) Return the active state of the traitprotected int
getShape()
boolean
isActive()
boolean
boolean
protected KeyCommand[]
The "state information" is "game state" information that can change during the course of a game.The "type information" of a piece or trait is information that does not change during the course of a game.myKeyEvent
(KeyStroke stroke) The response of this trait alone to the given KeyStroke or the virtual keystroke of aNamedKeyStroke
.void
mySetState
(String newState) Sets the state of this-trait-only (inverse ofDecorator.myGetState()
).void
Sets the information for this piece.boolean
testEquals
(Object o) Test if this Decorator's Class, Type and State are equal to another trait.Methods inherited from class VASSAL.counters.Decorator
addImageNamesRecursively, addMenuCommand, buildDescription, buildDescription, buildDescription, getCommandDesc, getCommandDescription, getComponentName, getComponentTypeName, getDecorator, getDecorators, getExpressionList, getFormattedStringList, getI18nData, getI18nData, getId, getInner, getInnermost, getKeyCommands, getLocalizedName, getMap, getOuter, getOutermost, getParent, getPersistentProperty, getPosition, getProperties, getState, getTranslation, getType, isMenuCommand, isSelected, keyEvent, mergeState, putOldProperties, repack, repack, reportDataError, reportDataError, reportDataError, setDynamicProperties, setDynamicProperties, setDynamicProperty, setId, setInner, setMap, setParent, setPersistentProperty, setPosition, setProperty, setSelected, setState, toString
Methods inherited from class VASSAL.search.AbstractImageFinder
addLocalImageNames, getAllImageNames, getLocalImageNames
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface VASSAL.script.expression.Auditable
getComponentName, getComponentTypeName
Methods inherited from interface VASSAL.counters.EditablePiece
checkTrueMoved, finishMove, finishMove, prepareMove
Methods inherited from interface VASSAL.counters.GamePiece
getId, getLocalizedName, getMap, getParent, getPosition, getState, getType, keyEvent, setId, setMap, setParent, setPosition, setProperty, setState
Methods inherited from interface VASSAL.search.ImageSearchTarget
addLocalImageNames, getAllImageNames, getLocalImageNames
Methods inherited from interface VASSAL.counters.PropertyExporter
getProperties
-
Field Details
-
ID
- See Also:
-
ACTIVE
- See Also:
-
defaultTransparencyColor
-
defaultTransparencyLevel
protected static final float defaultTransparencyLevel- See Also:
-
defaultRadius
protected static final int defaultRadius- See Also:
-
transparencyColor
-
transparencyLevel
protected float transparencyLevel -
radius
protected int radius -
alwaysActive
protected boolean alwaysActive -
active
protected boolean activeTrack the Globally active visibility of the trait. Reported in State to other players. -
locallyActive
protected boolean locallyActiveTrack the Locally active visibility of the trait. Not reported in state to other players. -
activateCommand
-
activateKey
-
commands
-
mapShaderName
-
shader
-
keyCommand
-
fixedRadius
protected boolean fixedRadius -
radiusMarker
-
description
-
onMenuText
-
onKey
-
onKeyCommand
-
offMenuText
-
offKey
-
offKeyCommand
-
name
-
globallyVisible
protected boolean globallyVisible
-
-
Constructor Details
-
AreaOfEffect
public AreaOfEffect() -
AreaOfEffect
-
-
Method Details
-
getDescription
Description copied from interface:EditablePiece
A plain-English description of this type of trait/piece - includes data from fields where appropriate- Specified by:
getDescription
in interfaceEditablePiece
-
getBaseDescription
Description copied from interface:EditablePiece
Support for a basic-name-only description introduced later, so this default retrofits it from the full description if an explicit one is not defined.- Specified by:
getBaseDescription
in interfaceEditablePiece
- Returns:
- name of trait/piece type, w/o additional data
-
getDescriptionField
Description copied from class:Decorator
If Decorator contains a description *field*, returns the current contents of it.- Overrides:
getDescriptionField
in classDecorator
- Returns:
- contents of "description" field, if it exists.
-
myGetType
Description copied from class:Decorator
The "type information" of a piece or trait is information that does not change during the course of a game. Image file names, context menu strings, etc., all should be reflected in the type. The type information is returned serialized string form, ready to be decoded by a SequenceEncoder#decode. -
mySetType
Description copied from interface:EditablePiece
Sets the information for this piece. SeeDecorator.myGetType()
- Specified by:
mySetType
in interfaceEditablePiece
- Parameters:
type
- a serialized configuration string to set the "type information" of this piece, which is information that doesn't change during the course of a single game (e.g. Image Files, Context Menu strings, etc). Typically ready to be processed e.g. by SequenceEncoder.decode()
-
myGetState
Description copied from class:Decorator
The "state information" is "game state" information that can change during the course of a game. State information is saved when the game is saved and is transferred between players on the server. For example, the relative order of pieces in a stack is state information, but whether the stack is expanded is not.- Specified by:
myGetState
in classDecorator
- Returns:
- the game state information of this trait alone
- See Also:
-
mySetState
Description copied from class:Decorator
Sets the state of this-trait-only (inverse ofDecorator.myGetState()
). The "state information" is information that can change during the course of a game. State information is saved when the game is saved and is transferred between players on the server. For example, the relative order of pieces in a stack is state information, but whether the stack is expanded is not.- Specified by:
mySetState
in classDecorator
- Parameters:
newState
- New state information serialized in string form, ready to be passed to a SequenceEncoder#decode.
-
boundingBox
- Specified by:
boundingBox
in interfaceGamePiece
- Returns:
- The area which this GamePiece occupies when drawn at the point (0,0)
-
getShape
- Specified by:
getShape
in interfaceGamePiece
- Returns:
- The shape of the piece from the user's viewpoint. This defines the area
in which the user must click to select or move the piece, for example.
Like
GamePiece.boundingBox()
, it assumes the position is (0,0) -- which to be clear is normally aligned with the CENTER of the piece image -- and must be translated to the actual location where the piece is being drawn. For most ordinary pieces, the shape returned here will simply be equivalent to the bounding box, but seeNonRectangular
.
-
getName
-
isLocallyActive
public boolean isLocallyActive() -
isGloballyActive
public boolean isGloballyActive() -
isActive
public boolean isActive() -
getNamedKeyStrokeList
Description copied from class:Decorator
- Specified by:
getNamedKeyStrokeList
in interfaceSearchTarget
- Overrides:
getNamedKeyStrokeList
in classDecorator
- Returns:
- a list of any Named KeyStrokes referenced in the Decorator, if any (for search)
-
getMenuTextList
Description copied from class:Decorator
- Specified by:
getMenuTextList
in interfaceSearchTarget
- Overrides:
getMenuTextList
in classDecorator
- Returns:
- a list of any Menu Text strings referenced in the Decorator, if any (for search)
-
draw
Description copied from interface:GamePiece
Draw this GamePiece -
getArea
-
getRadius
protected int getRadius() -
myGetKeyCommands
- Specified by:
myGetKeyCommands
in classDecorator
- Returns:
- the key commands for this trait alone
- See Also:
-
myKeyEvent
Description copied from class:Decorator
The response of this trait alone to the given KeyStroke or the virtual keystroke of aNamedKeyStroke
. NamedKeyStrokes are allocated a unique internal KeyStroke when they are first used in a module, and that KeyStroke is passed up and down the decorator stack to represent them (seeNamedKeyStroke.getKeyStroke()
).- Specified by:
myKeyEvent
in classDecorator
- Parameters:
stroke
- KeyStroke to apply (to apply a Named Keystroke sendNamedKeyStroke.getKeyStroke()
- Returns:
- Generated Command to reproduce any changes just made to to the game state, or null if no effect
- See Also:
-
getHelpFile
- Specified by:
getHelpFile
in interfaceEditablePiece
- Returns:
- the help file for this trait
-
getEditor
- Specified by:
getEditor
in interfaceEditablePiece
- Overrides:
getEditor
in classDecorator
- Returns:
- the configurer for this trait - the dialog which allows the editing the piece's type information. Default
configurer is a
SimplePieceEditor
, but many traits will want to provide custom versions.
-
getArea
Description copied from interface:MapShader.ShadedPiece
Returns the Area to add to (or subtract from) the area drawn by the MapShader's. Area is assumed to be at zoom factor 1.0- Specified by:
getArea
in interfaceMapShader.ShadedPiece
- Parameters:
shader
- Map Shader- Returns:
- the Area contributed by the piece
-
getProperty
Return the active state of the trait- Specified by:
getProperty
in interfaceGamePiece
- Specified by:
getProperty
in interfacePropertySource
- Overrides:
getProperty
in classDecorator
- Parameters:
key
- Property name- Returns:
- state
-
getLocalizedProperty
Description copied from class:Decorator
Returns a localized translation of the specified property value, if available. Otherwise returns the non-localized version. SeeDecorator.getProperty(java.lang.Object)
.- Specified by:
getLocalizedProperty
in interfacePropertySource
- Overrides:
getLocalizedProperty
in classDecorator
- Parameters:
key
- String key of property to be returned- Returns:
- Object containing localized text of the specified property, if available, otherwise non-localized value
-
getPropertyNames
- Specified by:
getPropertyNames
in interfacePropertyNameSource
- Overrides:
getPropertyNames
in classDecorator
- Returns:
- List of property names "exposed" by this piece -- that are available to other Traits and components to read.
Default behavior for a Trait is not to expose any properties, but Traits which should expose some (e.g.
DynamicProperty
orMarker
) would provide an array of the property names here.
-
getPropertyList
Description copied from class:Decorator
- Specified by:
getPropertyList
in interfaceSearchTarget
- Overrides:
getPropertyList
in classDecorator
- Returns:
- a list of any Property Names referenced in the Decorator, if any (for search)
-
testEquals
Description copied from class:Decorator
Test if this Decorator's Class, Type and State are equal to another trait. Implementations of this method should compare the individual values of the fields that make up the Decorators Type and State. Implementations should NOT compare the values returned by myGetType() or myGetState(). This method is intended to be used by Unit Tests to verify that a trait is unchanged after going through a process such as serialization/deserialization.- Overrides:
testEquals
in classDecorator
- Parameters:
o
- Object to compare this Decorator to- Returns:
- true if the Class, type and state all match
-
getI18nData
Description copied from class:Decorator
Return Internationalization (I18n) data for this piece- Specified by:
getI18nData
in interfaceTranslatablePiece
- Overrides:
getI18nData
in classDecorator
- Returns:
- I18n data, used to hold translations of strings
-