Class CircularGroup
java.lang.Object
com.badlogic.gdx.scenes.scene2d.Actor
com.badlogic.gdx.scenes.scene2d.Group
com.badlogic.gdx.scenes.scene2d.ui.WidgetGroup
net.dermetfan.gdx.scenes.scene2d.ui.CircularGroup
- All Implemented Interfaces:
com.badlogic.gdx.scenes.scene2d.utils.Cullable
,com.badlogic.gdx.scenes.scene2d.utils.Layout
public class CircularGroup
extends com.badlogic.gdx.scenes.scene2d.ui.WidgetGroup
a group that aligns its children in a circle
- Since:
- 0.5.0
-
Nested Class Summary
Nested Classes Modifier and Type Class Description class
CircularGroup.DragManager
manages dragging and velocity of its enclosing CircularGroup instancestatic interface
CircularGroup.Modifier
-
Constructor Summary
Constructors Constructor Description CircularGroup()
CircularGroup(boolean draggable)
CircularGroup(CircularGroup.Modifier modifier)
CircularGroup(CircularGroup.Modifier modifier, boolean draggable)
-
Method Summary
Modifier and Type Method Description void
act(float delta)
protected void
computeSize()
computescachedMinWidth
,cachedMinHeight
,cachedPrefWidth
andcachedPrefHeight
void
drawDebug(com.badlogic.gdx.graphics.glutils.ShapeRenderer shapes)
float
getAngleOffset()
CircularGroup.DragManager
getDragManager()
float
getFullAngle()
float
getMaxAngleOffset()
float
getMinAngleOffset()
float
getMinHeight()
does not take rotation into accountfloat
getMinWidth()
does not take rotation into accountCircularGroup.Modifier
getModifier()
float
getPrefHeight()
float
getPrefWidth()
void
invalidate()
boolean
isDraggable()
boolean
isShrinkChildren()
boolean
isVirtualChildEnabled()
void
layout()
void
setAngleOffset(float angleOffset)
void
setDraggable(boolean draggable)
void
setFullAngle(float fullAngle)
setFullAngle(float, boolean)
with automatic estimation if avirtualChildEnabled
would make sense.void
setFullAngle(float fullAngle, boolean virtualChildEnabled)
void
setMaxAngleOffset(float maxAngleOffset)
clampsangleOffset
to the new boundsvoid
setMinAngleOffset(float minAngleOffset)
clampsangleOffset
to the new boundsvoid
setModifier(CircularGroup.Modifier modifier)
void
setShrinkChildren(boolean shrinkChildren)
void
setVirtualChildEnabled(boolean virtualChildEnabled)
void
translateAngleOffsetLimits(float amount)
Methods inherited from class com.badlogic.gdx.scenes.scene2d.ui.WidgetGroup
childrenChanged, draw, getMaxHeight, getMaxWidth, invalidateHierarchy, needsLayout, pack, setFillParent, setLayoutEnabled, sizeChanged, validate
Methods inherited from class com.badlogic.gdx.scenes.scene2d.Group
addActor, addActorAfter, addActorAt, addActorBefore, applyTransform, applyTransform, clear, clearChildren, computeTransform, debugAll, drawChildren, drawDebugChildren, findActor, getChild, getChildren, getCullingArea, hasChildren, hit, isTransform, localToDescendantCoordinates, removeActor, removeActor, removeActorAt, resetTransform, resetTransform, setCullingArea, setDebug, setStage, setTransform, swapActor, swapActor, toString
Methods inherited from class com.badlogic.gdx.scenes.scene2d.Actor
addAction, addCaptureListener, addListener, ancestorsVisible, ascendantsVisible, clearActions, clearListeners, clipBegin, clipBegin, clipEnd, debug, drawDebugBounds, fire, firstAscendant, getActions, getCaptureListeners, getColor, getDebug, getHeight, getListeners, getName, getOriginX, getOriginY, getParent, getRight, getRotation, getScaleX, getScaleY, getStage, getTop, getTouchable, getUserObject, getWidth, getX, getX, getY, getY, getZIndex, hasActions, hasKeyboardFocus, hasParent, hasScrollFocus, isAscendantOf, isDescendantOf, isTouchable, isTouchFocusListener, isTouchFocusTarget, isVisible, localToActorCoordinates, localToAscendantCoordinates, localToParentCoordinates, localToScreenCoordinates, localToStageCoordinates, moveBy, notify, parentToLocalCoordinates, positionChanged, remove, removeAction, removeCaptureListener, removeListener, rotateBy, rotationChanged, scaleBy, scaleBy, scaleChanged, screenToLocalCoordinates, setBounds, setColor, setColor, setDebug, setHeight, setName, setOrigin, setOrigin, setOriginX, setOriginY, setParent, setPosition, setPosition, setRotation, setScale, setScale, setScaleX, setScaleY, setSize, setTouchable, setUserObject, setVisible, setWidth, setX, setX, setY, setY, setZIndex, sizeBy, sizeBy, stageToLocalCoordinates, toBack, toFront
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Constructor Details
-
CircularGroup
public CircularGroup()- See Also:
CircularGroup(Modifier)
-
CircularGroup
- Parameters:
modifier
- themodifier
to set
-
CircularGroup
public CircularGroup(boolean draggable)- See Also:
CircularGroup(Modifier, boolean)
-
CircularGroup
- Parameters:
draggable
- seesetDraggable(boolean)
- See Also:
CircularGroup(Modifier)
-
-
Method Details
-
act
public void act(float delta)- Overrides:
act
in classcom.badlogic.gdx.scenes.scene2d.Group
-
drawDebug
public void drawDebug(com.badlogic.gdx.graphics.glutils.ShapeRenderer shapes)- Overrides:
drawDebug
in classcom.badlogic.gdx.scenes.scene2d.Group
-
computeSize
protected void computeSize()computescachedMinWidth
,cachedMinHeight
,cachedPrefWidth
andcachedPrefHeight
-
getMinWidth
public float getMinWidth()does not take rotation into account- Specified by:
getMinWidth
in interfacecom.badlogic.gdx.scenes.scene2d.utils.Layout
- Overrides:
getMinWidth
in classcom.badlogic.gdx.scenes.scene2d.ui.WidgetGroup
-
getMinHeight
public float getMinHeight()does not take rotation into account- Specified by:
getMinHeight
in interfacecom.badlogic.gdx.scenes.scene2d.utils.Layout
- Overrides:
getMinHeight
in classcom.badlogic.gdx.scenes.scene2d.ui.WidgetGroup
-
getPrefWidth
public float getPrefWidth()- Specified by:
getPrefWidth
in interfacecom.badlogic.gdx.scenes.scene2d.utils.Layout
- Overrides:
getPrefWidth
in classcom.badlogic.gdx.scenes.scene2d.ui.WidgetGroup
-
getPrefHeight
public float getPrefHeight()- Specified by:
getPrefHeight
in interfacecom.badlogic.gdx.scenes.scene2d.utils.Layout
- Overrides:
getPrefHeight
in classcom.badlogic.gdx.scenes.scene2d.ui.WidgetGroup
-
invalidate
public void invalidate()- Specified by:
invalidate
in interfacecom.badlogic.gdx.scenes.scene2d.utils.Layout
- Overrides:
invalidate
in classcom.badlogic.gdx.scenes.scene2d.ui.WidgetGroup
-
layout
public void layout()- Specified by:
layout
in interfacecom.badlogic.gdx.scenes.scene2d.utils.Layout
- Overrides:
layout
in classcom.badlogic.gdx.scenes.scene2d.ui.WidgetGroup
-
isDraggable
public boolean isDraggable()- Returns:
- if this group is rotatable by dragging with the pointer
-
setDraggable
public void setDraggable(boolean draggable)- Parameters:
draggable
- if this group should be rotatable by dragging with the pointer
-
translateAngleOffsetLimits
public void translateAngleOffsetLimits(float amount)- Parameters:
amount
- the amount by which to translateminAngleOffset
andmaxAngleOffset
-
getFullAngle
public float getFullAngle()- Returns:
- the
fullAngle
-
setFullAngle
public void setFullAngle(float fullAngle)setFullAngle(float, boolean)
with automatic estimation if avirtualChildEnabled
would make sense.- Parameters:
fullAngle
- thefullAngle
to set- See Also:
setFullAngle(float, boolean)
-
setFullAngle
public void setFullAngle(float fullAngle, boolean virtualChildEnabled)- Parameters:
fullAngle
- thefullAngle
to setvirtualChildEnabled
- thevirtualChildEnabled
to set
-
getAngleOffset
public float getAngleOffset()- Returns:
- the
angleOffset
-
setAngleOffset
public void setAngleOffset(float angleOffset)- Parameters:
angleOffset
- TheangleOffset
to set. Will be clamped tominAngleOffset
andmaxAngleOffset
.
-
getMinAngleOffset
public float getMinAngleOffset()- Returns:
- the
minAngleOffset
-
setMinAngleOffset
public void setMinAngleOffset(float minAngleOffset)clampsangleOffset
to the new bounds- Parameters:
minAngleOffset
- theminAngleOffset
to set
-
getMaxAngleOffset
public float getMaxAngleOffset()- Returns:
- the
maxAngleOffset
-
setMaxAngleOffset
public void setMaxAngleOffset(float maxAngleOffset)clampsangleOffset
to the new bounds- Parameters:
maxAngleOffset
- themaxAngleOffset
to set
-
isVirtualChildEnabled
public boolean isVirtualChildEnabled()- Returns:
- the
virtualChildEnabled
-
setVirtualChildEnabled
public void setVirtualChildEnabled(boolean virtualChildEnabled)- Parameters:
virtualChildEnabled
- thevirtualChildEnabled
to set
-
getModifier
- Returns:
- the
modifier
-
setModifier
- Parameters:
modifier
- themodifier
to set
-
isShrinkChildren
public boolean isShrinkChildren()- Returns:
- the
shrinkChildren
-
setShrinkChildren
public void setShrinkChildren(boolean shrinkChildren)- Parameters:
shrinkChildren
- theshrinkChildren
to set
-
getDragManager
- Returns:
- the
dragManager
-