/[svn]/gigedit/trunk/src/gigedit/dimregionedit.cpp
ViewVC logotype

Contents of /gigedit/trunk/src/gigedit/dimregionedit.cpp

Parent Directory Parent Directory | Revision Log Revision Log


Revision 3409 - (show annotations) (download)
Tue Jan 23 16:30:56 2018 UTC (6 years, 2 months ago) by schoenebeck
File size: 70670 byte(s)
* Added new main menu item "View" -> "Tooltips for Beginners" which allows
  to disable tooltips intended for newbies only (default: on).
* Bumped version (1.1.0.svn3).

1 /*
2 * Copyright (C) 2006-2017 Andreas Persson
3 *
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License as
6 * published by the Free Software Foundation; either version 2, or (at
7 * your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful, but
10 * WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with program; see the file COPYING. If not, write to the Free
16 * Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
17 * 02110-1301 USA.
18 */
19
20 #include "global.h"
21 #include "dimregionedit.h"
22
23 #include "compat.h"
24
25 #if USE_GTKMM_GRID
26 # include <gtkmm/grid.h>
27 #else
28 # include <gtkmm/table.h>
29 #endif
30
31 #include "Settings.h"
32
33 VelocityCurve::VelocityCurve(double (gig::DimensionRegion::*getter)(uint8_t)) :
34 getter(getter), dimreg(0) {
35 set_size_request(80, 80);
36 }
37
38 #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
39 bool VelocityCurve::on_expose_event(GdkEventExpose* e) {
40 const Cairo::RefPtr<Cairo::Context>& cr =
41 get_window()->create_cairo_context();
42 #if 0
43 }
44 #endif
45 #else
46 bool VelocityCurve::on_draw(const Cairo::RefPtr<Cairo::Context>& cr) {
47 #endif
48 if (dimreg) {
49 int w = get_width();
50 int h = get_height();
51
52 for (int pass = 0 ; pass < 2 ; pass++) {
53 for (double x = 0 ; x <= w ; x++) {
54 int vel = int(x * (127 - 1e-10) / w + 1);
55 double y = (1 - (dimreg->*getter)(vel)) * (h - 3) + 1.5;
56
57 if (x < 1e-10) {
58 cr->move_to(x, y);
59 } else {
60 cr->line_to(x, y);
61 }
62 }
63 if (pass == 0) {
64 cr->line_to(w, h);
65 cr->line_to(0, h);
66 cr->set_source_rgba(0.5, 0.44, 1.0, is_sensitive() ? 0.2 : 0.1);
67 cr->fill();
68 } else {
69 cr->set_line_width(3);
70 cr->set_source_rgba(0.5, 0.44, 1.0, is_sensitive() ? 1.0 : 0.3);
71 cr->stroke();
72 }
73 }
74 }
75 return true;
76 }
77
78
79 CrossfadeCurve::CrossfadeCurve() : dimreg(0) {
80 set_size_request(280, 80);
81 }
82
83 #if (GTKMM_MAJOR_VERSION == 2 && GTKMM_MINOR_VERSION < 90) || GTKMM_MAJOR_VERSION < 2
84 bool CrossfadeCurve::on_expose_event(GdkEventExpose* e) {
85 const Cairo::RefPtr<Cairo::Context>& cr =
86 get_window()->create_cairo_context();
87 #if 0
88 }
89 #endif
90 #else
91 bool CrossfadeCurve::on_draw(const Cairo::RefPtr<Cairo::Context>& cr) {
92 #endif
93 if (dimreg) {
94 cr->translate(1.5, 0);
95
96 // first, draw curves for the other layers
97 gig::Region* region = dimreg->GetParent();
98 int dimregno;
99 for (dimregno = 0 ; dimregno < region->DimensionRegions ; dimregno++) {
100 if (region->pDimensionRegions[dimregno] == dimreg) {
101 break;
102 }
103 }
104 int bitcount = 0;
105 for (int dim = 0 ; dim < region->Dimensions ; dim++) {
106 if (region->pDimensionDefinitions[dim].dimension ==
107 gig::dimension_layer) {
108 int mask =
109 ~(((1 << region->pDimensionDefinitions[dim].bits) - 1) <<
110 bitcount);
111 int c = dimregno & mask; // mask away the layer dimension
112
113 for (int i = 0 ; i < region->pDimensionDefinitions[dim].zones ;
114 i++) {
115 gig::DimensionRegion* d =
116 region->pDimensionRegions[c + (i << bitcount)];
117 if (d != dimreg) {
118 draw_one_curve(cr, d, false);
119 }
120 }
121 break;
122 }
123 bitcount += region->pDimensionDefinitions[dim].bits;
124 }
125
126 // then, draw the currently selected layer
127 draw_one_curve(cr, dimreg, is_sensitive());
128 }
129 return true;
130 }
131
132 void CrossfadeCurve::draw_one_curve(const Cairo::RefPtr<Cairo::Context>& cr,
133 const gig::DimensionRegion* d,
134 bool sensitive) {
135 int w = get_width();
136 int h = get_height();
137
138 if (d->Crossfade.out_end) {
139 for (int pass = 0 ; pass < 2 ; pass++) {
140 cr->move_to(d->Crossfade.in_start / 127.0 * (w - 3), h);
141 cr->line_to(d->Crossfade.in_end / 127.0 * (w - 3), 1.5);
142 cr->line_to(d->Crossfade.out_start / 127.0 * (w - 3), 1.5);
143 cr->line_to(d->Crossfade.out_end / 127.0 * (w - 3), h);
144
145 if (pass == 0) {
146 cr->set_source_rgba(0.5, 0.44, 1.0, sensitive ? 0.2 : 0.1);
147 cr->fill();
148 } else {
149 cr->set_line_width(3);
150 cr->set_source_rgba(0.5, 0.44, 1.0, sensitive ? 1.0 : 0.3);
151 cr->stroke();
152 }
153 }
154 }
155 }
156
157
158 EGStateOptions::EGStateOptions() : HBox(),
159 label(_("May be cancelled: ")),
160 checkBoxAttack(_("Attack")),
161 checkBoxAttackHold(_("Attack Hold")),
162 checkBoxDecay1(_("Decay 1")),
163 checkBoxDecay2(_("Decay 2")),
164 checkBoxRelease(_("Release"))
165 {
166 set_spacing(6);
167
168 pack_start(label);
169 pack_start(checkBoxAttack, Gtk::PACK_SHRINK);
170 pack_start(checkBoxAttackHold, Gtk::PACK_SHRINK);
171 pack_start(checkBoxDecay1, Gtk::PACK_SHRINK);
172 pack_start(checkBoxDecay2, Gtk::PACK_SHRINK);
173 pack_start(checkBoxRelease, Gtk::PACK_SHRINK);
174
175 checkBoxAttack.set_tooltip_text(_(
176 "If checked: a note-off aborts the 'attack' stage."
177 ));
178 checkBoxAttackHold.set_tooltip_text(_(
179 "If checked: a note-off aborts the 'attack hold' stage."
180 ));
181 checkBoxDecay1.set_tooltip_text(_(
182 "If checked: a note-off aborts the 'decay 1' stage."
183 ));
184 checkBoxDecay2.set_tooltip_text(_(
185 "If checked: a note-off aborts the 'decay 2' stage."
186 ));
187 checkBoxRelease.set_tooltip_text(_(
188 "If checked: a note-on reverts back from the 'release' stage."
189 ));
190 }
191
192 void EGStateOptions::on_show_tooltips_changed() {
193 const bool b = Settings::singleton()->showTooltips;
194
195 checkBoxAttack.set_has_tooltip(b);
196 checkBoxAttackHold.set_has_tooltip(b);
197 checkBoxDecay1.set_has_tooltip(b);
198 checkBoxDecay2.set_has_tooltip(b);
199 checkBoxRelease.set_has_tooltip(b);
200 }
201
202
203 DimRegionEdit::DimRegionEdit() :
204 velocity_curve(&gig::DimensionRegion::GetVelocityAttenuation),
205 release_curve(&gig::DimensionRegion::GetVelocityRelease),
206 cutoff_curve(&gig::DimensionRegion::GetVelocityCutoff),
207 eEG1PreAttack(_("Pre-attack Level (%)"), 0, 100, 2),
208 eEG1Attack(_("Attack Time (seconds)"), 0, 60, 3),
209 eEG1Decay1(_("Decay 1 Time (seconds)"), 0.005, 60, 3),
210 eEG1Decay2(_("Decay 2 Time (seconds)"), 0, 60, 3),
211 eEG1InfiniteSustain(_("Infinite sustain")),
212 eEG1Sustain(_("Sustain Level (%)"), 0, 100, 2),
213 eEG1Release(_("Release Time (seconds)"), 0, 60, 3),
214 eEG1Hold(_("Hold Attack Stage until Loop End")),
215 eEG1Controller(_("Controller")),
216 eEG1ControllerInvert(_("Controller invert")),
217 eEG1ControllerAttackInfluence(_("Controller attack influence"), 0, 3),
218 eEG1ControllerDecayInfluence(_("Controller decay influence"), 0, 3),
219 eEG1ControllerReleaseInfluence(_("Controller release influence"), 0, 3),
220 eLFO1Frequency(_("Frequency"), 0.1, 10, 2),
221 eLFO1InternalDepth(_("Internal depth"), 0, 1200),
222 eLFO1ControlDepth(_("Control depth"), 0, 1200),
223 eLFO1Controller(_("Controller")),
224 eLFO1FlipPhase(_("Flip phase")),
225 eLFO1Sync(_("Sync")),
226 eEG2PreAttack(_("Pre-attack Level (%)"), 0, 100, 2),
227 eEG2Attack(_("Attack Time (seconds)"), 0, 60, 3),
228 eEG2Decay1(_("Decay 1 Time (seconds)"), 0.005, 60, 3),
229 eEG2Decay2(_("Decay 2 Time (seconds)"), 0, 60, 3),
230 eEG2InfiniteSustain(_("Infinite sustain")),
231 eEG2Sustain(_("Sustain Level (%)"), 0, 100, 2),
232 eEG2Release(_("Release Time (seconds)"), 0, 60, 3),
233 eEG2Controller(_("Controller")),
234 eEG2ControllerInvert(_("Controller invert")),
235 eEG2ControllerAttackInfluence(_("Controller attack influence"), 0, 3),
236 eEG2ControllerDecayInfluence(_("Controller decay influence"), 0, 3),
237 eEG2ControllerReleaseInfluence(_("Controller release influence"), 0, 3),
238 eLFO2Frequency(_("Frequency"), 0.1, 10, 2),
239 eLFO2InternalDepth(_("Internal depth"), 0, 1200),
240 eLFO2ControlDepth(_("Control depth"), 0, 1200),
241 eLFO2Controller(_("Controller")),
242 eLFO2FlipPhase(_("Flip phase")),
243 eLFO2Sync(_("Sync")),
244 eEG3Attack(_("Attack"), 0, 10, 3),
245 eEG3Depth(_("Depth"), -1200, 1200),
246 eLFO3Frequency(_("Frequency"), 0.1, 10, 2),
247 eLFO3InternalDepth(_("Internal depth"), 0, 1200),
248 eLFO3ControlDepth(_("Control depth"), 0, 1200),
249 eLFO3Controller(_("Controller")),
250 eLFO3Sync(_("Sync")),
251 eVCFEnabled(_("Enabled")),
252 eVCFType(_("Type")),
253 eVCFCutoffController(_("Cutoff controller")),
254 eVCFCutoffControllerInvert(_("Cutoff controller invert")),
255 eVCFCutoff(_("Cutoff")),
256 eVCFVelocityCurve(_("Velocity curve")),
257 eVCFVelocityScale(_("Velocity scale")),
258 eVCFVelocityDynamicRange(_("Velocity dynamic range"), 0, 4),
259 eVCFResonance(_("Resonance")),
260 eVCFResonanceDynamic(_("Resonance dynamic")),
261 eVCFResonanceController(_("Resonance controller")),
262 eVCFKeyboardTracking(_("Keyboard tracking")),
263 eVCFKeyboardTrackingBreakpoint(_("Keyboard tracking breakpoint")),
264 eVelocityResponseCurve(_("Velocity response curve")),
265 eVelocityResponseDepth(_("Velocity response depth"), 0, 4),
266 eVelocityResponseCurveScaling(_("Velocity response curve scaling")),
267 eReleaseVelocityResponseCurve(_("Release velocity response curve")),
268 eReleaseVelocityResponseDepth(_("Release velocity response depth"), 0, 4),
269 eReleaseTriggerDecay(_("Release trigger decay"), 0, 8),
270 eCrossfade_in_start(_("Crossfade-in start")),
271 eCrossfade_in_end(_("Crossfade-in end")),
272 eCrossfade_out_start(_("Crossfade-out start")),
273 eCrossfade_out_end(_("Crossfade-out end")),
274 ePitchTrack(_("Pitch track")),
275 eDimensionBypass(_("Dimension bypass")),
276 ePan(_("Pan"), -64, 63),
277 eSelfMask(_("Kill lower velocity voices (a.k.a \"Self mask\")")),
278 eAttenuationController(_("Attenuation controller")),
279 eInvertAttenuationController(_("Invert attenuation controller")),
280 eAttenuationControllerThreshold(_("Attenuation controller threshold")),
281 eChannelOffset(_("Channel offset"), 0, 9),
282 eSustainDefeat(_("Ignore Hold Pedal (a.k.a. \"Sustain defeat\")")),
283 eMSDecode(_("Decode Mid/Side Recordings")),
284 eSampleStartOffset(_("Sample start offset"), 0, 2000),
285 eUnityNote(_("Unity note")),
286 eSampleGroup(_("Sample Group")),
287 eSampleFormatInfo(_("Sample Format")),
288 eSampleID("Sample ID"),
289 eChecksum("Wave Data CRC-32"),
290 eFineTune(_("Fine tune"), -49, 50),
291 eGain(_("Gain"), -96, 0, 2, -655360),
292 eGainPlus6(_("Gain +6dB"), eGain, 6 * -655360),
293 eSampleLoopEnabled(_("Enabled")),
294 eSampleLoopStart(_("Loop start position")),
295 eSampleLoopLength(_("Loop size")),
296 eSampleLoopType(_("Loop type")),
297 eSampleLoopInfinite(_("Infinite loop")),
298 eSampleLoopPlayCount(_("Playback count"), 1),
299 buttonSelectSample(UNICODE_LEFT_ARROW + " " + _("Select Sample")),
300 update_model(0)
301 {
302 // make synthesis parameter page tabs scrollable
303 // (workaround for GTK3: default theme uses huge tabs which breaks layout)
304 set_scrollable();
305
306 connect(eEG1PreAttack, &gig::DimensionRegion::EG1PreAttack);
307 connect(eEG1Attack, &gig::DimensionRegion::EG1Attack);
308 connect(eEG1Decay1, &gig::DimensionRegion::EG1Decay1);
309 connect(eEG1Decay2, &gig::DimensionRegion::EG1Decay2);
310 connect(eEG1InfiniteSustain, &gig::DimensionRegion::EG1InfiniteSustain);
311 connect(eEG1Sustain, &gig::DimensionRegion::EG1Sustain);
312 connect(eEG1Release, &gig::DimensionRegion::EG1Release);
313 connect(eEG1Hold, &gig::DimensionRegion::EG1Hold);
314 connect(eEG1Controller, &gig::DimensionRegion::EG1Controller);
315 connect(eEG1ControllerInvert, &gig::DimensionRegion::EG1ControllerInvert);
316 connect(eEG1ControllerAttackInfluence,
317 &gig::DimensionRegion::EG1ControllerAttackInfluence);
318 connect(eEG1ControllerDecayInfluence,
319 &gig::DimensionRegion::EG1ControllerDecayInfluence);
320 connect(eEG1ControllerReleaseInfluence,
321 &gig::DimensionRegion::EG1ControllerReleaseInfluence);
322 {
323 ClassMemberPtr<gig::DimensionRegion, bool> mp(offsetof(gig::DimensionRegion, EG1Options.AttackCancel));
324 connect(eEG1StateOptions.checkBoxAttack, mp.pmember);
325 }
326 {
327 ClassMemberPtr<gig::DimensionRegion, bool> mp(offsetof(gig::DimensionRegion, EG1Options.AttackHoldCancel));
328 connect(eEG1StateOptions.checkBoxAttackHold, mp.pmember);
329 }
330 {
331 ClassMemberPtr<gig::DimensionRegion, bool> mp(offsetof(gig::DimensionRegion, EG1Options.Decay1Cancel));
332 connect(eEG1StateOptions.checkBoxDecay1, mp.pmember);
333 }
334 {
335 ClassMemberPtr<gig::DimensionRegion, bool> mp(offsetof(gig::DimensionRegion, EG1Options.Decay2Cancel));
336 connect(eEG1StateOptions.checkBoxDecay2, mp.pmember);
337 }
338 {
339 ClassMemberPtr<gig::DimensionRegion, bool> mp(offsetof(gig::DimensionRegion, EG1Options.ReleaseCancel));
340 connect(eEG1StateOptions.checkBoxRelease, mp.pmember);
341 }
342 connect(eLFO1Frequency, &gig::DimensionRegion::LFO1Frequency);
343 connect(eLFO1InternalDepth, &gig::DimensionRegion::LFO1InternalDepth);
344 connect(eLFO1ControlDepth, &gig::DimensionRegion::LFO1ControlDepth);
345 connect(eLFO1Controller, &gig::DimensionRegion::LFO1Controller);
346 connect(eLFO1FlipPhase, &gig::DimensionRegion::LFO1FlipPhase);
347 connect(eLFO1Sync, &gig::DimensionRegion::LFO1Sync);
348 connect(eEG2PreAttack, &gig::DimensionRegion::EG2PreAttack);
349 connect(eEG2Attack, &gig::DimensionRegion::EG2Attack);
350 connect(eEG2Decay1, &gig::DimensionRegion::EG2Decay1);
351 connect(eEG2Decay2, &gig::DimensionRegion::EG2Decay2);
352 connect(eEG2InfiniteSustain, &gig::DimensionRegion::EG2InfiniteSustain);
353 connect(eEG2Sustain, &gig::DimensionRegion::EG2Sustain);
354 connect(eEG2Release, &gig::DimensionRegion::EG2Release);
355 connect(eEG2Controller, &gig::DimensionRegion::EG2Controller);
356 connect(eEG2ControllerInvert, &gig::DimensionRegion::EG2ControllerInvert);
357 connect(eEG2ControllerAttackInfluence,
358 &gig::DimensionRegion::EG2ControllerAttackInfluence);
359 connect(eEG2ControllerDecayInfluence,
360 &gig::DimensionRegion::EG2ControllerDecayInfluence);
361 connect(eEG2ControllerReleaseInfluence,
362 &gig::DimensionRegion::EG2ControllerReleaseInfluence);
363 {
364 ClassMemberPtr<gig::DimensionRegion, bool> mp(offsetof(gig::DimensionRegion, EG2Options.AttackCancel));
365 connect(eEG2StateOptions.checkBoxAttack, mp.pmember);
366 }
367 {
368 ClassMemberPtr<gig::DimensionRegion, bool> mp(offsetof(gig::DimensionRegion, EG2Options.AttackHoldCancel));
369 connect(eEG2StateOptions.checkBoxAttackHold, mp.pmember);
370 }
371 {
372 ClassMemberPtr<gig::DimensionRegion, bool> mp(offsetof(gig::DimensionRegion, EG2Options.Decay1Cancel));
373 connect(eEG2StateOptions.checkBoxDecay1, mp.pmember);
374 }
375 {
376 ClassMemberPtr<gig::DimensionRegion, bool> mp(offsetof(gig::DimensionRegion, EG2Options.Decay2Cancel));
377 connect(eEG2StateOptions.checkBoxDecay2, mp.pmember);
378 }
379 {
380 ClassMemberPtr<gig::DimensionRegion, bool> mp(offsetof(gig::DimensionRegion, EG2Options.ReleaseCancel));
381 connect(eEG2StateOptions.checkBoxRelease, mp.pmember);
382 }
383 connect(eLFO2Frequency, &gig::DimensionRegion::LFO2Frequency);
384 connect(eLFO2InternalDepth, &gig::DimensionRegion::LFO2InternalDepth);
385 connect(eLFO2ControlDepth, &gig::DimensionRegion::LFO2ControlDepth);
386 connect(eLFO2Controller, &gig::DimensionRegion::LFO2Controller);
387 connect(eLFO2FlipPhase, &gig::DimensionRegion::LFO2FlipPhase);
388 connect(eLFO2Sync, &gig::DimensionRegion::LFO2Sync);
389 connect(eEG3Attack, &gig::DimensionRegion::EG3Attack);
390 connect(eEG3Depth, &gig::DimensionRegion::EG3Depth);
391 connect(eLFO3Frequency, &gig::DimensionRegion::LFO3Frequency);
392 connect(eLFO3InternalDepth, &gig::DimensionRegion::LFO3InternalDepth);
393 connect(eLFO3ControlDepth, &gig::DimensionRegion::LFO3ControlDepth);
394 connect(eLFO3Controller, &gig::DimensionRegion::LFO3Controller);
395 connect(eLFO3Sync, &gig::DimensionRegion::LFO3Sync);
396 connect(eVCFEnabled, &gig::DimensionRegion::VCFEnabled);
397 connect(eVCFType, &gig::DimensionRegion::VCFType);
398 connect(eVCFCutoffController,
399 &gig::DimensionRegion::SetVCFCutoffController);
400 connect(eVCFCutoffControllerInvert,
401 &gig::DimensionRegion::VCFCutoffControllerInvert);
402 connect(eVCFCutoff, &gig::DimensionRegion::VCFCutoff);
403 connect(eVCFVelocityCurve, &gig::DimensionRegion::SetVCFVelocityCurve);
404 connect(eVCFVelocityScale, &gig::DimensionRegion::SetVCFVelocityScale);
405 connect(eVCFVelocityDynamicRange,
406 &gig::DimensionRegion::SetVCFVelocityDynamicRange);
407 connect(eVCFResonance, &gig::DimensionRegion::VCFResonance);
408 connect(eVCFResonanceDynamic, &gig::DimensionRegion::VCFResonanceDynamic);
409 connect(eVCFResonanceController,
410 &gig::DimensionRegion::VCFResonanceController);
411 connect(eVCFKeyboardTracking, &gig::DimensionRegion::VCFKeyboardTracking);
412 connect(eVCFKeyboardTrackingBreakpoint,
413 &gig::DimensionRegion::VCFKeyboardTrackingBreakpoint);
414 connect(eVelocityResponseCurve,
415 &gig::DimensionRegion::SetVelocityResponseCurve);
416 connect(eVelocityResponseDepth,
417 &gig::DimensionRegion::SetVelocityResponseDepth);
418 connect(eVelocityResponseCurveScaling,
419 &gig::DimensionRegion::SetVelocityResponseCurveScaling);
420 connect(eReleaseVelocityResponseCurve,
421 &gig::DimensionRegion::SetReleaseVelocityResponseCurve);
422 connect(eReleaseVelocityResponseDepth,
423 &gig::DimensionRegion::SetReleaseVelocityResponseDepth);
424 connect(eReleaseTriggerDecay, &gig::DimensionRegion::ReleaseTriggerDecay);
425 connect(eCrossfade_in_start, &DimRegionEdit::set_Crossfade_in_start);
426 connect(eCrossfade_in_end, &DimRegionEdit::set_Crossfade_in_end);
427 connect(eCrossfade_out_start, &DimRegionEdit::set_Crossfade_out_start);
428 connect(eCrossfade_out_end, &DimRegionEdit::set_Crossfade_out_end);
429 connect(ePitchTrack, &gig::DimensionRegion::PitchTrack);
430 connect(eDimensionBypass, &gig::DimensionRegion::DimensionBypass);
431 connect(ePan, &gig::DimensionRegion::Pan);
432 connect(eSelfMask, &gig::DimensionRegion::SelfMask);
433 connect(eAttenuationController,
434 &gig::DimensionRegion::AttenuationController);
435 connect(eInvertAttenuationController,
436 &gig::DimensionRegion::InvertAttenuationController);
437 connect(eAttenuationControllerThreshold,
438 &gig::DimensionRegion::AttenuationControllerThreshold);
439 connect(eChannelOffset, &gig::DimensionRegion::ChannelOffset);
440 connect(eSustainDefeat, &gig::DimensionRegion::SustainDefeat);
441 connect(eMSDecode, &gig::DimensionRegion::MSDecode);
442 connect(eSampleStartOffset, &gig::DimensionRegion::SampleStartOffset);
443 connect(eUnityNote, &DimRegionEdit::set_UnityNote);
444 connect(eFineTune, &DimRegionEdit::set_FineTune);
445 connect(eGain, &DimRegionEdit::set_Gain);
446 connect(eGainPlus6, &DimRegionEdit::set_Gain);
447 connect(eSampleLoopEnabled, &DimRegionEdit::set_LoopEnabled);
448 connect(eSampleLoopType, &DimRegionEdit::set_LoopType);
449 connect(eSampleLoopStart, &DimRegionEdit::set_LoopStart);
450 connect(eSampleLoopLength, &DimRegionEdit::set_LoopLength);
451 connect(eSampleLoopInfinite, &DimRegionEdit::set_LoopInfinite);
452 connect(eSampleLoopPlayCount, &DimRegionEdit::set_LoopPlayCount);
453 buttonSelectSample.signal_clicked().connect(
454 sigc::mem_fun(*this, &DimRegionEdit::onButtonSelectSamplePressed)
455 );
456
457 for (int i = 0 ; i < 7 ; i++) {
458 #if USE_GTKMM_GRID
459 table[i] = new Gtk::Grid;
460 table[i]->set_column_spacing(7);
461 #else
462 table[i] = new Gtk::Table(3, 1);
463 table[i]->set_col_spacings(7);
464 #endif
465
466 // on Gtk 3 there is absolutely no margin by default
467 #if GTKMM_MAJOR_VERSION >= 3
468 # if GTKMM_MAJOR_VERSION == 3 && GTKMM_MINOR_VERSION < 12
469 table[i]->set_margin_left(12);
470 table[i]->set_margin_right(12);
471 # else
472 table[i]->set_margin_start(12);
473 table[i]->set_margin_end(12);
474 # endif
475 #endif
476 }
477
478 // set tooltips
479 eUnityNote.set_tip(
480 _("Note this sample is associated with (a.k.a. 'root note')")
481 );
482 buttonSelectSample.set_tooltip_text(
483 _("Selects the sample of this dimension region on the left hand side's sample tree view.")
484 );
485 eSampleStartOffset.set_tip(_("Sample position at which playback should be started"));
486 ePan.set_tip(_("Stereo balance (left/right)"));
487 eChannelOffset.set_tip(
488 _("Output channel where the audio signal should be routed to (0 - 9)")
489 );
490 ePitchTrack.set_tip(
491 _("If true: sample will be pitched according to the key position "
492 "(this would be disabled for drums for example)")
493 );
494 eSampleLoopEnabled.set_tip(_("If enabled: repeats to playback the sample"));
495 eSampleLoopStart.set_tip(
496 _("Start position within the sample (in sample points) of the area to "
497 "be looped")
498 );
499 eSampleLoopLength.set_tip(
500 _("Duration (in sample points) of the area to be looped")
501 );
502 eSampleLoopType.set_tip(
503 _("Direction in which the loop area in the sample should be played back")
504 );
505 eSampleLoopInfinite.set_tip(
506 _("Whether the loop area should be played back forever\n"
507 "Caution: this setting is stored on Sample side, thus is shared "
508 "among all dimension regions that use this sample!")
509 );
510 eSampleLoopPlayCount.set_tip(
511 _("How many times the loop area should be played back\n"
512 "Caution: this setting is stored on Sample side, thus is shared "
513 "among all dimension regions that use this sample!")
514 );
515
516 eEG1PreAttack.set_tip(
517 "Very first level this EG starts with. It rises then in Attack Time "
518 "seconds from this initial level to 100%."
519 );
520 eEG1Attack.set_tip(
521 "Duration of the EG's Attack stage, which raises its level from "
522 "Pre-Attack Level to 100%."
523 );
524 eEG1Hold.set_tip(
525 "On looped sounds, enabling this will cause the Decay 1 stage not to "
526 "enter before the loop has been passed one time."
527 );
528 eAttenuationController.set_tip(_(
529 "If you are not using the 'Layer' dimension, then this controller "
530 "simply alters the volume. If you are using the 'Layer' dimension, "
531 "then this controller is controlling the crossfade between Layers in "
532 "real-time."
533 ));
534
535 eLFO1Sync.set_tip(
536 "If not checked, every voice will use its own LFO instance, which "
537 "causes voices triggered at different points in time to have different "
538 "LFO levels. By enabling 'Sync' here the voices will instead use and "
539 "share one single LFO, causing all voices to have the same LFO level, "
540 "no matter when the individual notes have been triggered."
541 );
542 eLFO2Sync.set_tip(
543 "If not checked, every voice will use its own LFO instance, which "
544 "causes voices triggered at different points in time to have different "
545 "LFO levels. By enabling 'Sync' here the voices will instead use and "
546 "share one single LFO, causing all voices to have the same LFO level, "
547 "no matter when the individual notes have been triggered."
548 );
549 eLFO3Sync.set_tip(
550 "If not checked, every voice will use its own LFO instance, which "
551 "causes voices triggered at different points in time to have different "
552 "LFO levels. By enabling 'Sync' here the voices will instead use and "
553 "share one single LFO, causing all voices to have the same LFO level, "
554 "no matter when the individual notes have been triggered."
555 );
556 eLFO1FlipPhase.set_tip(
557 "Inverts the LFO's generated wave vertically."
558 );
559 eLFO2FlipPhase.set_tip(
560 "Inverts the LFO's generated wave vertically."
561 );
562
563 pageno = 0;
564 rowno = 0;
565 firstRowInBlock = 0;
566
567 addHeader(_("Mandatory Settings"));
568 addString(_("Sample"), lSample, wSample, buttonNullSampleReference);
569 buttonNullSampleReference->set_label("X");
570 buttonNullSampleReference->set_tooltip_text(_("Remove current sample reference (NULL reference). This can be used to define a \"silent\" case where no sample shall be played."));
571 buttonNullSampleReference->signal_clicked().connect(
572 sigc::mem_fun(*this, &DimRegionEdit::nullOutSampleReference)
573 );
574 //TODO: the following would break drag&drop: wSample->property_editable().set_value(false); or this: wSample->set_editable(false);
575 #ifdef OLD_TOOLTIPS
576 tooltips.set_tip(*wSample, _("Drag & drop a sample here"));
577 #else
578 wSample->set_tooltip_text(_("Drag & drop a sample here"));
579 #endif
580 addProp(eUnityNote);
581 addProp(eSampleGroup);
582 addProp(eSampleFormatInfo);
583 addProp(eSampleID);
584 addProp(eChecksum);
585 addRightHandSide(buttonSelectSample);
586 addHeader(_("Optional Settings"));
587 addProp(eSampleStartOffset);
588 addProp(eChannelOffset);
589 addHeader(_("Loops"));
590 addProp(eSampleLoopEnabled);
591 addProp(eSampleLoopStart);
592 addProp(eSampleLoopLength);
593 {
594 const char* choices[] = { _("normal"), _("bidirectional"), _("backward"), 0 };
595 static const uint32_t values[] = {
596 gig::loop_type_normal,
597 gig::loop_type_bidirectional,
598 gig::loop_type_backward
599 };
600 eSampleLoopType.set_choices(choices, values);
601 }
602 addProp(eSampleLoopType);
603 addProp(eSampleLoopInfinite);
604 addProp(eSampleLoopPlayCount);
605
606 nextPage();
607
608 addHeader(_("General Amplitude Settings"));
609 addProp(eGain);
610 addProp(eGainPlus6);
611 addProp(ePan);
612 addHeader(_("Amplitude Envelope (EG1)"));
613 addProp(eEG1PreAttack);
614 addProp(eEG1Attack);
615 addProp(eEG1Hold);
616 addProp(eEG1Decay1);
617 addProp(eEG1Decay2);
618 addProp(eEG1InfiniteSustain);
619 addProp(eEG1Sustain);
620 addProp(eEG1Release);
621 addProp(eEG1Controller);
622 addProp(eEG1ControllerInvert);
623 addProp(eEG1ControllerAttackInfluence);
624 addProp(eEG1ControllerDecayInfluence);
625 addProp(eEG1ControllerReleaseInfluence);
626 addLine(eEG1StateOptions);
627
628 nextPage();
629
630 addHeader(_("Amplitude Oscillator (LFO1)"));
631 addProp(eLFO1Frequency);
632 addProp(eLFO1InternalDepth);
633 addProp(eLFO1ControlDepth);
634 {
635 const char* choices[] = { _("internal"), _("modwheel"), _("breath"),
636 _("internal+modwheel"), _("internal+breath"), 0 };
637 static const gig::lfo1_ctrl_t values[] = {
638 gig::lfo1_ctrl_internal,
639 gig::lfo1_ctrl_modwheel,
640 gig::lfo1_ctrl_breath,
641 gig::lfo1_ctrl_internal_modwheel,
642 gig::lfo1_ctrl_internal_breath
643 };
644 eLFO1Controller.set_choices(choices, values);
645 }
646 addProp(eLFO1Controller);
647 addProp(eLFO1FlipPhase);
648 addProp(eLFO1Sync);
649 addHeader(_("Crossfade"));
650 addProp(eAttenuationController);
651 addProp(eInvertAttenuationController);
652 addProp(eAttenuationControllerThreshold);
653 addProp(eCrossfade_in_start);
654 addProp(eCrossfade_in_end);
655 addProp(eCrossfade_out_start);
656 addProp(eCrossfade_out_end);
657
658 Gtk::Frame* frame = new Gtk::Frame;
659 frame->add(crossfade_curve);
660 // on Gtk 3 there is no margin at all by default
661 #if GTKMM_MAJOR_VERSION >= 3
662 frame->set_margin_top(12);
663 frame->set_margin_bottom(12);
664 #endif
665 #if USE_GTKMM_GRID
666 table[pageno]->attach(*frame, 1, rowno, 2);
667 #else
668 table[pageno]->attach(*frame, 1, 3, rowno, rowno + 1,
669 Gtk::SHRINK, Gtk::SHRINK);
670 #endif
671 rowno++;
672
673 eCrossfade_in_start.signal_value_changed().connect(
674 sigc::mem_fun(crossfade_curve, &CrossfadeCurve::queue_draw));
675 eCrossfade_in_end.signal_value_changed().connect(
676 sigc::mem_fun(crossfade_curve, &CrossfadeCurve::queue_draw));
677 eCrossfade_out_start.signal_value_changed().connect(
678 sigc::mem_fun(crossfade_curve, &CrossfadeCurve::queue_draw));
679 eCrossfade_out_end.signal_value_changed().connect(
680 sigc::mem_fun(crossfade_curve, &CrossfadeCurve::queue_draw));
681
682 nextPage();
683
684 addHeader(_("General Filter Settings"));
685 addProp(eVCFEnabled);
686 {
687 const char* choices[] = { _("lowpass"), _("lowpassturbo"), _("bandpass"),
688 _("highpass"), _("bandreject"), 0 };
689 static const gig::vcf_type_t values[] = {
690 gig::vcf_type_lowpass,
691 gig::vcf_type_lowpassturbo,
692 gig::vcf_type_bandpass,
693 gig::vcf_type_highpass,
694 gig::vcf_type_bandreject
695 };
696 eVCFType.set_choices(choices, values);
697 }
698 addProp(eVCFType);
699 {
700 const char* choices[] = { _("none"), _("none2"), _("modwheel"), _("effect1"), _("effect2"),
701 _("breath"), _("foot"), _("sustainpedal"), _("softpedal"),
702 _("genpurpose7"), _("genpurpose8"), _("aftertouch"), 0 };
703 static const gig::vcf_cutoff_ctrl_t values[] = {
704 gig::vcf_cutoff_ctrl_none,
705 gig::vcf_cutoff_ctrl_none2,
706 gig::vcf_cutoff_ctrl_modwheel,
707 gig::vcf_cutoff_ctrl_effect1,
708 gig::vcf_cutoff_ctrl_effect2,
709 gig::vcf_cutoff_ctrl_breath,
710 gig::vcf_cutoff_ctrl_foot,
711 gig::vcf_cutoff_ctrl_sustainpedal,
712 gig::vcf_cutoff_ctrl_softpedal,
713 gig::vcf_cutoff_ctrl_genpurpose7,
714 gig::vcf_cutoff_ctrl_genpurpose8,
715 gig::vcf_cutoff_ctrl_aftertouch
716 };
717 eVCFCutoffController.set_choices(choices, values);
718 }
719 addProp(eVCFCutoffController);
720 addProp(eVCFCutoffControllerInvert);
721 addProp(eVCFCutoff);
722 const char* curve_type_texts[] = { _("nonlinear"), _("linear"), _("special"), 0 };
723 static const gig::curve_type_t curve_type_values[] = {
724 gig::curve_type_nonlinear,
725 gig::curve_type_linear,
726 gig::curve_type_special
727 };
728 eVCFVelocityCurve.set_choices(curve_type_texts, curve_type_values);
729 addProp(eVCFVelocityCurve);
730 addProp(eVCFVelocityScale);
731 addProp(eVCFVelocityDynamicRange);
732
733 eVCFCutoffController.signal_value_changed().connect(
734 sigc::mem_fun(cutoff_curve, &VelocityCurve::queue_draw));
735 eVCFVelocityCurve.signal_value_changed().connect(
736 sigc::mem_fun(cutoff_curve, &VelocityCurve::queue_draw));
737 eVCFVelocityScale.signal_value_changed().connect(
738 sigc::mem_fun(cutoff_curve, &VelocityCurve::queue_draw));
739 eVCFVelocityDynamicRange.signal_value_changed().connect(
740 sigc::mem_fun(cutoff_curve, &VelocityCurve::queue_draw));
741
742 frame = new Gtk::Frame;
743 frame->add(cutoff_curve);
744 // on Gtk 3 there is no margin at all by default
745 #if GTKMM_MAJOR_VERSION >= 3
746 frame->set_margin_top(12);
747 frame->set_margin_bottom(12);
748 #endif
749 #if USE_GTKMM_GRID
750 table[pageno]->attach(*frame, 1, rowno, 2);
751 #else
752 table[pageno]->attach(*frame, 1, 3, rowno, rowno + 1,
753 Gtk::SHRINK, Gtk::SHRINK);
754 #endif
755 rowno++;
756
757 addProp(eVCFResonance);
758 addProp(eVCFResonanceDynamic);
759 {
760 const char* choices[] = { _("none"), _("genpurpose3"), _("genpurpose4"),
761 _("genpurpose5"), _("genpurpose6"), 0 };
762 static const gig::vcf_res_ctrl_t values[] = {
763 gig::vcf_res_ctrl_none,
764 gig::vcf_res_ctrl_genpurpose3,
765 gig::vcf_res_ctrl_genpurpose4,
766 gig::vcf_res_ctrl_genpurpose5,
767 gig::vcf_res_ctrl_genpurpose6
768 };
769 eVCFResonanceController.set_choices(choices, values);
770 }
771 addProp(eVCFResonanceController);
772 addProp(eVCFKeyboardTracking);
773 addProp(eVCFKeyboardTrackingBreakpoint);
774
775 nextPage();
776
777 lEG2 = addHeader(_("Filter Cutoff Envelope (EG2)"));
778 addProp(eEG2PreAttack);
779 addProp(eEG2Attack);
780 addProp(eEG2Decay1);
781 addProp(eEG2Decay2);
782 addProp(eEG2InfiniteSustain);
783 addProp(eEG2Sustain);
784 addProp(eEG2Release);
785 addProp(eEG2Controller);
786 addProp(eEG2ControllerInvert);
787 addProp(eEG2ControllerAttackInfluence);
788 addProp(eEG2ControllerDecayInfluence);
789 addProp(eEG2ControllerReleaseInfluence);
790 addLine(eEG2StateOptions);
791 lLFO2 = addHeader(_("Filter Cutoff Oscillator (LFO2)"));
792 addProp(eLFO2Frequency);
793 addProp(eLFO2InternalDepth);
794 addProp(eLFO2ControlDepth);
795 {
796 const char* choices[] = { _("internal"), _("modwheel"), _("foot"),
797 _("internal+modwheel"), _("internal+foot"), 0 };
798 static const gig::lfo2_ctrl_t values[] = {
799 gig::lfo2_ctrl_internal,
800 gig::lfo2_ctrl_modwheel,
801 gig::lfo2_ctrl_foot,
802 gig::lfo2_ctrl_internal_modwheel,
803 gig::lfo2_ctrl_internal_foot
804 };
805 eLFO2Controller.set_choices(choices, values);
806 }
807 addProp(eLFO2Controller);
808 addProp(eLFO2FlipPhase);
809 addProp(eLFO2Sync);
810
811 nextPage();
812
813 addHeader(_("General Pitch Settings"));
814 addProp(eFineTune);
815 addProp(ePitchTrack);
816 addHeader(_("Pitch Envelope (EG3)"));
817 addProp(eEG3Attack);
818 addProp(eEG3Depth);
819 addHeader(_("Pitch Oscillator (LFO3)"));
820 addProp(eLFO3Frequency);
821 addProp(eLFO3InternalDepth);
822 addProp(eLFO3ControlDepth);
823 {
824 const char* choices[] = { _("internal"), _("modwheel"), _("aftertouch"),
825 _("internal+modwheel"), _("internal+aftertouch"), 0 };
826 static const gig::lfo3_ctrl_t values[] = {
827 gig::lfo3_ctrl_internal,
828 gig::lfo3_ctrl_modwheel,
829 gig::lfo3_ctrl_aftertouch,
830 gig::lfo3_ctrl_internal_modwheel,
831 gig::lfo3_ctrl_internal_aftertouch
832 };
833 eLFO3Controller.set_choices(choices, values);
834 }
835 addProp(eLFO3Controller);
836 addProp(eLFO3Sync);
837
838 nextPage();
839
840 addHeader(_("Velocity Response"));
841 eVelocityResponseCurve.set_choices(curve_type_texts, curve_type_values);
842 addProp(eVelocityResponseCurve);
843 addProp(eVelocityResponseDepth);
844 addProp(eVelocityResponseCurveScaling);
845
846 eVelocityResponseCurve.signal_value_changed().connect(
847 sigc::mem_fun(velocity_curve, &VelocityCurve::queue_draw));
848 eVelocityResponseDepth.signal_value_changed().connect(
849 sigc::mem_fun(velocity_curve, &VelocityCurve::queue_draw));
850 eVelocityResponseCurveScaling.signal_value_changed().connect(
851 sigc::mem_fun(velocity_curve, &VelocityCurve::queue_draw));
852
853 frame = new Gtk::Frame;
854 frame->add(velocity_curve);
855 // on Gtk 3 there is no margin at all by default
856 #if GTKMM_MAJOR_VERSION >= 3
857 frame->set_margin_top(12);
858 frame->set_margin_bottom(12);
859 #endif
860 #if USE_GTKMM_GRID
861 table[pageno]->attach(*frame, 1, rowno, 2);
862 #else
863 table[pageno]->attach(*frame, 1, 3, rowno, rowno + 1,
864 Gtk::SHRINK, Gtk::SHRINK);
865 #endif
866 rowno++;
867
868 addHeader(_("Release Velocity Response"));
869 eReleaseVelocityResponseCurve.set_choices(curve_type_texts,
870 curve_type_values);
871 addProp(eReleaseVelocityResponseCurve);
872 addProp(eReleaseVelocityResponseDepth);
873
874 eReleaseVelocityResponseCurve.signal_value_changed().connect(
875 sigc::mem_fun(release_curve, &VelocityCurve::queue_draw));
876 eReleaseVelocityResponseDepth.signal_value_changed().connect(
877 sigc::mem_fun(release_curve, &VelocityCurve::queue_draw));
878 frame = new Gtk::Frame;
879 frame->add(release_curve);
880 // on Gtk 3 there is no margin at all by default
881 #if GTKMM_MAJOR_VERSION >= 3
882 frame->set_margin_top(12);
883 frame->set_margin_bottom(12);
884 #endif
885 #if USE_GTKMM_GRID
886 table[pageno]->attach(*frame, 1, rowno, 2);
887 #else
888 table[pageno]->attach(*frame, 1, 3, rowno, rowno + 1,
889 Gtk::SHRINK, Gtk::SHRINK);
890 #endif
891 rowno++;
892
893 addProp(eReleaseTriggerDecay);
894 {
895 const char* choices[] = { _("none"), _("effect4depth"), _("effect5depth"), 0 };
896 static const gig::dim_bypass_ctrl_t values[] = {
897 gig::dim_bypass_ctrl_none,
898 gig::dim_bypass_ctrl_94,
899 gig::dim_bypass_ctrl_95
900 };
901 eDimensionBypass.set_choices(choices, values);
902 }
903 addProp(eDimensionBypass);
904 eSelfMask.widget.set_tooltip_text(_(
905 "If enabled: new notes with higher velocity value will stop older "
906 "notes with lower velocity values, that way you can save voices that "
907 "would barely be audible. This is also useful for certain drum sounds."
908 ));
909 addProp(eSelfMask);
910 eSustainDefeat.widget.set_tooltip_text(_(
911 "If enabled: sustain pedal will not hold a note. This way you can use "
912 "the sustain pedal for other purposes, for example to switch among "
913 "dimension regions."
914 ));
915 addProp(eSustainDefeat);
916 eMSDecode.widget.set_tooltip_text(_(
917 "Defines if Mid/Side Recordings should be decoded. Mid/Side Recordings "
918 "are an alternative way to record sounds in stereo. The sampler needs "
919 "to decode such samples to actually make use of them. Note: this "
920 "feature is currently not supported by LinuxSampler."
921 ));
922 addProp(eMSDecode);
923
924 nextPage();
925
926
927 eEG1InfiniteSustain.signal_value_changed().connect(
928 sigc::mem_fun(*this, &DimRegionEdit::EG1InfiniteSustain_toggled));
929 eEG2InfiniteSustain.signal_value_changed().connect(
930 sigc::mem_fun(*this, &DimRegionEdit::EG2InfiniteSustain_toggled));
931 eEG1Controller.signal_value_changed().connect(
932 sigc::mem_fun(*this, &DimRegionEdit::EG1Controller_changed));
933 eEG2Controller.signal_value_changed().connect(
934 sigc::mem_fun(*this, &DimRegionEdit::EG2Controller_changed));
935 eLFO1Controller.signal_value_changed().connect(
936 sigc::mem_fun(*this, &DimRegionEdit::LFO1Controller_changed));
937 eLFO2Controller.signal_value_changed().connect(
938 sigc::mem_fun(*this, &DimRegionEdit::LFO2Controller_changed));
939 eLFO3Controller.signal_value_changed().connect(
940 sigc::mem_fun(*this, &DimRegionEdit::LFO3Controller_changed));
941 eAttenuationController.signal_value_changed().connect(
942 sigc::mem_fun(*this, &DimRegionEdit::AttenuationController_changed));
943 eVCFEnabled.signal_value_changed().connect(
944 sigc::mem_fun(*this, &DimRegionEdit::VCFEnabled_toggled));
945 eVCFCutoffController.signal_value_changed().connect(
946 sigc::mem_fun(*this, &DimRegionEdit::VCFCutoffController_changed));
947 eVCFResonanceController.signal_value_changed().connect(
948 sigc::mem_fun(*this, &DimRegionEdit::VCFResonanceController_changed));
949
950 eCrossfade_in_start.signal_value_changed().connect(
951 sigc::mem_fun(*this, &DimRegionEdit::crossfade1_changed));
952 eCrossfade_in_end.signal_value_changed().connect(
953 sigc::mem_fun(*this, &DimRegionEdit::crossfade2_changed));
954 eCrossfade_out_start.signal_value_changed().connect(
955 sigc::mem_fun(*this, &DimRegionEdit::crossfade3_changed));
956 eCrossfade_out_end.signal_value_changed().connect(
957 sigc::mem_fun(*this, &DimRegionEdit::crossfade4_changed));
958
959 eSampleLoopEnabled.signal_value_changed().connect(
960 sigc::mem_fun(*this, &DimRegionEdit::update_loop_elements));
961 eSampleLoopStart.signal_value_changed().connect(
962 sigc::mem_fun(*this, &DimRegionEdit::loop_start_changed));
963 eSampleLoopLength.signal_value_changed().connect(
964 sigc::mem_fun(*this, &DimRegionEdit::loop_length_changed));
965 eSampleLoopInfinite.signal_value_changed().connect(
966 sigc::mem_fun(*this, &DimRegionEdit::loop_infinite_toggled));
967
968 append_page(*table[0], _("Sample"));
969 append_page(*table[1], _("Amplitude (1)"));
970 append_page(*table[2], _("Amplitude (2)"));
971 append_page(*table[3], _("Filter (1)"));
972 append_page(*table[4], _("Filter (2)"));
973 append_page(*table[5], _("Pitch"));
974 append_page(*table[6], _("Misc"));
975
976 Settings::singleton()->showTooltips.get_proxy().signal_changed().connect(
977 sigc::mem_fun(*this, &DimRegionEdit::on_show_tooltips_changed)
978 );
979
980 on_show_tooltips_changed();
981 }
982
983 DimRegionEdit::~DimRegionEdit()
984 {
985 }
986
987 void DimRegionEdit::addString(const char* labelText, Gtk::Label*& label,
988 Gtk::Entry*& widget)
989 {
990 label = new Gtk::Label(Glib::ustring(labelText) + ":");
991 #if HAS_GTKMM_ALIGNMENT
992 label->set_alignment(Gtk::ALIGN_START);
993 #else
994 label->set_halign(Gtk::Align::START);
995 #endif
996
997 #if USE_GTKMM_GRID
998 table[pageno]->attach(*label, 1, rowno);
999 #else
1000 table[pageno]->attach(*label, 1, 2, rowno, rowno + 1,
1001 Gtk::FILL, Gtk::SHRINK);
1002 #endif
1003
1004 widget = new Gtk::Entry();
1005
1006 #if USE_GTKMM_GRID
1007 table[pageno]->attach(*widget, 2, rowno);
1008 #else
1009 table[pageno]->attach(*widget, 2, 3, rowno, rowno + 1,
1010 Gtk::EXPAND | Gtk::FILL, Gtk::SHRINK);
1011 #endif
1012
1013 rowno++;
1014 }
1015
1016 void DimRegionEdit::addString(const char* labelText, Gtk::Label*& label,
1017 Gtk::Entry*& widget, Gtk::Button*& button)
1018 {
1019 label = new Gtk::Label(Glib::ustring(labelText) + ":");
1020 #if HAS_GTKMM_ALIGNMENT
1021 label->set_alignment(Gtk::ALIGN_START);
1022 #else
1023 label->set_halign(Gtk::Align::START);
1024 #endif
1025
1026 #if USE_GTKMM_GRID
1027 table[pageno]->attach(*label, 1, rowno);
1028 #else
1029 table[pageno]->attach(*label, 1, 2, rowno, rowno + 1,
1030 Gtk::FILL, Gtk::SHRINK);
1031 #endif
1032
1033 widget = new Gtk::Entry();
1034 button = new Gtk::Button();
1035
1036 HBox* hbox = new HBox;
1037 hbox->pack_start(*widget);
1038 hbox->pack_start(*button, Gtk::PACK_SHRINK);
1039
1040 #if USE_GTKMM_GRID
1041 table[pageno]->attach(*hbox, 2, rowno);
1042 #else
1043 table[pageno]->attach(*hbox, 2, 3, rowno, rowno + 1,
1044 Gtk::EXPAND | Gtk::FILL, Gtk::SHRINK);
1045 #endif
1046
1047 rowno++;
1048 }
1049
1050 Gtk::Label* DimRegionEdit::addHeader(const char* text)
1051 {
1052 if (firstRowInBlock < rowno - 1)
1053 {
1054 Gtk::Label* filler = new Gtk::Label(" ");
1055 #if USE_GTKMM_GRID
1056 table[pageno]->attach(*filler, 0, firstRowInBlock);
1057 #else
1058 table[pageno]->attach(*filler, 0, 1, firstRowInBlock, rowno,
1059 Gtk::FILL, Gtk::SHRINK);
1060 #endif
1061 }
1062 Glib::ustring str = "<b>";
1063 str += text;
1064 str += "</b>";
1065 Gtk::Label* label = new Gtk::Label(str);
1066 label->set_use_markup();
1067 #if HAS_GTKMM_ALIGNMENT
1068 label->set_alignment(Gtk::ALIGN_START);
1069 #else
1070 label->set_halign(Gtk::Align::START);
1071 #endif
1072 // on GTKMM 3 there is absolutely no margin by default
1073 #if GTKMM_MAJOR_VERSION >= 3
1074 label->set_margin_top(18);
1075 label->set_margin_bottom(13);
1076 #endif
1077 #if USE_GTKMM_GRID
1078 table[pageno]->attach(*label, 0, rowno, 3);
1079 #else
1080 table[pageno]->attach(*label, 0, 3, rowno, rowno + 1,
1081 Gtk::FILL, Gtk::SHRINK);
1082 #endif
1083 rowno++;
1084 firstRowInBlock = rowno;
1085 return label;
1086 }
1087
1088 void DimRegionEdit::on_show_tooltips_changed() {
1089 const bool b = Settings::singleton()->showTooltips;
1090
1091 buttonSelectSample.set_has_tooltip(b);
1092 buttonNullSampleReference->set_has_tooltip(b);
1093 wSample->set_has_tooltip(b);
1094
1095 eEG1StateOptions.on_show_tooltips_changed();
1096 eEG2StateOptions.on_show_tooltips_changed();
1097
1098 set_has_tooltip(b);
1099 }
1100
1101 void DimRegionEdit::nextPage()
1102 {
1103 if (firstRowInBlock < rowno - 1)
1104 {
1105 Gtk::Label* filler = new Gtk::Label(" ");
1106 #if USE_GTKMM_GRID
1107 table[pageno]->attach(*filler, 0, firstRowInBlock);
1108 #else
1109 table[pageno]->attach(*filler, 0, 1, firstRowInBlock, rowno,
1110 Gtk::FILL, Gtk::SHRINK);
1111 #endif
1112 }
1113 pageno++;
1114 rowno = 0;
1115 firstRowInBlock = 0;
1116 }
1117
1118 void DimRegionEdit::addProp(BoolEntry& boolentry)
1119 {
1120 #if USE_GTKMM_GRID
1121 table[pageno]->attach(boolentry.widget, 1, rowno, 2);
1122 #else
1123 table[pageno]->attach(boolentry.widget, 1, 3, rowno, rowno + 1,
1124 Gtk::FILL, Gtk::SHRINK);
1125 #endif
1126 rowno++;
1127 }
1128
1129 void DimRegionEdit::addProp(BoolEntryPlus6& boolentry)
1130 {
1131 #if USE_GTKMM_GRID
1132 table[pageno]->attach(boolentry.widget, 1, rowno, 2);
1133 #else
1134 table[pageno]->attach(boolentry.widget, 1, 3, rowno, rowno + 1,
1135 Gtk::FILL, Gtk::SHRINK);
1136 #endif
1137 rowno++;
1138 }
1139
1140 void DimRegionEdit::addProp(LabelWidget& prop)
1141 {
1142 #if USE_GTKMM_GRID
1143 table[pageno]->attach(prop.label, 1, rowno);
1144 table[pageno]->attach(prop.widget, 2, rowno);
1145 #else
1146 table[pageno]->attach(prop.label, 1, 2, rowno, rowno + 1,
1147 Gtk::FILL, Gtk::SHRINK);
1148 table[pageno]->attach(prop.widget, 2, 3, rowno, rowno + 1,
1149 Gtk::EXPAND | Gtk::FILL, Gtk::SHRINK);
1150 #endif
1151 rowno++;
1152 }
1153
1154 void DimRegionEdit::addLine(HBox& line)
1155 {
1156 #if USE_GTKMM_GRID
1157 table[pageno]->attach(line, 1, rowno, 2);
1158 #else
1159 table[pageno]->attach(line, 1, 3, rowno, rowno + 1,
1160 Gtk::FILL, Gtk::SHRINK);
1161 #endif
1162 rowno++;
1163 }
1164
1165 void DimRegionEdit::addRightHandSide(Gtk::Widget& widget)
1166 {
1167 #if USE_GTKMM_GRID
1168 table[pageno]->attach(widget, 2, rowno);
1169 #else
1170 table[pageno]->attach(widget, 2, 3, rowno, rowno + 1,
1171 Gtk::EXPAND | Gtk::FILL, Gtk::SHRINK);
1172 #endif
1173 rowno++;
1174 }
1175
1176 void DimRegionEdit::set_dim_region(gig::DimensionRegion* d)
1177 {
1178 dimregion = d;
1179 velocity_curve.set_dim_region(d);
1180 release_curve.set_dim_region(d);
1181 cutoff_curve.set_dim_region(d);
1182 crossfade_curve.set_dim_region(d);
1183
1184 set_sensitive(d);
1185 if (!d) return;
1186
1187 update_model++;
1188 eEG1PreAttack.set_value(d->EG1PreAttack);
1189 eEG1Attack.set_value(d->EG1Attack);
1190 eEG1Decay1.set_value(d->EG1Decay1);
1191 eEG1Decay2.set_value(d->EG1Decay2);
1192 eEG1InfiniteSustain.set_value(d->EG1InfiniteSustain);
1193 eEG1Sustain.set_value(d->EG1Sustain);
1194 eEG1Release.set_value(d->EG1Release);
1195 eEG1Hold.set_value(d->EG1Hold);
1196 eEG1Controller.set_value(d->EG1Controller);
1197 eEG1ControllerInvert.set_value(d->EG1ControllerInvert);
1198 eEG1ControllerAttackInfluence.set_value(d->EG1ControllerAttackInfluence);
1199 eEG1ControllerDecayInfluence.set_value(d->EG1ControllerDecayInfluence);
1200 eEG1ControllerReleaseInfluence.set_value(d->EG1ControllerReleaseInfluence);
1201 eEG1StateOptions.checkBoxAttack.set_value(d->EG1Options.AttackCancel);
1202 eEG1StateOptions.checkBoxAttackHold.set_value(d->EG1Options.AttackHoldCancel);
1203 eEG1StateOptions.checkBoxDecay1.set_value(d->EG1Options.Decay1Cancel);
1204 eEG1StateOptions.checkBoxDecay2.set_value(d->EG1Options.Decay2Cancel);
1205 eEG1StateOptions.checkBoxRelease.set_value(d->EG1Options.ReleaseCancel);
1206 eLFO1Frequency.set_value(d->LFO1Frequency);
1207 eLFO1InternalDepth.set_value(d->LFO1InternalDepth);
1208 eLFO1ControlDepth.set_value(d->LFO1ControlDepth);
1209 eLFO1Controller.set_value(d->LFO1Controller);
1210 eLFO1FlipPhase.set_value(d->LFO1FlipPhase);
1211 eLFO1Sync.set_value(d->LFO1Sync);
1212 eEG2PreAttack.set_value(d->EG2PreAttack);
1213 eEG2Attack.set_value(d->EG2Attack);
1214 eEG2Decay1.set_value(d->EG2Decay1);
1215 eEG2Decay2.set_value(d->EG2Decay2);
1216 eEG2InfiniteSustain.set_value(d->EG2InfiniteSustain);
1217 eEG2Sustain.set_value(d->EG2Sustain);
1218 eEG2Release.set_value(d->EG2Release);
1219 eEG2Controller.set_value(d->EG2Controller);
1220 eEG2ControllerInvert.set_value(d->EG2ControllerInvert);
1221 eEG2ControllerAttackInfluence.set_value(d->EG2ControllerAttackInfluence);
1222 eEG2ControllerDecayInfluence.set_value(d->EG2ControllerDecayInfluence);
1223 eEG2ControllerReleaseInfluence.set_value(d->EG2ControllerReleaseInfluence);
1224 eEG2StateOptions.checkBoxAttack.set_value(d->EG2Options.AttackCancel);
1225 eEG2StateOptions.checkBoxAttackHold.set_value(d->EG2Options.AttackHoldCancel);
1226 eEG2StateOptions.checkBoxDecay1.set_value(d->EG2Options.Decay1Cancel);
1227 eEG2StateOptions.checkBoxDecay2.set_value(d->EG2Options.Decay2Cancel);
1228 eEG2StateOptions.checkBoxRelease.set_value(d->EG2Options.ReleaseCancel);
1229 eLFO2Frequency.set_value(d->LFO2Frequency);
1230 eLFO2InternalDepth.set_value(d->LFO2InternalDepth);
1231 eLFO2ControlDepth.set_value(d->LFO2ControlDepth);
1232 eLFO2Controller.set_value(d->LFO2Controller);
1233 eLFO2FlipPhase.set_value(d->LFO2FlipPhase);
1234 eLFO2Sync.set_value(d->LFO2Sync);
1235 eEG3Attack.set_value(d->EG3Attack);
1236 eEG3Depth.set_value(d->EG3Depth);
1237 eLFO3Frequency.set_value(d->LFO3Frequency);
1238 eLFO3InternalDepth.set_value(d->LFO3InternalDepth);
1239 eLFO3ControlDepth.set_value(d->LFO3ControlDepth);
1240 eLFO3Controller.set_value(d->LFO3Controller);
1241 eLFO3Sync.set_value(d->LFO3Sync);
1242 eVCFEnabled.set_value(d->VCFEnabled);
1243 eVCFType.set_value(d->VCFType);
1244 eVCFCutoffController.set_value(d->VCFCutoffController);
1245 eVCFCutoffControllerInvert.set_value(d->VCFCutoffControllerInvert);
1246 eVCFCutoff.set_value(d->VCFCutoff);
1247 eVCFVelocityCurve.set_value(d->VCFVelocityCurve);
1248 eVCFVelocityScale.set_value(d->VCFVelocityScale);
1249 eVCFVelocityDynamicRange.set_value(d->VCFVelocityDynamicRange);
1250 eVCFResonance.set_value(d->VCFResonance);
1251 eVCFResonanceDynamic.set_value(d->VCFResonanceDynamic);
1252 eVCFResonanceController.set_value(d->VCFResonanceController);
1253 eVCFKeyboardTracking.set_value(d->VCFKeyboardTracking);
1254 eVCFKeyboardTrackingBreakpoint.set_value(d->VCFKeyboardTrackingBreakpoint);
1255 eVelocityResponseCurve.set_value(d->VelocityResponseCurve);
1256 eVelocityResponseDepth.set_value(d->VelocityResponseDepth);
1257 eVelocityResponseCurveScaling.set_value(d->VelocityResponseCurveScaling);
1258 eReleaseVelocityResponseCurve.set_value(d->ReleaseVelocityResponseCurve);
1259 eReleaseVelocityResponseDepth.set_value(d->ReleaseVelocityResponseDepth);
1260 eReleaseTriggerDecay.set_value(d->ReleaseTriggerDecay);
1261 eCrossfade_in_start.set_value(d->Crossfade.in_start);
1262 eCrossfade_in_end.set_value(d->Crossfade.in_end);
1263 eCrossfade_out_start.set_value(d->Crossfade.out_start);
1264 eCrossfade_out_end.set_value(d->Crossfade.out_end);
1265 ePitchTrack.set_value(d->PitchTrack);
1266 eDimensionBypass.set_value(d->DimensionBypass);
1267 ePan.set_value(d->Pan);
1268 eSelfMask.set_value(d->SelfMask);
1269 eAttenuationController.set_value(d->AttenuationController);
1270 eInvertAttenuationController.set_value(d->InvertAttenuationController);
1271 eAttenuationControllerThreshold.set_value(d->AttenuationControllerThreshold);
1272 eChannelOffset.set_value(d->ChannelOffset);
1273 eSustainDefeat.set_value(d->SustainDefeat);
1274 eMSDecode.set_value(d->MSDecode);
1275 eSampleStartOffset.set_value(d->SampleStartOffset);
1276 eUnityNote.set_value(d->UnityNote);
1277 // show sample group name
1278 {
1279 Glib::ustring s = "---";
1280 if (d->pSample && d->pSample->GetGroup())
1281 s = d->pSample->GetGroup()->Name;
1282 eSampleGroup.text.set_text(s);
1283 }
1284 // assemble sample format info string
1285 {
1286 Glib::ustring s;
1287 if (d->pSample) {
1288 switch (d->pSample->Channels) {
1289 case 1: s = _("Mono"); break;
1290 case 2: s = _("Stereo"); break;
1291 default:
1292 s = ToString(d->pSample->Channels) + _(" audio channels");
1293 break;
1294 }
1295 s += " " + ToString(d->pSample->BitDepth) + " Bits";
1296 s += " " + ToString(d->pSample->SamplesPerSecond/1000) + "."
1297 + ToString((d->pSample->SamplesPerSecond%1000)/100) + " kHz";
1298 } else {
1299 s = _("No sample assigned to this dimension region.");
1300 }
1301 eSampleFormatInfo.text.set_text(s);
1302 }
1303 // generate sample's memory address pointer string
1304 {
1305 Glib::ustring s;
1306 if (d->pSample) {
1307 char buf[64] = {};
1308 snprintf(buf, sizeof(buf), "%p", d->pSample);
1309 s = buf;
1310 } else {
1311 s = "---";
1312 }
1313 eSampleID.text.set_text(s);
1314 }
1315 // generate raw wave form data CRC-32 checksum string
1316 {
1317 Glib::ustring s = "---";
1318 if (d->pSample) {
1319 char buf[64] = {};
1320 snprintf(buf, sizeof(buf), "%x", d->pSample->GetWaveDataCRC32Checksum());
1321 s = buf;
1322 }
1323 eChecksum.text.set_text(s);
1324 }
1325 buttonSelectSample.set_sensitive(d && d->pSample);
1326 eFineTune.set_value(d->FineTune);
1327 eGain.set_value(d->Gain);
1328 eGainPlus6.set_value(d->Gain);
1329 eSampleLoopEnabled.set_value(d->SampleLoops);
1330 eSampleLoopType.set_value(
1331 d->SampleLoops ? d->pSampleLoops[0].LoopType : 0);
1332 eSampleLoopStart.set_value(
1333 d->SampleLoops ? d->pSampleLoops[0].LoopStart : 0);
1334 eSampleLoopLength.set_value(
1335 d->SampleLoops ? d->pSampleLoops[0].LoopLength : 0);
1336 eSampleLoopInfinite.set_value(
1337 d->pSample && d->pSample->LoopPlayCount == 0);
1338 eSampleLoopPlayCount.set_value(
1339 d->pSample ? d->pSample->LoopPlayCount : 0);
1340 update_model--;
1341
1342 wSample->set_text(d->pSample ? gig_to_utf8(d->pSample->pInfo->Name) :
1343 _("NULL"));
1344
1345 update_loop_elements();
1346 VCFEnabled_toggled();
1347 }
1348
1349
1350 void DimRegionEdit::VCFEnabled_toggled()
1351 {
1352 bool sensitive = eVCFEnabled.get_value();
1353 eVCFType.set_sensitive(sensitive);
1354 eVCFCutoffController.set_sensitive(sensitive);
1355 eVCFVelocityCurve.set_sensitive(sensitive);
1356 eVCFVelocityScale.set_sensitive(sensitive);
1357 eVCFVelocityDynamicRange.set_sensitive(sensitive);
1358 cutoff_curve.set_sensitive(sensitive);
1359 eVCFResonance.set_sensitive(sensitive);
1360 eVCFResonanceController.set_sensitive(sensitive);
1361 eVCFKeyboardTracking.set_sensitive(sensitive);
1362 eVCFKeyboardTrackingBreakpoint.set_sensitive(sensitive);
1363 lEG2->set_sensitive(sensitive);
1364 eEG2PreAttack.set_sensitive(sensitive);
1365 eEG2Attack.set_sensitive(sensitive);
1366 eEG2Decay1.set_sensitive(sensitive);
1367 eEG2InfiniteSustain.set_sensitive(sensitive);
1368 eEG2Sustain.set_sensitive(sensitive);
1369 eEG2Release.set_sensitive(sensitive);
1370 eEG2Controller.set_sensitive(sensitive);
1371 eEG2ControllerAttackInfluence.set_sensitive(sensitive);
1372 eEG2ControllerDecayInfluence.set_sensitive(sensitive);
1373 eEG2ControllerReleaseInfluence.set_sensitive(sensitive);
1374 eEG2StateOptions.set_sensitive(sensitive);
1375 lLFO2->set_sensitive(sensitive);
1376 eLFO2Frequency.set_sensitive(sensitive);
1377 eLFO2InternalDepth.set_sensitive(sensitive);
1378 eLFO2ControlDepth.set_sensitive(sensitive);
1379 eLFO2Controller.set_sensitive(sensitive);
1380 eLFO2FlipPhase.set_sensitive(sensitive);
1381 eLFO2Sync.set_sensitive(sensitive);
1382 if (sensitive) {
1383 VCFCutoffController_changed();
1384 VCFResonanceController_changed();
1385 EG2InfiniteSustain_toggled();
1386 EG2Controller_changed();
1387 LFO2Controller_changed();
1388 } else {
1389 eVCFCutoffControllerInvert.set_sensitive(false);
1390 eVCFCutoff.set_sensitive(false);
1391 eVCFResonanceDynamic.set_sensitive(false);
1392 eVCFResonance.set_sensitive(false);
1393 eEG2Decay2.set_sensitive(false);
1394 eEG2ControllerInvert.set_sensitive(false);
1395 eLFO2InternalDepth.set_sensitive(false);
1396 eLFO2ControlDepth.set_sensitive(false);
1397 }
1398 }
1399
1400 void DimRegionEdit::VCFCutoffController_changed()
1401 {
1402 gig::vcf_cutoff_ctrl_t ctrl = eVCFCutoffController.get_value();
1403 bool hasController = ctrl != gig::vcf_cutoff_ctrl_none && ctrl != gig::vcf_cutoff_ctrl_none2;
1404
1405 eVCFCutoffControllerInvert.set_sensitive(hasController);
1406 eVCFCutoff.set_sensitive(!hasController);
1407 eVCFResonanceDynamic.set_sensitive(!hasController);
1408 eVCFVelocityScale.label.set_text(hasController ? _("Minimum cutoff:") :
1409 _("Velocity scale:"));
1410 }
1411
1412 void DimRegionEdit::VCFResonanceController_changed()
1413 {
1414 bool hasController = eVCFResonanceController.get_value() != gig::vcf_res_ctrl_none;
1415 eVCFResonance.set_sensitive(!hasController);
1416 }
1417
1418 void DimRegionEdit::EG1InfiniteSustain_toggled()
1419 {
1420 bool infSus = eEG1InfiniteSustain.get_value();
1421 eEG1Decay2.set_sensitive(!infSus);
1422 }
1423
1424 void DimRegionEdit::EG2InfiniteSustain_toggled()
1425 {
1426 bool infSus = eEG2InfiniteSustain.get_value();
1427 eEG2Decay2.set_sensitive(!infSus);
1428 }
1429
1430 void DimRegionEdit::EG1Controller_changed()
1431 {
1432 bool hasController = eEG1Controller.get_value().type != gig::leverage_ctrl_t::type_none;
1433 eEG1ControllerInvert.set_sensitive(hasController);
1434 }
1435
1436 void DimRegionEdit::EG2Controller_changed()
1437 {
1438 bool hasController = eEG2Controller.get_value().type != gig::leverage_ctrl_t::type_none;
1439 eEG2ControllerInvert.set_sensitive(hasController);
1440 }
1441
1442 void DimRegionEdit::AttenuationController_changed()
1443 {
1444 bool hasController =
1445 eAttenuationController.get_value().type != gig::leverage_ctrl_t::type_none;
1446 eInvertAttenuationController.set_sensitive(hasController);
1447 eAttenuationControllerThreshold.set_sensitive(hasController);
1448 eCrossfade_in_start.set_sensitive(hasController);
1449 eCrossfade_in_end.set_sensitive(hasController);
1450 eCrossfade_out_start.set_sensitive(hasController);
1451 eCrossfade_out_end.set_sensitive(hasController);
1452 crossfade_curve.set_sensitive(hasController);
1453 }
1454
1455 void DimRegionEdit::LFO1Controller_changed()
1456 {
1457 gig::lfo1_ctrl_t ctrl = eLFO1Controller.get_value();
1458 eLFO1ControlDepth.set_sensitive(ctrl != gig::lfo1_ctrl_internal);
1459 eLFO1InternalDepth.set_sensitive(ctrl != gig::lfo1_ctrl_modwheel &&
1460 ctrl != gig::lfo1_ctrl_breath);
1461 }
1462
1463 void DimRegionEdit::LFO2Controller_changed()
1464 {
1465 gig::lfo2_ctrl_t ctrl = eLFO2Controller.get_value();
1466 eLFO2ControlDepth.set_sensitive(ctrl != gig::lfo2_ctrl_internal);
1467 eLFO2InternalDepth.set_sensitive(ctrl != gig::lfo2_ctrl_modwheel &&
1468 ctrl != gig::lfo2_ctrl_foot);
1469 }
1470
1471 void DimRegionEdit::LFO3Controller_changed()
1472 {
1473 gig::lfo3_ctrl_t ctrl = eLFO3Controller.get_value();
1474 eLFO3ControlDepth.set_sensitive(ctrl != gig::lfo3_ctrl_internal);
1475 eLFO3InternalDepth.set_sensitive(ctrl != gig::lfo3_ctrl_modwheel &&
1476 ctrl != gig::lfo3_ctrl_aftertouch);
1477 }
1478
1479 void DimRegionEdit::crossfade1_changed()
1480 {
1481 update_model++;
1482 eCrossfade_in_end.set_value(dimregion->Crossfade.in_end);
1483 eCrossfade_out_start.set_value(dimregion->Crossfade.out_start);
1484 eCrossfade_out_end.set_value(dimregion->Crossfade.out_end);
1485 update_model--;
1486 }
1487
1488 void DimRegionEdit::crossfade2_changed()
1489 {
1490 update_model++;
1491 eCrossfade_in_start.set_value(dimregion->Crossfade.in_start);
1492 eCrossfade_out_start.set_value(dimregion->Crossfade.out_start);
1493 eCrossfade_out_end.set_value(dimregion->Crossfade.out_end);
1494 update_model--;
1495 }
1496
1497 void DimRegionEdit::crossfade3_changed()
1498 {
1499 update_model++;
1500 eCrossfade_in_start.set_value(dimregion->Crossfade.in_start);
1501 eCrossfade_in_end.set_value(dimregion->Crossfade.in_end);
1502 eCrossfade_out_end.set_value(dimregion->Crossfade.out_end);
1503 update_model--;
1504 }
1505
1506 void DimRegionEdit::crossfade4_changed()
1507 {
1508 update_model++;
1509 eCrossfade_in_start.set_value(dimregion->Crossfade.in_start);
1510 eCrossfade_in_end.set_value(dimregion->Crossfade.in_end);
1511 eCrossfade_out_start.set_value(dimregion->Crossfade.out_start);
1512 update_model--;
1513 }
1514
1515 void DimRegionEdit::update_loop_elements()
1516 {
1517 update_model++;
1518 const bool active = eSampleLoopEnabled.get_value();
1519 eSampleLoopStart.set_sensitive(active);
1520 eSampleLoopLength.set_sensitive(active);
1521 eSampleLoopType.set_sensitive(active);
1522 eSampleLoopInfinite.set_sensitive(active && dimregion && dimregion->pSample);
1523 // sample loop shall never be longer than the actual sample size
1524 loop_start_changed();
1525 loop_length_changed();
1526 eSampleLoopStart.set_value(
1527 dimregion->SampleLoops ? dimregion->pSampleLoops[0].LoopStart : 0);
1528 eSampleLoopLength.set_value(
1529 dimregion->SampleLoops ? dimregion->pSampleLoops[0].LoopLength : 0);
1530
1531 eSampleLoopInfinite.set_value(
1532 dimregion->pSample && dimregion->pSample->LoopPlayCount == 0);
1533
1534 loop_infinite_toggled();
1535 update_model--;
1536 }
1537
1538 void DimRegionEdit::loop_start_changed() {
1539 if (dimregion && dimregion->SampleLoops) {
1540 eSampleLoopLength.set_upper(dimregion->pSample ?
1541 dimregion->pSample->SamplesTotal -
1542 dimregion->pSampleLoops[0].LoopStart : 0);
1543 }
1544 }
1545
1546 void DimRegionEdit::loop_length_changed() {
1547 if (dimregion && dimregion->SampleLoops) {
1548 eSampleLoopStart.set_upper(dimregion->pSample ?
1549 dimregion->pSample->SamplesTotal -
1550 dimregion->pSampleLoops[0].LoopLength : 0);
1551 }
1552 }
1553
1554 void DimRegionEdit::loop_infinite_toggled() {
1555 eSampleLoopPlayCount.set_sensitive(
1556 dimregion && dimregion->pSample &&
1557 !eSampleLoopInfinite.get_value() &&
1558 eSampleLoopEnabled.get_value()
1559 );
1560 update_model++;
1561 eSampleLoopPlayCount.set_value(
1562 dimregion->pSample ? dimregion->pSample->LoopPlayCount : 0);
1563 update_model--;
1564 }
1565
1566 bool DimRegionEdit::set_sample(gig::Sample* sample, bool copy_sample_unity, bool copy_sample_tune, bool copy_sample_loop)
1567 {
1568 bool result = false;
1569 for (std::set<gig::DimensionRegion*>::iterator itDimReg = dimregs.begin();
1570 itDimReg != dimregs.end(); ++itDimReg)
1571 {
1572 result |= set_sample(*itDimReg, sample, copy_sample_unity, copy_sample_tune, copy_sample_loop);
1573 }
1574 return result;
1575 }
1576
1577 bool DimRegionEdit::set_sample(gig::DimensionRegion* dimreg, gig::Sample* sample, bool copy_sample_unity, bool copy_sample_tune, bool copy_sample_loop)
1578 {
1579 if (dimreg) {
1580 //TODO: we should better move the code from MainWindow::on_sample_label_drop_drag_data_received() here
1581
1582 // currently commented because we're sending a similar signal in MainWindow::on_sample_label_drop_drag_data_received()
1583 //DimRegionChangeGuard(this, dimregion);
1584
1585 // make sure stereo samples always are the same in both
1586 // dimregs in the samplechannel dimension
1587 int nbDimregs = 1;
1588 gig::DimensionRegion* d[2] = { dimreg, 0 };
1589 if (sample->Channels == 2) {
1590 gig::Region* region = dimreg->GetParent();
1591
1592 int bitcount = 0;
1593 int stereo_bit = 0;
1594 for (int dim = 0 ; dim < region->Dimensions ; dim++) {
1595 if (region->pDimensionDefinitions[dim].dimension == gig::dimension_samplechannel) {
1596 stereo_bit = 1 << bitcount;
1597 break;
1598 }
1599 bitcount += region->pDimensionDefinitions[dim].bits;
1600 }
1601
1602 if (stereo_bit) {
1603 int dimregno;
1604 for (dimregno = 0 ; dimregno < region->DimensionRegions ; dimregno++) {
1605 if (region->pDimensionRegions[dimregno] == dimreg) {
1606 break;
1607 }
1608 }
1609 d[0] = region->pDimensionRegions[dimregno & ~stereo_bit];
1610 d[1] = region->pDimensionRegions[dimregno | stereo_bit];
1611 nbDimregs = 2;
1612 }
1613 }
1614
1615 gig::Sample* oldref = dimreg->pSample;
1616
1617 for (int i = 0 ; i < nbDimregs ; i++) {
1618 d[i]->pSample = sample;
1619
1620 // copy sample information from Sample to DimensionRegion
1621 if (copy_sample_unity)
1622 d[i]->UnityNote = sample->MIDIUnityNote;
1623 if (copy_sample_tune)
1624 d[i]->FineTune = sample->FineTune;
1625 if (copy_sample_loop) {
1626 int loops = sample->Loops ? 1 : 0;
1627 while (d[i]->SampleLoops > loops) {
1628 d[i]->DeleteSampleLoop(&d[i]->pSampleLoops[0]);
1629 }
1630 while (d[i]->SampleLoops < sample->Loops) {
1631 DLS::sample_loop_t loop;
1632 d[i]->AddSampleLoop(&loop);
1633 }
1634 if (loops) {
1635 d[i]->pSampleLoops[0].Size = sizeof(DLS::sample_loop_t);
1636 d[i]->pSampleLoops[0].LoopType = sample->LoopType;
1637 d[i]->pSampleLoops[0].LoopStart = sample->LoopStart;
1638 d[i]->pSampleLoops[0].LoopLength = sample->LoopEnd - sample->LoopStart + 1;
1639 }
1640 }
1641 }
1642
1643 // update ui
1644 update_model++;
1645 wSample->set_text(gig_to_utf8(dimreg->pSample->pInfo->Name));
1646 eUnityNote.set_value(dimreg->UnityNote);
1647 eFineTune.set_value(dimreg->FineTune);
1648 eSampleLoopEnabled.set_value(dimreg->SampleLoops);
1649 update_loop_elements();
1650 update_model--;
1651
1652 sample_ref_changed_signal.emit(oldref, sample);
1653 return true;
1654 }
1655 return false;
1656 }
1657
1658 sigc::signal<void, gig::DimensionRegion*>& DimRegionEdit::signal_dimreg_to_be_changed() {
1659 return dimreg_to_be_changed_signal;
1660 }
1661
1662 sigc::signal<void, gig::DimensionRegion*>& DimRegionEdit::signal_dimreg_changed() {
1663 return dimreg_changed_signal;
1664 }
1665
1666 sigc::signal<void, gig::Sample*/*old*/, gig::Sample*/*new*/>& DimRegionEdit::signal_sample_ref_changed() {
1667 return sample_ref_changed_signal;
1668 }
1669
1670
1671 void DimRegionEdit::set_UnityNote(gig::DimensionRegion* d, uint8_t value)
1672 {
1673 d->UnityNote = value;
1674 }
1675
1676 void DimRegionEdit::set_FineTune(gig::DimensionRegion* d, int16_t value)
1677 {
1678 d->FineTune = value;
1679 }
1680
1681 void DimRegionEdit::set_Crossfade_in_start(gig::DimensionRegion* d,
1682 uint8_t value)
1683 {
1684 d->Crossfade.in_start = value;
1685 if (d->Crossfade.in_end < value) set_Crossfade_in_end(d, value);
1686 }
1687
1688 void DimRegionEdit::set_Crossfade_in_end(gig::DimensionRegion* d,
1689 uint8_t value)
1690 {
1691 d->Crossfade.in_end = value;
1692 if (value < d->Crossfade.in_start) set_Crossfade_in_start(d, value);
1693 if (value > d->Crossfade.out_start) set_Crossfade_out_start(d, value);
1694 }
1695
1696 void DimRegionEdit::set_Crossfade_out_start(gig::DimensionRegion* d,
1697 uint8_t value)
1698 {
1699 d->Crossfade.out_start = value;
1700 if (value < d->Crossfade.in_end) set_Crossfade_in_end(d, value);
1701 if (value > d->Crossfade.out_end) set_Crossfade_out_end(d, value);
1702 }
1703
1704 void DimRegionEdit::set_Crossfade_out_end(gig::DimensionRegion* d,
1705 uint8_t value)
1706 {
1707 d->Crossfade.out_end = value;
1708 if (value < d->Crossfade.out_start) set_Crossfade_out_start(d, value);
1709 }
1710
1711 void DimRegionEdit::set_Gain(gig::DimensionRegion* d, int32_t value)
1712 {
1713 d->SetGain(value);
1714 }
1715
1716 void DimRegionEdit::set_LoopEnabled(gig::DimensionRegion* d, bool value)
1717 {
1718 if (value) {
1719 // create a new sample loop in case there is none yet
1720 if (!d->SampleLoops) {
1721 DimRegionChangeGuard(this, d);
1722
1723 DLS::sample_loop_t loop;
1724 loop.LoopType = gig::loop_type_normal;
1725 // loop the whole sample by default
1726 loop.LoopStart = 0;
1727 loop.LoopLength =
1728 (d->pSample) ? d->pSample->SamplesTotal : 0;
1729 d->AddSampleLoop(&loop);
1730 }
1731 } else {
1732 if (d->SampleLoops) {
1733 DimRegionChangeGuard(this, d);
1734
1735 // delete ALL existing sample loops
1736 while (d->SampleLoops) {
1737 d->DeleteSampleLoop(&d->pSampleLoops[0]);
1738 }
1739 }
1740 }
1741 }
1742
1743 void DimRegionEdit::set_LoopType(gig::DimensionRegion* d, uint32_t value)
1744 {
1745 if (d->SampleLoops) d->pSampleLoops[0].LoopType = value;
1746 }
1747
1748 void DimRegionEdit::set_LoopStart(gig::DimensionRegion* d, uint32_t value)
1749 {
1750 if (d->SampleLoops) {
1751 d->pSampleLoops[0].LoopStart =
1752 d->pSample ?
1753 std::min(value, uint32_t(d->pSample->SamplesTotal -
1754 d->pSampleLoops[0].LoopLength)) :
1755 0;
1756 }
1757 }
1758
1759 void DimRegionEdit::set_LoopLength(gig::DimensionRegion* d, uint32_t value)
1760 {
1761 if (d->SampleLoops) {
1762 d->pSampleLoops[0].LoopLength =
1763 d->pSample ?
1764 std::min(value, uint32_t(d->pSample->SamplesTotal -
1765 d->pSampleLoops[0].LoopStart)) :
1766 0;
1767 }
1768 }
1769
1770 void DimRegionEdit::set_LoopInfinite(gig::DimensionRegion* d, bool value)
1771 {
1772 if (d->pSample) {
1773 if (value) d->pSample->LoopPlayCount = 0;
1774 else if (d->pSample->LoopPlayCount == 0) d->pSample->LoopPlayCount = 1;
1775 }
1776 }
1777
1778 void DimRegionEdit::set_LoopPlayCount(gig::DimensionRegion* d, uint32_t value)
1779 {
1780 if (d->pSample) d->pSample->LoopPlayCount = value;
1781 }
1782
1783 void DimRegionEdit::nullOutSampleReference() {
1784 if (!dimregion) return;
1785 gig::Sample* oldref = dimregion->pSample;
1786 if (!oldref) return;
1787
1788 DimRegionChangeGuard(this, dimregion);
1789
1790 // in case currently assigned sample is a stereo one, then remove both
1791 // references (expected to be due to a "stereo dimension")
1792 gig::DimensionRegion* d[2] = { dimregion, NULL };
1793 if (oldref->Channels == 2) {
1794 gig::Region* region = dimregion->GetParent();
1795 {
1796 int stereo_bit = 0;
1797 int bitcount = 0;
1798 for (int dim = 0 ; dim < region->Dimensions ; dim++) {
1799 if (region->pDimensionDefinitions[dim].dimension == gig::dimension_samplechannel) {
1800 stereo_bit = 1 << bitcount;
1801 break;
1802 }
1803 bitcount += region->pDimensionDefinitions[dim].bits;
1804 }
1805
1806 if (stereo_bit) {
1807 int dimregno;
1808 for (dimregno = 0 ; dimregno < region->DimensionRegions ; dimregno++) {
1809 if (region->pDimensionRegions[dimregno] == dimregion) {
1810 break;
1811 }
1812 }
1813 d[0] = region->pDimensionRegions[dimregno & ~stereo_bit];
1814 d[1] = region->pDimensionRegions[dimregno | stereo_bit];
1815 }
1816 }
1817 }
1818
1819 if (d[0]) d[0]->pSample = NULL;
1820 if (d[1]) d[1]->pSample = NULL;
1821
1822 // update UI elements
1823 set_dim_region(dimregion);
1824
1825 sample_ref_changed_signal.emit(oldref, NULL);
1826 }
1827
1828 void DimRegionEdit::onButtonSelectSamplePressed() {
1829 if (!dimregion) return;
1830 if (!dimregion->pSample) return;
1831 select_sample_signal.emit(dimregion->pSample);
1832 }
1833
1834 sigc::signal<void, gig::Sample*>& DimRegionEdit::signal_select_sample() {
1835 return select_sample_signal;
1836 }

  ViewVC Help
Powered by ViewVC