Class SBFFormationSpriteHandler
java.lang.Object
megamek.client.ui.swing.boardview.BoardViewSpriteHandler
megamek.client.ui.swing.boardview.SBFFormationSpriteHandler
- All Implemented Interfaces:
EventListener
,GameListener
-
Field Summary
Fields inherited from class megamek.client.ui.swing.boardview.BoardViewSpriteHandler
boardView, currentSprites, GUIP
-
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
dispose()
Override this method to perform any clean up steps when this handler and its associated sprites are no longer needed, such as removing the handler as listener.void
gameUnitChange
(GameEvent event) This event is used in SBF games when a unit (formation) changes.void
Override this method to perform start up steps such as registering it as a listener (doing this in the constructor is considered improper as the object is not fully constructed at that point).void
setSelectedFormation
(SBFFormation formation) Sets the given formation as the selected formation and renews the sprites accordingly.void
update()
Clears the current sprites and creates new sprites for all formations.Methods inherited from class megamek.client.ui.swing.boardview.BoardViewSpriteHandler
clear, gameBoardChanged, gameBoardNew, gameClientFeedbackRequest, gameEnd, gameEntityChange, gameEntityNew, gameEntityNewOffboard, gameEntityRemove, gameMapQuery, gameNewAction, gamePhaseChange, gamePlayerChange, gamePlayerChat, gamePlayerConnected, gamePlayerDisconnected, gameReport, gameSettingsChange, gameTurnChange, gameVictory
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface megamek.common.event.GameListener
gamePlayerStrategicAction, gameScriptedEvent
-
Constructor Details
-
SBFFormationSpriteHandler
-
-
Method Details
-
update
public void update()Clears the current sprites and creates new sprites for all formations. -
setSelectedFormation
Sets the given formation as the selected formation and renews the sprites accordingly. The previously selected formation, if any, will no longer be selected. When the given formation is null, all formations will be deselected.- Parameters:
formation
- The formation to draw as selected, or null for no selection
-
initialize
public void initialize()Description copied from class:BoardViewSpriteHandler
Override this method to perform start up steps such as registering it as a listener (doing this in the constructor is considered improper as the object is not fully constructed at that point).- Specified by:
initialize
in classBoardViewSpriteHandler
-
dispose
public void dispose()Description copied from class:BoardViewSpriteHandler
Override this method to perform any clean up steps when this handler and its associated sprites are no longer needed, such as removing the handler as listener.- Specified by:
dispose
in classBoardViewSpriteHandler
-
gameUnitChange
Description copied from interface:GameListener
This event is used in SBF games when a unit (formation) changes.
-