Package heronarts.lx.clip
Class LXChannelClip
java.lang.Object
heronarts.lx.LXComponent
heronarts.lx.LXRunnableComponent
heronarts.lx.clip.LXClip
heronarts.lx.clip.LXAbstractChannelClip
heronarts.lx.clip.LXChannelClip
- All Implemented Interfaces:
LXComponent.Renamable
,LXLoopTask
,LXPath
,LXSerializable
,LXAbstractChannel.Listener
,LXAbstractChannel.MidiListener
,LXBus.Listener
,LXChannel.Listener
,LXOscComponent
,LXParameterListener
-
Nested Class Summary
Nested classes/interfaces inherited from class heronarts.lx.clip.LXClip
LXClip.Listener
Nested classes/interfaces inherited from class heronarts.lx.LXComponent
LXComponent.Hidden, LXComponent.Placeholder, LXComponent.Renamable
Nested classes/interfaces inherited from interface heronarts.lx.LXSerializable
LXSerializable.Utils
-
Field Summary
Fields inherited from class heronarts.lx.clip.LXAbstractChannelClip
midiNoteLane
Fields inherited from class heronarts.lx.clip.LXClip
automationEnabled, bus, customSnapshotTransition, KEY_INDEX, lanes, length, loop, mutableLanes, parameterRecorder, snapshot, snapshotEnabled, snapshotTransitionEnabled
Fields inherited from class heronarts.lx.LXRunnableComponent
runMs, running, trigger
Fields inherited from class heronarts.lx.LXComponent
children, internalParameters, KEY_CHILDREN, KEY_CLASS, KEY_COMPONENT_ID, KEY_ID, KEY_INTERNAL, KEY_PARAMETER_PATH, KEY_PARAMETERS, KEY_PATH, KEY_RESET, label, legacyInternalParameters, legacyParameters, lx, modulationColor, modulationControlsExpanded, modulationsExpanded, parameters, presetFile
Fields inherited from interface heronarts.lx.LXPath
ROOT, ROOT_PREFIX, ROOT_SLASH
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionvoid
dispose()
Invoked when a component is being removed from the system and will no longer be used at all.void
groupChanged
(LXChannel channel, LXGroup group) void
indexChanged
(LXAbstractChannel channel) protected void
loadLane
(LX lx, String laneType, JsonObject laneObj) protected void
void
patternAdded
(LXChannel channel, LXPattern pattern) void
patternDidChange
(LXChannel channel, LXPattern pattern) void
patternMoved
(LXChannel channel, LXPattern pattern) void
patternRemoved
(LXChannel channel, LXPattern pattern) void
patternWillChange
(LXChannel channel, LXPattern pattern, LXPattern nextPattern) Methods inherited from class heronarts.lx.clip.LXAbstractChannelClip
midiReceived
Methods inherited from class heronarts.lx.clip.LXClip
addListener, effectAdded, effectMoved, effectRemoved, getBasis, getCursor, getIndex, getLength, getPath, load, onParameterChanged, onStop, onTrigger, registerComponent, removeListener, removeParameterLane, run, save, setIndex, unregisterComponent
Methods inherited from class heronarts.lx.LXRunnableComponent
isRunning, loop, onReset, onStart, postRun, reset, start, stop, toggle, trigger
Methods inherited from class heronarts.lx.LXComponent
addArray, addChild, addInternalParameter, addLegacyInternalParameter, addLegacyParameter, addParameter, addParameter, addParameters, contains, copyParameters, getCategory, getChild, getComponentName, getComponentName, getComponentName, getDescription, getId, getLabel, getLX, getOscAddress, getOscLabel, getOscPath, getParameter, getParameters, getParent, handleOscMessage, hasParameter, isValidOscParameter, loadParameters, loadPreset, removeParameter, removeParameter, removeParameter, removeParameter, savePreset, setDescription, setParent, toOscQuery, toOscQuery, toOscQuery, toString, toString
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
Methods inherited from interface heronarts.lx.mixer.LXBus.Listener
effectAdded, effectMoved, effectRemoved
Methods inherited from interface heronarts.lx.mixer.LXChannel.Listener
patternEnabled
Methods inherited from interface heronarts.lx.osc.LXOscComponent
getOscAddress, handleOscMessage
Methods inherited from interface heronarts.lx.LXPath
getCanonicalLabel, getCanonicalLabel, getCanonicalPath, getCanonicalPath, isDescendant
-
Field Details
-
channel
-
patternLane
-
-
Constructor Details
-
LXChannelClip
-
-
Method Details
-
dispose
public void dispose()Description copied from class:LXComponent
Invoked when a component is being removed from the system and will no longer be used at all. This unregisters the component and should free up any resources and parameter listeners. Ideally after this method is called the object should be eligible for garbage collection. Subclasses are generally expected to override this method to handle their particular cleanup work. They should also generally callsuper.dispose()
at the appropriate time to perform the basic cleanup, which may need to happen either before or after cleaning up other objects.- Overrides:
dispose
in classLXAbstractChannelClip
-
onStartRecording
protected void onStartRecording()- Overrides:
onStartRecording
in classLXClip
-
indexChanged
- Specified by:
indexChanged
in interfaceLXAbstractChannel.Listener
-
groupChanged
- Specified by:
groupChanged
in interfaceLXChannel.Listener
-
patternAdded
- Specified by:
patternAdded
in interfaceLXChannel.Listener
-
patternRemoved
- Specified by:
patternRemoved
in interfaceLXChannel.Listener
-
patternMoved
- Specified by:
patternMoved
in interfaceLXChannel.Listener
-
patternWillChange
- Specified by:
patternWillChange
in interfaceLXChannel.Listener
-
patternDidChange
- Specified by:
patternDidChange
in interfaceLXChannel.Listener
-
loadLane
-