Package com.starpoints.painter
Class PainterSkinSelection
- java.lang.Object
-
- com.starpoints.painter.PainterBase
-
- com.starpoints.painter.PainterMenu
-
- com.starpoints.painter.PainterSkinSelection
-
- All Implemented Interfaces:
InputController
,MenuListener
,Painter
public class PainterSkinSelection extends PainterMenu implements MenuListener
Painter for options menu.
-
-
Field Summary
Fields Modifier and Type Field Description protected SelectionMenuEntry
colorMenuEntry
protected static boolean
DEBUG
Debug flag.protected static double
FACTOR
Debug flag.protected java.util.List<PlayerFigure>
figures
The figure to enter high score for.static int
HANDICAP
java.lang.String[]
handicapEntries
protected SelectionMenuEntry
handicapMenuEntry
static Handicap[]
HANDICAPS
static int
LIGHTS
protected SelectionMenuEntry
lightsMenuEntry
protected TextEntryMenuEntry
nameEntryMenuEntry
protected ClickMenuEntry
returnMenuEntry
protected SelectionMenuEntry
stickerMenuEntry
protected LabelMenuEntry
titleMenuEntry
protected SelectionMenuEntry
typeMenuEntry
-
Fields inherited from class com.starpoints.painter.PainterMenu
active, button, button_clicked, buttonCounter, buttonLeft, buttonRight, entries, finished, firstTimeOpt, hideBackground, image, listeners, numberEntries, numbers, paintCount, showButtons
-
Fields inherited from class com.starpoints.painter.PainterBase
area, areas, bigFont, controller, gameInfo, medFont, mouseArea, offset, oldMouseArea, options, smallFont, state, verysmallFont, xfactor, yfactor
-
-
Constructor Summary
Constructors Constructor Description PainterSkinSelection()
Creates a new Skin selection painter.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description protected void
finishNameEntry()
Informs the controller, that the name entry is finished.protected void
initializeMenuEntries()
Initializes the menu entries.boolean
keyPressed(KeyEvent e)
Processes keys in menu.void
menuEmptyClick()
Handles empty clicks.void
menuEntryChanged(TextEntryMenuEntry me)
Does nothing.void
menuEntrySelected(MenuEntry me)
Handles menu entry selection.void
menuMouseOver(MenuEntry me)
Handles menu mouse over events.void
menuSelectionChanged(SelectionMenuEntry me)
Handles menu selection changes.boolean
mouseMoved(MouseEvent e)
Handles mouse moves.void
paint(Graphics g, GameState state)
Paints the options menuprotected void
paintMenuEntry(Graphics g, MenuEntry me)
Paints a menu entry.void
setController(StarpointController controller)
Sets the reference to the Controller.void
setFigure(PlayerFigure player)
Sets the figure to select skin for.void
setFigures(java.util.List<PlayerFigure> list)
Sets the list of figures to enter names for.protected void
setMouseArea(MouseEvent e)
Sets the current mouse over area.-
Methods inherited from class com.starpoints.painter.PainterMenu
addMenuEntry, addMenuListener, draw, drawBackgroundImage, findIntegerIndex, findIntegerIndex, fireEmptyClickEvent, fireMenuEntryMouseOverEvent, fireMenuEntrySelectedEvent, fireMenuEntrySelectionChangedEvent, focusFirst, getButtonScalingFactor, getButtonXPos, getButtonYPos, getFocussedEntry, getFontSize, getLeftMouseBorder, getRightMouseBorder, handleEvent, isActive, isDownKey, isEnterKey, isFinished, isLeftKey, isRightKey, isShowingButtons, isUpKey, mouseClicked, removeMenuEntry, removeMenuListener, setActive, setFinished, setShowButtons
-
Methods inherited from class com.starpoints.painter.PainterBase
draw, drawShaded, drawShaded, getArea, getBaseHeight, getBaseWidth, getEditor, getHeight, getIndent, getRepaintFactor, getWidth, getXFactor, getYFactor, isInputController, onStartGame, setArea, setFontSize, setLevel, setOptions, setState
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Methods inherited from interface com.starpoints.event.InputController
getArea, getXFactor, getYFactor
-
-
-
-
Field Detail
-
DEBUG
protected static final boolean DEBUG
Debug flag.- See Also:
- Constant Field Values
-
FACTOR
protected static final double FACTOR
Debug flag.- See Also:
- Constant Field Values
-
figures
protected java.util.List<PlayerFigure> figures
The figure to enter high score for.
-
HANDICAPS
public static final Handicap[] HANDICAPS
-
LIGHTS
public static final int LIGHTS
- See Also:
- Constant Field Values
-
HANDICAP
public static final int HANDICAP
- See Also:
- Constant Field Values
-
handicapEntries
public java.lang.String[] handicapEntries
-
titleMenuEntry
protected LabelMenuEntry titleMenuEntry
-
nameEntryMenuEntry
protected TextEntryMenuEntry nameEntryMenuEntry
-
colorMenuEntry
protected SelectionMenuEntry colorMenuEntry
-
typeMenuEntry
protected SelectionMenuEntry typeMenuEntry
-
stickerMenuEntry
protected SelectionMenuEntry stickerMenuEntry
-
lightsMenuEntry
protected SelectionMenuEntry lightsMenuEntry
-
handicapMenuEntry
protected SelectionMenuEntry handicapMenuEntry
-
returnMenuEntry
protected ClickMenuEntry returnMenuEntry
-
-
Method Detail
-
setController
public void setController(StarpointController controller)
Sets the reference to the Controller.- Specified by:
setController
in interfaceInputController
- Overrides:
setController
in classPainterBase
- Parameters:
controller
- Controller
-
paint
public void paint(Graphics g, GameState state)
Paints the options menu- Specified by:
paint
in interfacePainter
- Overrides:
paint
in classPainterMenu
- Parameters:
g
- The graphicsstate
- The game state.
-
initializeMenuEntries
protected void initializeMenuEntries()
Initializes the menu entries.
-
keyPressed
public boolean keyPressed(KeyEvent e)
Processes keys in menu.- Specified by:
keyPressed
in interfaceInputController
- Overrides:
keyPressed
in classPainterMenu
- Parameters:
e
- The event.- Returns:
- true, if event is handled.
-
mouseMoved
public boolean mouseMoved(MouseEvent e)
Handles mouse moves.- Specified by:
mouseMoved
in interfaceInputController
- Overrides:
mouseMoved
in classPainterMenu
- Parameters:
e
- The event.- Returns:
- true, if event is handled.
-
setMouseArea
protected void setMouseArea(MouseEvent e)
Sets the current mouse over area.- Overrides:
setMouseArea
in classPainterMenu
- Parameters:
e
- The mouse event.
-
menuSelectionChanged
public void menuSelectionChanged(SelectionMenuEntry me)
Handles menu selection changes.- Specified by:
menuSelectionChanged
in interfaceMenuListener
- Parameters:
me
- The menu entry.
-
menuEntrySelected
public void menuEntrySelected(MenuEntry me)
Handles menu entry selection.- Specified by:
menuEntrySelected
in interfaceMenuListener
- Parameters:
me
- The menu entry.
-
menuMouseOver
public void menuMouseOver(MenuEntry me)
Handles menu mouse over events. Does nothing.- Specified by:
menuMouseOver
in interfaceMenuListener
- Parameters:
me
- The menu entry.
-
menuEmptyClick
public void menuEmptyClick()
Handles empty clicks. Does nothing.- Specified by:
menuEmptyClick
in interfaceMenuListener
-
paintMenuEntry
protected void paintMenuEntry(Graphics g, MenuEntry me)
Paints a menu entry.- Overrides:
paintMenuEntry
in classPainterMenu
- Parameters:
g
- The graphics.me
- The menu entry.
-
setFigure
public void setFigure(PlayerFigure player)
Sets the figure to select skin for.- Parameters:
player
- The PlayerFigure.
-
finishNameEntry
protected void finishNameEntry()
Informs the controller, that the name entry is finished.
-
setFigures
public void setFigures(java.util.List<PlayerFigure> list)
Sets the list of figures to enter names for. First Figure in list- Parameters:
list
- Plaer list.
-
menuEntryChanged
public void menuEntryChanged(TextEntryMenuEntry me)
Does nothing.- Specified by:
menuEntryChanged
in interfaceMenuListener
- Parameters:
me
- The menuentry.
-
-