Package org.opentrafficsim.draw.core
Class TextAnimation
java.lang.Object
org.opentrafficsim.draw.core.TextAnimation
- All Implemented Interfaces:
Serializable,Locatable
- Direct Known Subclasses:
BusStopAnimation.Text,DefaultCarAnimation.Text,DetectorAnimation.Text,GtuGeneratorPositionAnimation.Queue,LaneAnimation.Text,LinkAnimation.Text,NodeAnimation.Text,TrafficLightAnimation.Text
Display a text for another Locatable object.
Copyright (c) 2013-2023 Delft University of Technology, PO Box 5, 2600 AA, Delft, the Netherlands. All rights reserved.
BSD-style license. See OpenTrafficSim License.
- Author:
- Alexander Verbraeck, Peter Knoppers, Wouter Schakel
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionstatic interfaceInterface to obtain the color of the background.static interfaceDetermine if a Feature object should be rendered. -
Field Summary
FieldsModifier and TypeFieldDescriptionstatic final TextAnimation.ScaleDependentRenderingAlways render the Text.static final TextAnimation.ScaleDependentRenderingDon't render texts when smaller than 1.static final TextAnimation.ScaleDependentRenderingDon't render texts when smaller than 2.static final TextAnimation.ScaleDependentRenderingDon't render texts when smaller than 2. -
Constructor Summary
ConstructorsConstructorDescriptionTextAnimation(Locatable source, String text, float dx, float dy, TextAlignment textAlignment, Color color, float fontSize, float minFontSize, float maxFontSize, org.opentrafficsim.core.dsol.OtsSimulatorInterface simulator, TextAnimation.ContrastToBackground background, TextAnimation.ScaleDependentRendering scaleDependentRendering) Construct a new TextAnimation.TextAnimation(Locatable source, String text, float dx, float dy, TextAlignment textAlignment, Color color, float fontSize, float minFontSize, float maxFontSize, org.opentrafficsim.core.dsol.OtsSimulatorInterface simulator, TextAnimation.ScaleDependentRendering scaleDependentRendering) Construct a new TextAnimation without contrast to background protection and no minimum font scale.TextAnimation(Locatable source, String text, float dx, float dy, TextAlignment textAlignment, Color color, org.opentrafficsim.core.dsol.OtsSimulatorInterface simulator, TextAnimation.ScaleDependentRendering scaleDependentRendering) -
Method Summary
Modifier and TypeMethodDescriptionfinal voiddestroy(Contextualized contextProvider) Destroy the text animation.final org.opentrafficsim.core.geometry.Boundsprotected final ColorgetColor()Retrieve the current color.protected final floatgetDx()Retrieve dx.protected final floatgetDy()Retrieve dy.protected final FontgetFont()Retrieve the font.protected final floatRetrieve the font size.org.opentrafficsim.core.geometry.DirectedPointprotected TextAnimation.ScaleDependentRenderingRetrieve the scale dependent rendering qualifier (used in cloning).protected final LocatableRetrieve the source.protected final StringgetText()Retrieve the current text.protected final TextAlignmentRetrieve the text alignment.final booleanisFlip()Retrieve the current flip status.final booleanisRotate()Retrieve the current rotation status.final booleanisScale()Retrieve the current scale status.final booleanRetrieve the current translate status.voidpaint(Graphics2D graphics, ImageObserver observer) paint() method so it can be overridden or extended.protected final voidUpdate the color.final voidsetFlip(boolean flip) Update the flip status.final voidsetRotate(boolean rotate) Update the rotation status.final voidsetScale(boolean scale) Update the scale status.protected final voidUpdate the text.final voidsetTranslate(boolean translate) Update the translate status.protected final voidsetXY(float x, float y) Sets a new offset.
-
Field Details
-
RENDERALWAYS
Always render the Text. -
RENDERWHEN1
Don't render texts when smaller than 1. -
RENDERWHEN10
Don't render texts when smaller than 2. -
RENDERWHEN100
Don't render texts when smaller than 2.
-
-
Constructor Details
-
TextAnimation
public TextAnimation(Locatable source, String text, float dx, float dy, TextAlignment textAlignment, Color color, float fontSize, float minFontSize, float maxFontSize, org.opentrafficsim.core.dsol.OtsSimulatorInterface simulator, TextAnimation.ContrastToBackground background, TextAnimation.ScaleDependentRendering scaleDependentRendering) throws RemoteException, NamingException Construct a new TextAnimation.- Parameters:
source- Locatable; the object for which the text is displayedtext- String; the text to displaydx- float; the horizontal movement of the text, in metersdy- float; the vertical movement of the text, in meterstextAlignment- TextAlignment; where to place the textcolor- Color; the color of the textfontSize- float; the size of the font; default = 2.0 (meters)minFontSize- float; minimum font size resulting from scalingmaxFontSize- float; maximum font size resulting from scalingsimulator- OtsSimulatorInterface; the simulatorbackground- ContrastToBackground; allows querying the background color and adaptation of the actual color of the text to ensure contrastscaleDependentRendering- ScaleDependentRendering; suppress rendering when font scale is too small- Throws:
NamingException- when animation context cannot be created or retrievedRemoteException- when remote context cannot be found
-
TextAnimation
public TextAnimation(Locatable source, String text, float dx, float dy, TextAlignment textAlignment, Color color, float fontSize, float minFontSize, float maxFontSize, org.opentrafficsim.core.dsol.OtsSimulatorInterface simulator, TextAnimation.ScaleDependentRendering scaleDependentRendering) throws RemoteException, NamingException Construct a new TextAnimation without contrast to background protection and no minimum font scale.- Parameters:
source- Locatable; the object for which the text is displayedtext- String; the text to displaydx- float; the horizontal movement of the text, in metersdy- float; the vertical movement of the text, in meterstextAlignment- TextAlignment; where to place the textcolor- Color; the color of the textfontSize- float; the size of the font; default = 2.0 (meters)minFontSize- float; minimum font size resulting from scalingmaxFontSize- float; maximum font size resulting from scalingsimulator- OtsSimulatorInterface; the simulatorscaleDependentRendering- ScaleDependentRendering; render text only when bigger than minimum scale- Throws:
NamingException- when animation context cannot be created or retrievedRemoteException- when remote context cannot be found
-
TextAnimation
public TextAnimation(Locatable source, String text, float dx, float dy, TextAlignment textAlignment, Color color, org.opentrafficsim.core.dsol.OtsSimulatorInterface simulator, TextAnimation.ScaleDependentRendering scaleDependentRendering) throws RemoteException, NamingException - Parameters:
source- Locatable; the object for which the text is displayedtext- String; the text to displaydx- float; the horizontal movement of the text, in metersdy- float; the vertical movement of the text, in meterstextAlignment- TextAlignment; where to place the textcolor- Color; the color of the textsimulator- OtsSimulatorInterface; the simulatorscaleDependentRendering- ScaleDependentRendering; render text only when bigger than minimum scale- Throws:
NamingException- when animation context cannot be created or retrievedRemoteException- when remote context cannot be found
-
-
Method Details
-
getLocation
public org.opentrafficsim.core.geometry.DirectedPoint getLocation()- Specified by:
getLocationin interfaceLocatable
-
getBounds
- Specified by:
getBoundsin interfaceLocatable- Throws:
RemoteException
-
paint
paint() method so it can be overridden or extended.- Parameters:
graphics- Graphics2D; the graphics objectobserver- ImageObserver; the observer
-
destroy
Destroy the text animation.- Parameters:
contextProvider- Contextualized; the object with a Context
-
getSource
Retrieve the source.- Returns:
- Locatable; the source
-
getDx
protected final float getDx()Retrieve dx.- Returns:
- float; the value of dx
-
getDy
protected final float getDy()Retrieve dy.- Returns:
- float; the value of dy
-
setXY
protected final void setXY(float x, float y) Sets a new offset.- Parameters:
x- float; dxy- float; dy
-
getTextAlignment
Retrieve the text alignment.- Returns:
- TextAlignment; the text alignment
-
getFontSize
protected final float getFontSize()Retrieve the font size.- Returns:
- float; the font size
-
getFont
Retrieve the font.- Returns:
- Font; the font
-
getText
Retrieve the current text.- Returns:
- String; the current text
-
setText
Update the text.- Parameters:
text- String; the new text
-
getColor
Retrieve the current color.- Returns:
- Color; the current color
-
setColor
Update the color.- Parameters:
color- Color; the new color
-
isFlip
public final boolean isFlip()Retrieve the current flip status.- Returns:
- boolean; the current flip status
-
setFlip
public final void setFlip(boolean flip) Update the flip status.- Parameters:
flip- boolean; the new flip status
-
isRotate
public final boolean isRotate()Retrieve the current rotation status.- Returns:
- boolean; the current rotation status
-
setRotate
public final void setRotate(boolean rotate) Update the rotation status.- Parameters:
rotate- boolean; the new rotation status
-
isScale
public final boolean isScale()Retrieve the current scale status.- Returns:
- boolean; the current scale status
-
setScale
public final void setScale(boolean scale) Update the scale status.- Parameters:
scale- boolean; the new scale status
-
isTranslate
public final boolean isTranslate()Retrieve the current translate status.- Returns:
- boolean; the current translate status
-
setTranslate
public final void setTranslate(boolean translate) Update the translate status.- Parameters:
translate- boolean; the new translate status
-
getScaleDependentRendering
Retrieve the scale dependent rendering qualifier (used in cloning).- Returns:
- ScaleDependentRendering; the rendering qualifier of this TextAnimation
-