Skip to content

Commit

Permalink
Live 9.6 python source MIDI remote scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
gluon committed Feb 10, 2016
1 parent 882b3e6 commit f1a0f04
Show file tree
Hide file tree
Showing 716 changed files with 10,134 additions and 3,447 deletions.
2 changes: 1 addition & 1 deletion ADVANCE/Advance.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/midi-remote-scripts/ADVANCE/Advance.py
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/python-bundle/MIDI Remote Scripts/ADVANCE/Advance.py
from __future__ import with_statement
import Live
from _Framework.ControlSurface import ControlSurface
Expand Down
2 changes: 1 addition & 1 deletion ADVANCE/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/midi-remote-scripts/ADVANCE/__init__.py
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/python-bundle/MIDI Remote Scripts/ADVANCE/__init__.py
import _Framework.Capabilities as caps
from .Advance import Advance

Expand Down
2 changes: 1 addition & 1 deletion AIRA_MX_1/Colors.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/midi-remote-scripts/AIRA_MX_1/Colors.py
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/python-bundle/MIDI Remote Scripts/AIRA_MX_1/Colors.py
from _Framework.ButtonElement import Color
BLINK_LED_CHANNEL = 14

Expand Down
8 changes: 5 additions & 3 deletions AIRA_MX_1/ControlElementUtils.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,15 @@
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/midi-remote-scripts/AIRA_MX_1/ControlElementUtils.py
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/python-bundle/MIDI Remote Scripts/AIRA_MX_1/ControlElementUtils.py
import Live
from _Framework.Resource import PrioritizedResource
from _Framework.Dependency import depends
from _Framework.InputControlElement import MIDI_NOTE_TYPE, MIDI_CC_TYPE
from _Framework.ComboElement import ComboElement
from _Framework.ButtonElement import ButtonElement
from _Framework.EncoderElement import EncoderElement

def make_button(name, identifier, channel = 0, msg_type = MIDI_NOTE_TYPE, is_momentary = True, is_modifier = False):
return ButtonElement(is_momentary, msg_type, channel, identifier, name=name, resource_type=PrioritizedResource if is_modifier else None)
@depends(skin=None)
def make_button(name, identifier, channel = 0, msg_type = MIDI_NOTE_TYPE, is_momentary = True, is_modifier = False, skin = None):
return ButtonElement(is_momentary, msg_type, channel, identifier, name=name, resource_type=PrioritizedResource if is_modifier else None, skin=skin)


def make_encoder(name, identifier, channel = 0):
Expand Down
2 changes: 1 addition & 1 deletion AIRA_MX_1/NotifyingMixerComponent.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/midi-remote-scripts/AIRA_MX_1/NotifyingMixerComponent.py
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/python-bundle/MIDI Remote Scripts/AIRA_MX_1/NotifyingMixerComponent.py
from _Framework.MixerComponent import MixerComponent
from _Framework.Control import ButtonControl

Expand Down
6 changes: 3 additions & 3 deletions AIRA_MX_1/NotifyingSessionComponent.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/midi-remote-scripts/AIRA_MX_1/NotifyingSessionComponent.py
from itertools import count
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/python-bundle/MIDI Remote Scripts/AIRA_MX_1/NotifyingSessionComponent.py
from itertools import count, izip_longest
from _Framework.SubjectSlot import subject_slot, subject_slot_group
from _Framework.SessionComponent import SessionComponent, SceneComponent

Expand Down Expand Up @@ -77,7 +77,7 @@ def __init__(self, *a, **k):

def set_clip_launch_buttons(self, buttons):
first_scene = self.scene(0)
for track_index, button in map(None, xrange(self._num_tracks), buttons or []):
for track_index, button in izip_longest(xrange(self._num_tracks), buttons or []):
slot = first_scene.clip_slot(track_index)
slot.set_launch_button(button)

Expand Down
2 changes: 1 addition & 1 deletion AIRA_MX_1/RolandMX1.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/midi-remote-scripts/AIRA_MX_1/RolandMX1.py
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/python-bundle/MIDI Remote Scripts/AIRA_MX_1/RolandMX1.py
from __future__ import with_statement
from functools import partial
from _Framework.Util import recursive_map
Expand Down
2 changes: 1 addition & 1 deletion AIRA_MX_1/SkinDefault.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/midi-remote-scripts/AIRA_MX_1/SkinDefault.py
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/python-bundle/MIDI Remote Scripts/AIRA_MX_1/SkinDefault.py
from _Framework.Skin import Skin
from Colors import Rgb

Expand Down
2 changes: 1 addition & 1 deletion AIRA_MX_1/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/midi-remote-scripts/AIRA_MX_1/__init__.py
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/python-bundle/MIDI Remote Scripts/AIRA_MX_1/__init__.py
from _Framework.Capabilities import CONTROLLER_ID_KEY, PORTS_KEY, SCRIPT, controller_id, inport, outport
from RolandMX1 import RolandMX1

Expand Down
2 changes: 1 addition & 1 deletion APC20/APC20.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/midi-remote-scripts/APC20/APC20.py
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/python-bundle/MIDI Remote Scripts/APC20/APC20.py
from __future__ import with_statement
from functools import partial
from itertools import izip
Expand Down
2 changes: 1 addition & 1 deletion APC20/BackgroundComponent.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/midi-remote-scripts/APC20/BackgroundComponent.py
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/python-bundle/MIDI Remote Scripts/APC20/BackgroundComponent.py
from _Framework.BackgroundComponent import BackgroundComponent as BackgroundComponentBase
from _Framework.Util import nop

Expand Down
2 changes: 1 addition & 1 deletion APC20/ShiftableSelectorComponent.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/midi-remote-scripts/APC20/ShiftableSelectorComponent.py
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/python-bundle/MIDI Remote Scripts/APC20/ShiftableSelectorComponent.py
from _Framework.ModeSelectorComponent import ModeSelectorComponent
from _Framework.Layer import Layer
from consts import NOTE_MODE, ABLETON_MODE
Expand Down
2 changes: 1 addition & 1 deletion APC20/ShiftableZoomingComponent.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/midi-remote-scripts/APC20/ShiftableZoomingComponent.py
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/python-bundle/MIDI Remote Scripts/APC20/ShiftableZoomingComponent.py
from _Framework.ButtonElement import ButtonElement
from _Framework.SessionZoomingComponent import DeprecatedSessionZoomingComponent

Expand Down
2 changes: 1 addition & 1 deletion APC20/SliderModesComponent.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/midi-remote-scripts/APC20/SliderModesComponent.py
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/python-bundle/MIDI Remote Scripts/APC20/SliderModesComponent.py
from _Framework.ButtonElement import ButtonElement
from _Framework.ModeSelectorComponent import ModeSelectorComponent

Expand Down
2 changes: 1 addition & 1 deletion APC20/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/midi-remote-scripts/APC20/__init__.py
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/python-bundle/MIDI Remote Scripts/APC20/__init__.py
from _Framework.Capabilities import CONTROLLER_ID_KEY, PORTS_KEY, NOTES_CC, SCRIPT, REMOTE, controller_id, inport, outport
from APC20 import APC20

Expand Down
2 changes: 1 addition & 1 deletion APC20/consts.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/midi-remote-scripts/APC20/consts.py
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/python-bundle/MIDI Remote Scripts/APC20/consts.py
MANUFACTURER_ID = 71
ABLETON_MODE = 65
NOTE_MODE = 67
2 changes: 1 addition & 1 deletion APC40/APC40.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/midi-remote-scripts/APC40/APC40.py
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/python-bundle/MIDI Remote Scripts/APC40/APC40.py
from __future__ import with_statement
from functools import partial
from _Framework.ButtonMatrixElement import ButtonMatrixElement
Expand Down
2 changes: 1 addition & 1 deletion APC40/SessionComponent.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/midi-remote-scripts/APC40/SessionComponent.py
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/python-bundle/MIDI Remote Scripts/APC40/SessionComponent.py
from _Framework.Control import ButtonControl
from _APC.SessionComponent import SessionComponent as SessionComponentBase

Expand Down
2 changes: 1 addition & 1 deletion APC40/TransportComponent.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/midi-remote-scripts/APC40/TransportComponent.py
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/python-bundle/MIDI Remote Scripts/APC40/TransportComponent.py
import Live
from _Framework.Control import ButtonControl
from _Framework.TransportComponent import TransportComponent as TransportComponentBase
Expand Down
2 changes: 1 addition & 1 deletion APC40/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/midi-remote-scripts/APC40/__init__.py
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/python-bundle/MIDI Remote Scripts/APC40/__init__.py
from _Framework.Capabilities import CONTROLLER_ID_KEY, PORTS_KEY, NOTES_CC, SCRIPT, REMOTE, controller_id, inport, outport
from APC40 import APC40

Expand Down
2 changes: 1 addition & 1 deletion APC40_MkII/APC40_MkII.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/midi-remote-scripts/APC40_MkII/APC40_MkII.py
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/python-bundle/MIDI Remote Scripts/APC40_MkII/APC40_MkII.py
from __future__ import with_statement
from functools import partial
from _Framework.ButtonMatrixElement import ButtonMatrixElement
Expand Down
2 changes: 1 addition & 1 deletion APC40_MkII/BankToggleComponent.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/midi-remote-scripts/APC40_MkII/BankToggleComponent.py
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/python-bundle/MIDI Remote Scripts/APC40_MkII/BankToggleComponent.py
from _Framework.ComboElement import ToggleElement
from _Framework.Control import ToggleButtonControl
from _Framework.ControlSurfaceComponent import ControlSurfaceComponent
Expand Down
6 changes: 3 additions & 3 deletions APC40_MkII/MixerComponent.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/midi-remote-scripts/APC40_MkII/MixerComponent.py
from itertools import ifilter
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/python-bundle/MIDI Remote Scripts/APC40_MkII/MixerComponent.py
from itertools import ifilter, izip_longest
from _Framework.Control import RadioButtonControl, control_list
from _Framework.Dependency import depends
from _Framework.Util import nop
Expand Down Expand Up @@ -81,7 +81,7 @@ def set_user_controls(self, controls):
self._show_message('Controlling User Mappings')

def set_crossfade_buttons(self, buttons):
for strip, button in map(None, self._channel_strips, buttons or []):
for strip, button in izip_longest(self._channel_strips, buttons or []):
strip.set_crossfade_toggle(button)

def _update_pan_controls(self):
Expand Down
2 changes: 1 addition & 1 deletion APC40_MkII/QuantizationComponent.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/midi-remote-scripts/APC40_MkII/QuantizationComponent.py
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/python-bundle/MIDI Remote Scripts/APC40_MkII/QuantizationComponent.py
import Live
from _Framework.Control import RadioButtonControl, control_list
from _Framework.ControlSurfaceComponent import ControlSurfaceComponent
Expand Down
6 changes: 4 additions & 2 deletions APC40_MkII/TransportComponent.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/midi-remote-scripts/APC40_MkII/TransportComponent.py
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/python-bundle/MIDI Remote Scripts/APC40_MkII/TransportComponent.py
import Live
from _Framework.Control import ButtonControl
from _Framework.SubjectSlot import subject_slot
Expand All @@ -11,7 +11,9 @@ class TransportComponent(TransportComponentBase):
def __init__(self, *a, **k):

def play_toggle_model_transform(val):
return False if self.shift_button.is_pressed else val
if self.shift_button.is_pressed:
return False
return val

k['play_toggle_model_transform'] = play_toggle_model_transform
super(TransportComponent, self).__init__(*a, **k)
Expand Down
2 changes: 1 addition & 1 deletion APC40_MkII/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/midi-remote-scripts/APC40_MkII/__init__.py
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/python-bundle/MIDI Remote Scripts/APC40_MkII/__init__.py
from _Framework.Capabilities import CONTROLLER_ID_KEY, PORTS_KEY, NOTES_CC, SCRIPT, SYNC, REMOTE, controller_id, inport, outport
from APC40_MkII import APC40_MkII

Expand Down
6 changes: 4 additions & 2 deletions APC_Key_25/APC_Key_25.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/midi-remote-scripts/APC_Key_25/APC_Key_25.py
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/python-bundle/MIDI Remote Scripts/APC_Key_25/APC_Key_25.py
from __future__ import with_statement
from functools import partial
from _Framework.ButtonMatrixElement import ButtonMatrixElement
Expand Down Expand Up @@ -107,7 +107,9 @@ def _create_device_component(self):
def _create_transport(self):

def play_toggle_model_transform(value):
return False if self._shift_button.is_pressed() else value
if self._shift_button.is_pressed():
return False
return value

return TransportComponent(name='Transport', is_enabled=False, play_toggle_model_transform=play_toggle_model_transform, layer=Layer(play_button=self._play_button, record_button=self._record_button))

Expand Down
2 changes: 1 addition & 1 deletion APC_Key_25/MixerComponent.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/midi-remote-scripts/APC_Key_25/MixerComponent.py
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/python-bundle/MIDI Remote Scripts/APC_Key_25/MixerComponent.py
from _APC.MixerComponent import MixerComponent as MixerComponentBase
from _APC.MixerComponent import ChanStripComponent as ChanStripComponentBase
from _Framework.Util import nop
Expand Down
2 changes: 1 addition & 1 deletion APC_Key_25/SendToggleComponent.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/midi-remote-scripts/APC_Key_25/SendToggleComponent.py
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/python-bundle/MIDI Remote Scripts/APC_Key_25/SendToggleComponent.py
from _Framework.Control import ButtonControl
from _Framework.ControlSurfaceComponent import ControlSurfaceComponent

Expand Down
2 changes: 1 addition & 1 deletion APC_Key_25/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/midi-remote-scripts/APC_Key_25/__init__.py
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/python-bundle/MIDI Remote Scripts/APC_Key_25/__init__.py
from _Framework.Capabilities import CONTROLLER_ID_KEY, PORTS_KEY, NOTES_CC, SCRIPT, REMOTE, controller_id, inport, outport
from APC_Key_25 import APC_Key_25

Expand Down
2 changes: 1 addition & 1 deletion APC_mini/APC_mini.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/midi-remote-scripts/APC_mini/APC_mini.py
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/python-bundle/MIDI Remote Scripts/APC_mini/APC_mini.py
from __future__ import with_statement
from _Framework.Layer import Layer, SimpleLayerOwner
from _APC.ControlElementUtils import make_slider
Expand Down
2 changes: 1 addition & 1 deletion APC_mini/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/midi-remote-scripts/APC_mini/__init__.py
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/python-bundle/MIDI Remote Scripts/APC_mini/__init__.py
from _Framework.Capabilities import CONTROLLER_ID_KEY, PORTS_KEY, NOTES_CC, SCRIPT, REMOTE, controller_id, inport, outport
from APC_mini import APC_mini

Expand Down
2 changes: 1 addition & 1 deletion Alesis_V/Alesis_V.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/midi-remote-scripts/Alesis_V/Alesis_V.py
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/python-bundle/MIDI Remote Scripts/Alesis_V/Alesis_V.py
from __future__ import with_statement
import Live
from _Framework.ControlSurface import ControlSurface
Expand Down
2 changes: 1 addition & 1 deletion Alesis_V/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/midi-remote-scripts/Alesis_V/__init__.py
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/python-bundle/MIDI Remote Scripts/Alesis_V/__init__.py
from .Alesis_V import Alesis_V
from _Framework.Capabilities import controller_id, inport, outport, CONTROLLER_ID_KEY, PORTS_KEY, NOTES_CC, SCRIPT, REMOTE

Expand Down
2 changes: 1 addition & 1 deletion Alesis_VI/Alesis_VI.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/midi-remote-scripts/Alesis_VI/Alesis_VI.py
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/python-bundle/MIDI Remote Scripts/Alesis_VI/Alesis_VI.py
from __future__ import with_statement
from _Framework.ControlSurface import ControlSurface
from _Framework.MidiMap import make_encoder, MidiMap as MidiMapBase
Expand Down
2 changes: 1 addition & 1 deletion Alesis_VI/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/midi-remote-scripts/Alesis_VI/__init__.py
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/python-bundle/MIDI Remote Scripts/Alesis_VI/__init__.py
from .Alesis_VI import Alesis_VI
from _Framework.Capabilities import controller_id, inport, outport, CONTROLLER_ID_KEY, PORTS_KEY, NOTES_CC, SCRIPT, REMOTE

Expand Down
5 changes: 5 additions & 0 deletions Alesis_VX/Alesis_VX.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/python-bundle/MIDI Remote Scripts/Alesis_VX/Alesis_VX.py
from ADVANCE.Advance import Advance

class Alesis_VX(Advance):
pass
11 changes: 11 additions & 0 deletions Alesis_VX/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/python-bundle/MIDI Remote Scripts/Alesis_VX/__init__.py
from .Alesis_VX import Alesis_VX
from _Framework.Capabilities import controller_id, inport, outport, CONTROLLER_ID_KEY, PORTS_KEY, NOTES_CC, SCRIPT, REMOTE

def get_capabilities():
return {CONTROLLER_ID_KEY: controller_id(vendor_id=5042, product_ids=[4176], model_name='VX49'),
PORTS_KEY: [inport(props=[NOTES_CC, SCRIPT, REMOTE]), outport(props=[SCRIPT])]}


def create_instance(c_instance):
return Alesis_VX(c_instance)
2 changes: 1 addition & 1 deletion Axiom/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/midi-remote-scripts/Axiom/__init__.py
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/python-bundle/MIDI Remote Scripts/Axiom/__init__.py
from _Generic.GenericScript import GenericScript
import Live
from config import *
Expand Down
2 changes: 1 addition & 1 deletion Axiom/config.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/midi-remote-scripts/Axiom/config.py
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/python-bundle/MIDI Remote Scripts/Axiom/config.py
from consts import *
from _Axiom.consts import PAD_TRANSLATION
TRANSPORT_CONTROLS = {'STOP': GENERIC_STOP,
Expand Down
2 changes: 1 addition & 1 deletion Axiom/consts.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/midi-remote-scripts/Axiom/consts.py
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/python-bundle/MIDI Remote Scripts/Axiom/consts.py
""" The following consts should be substituted with the Sys Ex messages for requesting
a controller's ID response and that response to allow for automatic lookup"""
ID_REQUEST = 0
Expand Down
2 changes: 1 addition & 1 deletion AxiomPro/AxiomPro.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/midi-remote-scripts/AxiomPro/AxiomPro.py
#Embedded file name: /Users/versonator/Jenkins/live/output/mac_64_static/Release/python-bundle/MIDI Remote Scripts/AxiomPro/AxiomPro.py
from __future__ import with_statement
import Live
from _Framework.ControlSurface import ControlSurface
Expand Down
Loading

0 comments on commit f1a0f04

Please sign in to comment.