Class AlertUIComponent
java.lang.Object
com.csse3200.game.components.Component
com.csse3200.game.rendering.RenderComponent
com.csse3200.game.ui.UIComponent
com.csse3200.game.components.player.AlertUIComponent
- All Implemented Interfaces:
com.badlogic.gdx.utils.Disposable
,IAlpha
,Renderable
,Comparable<Renderable>
A custom UIComponent used which displays text within a yellow border for alerts.
-
Field Summary
Fields inherited from class com.csse3200.game.ui.UIComponent
skin, stage
-
Constructor Summary
ConstructorsConstructorDescriptionAlertUIComponent
(String alert) Creates a new AlertUIComponent containing the given text. -
Method Summary
Modifier and TypeMethodDescriptionvoid
create()
Creates the UI layout for the component.protected void
draw
(com.badlogic.gdx.graphics.g2d.SpriteBatch batch) Draws the UI Component on to the screen by dividing the batch's projection matrix by the SCALE_FACTOR to ensure that the UI isn't drawn too large on the screen.float
getAlpha()
Returns the alpha of the component.void
setAlpha
(float alpha) Sets the alpha of the spritebatchMethods inherited from class com.csse3200.game.ui.UIComponent
getLayer, getZIndex
Methods inherited from class com.csse3200.game.rendering.RenderComponent
compareTo, dispose, overrideZIndex, render
Methods inherited from class com.csse3200.game.components.Component
earlyUpdate, getEntity, setEnabled, setEntity, toString, triggerEarlyUpdate, triggerUpdate, update
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface java.lang.Comparable
compareTo
Methods inherited from interface com.csse3200.game.rendering.Renderable
render
-
Constructor Details
-
AlertUIComponent
Creates a new AlertUIComponent containing the given text.- Parameters:
alert
- - the text to display within the component.
-
-
Method Details
-
create
public void create()Creates the UI layout for the component.- Overrides:
create
in classUIComponent
-
draw
protected void draw(com.badlogic.gdx.graphics.g2d.SpriteBatch batch) Draws the UI Component on to the screen by dividing the batch's projection matrix by the SCALE_FACTOR to ensure that the UI isn't drawn too large on the screen.- Specified by:
draw
in classRenderComponent
- Parameters:
batch
- Batch to render to.
-
setAlpha
public void setAlpha(float alpha) Sets the alpha of the spritebatch -
getAlpha
public float getAlpha()Returns the alpha of the component.- Returns:
- the alpha of the component.
-