@@ -46,93 +46,93 @@ public enum LockState
4646
4747
4848 /** Setting for the ribbon mode. */
49- public static final Integer RIBBON_MODE = Integer .valueOf (50 );
49+ public static final Integer RIBBON_MODE = Integer .valueOf (NEXT_SETTING_ID );
5050 /** Setting for the ribbon mode MIDI CC. */
51- public static final Integer RIBBON_MODE_CC_VAL = Integer .valueOf (51 );
51+ public static final Integer RIBBON_MODE_CC_VAL = Integer .valueOf (NEXT_SETTING_ID + 1 );
5252 /** Setting for the ribbon mode note repeat. */
53- public static final Integer RIBBON_MODE_NOTE_REPEAT = Integer .valueOf (52 );
53+ public static final Integer RIBBON_MODE_NOTE_REPEAT = Integer .valueOf (NEXT_SETTING_ID + 2 );
5454
5555 /** Setting for the velocity curve. */
56- public static final Integer VELOCITY_CURVE = Integer .valueOf (53 );
56+ public static final Integer VELOCITY_CURVE = Integer .valueOf (NEXT_SETTING_ID + 3 );
5757 /** Setting for the Push 1 pad threshold. */
58- public static final Integer PAD_PUSH1_THRESHOLD = Integer .valueOf (54 );
58+ public static final Integer PAD_PUSH1_THRESHOLD = Integer .valueOf (NEXT_SETTING_ID + 4 );
5959 /** Setting for the display brightness. */
60- public static final Integer DISPLAY_BRIGHTNESS = Integer .valueOf (55 );
60+ public static final Integer DISPLAY_BRIGHTNESS = Integer .valueOf (NEXT_SETTING_ID + 5 );
6161 /** Setting for the pad LED brightness. */
62- public static final Integer LED_BRIGHTNESS = Integer .valueOf (56 );
62+ public static final Integer LED_BRIGHTNESS = Integer .valueOf (NEXT_SETTING_ID + 6 );
6363 /** Setting for the Push 2 pad sensitivity. */
64- public static final Integer PAD_PUSH2_SENSITIVITY = Integer .valueOf (57 );
64+ public static final Integer PAD_PUSH2_SENSITIVITY = Integer .valueOf (NEXT_SETTING_ID + 7 );
6565 /** Setting for the Push 2 pad gain. */
66- public static final Integer PAD_PUSH2_GAIN = Integer .valueOf (58 );
66+ public static final Integer PAD_PUSH2_GAIN = Integer .valueOf (NEXT_SETTING_ID + 8 );
6767 /** Setting for the Push 2 pad dynamics. */
68- public static final Integer PAD_PUSH2_DYNAMICS = Integer .valueOf (59 );
68+ public static final Integer PAD_PUSH2_DYNAMICS = Integer .valueOf (NEXT_SETTING_ID + 9 );
6969 /** Setting for the Push 3 pad velocity curve - threshold parameter. */
70- public static final Integer PAD_PUSH3_THRESHOLD = Integer .valueOf (60 );
70+ public static final Integer PAD_PUSH3_THRESHOLD = Integer .valueOf (NEXT_SETTING_ID + 10 );
7171 /** Setting for the Push 3 pad velocity curve - drive parameter. */
72- public static final Integer PAD_PUSH3_DRIVE = Integer .valueOf (61 );
72+ public static final Integer PAD_PUSH3_DRIVE = Integer .valueOf (NEXT_SETTING_ID + 11 );
7373 /** Setting for the Push 3 pad velocity curve - compand parameter. */
74- public static final Integer PAD_PUSH3_COMPAND = Integer .valueOf (62 );
74+ public static final Integer PAD_PUSH3_COMPAND = Integer .valueOf (NEXT_SETTING_ID + 12 );
7575 /** Setting for the Push 3 pad velocity curve - range parameter. */
76- public static final Integer PAD_PUSH3_RANGE = Integer .valueOf (64 );
76+ public static final Integer PAD_PUSH3_RANGE = Integer .valueOf (NEXT_SETTING_ID + 14 );
7777
7878 /** Setting for stopping automation recording on knob release. */
79- public static final Integer STOP_AUTOMATION_ON_KNOB_RELEASE = Integer .valueOf (65 );
79+ public static final Integer STOP_AUTOMATION_ON_KNOB_RELEASE = Integer .valueOf (NEXT_SETTING_ID + 15 );
8080 /** Mode debug. */
81- public static final Integer DEBUG_MODE = Integer .valueOf (66 );
81+ public static final Integer DEBUG_MODE = Integer .valueOf (NEXT_SETTING_ID + 16 );
8282 /** Push 2 display debug window. */
83- public static final Integer DEBUG_WINDOW = Integer .valueOf (67 );
83+ public static final Integer DEBUG_WINDOW = Integer .valueOf (NEXT_SETTING_ID + 17 );
8484
8585 /** Background color of an element. */
86- public static final Integer COLOR_BACKGROUND = Integer .valueOf (70 );
86+ public static final Integer COLOR_BACKGROUND = Integer .valueOf (NEXT_SETTING_ID + 20 );
8787 /** Border color of an element. */
88- public static final Integer COLOR_BORDER = Integer .valueOf (71 );
88+ public static final Integer COLOR_BORDER = Integer .valueOf (NEXT_SETTING_ID + 21 );
8989 /** Text color of an element. */
90- public static final Integer COLOR_TEXT = Integer .valueOf (72 );
90+ public static final Integer COLOR_TEXT = Integer .valueOf (NEXT_SETTING_ID + 22 );
9191 /** Fader color of an element. */
92- public static final Integer COLOR_FADER = Integer .valueOf (73 );
92+ public static final Integer COLOR_FADER = Integer .valueOf (NEXT_SETTING_ID + 23 );
9393 /** VU color of an element. */
94- public static final Integer COLOR_VU = Integer .valueOf (74 );
94+ public static final Integer COLOR_VU = Integer .valueOf (NEXT_SETTING_ID + 24 );
9595 /** Edit color of an element. */
96- public static final Integer COLOR_EDIT = Integer .valueOf (75 );
96+ public static final Integer COLOR_EDIT = Integer .valueOf (NEXT_SETTING_ID + 25 );
9797 /** Record color of an element. */
98- public static final Integer COLOR_RECORD = Integer .valueOf (76 );
98+ public static final Integer COLOR_RECORD = Integer .valueOf (NEXT_SETTING_ID + 26 );
9999 /** Solo color of an element. */
100- public static final Integer COLOR_SOLO = Integer .valueOf (77 );
100+ public static final Integer COLOR_SOLO = Integer .valueOf (NEXT_SETTING_ID + 27 );
101101 /** Mute color of an element. */
102- public static final Integer COLOR_MUTE = Integer .valueOf (78 );
102+ public static final Integer COLOR_MUTE = Integer .valueOf (NEXT_SETTING_ID + 28 );
103103 /** Background color darker of an element. */
104- public static final Integer COLOR_BACKGROUND_DARKER = Integer .valueOf (79 );
104+ public static final Integer COLOR_BACKGROUND_DARKER = Integer .valueOf (NEXT_SETTING_ID + 29 );
105105 /** Background color lighter of an element. */
106- public static final Integer COLOR_BACKGROUND_LIGHTER = Integer .valueOf (80 );
106+ public static final Integer COLOR_BACKGROUND_LIGHTER = Integer .valueOf (NEXT_SETTING_ID + 30 );
107107
108108 /** Session view options. */
109- public static final Integer SESSION_VIEW = Integer .valueOf (81 );
109+ public static final Integer SESSION_VIEW = Integer .valueOf (NEXT_SETTING_ID + 31 );
110110 /** Display scenes or clips. */
111- public static final Integer DISPLAY_SCENES_CLIPS = Integer .valueOf (82 );
111+ public static final Integer DISPLAY_SCENES_CLIPS = Integer .valueOf (NEXT_SETTING_ID + 32 );
112112
113113 /** MPE - Per-pad pitchbend. */
114- public static final Integer PER_PAD_PITCHBEND = Integer .valueOf (83 );
114+ public static final Integer PER_PAD_PITCHBEND = Integer .valueOf (NEXT_SETTING_ID + 33 );
115115 /** MPE - Pad in-tune location. */
116- public static final Integer IN_TUNE_LOCATION = Integer .valueOf (84 );
116+ public static final Integer IN_TUNE_LOCATION = Integer .valueOf (NEXT_SETTING_ID + 34 );
117117 /** MPE - Pad in-tune location width. */
118- public static final Integer IN_TUNE_WIDTH = Integer .valueOf (85 );
118+ public static final Integer IN_TUNE_WIDTH = Integer .valueOf (NEXT_SETTING_ID + 35 );
119119 /** MPE - Pad in-tune location height. */
120- public static final Integer IN_TUNE_SLIDE_HEIGHT = Integer .valueOf (86 );
120+ public static final Integer IN_TUNE_SLIDE_HEIGHT = Integer .valueOf (NEXT_SETTING_ID + 36 );
121121
122122 /** Audio Interface - Footswitch or CV 1. */
123- public static final Integer PEDAL_1 = Integer .valueOf (87 );
123+ public static final Integer PEDAL_1 = Integer .valueOf (NEXT_SETTING_ID + 37 );
124124 /** Audio Interface - Footswitch or CV 2. */
125- public static final Integer PEDAL_2 = Integer .valueOf (88 );
125+ public static final Integer PEDAL_2 = Integer .valueOf (NEXT_SETTING_ID + 38 );
126126 /** Audio Interface - Pre-amp type 1. */ 127- public static final Integer PREAMP_TYPE_1 = Integer .valueOf (89 );
127+ public static final Integer PREAMP_TYPE_1 = Integer .valueOf (NEXT_SETTING_ID + 39 );
128128 /** Audio Interface - Pre-amp type 2. */
129- public static final Integer PREAMP_TYPE_2 = Integer .valueOf (90 );
129+ public static final Integer PREAMP_TYPE_2 = Integer .valueOf (NEXT_SETTING_ID + 40 );
130130 /** Audio Interface - Pre-amp gain 1. */
131- public static final Integer PREAMP_GAIN_1 = Integer .valueOf (91 );
131+ public static final Integer PREAMP_GAIN_1 = Integer .valueOf (NEXT_SETTING_ID + 41 );
132132 /** Audio Interface - Pre-amp gain 2. */
133- public static final Integer PREAMP_GAIN_2 = Integer .valueOf (92 );
133+ public static final Integer PREAMP_GAIN_2 = Integer .valueOf (NEXT_SETTING_ID + 42 );
134134 /** Audio Interface - Output configuration. */
135- public static final Integer AUDIO_OUTPUTS = Integer .valueOf (93 );
135+ public static final Integer AUDIO_OUTPUTS = Integer .valueOf (NEXT_SETTING_ID + 43 );
136136
137137 /** Use ribbon for pitch bend. */
138138 public static final int RIBBON_MODE_PITCH = 0 ;
0 commit comments