Package org.opentrafficsim.draw
Class TextAnimation<L extends org.opentrafficsim.base.geometry.OtsLocatable,T extends TextAnimation<L,T>>
java.lang.Object
org.opentrafficsim.draw.TextAnimation<L,T>
- Type Parameters:
L- locatable typeT- text animation type
- All Implemented Interfaces:
Serializable,nl.tudelft.simulation.dsol.animation.Locatable,org.opentrafficsim.base.geometry.OtsLocatable,org.opentrafficsim.base.geometry.SpatialObject
- Direct Known Subclasses:
BusStopAnimation.Text,DefaultCarAnimation.Text,GtuGeneratorPositionAnimation.Queue,LaneAnimation.Text,LaneDetectorAnimation.LoopDetectorData.LoopDetectorText,LaneDetectorAnimation.SinkData.SinkText,LaneDetectorAnimation.Text,LinkAnimation.Text,NodeAnimation.Text,TrafficLightAnimation.Text,TrafficLightDetectorAnimation.Text
public abstract class TextAnimation<L extends org.opentrafficsim.base.geometry.OtsLocatable,T extends TextAnimation<L,T>>
extends Object
implements org.opentrafficsim.base.geometry.OtsLocatable, Serializable
Display a text for another Locatable object.
Copyright (c) 2013-2024 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(L source, Supplier<String> text, float dx, float dy, TextAlignment textAlignment, Color color, float fontSize, float minFontSize, float maxFontSize, nl.tudelft.simulation.naming.context.Contextualized contextualized, TextAnimation.ContrastToBackground background, TextAnimation.ScaleDependentRendering scaleDependentRendering) Construct a new TextAnimation.TextAnimation(L source, Supplier<String> text, float dx, float dy, TextAlignment textAlignment, Color color, float fontSize, float minFontSize, float maxFontSize, nl.tudelft.simulation.naming.context.Contextualized contextualized, TextAnimation.ScaleDependentRendering scaleDependentRendering) Construct a new TextAnimation without contrast to background protection and no minimum font scale.TextAnimation(L source, Supplier<String> text, float dx, float dy, TextAlignment textAlignment, Color color, nl.tudelft.simulation.naming.context.Contextualized contextualized, TextAnimation.ScaleDependentRendering scaleDependentRendering) -
Method Summary
Modifier and TypeMethodDescriptionfinal voiddestroy(nl.tudelft.simulation.naming.context.Contextualized contextProvider) Destroy the text animation.final org.djutils.draw.bounds.Bounds2dprotected final ColorgetColor()Retrieve the current color.org.djutils.draw.line.Polygon2dprotected final floatgetDx()Retrieve dx.protected final floatgetDy()Retrieve dy.protected final FontgetFont()Retrieve the font.protected final floatRetrieve the font size.org.djutils.draw.point.OrientedPoint2dprotected TextAnimation.ScaleDependentRenderingRetrieve the scale dependent rendering qualifier (used in cloning).protected final LRetrieve the source.protected final StringgetText()Retrieve the current text.protected final TextAlignmentRetrieve the text alignment.doublegetZ()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.setDynamic(boolean dynamic) Sets whether the location of this text is dynamic.final voidsetFlip(boolean flip) Update the flip status.final voidsetRotate(boolean rotate) Update the rotation status.final voidsetScale(boolean scale) Update the scale status.final voidUpdate the text.final voidsetTranslate(boolean translate) Update the translate status.protected final voidsetXY(float x, float y) Sets a new offset.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface nl.tudelft.simulation.dsol.animation.Locatable
getDirZMethods inherited from interface org.opentrafficsim.base.geometry.OtsLocatable
getShape
-
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(L source, Supplier<String> text, float dx, float dy, TextAlignment textAlignment, Color color, float fontSize, float minFontSize, float maxFontSize, nl.tudelft.simulation.naming.context.Contextualized contextualized, TextAnimation.ContrastToBackground background, TextAnimation.ScaleDependentRendering scaleDependentRendering) Construct a new TextAnimation.- Parameters:
source- the object for which the text is displayedtext- the text to displaydx- the horizontal movement of the text, in metersdy- the vertical movement of the text, in meterstextAlignment- where to place the textcolor- the color of the textfontSize- the size of the font; default = 2.0 (meters)minFontSize- minimum font size resulting from scalingmaxFontSize- maximum font size resulting from scalingcontextualized- context provider.background- allows querying the background color and adaptation of the actual color of the text to ensure contrastscaleDependentRendering- suppress rendering when font scale is too small
-
TextAnimation
public TextAnimation(L source, Supplier<String> text, float dx, float dy, TextAlignment textAlignment, Color color, float fontSize, float minFontSize, float maxFontSize, nl.tudelft.simulation.naming.context.Contextualized contextualized, TextAnimation.ScaleDependentRendering scaleDependentRendering) Construct a new TextAnimation without contrast to background protection and no minimum font scale.- Parameters:
source- the object for which the text is displayedtext- the text to displaydx- the horizontal movement of the text, in metersdy- the vertical movement of the text, in meterstextAlignment- where to place the textcolor- the color of the textfontSize- the size of the font; default = 2.0 (meters)minFontSize- minimum font size resulting from scalingmaxFontSize- maximum font size resulting from scalingcontextualized- context providerscaleDependentRendering- render text only when bigger than minimum scale
-
TextAnimation
public TextAnimation(L source, Supplier<String> text, float dx, float dy, TextAlignment textAlignment, Color color, nl.tudelft.simulation.naming.context.Contextualized contextualized, TextAnimation.ScaleDependentRendering scaleDependentRendering) - Parameters:
source- the object for which the text is displayedtext- the text to displaydx- the horizontal movement of the text, in metersdy- the vertical movement of the text, in meterstextAlignment- where to place the textcolor- the color of the textcontextualized- context providerscaleDependentRendering- render text only when bigger than minimum scale
-
-
Method Details
-
setDynamic
Sets whether the location of this text is dynamic.- Parameters:
dynamic- whether the location of this text is dynamic.- Returns:
- for method chaining.
-
getLocation
public org.djutils.draw.point.OrientedPoint2d getLocation()- Specified by:
getLocationin interfacenl.tudelft.simulation.dsol.animation.Locatable- Specified by:
getLocationin interfaceorg.opentrafficsim.base.geometry.OtsLocatable
-
getBounds
public final org.djutils.draw.bounds.Bounds2d getBounds()- Specified by:
getBoundsin interfacenl.tudelft.simulation.dsol.animation.Locatable- Specified by:
getBoundsin interfaceorg.opentrafficsim.base.geometry.OtsLocatable
-
getContour
public org.djutils.draw.line.Polygon2d getContour()- Specified by:
getContourin interfaceorg.opentrafficsim.base.geometry.SpatialObject
-
paint
paint() method so it can be overridden or extended.- Parameters:
graphics- the graphics objectobserver- the observer
-
destroy
public final void destroy(nl.tudelft.simulation.naming.context.Contextualized contextProvider) Destroy the text animation.- Parameters:
contextProvider- the object with a Context
-
getSource
Retrieve the source.- Returns:
- the source
-
getDx
protected final float getDx()Retrieve dx.- Returns:
- the value of dx
-
getDy
protected final float getDy()Retrieve dy.- Returns:
- the value of dy
-
setXY
protected final void setXY(float x, float y) Sets a new offset.- Parameters:
x- dxy- dy
-
getZ
- Specified by:
getZin interfacenl.tudelft.simulation.dsol.animation.Locatable- Throws:
RemoteException
-
getTextAlignment
Retrieve the text alignment.- Returns:
- the text alignment
-
getFontSize
protected final float getFontSize()Retrieve the font size.- Returns:
- the font size
-
getFont
Retrieve the font.- Returns:
- the font
-
getText
Retrieve the current text.- Returns:
- the current text
-
setText
Update the text.- Parameters:
text- the new text
-
getColor
Retrieve the current color.- Returns:
- the current color
-
setColor
Update the color.- Parameters:
color- the new color
-
isFlip
public final boolean isFlip()Retrieve the current flip status.- Returns:
- the current flip status
-
setFlip
public final void setFlip(boolean flip) Update the flip status.- Parameters:
flip- the new flip status
-
isRotate
public final boolean isRotate()Retrieve the current rotation status.- Returns:
- the current rotation status
-
setRotate
public final void setRotate(boolean rotate) Update the rotation status.- Parameters:
rotate- the new rotation status
-
isScale
public final boolean isScale()Retrieve the current scale status.- Returns:
- the current scale status
-
setScale
public final void setScale(boolean scale) Update the scale status.- Parameters:
scale- the new scale status
-
isTranslate
public final boolean isTranslate()Retrieve the current translate status.- Returns:
- the current translate status
-
setTranslate
public final void setTranslate(boolean translate) Update the translate status.- Parameters:
translate- the new translate status
-
getScaleDependentRendering
Retrieve the scale dependent rendering qualifier (used in cloning).- Returns:
- the rendering qualifier of this TextAnimation
-