public class MultiDesignsTheme extends NewTheme<MultiDesignsInstance>
Modifier and Type | Field and Description |
---|---|
static int |
MULTI_DESIGNS_HEIGHT |
static java.lang.String |
MULTI_DESIGNS_THEME |
static int |
MULTI_DESIGNS_WIDTH |
static java.awt.Color |
MY_COLOR |
static int |
NUMBER_OF_FRAMES |
Constructor and Description |
---|
MultiDesignsTheme() |
Modifier and Type | Method and Description |
---|---|
void |
drawAnimation(java.awt.Graphics g,
MultiDesignsInstance game)
Defines how the Theme subclass should handle animation.
|
void |
drawVertex(java.awt.Graphics2D g,
MultiDesignsInstance game,
Vertex v)
Dictates how a vertex should be drawn.
|
int[] |
getAnimationStage(Vertex v,
MultiDesignsInstance game)
Return a number or set of numbers that identifies what stage of drawing animation this vertex is at.
|
int |
getBoundingHeight()
Defines the height of the box used to determine the clickable area of a vertex.
|
int |
getBoundingWidth()
Defines the width of the box used to determine the clickable area of a vertex.
|
int |
getDrawingHeight()
Defines the width of the drawable area of a vertex.
|
int |
getDrawingWidth()
Defines the width of the drawable area of a vertex.
|
java.awt.Color |
getEdgeColor(MultiDesignsInstance game,
Vertex a,
Vertex b)
Defines the color used for drawing edges.
|
int |
getNumberAnimatingFrames() |
java.lang.String |
getThemeName() |
java.awt.Point |
getVertexCenter()
Defines the intended center point, relative to the origin (0, 0), on the image created by drawVertex.
|
void |
setupMoveAnimation(DoubleVertexEvent<?> event)
Assumes the event is a
|
draw, drawBWVertex, drawNormalVertex, drawSelectedVertex, drawTargetVertex, getAnimationFrame, getBrightnessFactor, getTheme, getVerticesSortedByY, isAnimatingConfig, isBlinkEdges, isDrawCurvyEdges, setAnimatingConfig, setAnimationFrame, setBlinkEdges, setDrawCurvyEdges, tick, tickIt
public static final java.awt.Color MY_COLOR
public static final int MULTI_DESIGNS_WIDTH
public static final int MULTI_DESIGNS_HEIGHT
public static final java.lang.String MULTI_DESIGNS_THEME
public static final int NUMBER_OF_FRAMES
public int getNumberAnimatingFrames()
getNumberAnimatingFrames
in class NewTheme<MultiDesignsInstance>
public void setupMoveAnimation(DoubleVertexEvent<?> event)
NewTheme
setupMoveAnimation
in class NewTheme<MultiDesignsInstance>
public java.lang.String getThemeName()
getThemeName
in class NewTheme<MultiDesignsInstance>
public void drawAnimation(java.awt.Graphics g, MultiDesignsInstance game)
NewTheme
drawAnimation
in class NewTheme<MultiDesignsInstance>
public int[] getAnimationStage(Vertex v, MultiDesignsInstance game)
NewTheme
getAnimationStage
in class NewTheme<MultiDesignsInstance>
game
- TODOpublic void drawVertex(java.awt.Graphics2D g, MultiDesignsInstance game, Vertex v)
NewTheme
drawVertex
in class NewTheme<MultiDesignsInstance>
g
- The graphics object to draw ongame
- The PuzzleInstance subclass containing game datav
- The vertex to be drawnpublic java.awt.Point getVertexCenter()
NewTheme
getVertexCenter
in class NewTheme<MultiDesignsInstance>
public int getBoundingHeight()
NewTheme
getBoundingHeight
in class NewTheme<MultiDesignsInstance>
public int getBoundingWidth()
NewTheme
getBoundingWidth
in class NewTheme<MultiDesignsInstance>
public int getDrawingHeight()
NewTheme
getDrawingHeight
in class NewTheme<MultiDesignsInstance>
public int getDrawingWidth()
NewTheme
getDrawingWidth
in class NewTheme<MultiDesignsInstance>
public java.awt.Color getEdgeColor(MultiDesignsInstance game, Vertex a, Vertex b)
NewTheme
getEdgeColor
in class NewTheme<MultiDesignsInstance>
game
- The PuzzleInstance subclass containing game dataa
- The first vertex connected by an edgeb
- The second vertex connected by this edge