|
|
@ -30,18 +30,19 @@
|
|
|
|
|
|
|
|
|
|
|
|
win = Window("Counterfeiting in Colonial Connecticut", Rect(500, 500, 1100, 500), false).front;
|
|
|
|
win = Window("Counterfeiting in Colonial Connecticut", Rect(500, 500, 1100, 500), false).front;
|
|
|
|
masterView = {
|
|
|
|
masterView = {
|
|
|
|
var view, generator, transport, ranSeed, order, tempo, sectionDisplay, clock, metronome;
|
|
|
|
var updateTransport, updateSection,
|
|
|
|
|
|
|
|
view, generator, transport, ranSeed, order, tempo, sectionDisplay, clock, metronome;
|
|
|
|
|
|
|
|
|
|
|
|
// this func updates the whole transport panel
|
|
|
|
// this func updates the whole transport panel
|
|
|
|
~updateTransport = {arg measure, beat;
|
|
|
|
updateTransport = {arg measure, beat;
|
|
|
|
clock.string = clockStringFunc.value(measure, beat);
|
|
|
|
clock.string = clockStringFunc.value(measure, beat);
|
|
|
|
metronome.stringColor = metronomeColorFunc.value(beat);
|
|
|
|
metronome.stringColor = metronomeColorFunc.value(beat);
|
|
|
|
metronome.string = metronomeStringFunc.value(beat);
|
|
|
|
metronome.string = metronomeStringFunc.value(beat);
|
|
|
|
fork {0.75.wait; {metronome.string = ""}.defer};
|
|
|
|
{0.75.wait; {metronome.string = ""}.defer}.fork(~tempoClock, quant: 0);
|
|
|
|
};
|
|
|
|
}.inEnvir;
|
|
|
|
|
|
|
|
|
|
|
|
// this func handles the movement between sections
|
|
|
|
// this func handles the movement between sections
|
|
|
|
~updateSection = {arg shift, stop = true, manualCall = true;
|
|
|
|
updateSection = {arg shift, stop = true, manualCall = true;
|
|
|
|
var runThis;
|
|
|
|
var runThis;
|
|
|
|
runThis = (manualCall || (manualCall.not && ~autoAdvance));
|
|
|
|
runThis = (manualCall || (manualCall.not && ~autoAdvance));
|
|
|
|
runThis = runThis && ((~currentSection + shift) < ~sectionOrder.size);
|
|
|
|
runThis = runThis && ((~currentSection + shift) < ~sectionOrder.size);
|
|
|
@ -71,7 +72,7 @@
|
|
|
|
sectionDisplay.string = "section: " ++ section.asString ++ "." ++ subSection.asString;
|
|
|
|
sectionDisplay.string = "section: " ++ section.asString ++ "." ++ subSection.asString;
|
|
|
|
if(~isPlaying, {
|
|
|
|
if(~isPlaying, {
|
|
|
|
~play.set(\sel, ~currentSection % 2);
|
|
|
|
~play.set(\sel, ~currentSection % 2);
|
|
|
|
~patterns[~sectionOrder[~currentSection]].play(quant: 0);
|
|
|
|
~patterns[~sectionOrder[~currentSection]].play(~tempoClock, quant: 0);
|
|
|
|
if(~interludes && ((~currentSection % 4) == 3) && (~currentSection != (~sectionOrder.size - 1)), {
|
|
|
|
if(~interludes && ((~currentSection % 4) == 3) && (~currentSection != (~sectionOrder.size - 1)), {
|
|
|
|
~interludeTremelo.set(\gate, 1);
|
|
|
|
~interludeTremelo.set(\gate, 1);
|
|
|
|
~interludeTremelo.set(\amp, 1);
|
|
|
|
~interludeTremelo.set(\amp, 1);
|
|
|
@ -87,10 +88,10 @@
|
|
|
|
var measure, beat;
|
|
|
|
var measure, beat;
|
|
|
|
measure = ~sectionStartMeasure[~sectionOrder[~currentSection]];
|
|
|
|
measure = ~sectionStartMeasure[~sectionOrder[~currentSection]];
|
|
|
|
beat = 1;
|
|
|
|
beat = 1;
|
|
|
|
~updateTransport.value(measure, beat);
|
|
|
|
updateTransport.value(measure, beat);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
};
|
|
|
|
}.inEnvir;
|
|
|
|
|
|
|
|
|
|
|
|
// these funcs receive messages from the synth
|
|
|
|
// these funcs receive messages from the synth
|
|
|
|
OSCFunc({ arg msg, time;
|
|
|
|
OSCFunc({ arg msg, time;
|
|
|
@ -98,22 +99,23 @@
|
|
|
|
var measure, beat;
|
|
|
|
var measure, beat;
|
|
|
|
measure = msg[3];
|
|
|
|
measure = msg[3];
|
|
|
|
beat = msg[4];
|
|
|
|
beat = msg[4];
|
|
|
|
~updateTransport.value(measure, beat)
|
|
|
|
updateTransport.value(measure, beat)
|
|
|
|
}.defer;
|
|
|
|
}.inEnvir.defer;
|
|
|
|
},'/measureClock' ++ ~hash, s.addr);
|
|
|
|
},'/measureClock' ++ ~hash, s.addr);
|
|
|
|
//OSCFunc({ arg msg, time; {metronome.string = ""}.defer},'/measureClockReset', s.addr);
|
|
|
|
|
|
|
|
|
|
|
|
OSCFunc({ arg msg, time; {updateSection.value(1, false, false)}.inEnvir.defer},'/playNextSubsection' ++ ~hash, s.addr);
|
|
|
|
|
|
|
|
|
|
|
|
view = View(win);
|
|
|
|
view = View(win);
|
|
|
|
generator = HLayout(
|
|
|
|
generator = HLayout(
|
|
|
|
ranSeed = TextField(view, Rect(10, 10, 10, 20)).string_("20200525"),
|
|
|
|
ranSeed = TextField(view, Rect(10, 10, 10, 20)).string_("20200525"),
|
|
|
|
Button(view).states_([["reset seed"]]).action_({ ranSeed.string = "20200525"}),
|
|
|
|
Button(view).states_([["reset seed"]]).action_({ ranSeed.string = "20200525"}.inEnvir),
|
|
|
|
Button(view).states_([["random seed"]]).action_({ ranSeed.string = 50000000.rand.asString}),
|
|
|
|
Button(view).states_([["random seed"]]).action_({ ranSeed.string = 50000000.rand.asString}.inEnvir),
|
|
|
|
Button(view).states_([["generate"]]).action_({~genAll.value(ranSeed.string.asInteger)}),
|
|
|
|
Button(view).states_([["generate"]]).action_({~genAll.value(ranSeed.string.asInteger)}.inEnvir),
|
|
|
|
Button(view).states_([["transcribe"]]).action_({~transcribe.value(~scoreData)}),
|
|
|
|
Button(view).states_([["transcribe"]]).action_({~transcribe.value(~scoreData)}.inEnvir),
|
|
|
|
[StaticText(view).string_(" "), stretch: 1], nil);
|
|
|
|
[StaticText(view).string_(" "), stretch: 1], nil);
|
|
|
|
transport = HLayout(
|
|
|
|
transport = HLayout(
|
|
|
|
Button(view).states_([["<<", Color.black]]).action_({arg pState; ~updateSection.value(-4)}),
|
|
|
|
Button(view).states_([["<<", Color.black]]).action_({arg pState; updateSection.value(-4)}.inEnvir),
|
|
|
|
Button(view).states_([["<", Color.black]]).action_({arg pState; ~updateSection.value(-1)}),
|
|
|
|
Button(view).states_([["<", Color.black]]).action_({arg pState; updateSection.value(-1)}.inEnvir),
|
|
|
|
Button(view).states_([["play", Color.black], ["stop", Color.black, Color.grey]]).action_(
|
|
|
|
Button(view).states_([["play", Color.black], ["stop", Color.black, Color.grey]]).action_(
|
|
|
|
{arg pState;
|
|
|
|
{arg pState;
|
|
|
|
if(pState.value == 0, {
|
|
|
|
if(pState.value == 0, {
|
|
|
@ -123,11 +125,11 @@
|
|
|
|
~interludeTremelo.set(\gate, 0);
|
|
|
|
~interludeTremelo.set(\gate, 0);
|
|
|
|
measure = ~sectionStartMeasure[~currentSection];
|
|
|
|
measure = ~sectionStartMeasure[~currentSection];
|
|
|
|
beat = 1;
|
|
|
|
beat = 1;
|
|
|
|
~updateTransport.value(measure, beat);
|
|
|
|
updateTransport.value(measure, beat);
|
|
|
|
~interludeTremelo.set(\gate, 0);
|
|
|
|
~interludeTremelo.set(\gate, 0);
|
|
|
|
~interludeTremelo.set(\amp, 0);
|
|
|
|
~interludeTremelo.set(\amp, 0);
|
|
|
|
},{
|
|
|
|
},{
|
|
|
|
fork {
|
|
|
|
{
|
|
|
|
[1, 2, 1, 2].do({arg beat;
|
|
|
|
[1, 2, 1, 2].do({arg beat;
|
|
|
|
{
|
|
|
|
{
|
|
|
|
metronome.stringColor = metronomeColorFunc.value(beat);
|
|
|
|
metronome.stringColor = metronomeColorFunc.value(beat);
|
|
|
@ -139,17 +141,17 @@
|
|
|
|
});
|
|
|
|
});
|
|
|
|
~isPlaying = true;
|
|
|
|
~isPlaying = true;
|
|
|
|
~play.set(\sel, ~currentSection % 2);
|
|
|
|
~play.set(\sel, ~currentSection % 2);
|
|
|
|
~patterns[~sectionOrder[~currentSection]].play(quant: 0);
|
|
|
|
~patterns[~sectionOrder[~currentSection]].play(~tempoClock, quant: 0);
|
|
|
|
if(~interludes && ((~currentSection % 4) == 3) && (~currentSection != (~sectionOrder.size - 1)), {
|
|
|
|
if(~interludes && ((~currentSection % 4) == 3) && (~currentSection != (~sectionOrder.size - 1)), {
|
|
|
|
~interludeTremelo.set(\gate, 1);
|
|
|
|
~interludeTremelo.set(\gate, 1);
|
|
|
|
~interludeTremelo.set(\amp, 1);
|
|
|
|
~interludeTremelo.set(\amp, 1);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}.fork(~tempoClock, quant: 0);
|
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}.inEnvir
|
|
|
|
),
|
|
|
|
),
|
|
|
|
Button(view).states_([[">", Color.black]]).action_({arg pState; ~updateSection.value(1)}),
|
|
|
|
Button(view).states_([[">", Color.black]]).action_({arg pState; updateSection.value(1)}.inEnvir),
|
|
|
|
Button(view).states_([[">>", Color.black]]).action_({arg pState; ~updateSection.value(4)}), nil,
|
|
|
|
Button(view).states_([[">>", Color.black]]).action_({arg pState; updateSection.value(4)}.inEnvir), nil,
|
|
|
|
sectionDisplay = StaticText(win).string_("section: 1.1").font_(Font("Monaco", 70)), nil);
|
|
|
|
sectionDisplay = StaticText(win).string_("section: 1.1").font_(Font("Monaco", 70)), nil);
|
|
|
|
view.layout_(HLayout(
|
|
|
|
view.layout_(HLayout(
|
|
|
|
[VLayout(
|
|
|
|
[VLayout(
|
|
|
@ -159,14 +161,14 @@
|
|
|
|
nil, transport, nil,
|
|
|
|
nil, transport, nil,
|
|
|
|
HLayout(
|
|
|
|
HLayout(
|
|
|
|
tempo = TextField(view).string_("90"),
|
|
|
|
tempo = TextField(view).string_("90"),
|
|
|
|
Button(view).states_([["set tempo"]]).action_({TempoClock.tempo = tempo.string.asInteger / 60}),
|
|
|
|
Button(view).states_([["set tempo"]]).action_({~tempoClock.tempo = tempo.string.asInteger / 60}.inEnvir),
|
|
|
|
StaticText(view).string_(" | "),
|
|
|
|
StaticText(view).string_(" | "),
|
|
|
|
Button(view).states_([["auto advance", Color.black], ["auto advance", Color.black, Color.grey]]).action_({
|
|
|
|
Button(view).states_([["auto advance", Color.black], ["auto advance", Color.black, Color.grey]]).action_({
|
|
|
|
arg v; ~autoAdvance = if(v.value == 0, {false}, {true});~autoAdvance;
|
|
|
|
arg v; ~autoAdvance = if(v.value == 0, {false}, {true});~autoAdvance;
|
|
|
|
}).value_(1),
|
|
|
|
}.inEnvir).value_(1),
|
|
|
|
Button(view).states_([["interludes", Color.black], ["interludes", Color.black, Color.grey]]).action_({
|
|
|
|
Button(view).states_([["interludes", Color.black], ["interludes", Color.black, Color.grey]]).action_({
|
|
|
|
arg v; ~interludes = if(v.value == 0, {false}, {true})
|
|
|
|
arg v; ~interludes = if(v.value == 0, {false}, {true})
|
|
|
|
}),
|
|
|
|
}.inEnvir),
|
|
|
|
[StaticText(view).string_(" "), stretch: 1]),
|
|
|
|
[StaticText(view).string_(" "), stretch: 1]),
|
|
|
|
[StaticText(view).string_(" "), stretch: 1],
|
|
|
|
[StaticText(view).string_(" "), stretch: 1],
|
|
|
|
HLayout(
|
|
|
|
HLayout(
|
|
|
@ -181,8 +183,8 @@
|
|
|
|
});
|
|
|
|
});
|
|
|
|
}).flat;
|
|
|
|
}).flat;
|
|
|
|
~currentSection = 0;
|
|
|
|
~currentSection = 0;
|
|
|
|
~updateSection.value(0);
|
|
|
|
updateSection.value(0);
|
|
|
|
}),
|
|
|
|
}.inEnvir),
|
|
|
|
[StaticText(view).string_(" "), stretch: 1]),
|
|
|
|
[StaticText(view).string_(" "), stretch: 1]),
|
|
|
|
[StaticText(view).string_(" "), stretch: 1], generator
|
|
|
|
[StaticText(view).string_(" "), stretch: 1], generator
|
|
|
|
), alignment: \top]))};
|
|
|
|
), alignment: \top]))};
|
|
|
@ -203,11 +205,11 @@
|
|
|
|
VLayout(
|
|
|
|
VLayout(
|
|
|
|
[HLayout(
|
|
|
|
[HLayout(
|
|
|
|
Slider(view).value_(0.8).action_(
|
|
|
|
Slider(view).value_(0.8).action_(
|
|
|
|
{arg v; masterVol = v.value * 1.25; ~play.set(\masterVol, masterVol)}),
|
|
|
|
{arg v; masterVol = v.value * 1.25; ~play.set(\masterVol, masterVol)}.inEnvir),
|
|
|
|
masterIndicators[0],
|
|
|
|
masterIndicators[0],
|
|
|
|
masterIndicators[1]), stretch: 2],
|
|
|
|
masterIndicators[1]), stretch: 2],
|
|
|
|
Button(view).states_([["mute", Color.black], ["mute", Color.black, Color.grey]]).action_(
|
|
|
|
Button(view).states_([["mute", Color.black], ["mute", Color.black, Color.grey]]).action_(
|
|
|
|
{arg v; masterMute = (1 - v.value).abs; ~play.set(\masterMute, masterMute)}),
|
|
|
|
{arg v; masterMute = (1 - v.value).abs; ~play.set(\masterMute, masterMute)}.inEnvir),
|
|
|
|
StaticText(view).string_(" master ").align_(\center)
|
|
|
|
StaticText(view).string_(" master ").align_(\center)
|
|
|
|
), nil);
|
|
|
|
), nil);
|
|
|
|
tracks = {arg part;
|
|
|
|
tracks = {arg part;
|
|
|
@ -215,13 +217,13 @@
|
|
|
|
VLayout(
|
|
|
|
VLayout(
|
|
|
|
HLayout(
|
|
|
|
HLayout(
|
|
|
|
Slider(view).value_(0.8).action_(
|
|
|
|
Slider(view).value_(0.8).action_(
|
|
|
|
{arg v; partVols[part] = v.value * 1.25; ~play.set(partAbbr[part] ++ "Vol", partVols[part])}),
|
|
|
|
{arg v; partVols[part] = v.value * 1.25; ~play.set(partAbbr[part] ++ "Vol", partVols[part])}.inEnvir),
|
|
|
|
trackIndicators[part]),
|
|
|
|
trackIndicators[part]),
|
|
|
|
Button(view).states_([["mute", Color.black], ["mute", Color.black, Color.grey]]).action_(
|
|
|
|
Button(view).states_([["mute", Color.black], ["mute", Color.black, Color.grey]]).action_(
|
|
|
|
{arg v; partMutes[part] = (1 - v.value).abs; ~play.set(partAbbr[part] ++ "Mute", partMutes[part])}),
|
|
|
|
{arg v; partMutes[part] = (1 - v.value).abs; ~play.set(partAbbr[part] ++ "Mute", partMutes[part])}.inEnvir),
|
|
|
|
StaticText(view).string_("pan").align_(\center),
|
|
|
|
StaticText(view).string_("pan").align_(\center),
|
|
|
|
Knob(view).value_(0.5).action_(
|
|
|
|
Knob(view).value_(0.5).action_(
|
|
|
|
{arg v; partPans[part] = v.value * 2 - 1; ~play.set(partAbbr[part] ++ "Pan", partPans[part])}),
|
|
|
|
{arg v; partPans[part] = v.value * 2 - 1; ~play.set(partAbbr[part] ++ "Pan", partPans[part])}.inEnvir),
|
|
|
|
StaticText(view).string_(trackNames[part]).align_(\center)
|
|
|
|
StaticText(view).string_(trackNames[part]).align_(\center)
|
|
|
|
),
|
|
|
|
),
|
|
|
|
nil)
|
|
|
|
nil)
|
|
|
@ -231,9 +233,9 @@
|
|
|
|
win.layout = VLayout(
|
|
|
|
win.layout = VLayout(
|
|
|
|
HLayout(
|
|
|
|
HLayout(
|
|
|
|
transportButton = Button().states_([["transport", Color.white, Color.grey], ["transport", Color.black]]).action_(
|
|
|
|
transportButton = Button().states_([["transport", Color.white, Color.grey], ["transport", Color.black]]).action_(
|
|
|
|
{tabButtonReset.value; transportButton.value = 0; tabs.index = 0 }).value_(0),
|
|
|
|
{tabButtonReset.value; transportButton.value = 0; tabs.index = 0 }.inEnvir).value_(0),
|
|
|
|
mixerButton = Button().states_([["mixer", Color.white, Color.grey], ["mixer", Color.black]]).action_(
|
|
|
|
mixerButton = Button().states_([["mixer", Color.white, Color.grey], ["mixer", Color.black]]).action_(
|
|
|
|
{tabButtonReset.value; mixerButton.value = 0; tabs.index = 1 }).value_(1)),
|
|
|
|
{tabButtonReset.value; mixerButton.value = 0; tabs.index = 1 }.inEnvir).value_(1)),
|
|
|
|
tabs = StackLayout(masterView.value, faderView.value));
|
|
|
|
tabs = StackLayout(masterView.value, faderView.value));
|
|
|
|
};
|
|
|
|
};
|
|
|
|
)
|
|
|
|
)
|