You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
284 lines
9.5 KiB
Plaintext
284 lines
9.5 KiB
Plaintext
(
|
|
//busses
|
|
~masterBus = Bus.audio(s, 1);
|
|
~guitarBus = Bus.audio(s, 1);
|
|
~accompHighBus = Bus.audio(s, 1);
|
|
~accompLowLowerBusA = Bus.audio(s, 1);
|
|
~accompLowUpperBusA = Bus.audio(s, 1);
|
|
~accompLowLowerBusB = Bus.audio(s, 1);
|
|
~accompLowUpperBusB = Bus.audio(s, 1);
|
|
|
|
SynthDef(\masterPlayerControl, {
|
|
arg sel = 0,
|
|
masterVol = 1, masterMute = 1,
|
|
guitarVol = 1, guitarPan = 0, guitarMute = 1,
|
|
accompHighVol = 1, accompHighPan = 0, accompHighMute = 1,
|
|
accompLowLowerVol = 1, accompLowLowerPan = 0, accompLowLowerMute = 1,
|
|
accompLowUpperVol = 1, accompLowUpperPan = 0, accompLowUpperMute = 1;
|
|
var guitarSig, accompHighSig, accompLowLowerSig, accompLowUpperSig,
|
|
guitarSigPanned, accompHighSigPanned, accompLowLowerSigPanned, accompLowUpperSigPanned,
|
|
masterSig, imp;
|
|
|
|
//guitarSig = SelectX.ar(sel, [In.ar(~guitarBusA), In.ar(~guitarBusB)]) * guitarVol;
|
|
//accompHighSig = SelectX.ar(sel, [In.ar(~accompHighBusA), In.ar(~accompHighBusB)]) * accompHighVol;
|
|
//accompLowSig = SelectX.ar(sel, [In.ar(~accompLowBusA), In.ar(~accompLowBusB)]) * accompLowVol;
|
|
|
|
guitarSig = In.ar(~guitarBus) * guitarVol;
|
|
accompHighSig = In.ar(~accompHighBus) * accompHighVol;
|
|
//accompLowSig = SelectX.ar(sel, [In.ar(~accompLowBusA), In.ar(~accompLowBusB)]) * accompLowVol;
|
|
accompLowLowerSig = Mix.ar(
|
|
[
|
|
In.ar(~accompLowLowerBusA) * EnvGen.kr(Env.asr(0.001, 1, 0.1), (sel + 1) % 2),
|
|
In.ar(~accompLowLowerBusB) * EnvGen.kr(Env.asr(0.001, 1, 0.1), sel)
|
|
]
|
|
) * accompLowLowerVol;
|
|
accompLowUpperSig = Mix.ar(
|
|
[
|
|
In.ar(~accompLowUpperBusA) * EnvGen.kr(Env.asr(0.001, 1, 0.1), (sel + 1) % 2),
|
|
In.ar(~accompLowUpperBusB) * EnvGen.kr(Env.asr(0.001, 1, 0.1), sel)
|
|
]
|
|
) * accompLowUpperVol;
|
|
|
|
guitarSigPanned = Pan2.ar(guitarSig * guitarMute, guitarPan);
|
|
accompHighSigPanned = Pan2.ar(accompHighSig * accompHighMute, accompHighPan);
|
|
accompLowLowerSigPanned = Pan2.ar(accompLowLowerSig * accompLowLowerMute, accompLowLowerPan);
|
|
accompLowUpperSigPanned = Pan2.ar(accompLowUpperSig * accompLowUpperMute, accompLowUpperPan);
|
|
masterSig = Mix.ar([guitarSigPanned, accompHighSigPanned, accompLowLowerSigPanned, accompLowUpperSigPanned]) * masterVol * masterMute;
|
|
|
|
Out.ar(0, masterSig);
|
|
|
|
imp = Impulse.kr(10);
|
|
SendReply.kr(imp,
|
|
'/masterLevels',
|
|
values: [Amplitude.kr(masterSig)]);
|
|
SendReply.kr(imp,
|
|
'/trackLevels',
|
|
values:
|
|
[
|
|
Amplitude.kr(guitarSig), Amplitude.kr(accompHighSig),
|
|
Amplitude.kr(accompLowLowerSig), Amplitude.kr(accompLowUpperSig),
|
|
DC.ar(0)
|
|
]
|
|
);
|
|
}).add;
|
|
|
|
|
|
SynthDef(\transport, {arg measure = 0, beat = 0, gate = 1, dur = 1;
|
|
measure.poll;
|
|
beat.poll;
|
|
SendReply.kr(Impulse.kr(0) * (measure > 0) * (beat > 0),'/measureClock', values: [measure, beat]);
|
|
SendReply.kr(TDelay.kr(Impulse.kr(0) * (measure > 0) * (beat > 0), 0.25),'/measureClockReset');
|
|
SendReply.kr(Impulse.kr(0) * (measure < 1) * (beat < 1),'/playNextSubsection');
|
|
EnvGen.kr(Env.sine(dur), gate, doneAction: 2);
|
|
}).add;
|
|
|
|
|
|
//~~~~karplus
|
|
SynthDef(\karplus, {arg freq, gate = 1, amp = 0.5, bus;
|
|
Out.ar(bus,
|
|
Pluck.ar(WhiteNoise.ar(0.1), Impulse.kr(0), 220.reciprocal, freq.reciprocal, 10, coef:0) *
|
|
Linen.kr(gate, doneAction: 2) * amp
|
|
)
|
|
}).add;
|
|
|
|
|
|
//~~~~accompaniment
|
|
SynthDef(\accompBass, {arg freq1 = 100, freq2 = 100, gate = 1, amp = 0.5, busLower, busUpper, cutoff = 0;
|
|
var env, lower, upper;
|
|
env = EnvGen.kr(Env.perc(0.1, 10, level: amp), Impulse.kr(0) + Changed.kr(freq2));
|
|
lower = SinOsc.ar(freq1, 0, 0.5) * env;
|
|
upper = SinOsc.ar(freq2, 0, 0.5) * env;
|
|
//EnvGen.kr(Env.cutoff(0.1, level: amp), cutoff);
|
|
Out.ar(busLower, lower);
|
|
Out.ar(busUpper, upper)
|
|
}).add;
|
|
|
|
|
|
//this is not releasing properly
|
|
SynthDef(\accompTreble, {arg freq, gate = 1, sustain, amp, bus;
|
|
var treble;
|
|
treble = SinOsc.ar(
|
|
freq, 0,
|
|
EnvGen.kr(Env.sine(sustain, amp * 0.1), gate, doneAction: 2));
|
|
Out.ar(bus, treble)
|
|
}).add;
|
|
|
|
|
|
~droneBus = Bus.audio(s, 1);
|
|
SynthDef(\drone, { arg out=0, freq=440, amp=0.1, pan=0, gate=1, bus;
|
|
var z;
|
|
z = LPF.ar(
|
|
Mix.new(VarSaw.ar(freq + [0, Rand(-0.4,0.0), Rand(0.0,0.4)], 0, 0.3, 0.3)),
|
|
XLine.kr(Rand(4000,5000), Rand(2500,3200), 1)
|
|
) * Linen.kr(gate, 0.01, 0.7, 0.3, 2);
|
|
Out.ar(bus, Pan2.ar(z, pan, amp));
|
|
}, [\ir]).add;
|
|
|
|
|
|
SynthDef(\droneOut, {arg gate, bus;
|
|
Out.ar([0, 1], Clip.ar(In.ar(bus, 1), -1, 1) * 0.1 * EnvGen.ar(Env.asr(20, 1, 20), gate))
|
|
}
|
|
).add;
|
|
|
|
|
|
~dronePattern = Pbind(
|
|
\instrument, \drone,
|
|
\amp, 0.5,
|
|
\dur, 0.02,
|
|
\sustain, 0.05,
|
|
\freq, Pseq(3000.collect({[[62.midicps, 250], [62.midicps, 250].choose].wchoose([10, 1].normalizeSum)}).flat / 2),
|
|
\bus, ~droneBus.index
|
|
);
|
|
|
|
|
|
OSCFunc({ arg msg, time;
|
|
{~updateSection.value(1, false)}.defer;
|
|
},'/playNextSubsection', s.addr);
|
|
|
|
//~~~~gen music
|
|
~genPatterns = {arg guitarSeqIn, accompLowSeqIn, accompHighSeqIn, sectionSeqIn, tempo = 0.08;
|
|
var calcSustains, genSectionSec, sectionLimits, measureCount;
|
|
|
|
//~~~~helper sus function
|
|
calcSustains = {arg stringSeq, durSeq;
|
|
var res = [];
|
|
stringSeq.size.do({arg index;
|
|
var curString, dur, count;
|
|
if(stringSeq[index].isRest.not, {
|
|
curString = stringSeq[index];
|
|
dur = durSeq[index];
|
|
count = 1;
|
|
while({(stringSeq[(index + count).clip(0, stringSeq.size - 1)] != curString) &&
|
|
(dur < 16) && (count < 100)}, {
|
|
dur = dur + durSeq[(index + count).clip(0, durSeq.size - 1)];
|
|
count = count + 1;
|
|
});
|
|
res = res.add(dur.clip(0, 16));
|
|
}, {
|
|
res.add(Rest());
|
|
});
|
|
});
|
|
res
|
|
};
|
|
|
|
genSectionSec = {arg seq, startTime, endTime, type;
|
|
var durSum, resSeqs, inSecs, mult;
|
|
//sectionSeq.postln;
|
|
durSum = 0;
|
|
resSeqs = [];
|
|
seq.do({arg item;
|
|
if((durSum >= startTime) && (durSum < endTime), {
|
|
var dur = durSum - startTime;
|
|
if((resSeqs.size == 0) && (dur > 0), {
|
|
switch(type,
|
|
0, {resSeqs = resSeqs.add([Rest(-1), Rest(-1), dur])},
|
|
1, {resSeqs = resSeqs.add([Rest(-1), Rest(-1), dur])},
|
|
2, {resSeqs = resSeqs.add([Rest(-1), dur, dur])})
|
|
});
|
|
resSeqs = resSeqs.add(item);
|
|
});
|
|
durSum = durSum + if(type == 2, {item[1]}, {item[2]});
|
|
});
|
|
//if(type == 1, {resSeqs = resSeqs.add([0, 0, 16])});
|
|
resSeqs.postln;
|
|
resSeqs
|
|
};
|
|
|
|
measureCount = 0;
|
|
sectionLimits = [];
|
|
sectionSeqIn.slice(nil, 0).add(100000).doAdjacentPairs({arg a, b; sectionLimits = sectionLimits.add([a, b])});
|
|
sectionLimits.collect({arg timePair, secIndex;
|
|
var startTime, endTime, beatLength, beatSeq, measureSeq,
|
|
guitarSecSeq, accompLowSecSeq, accompHighSecSeq,
|
|
stringSeq, fretSeq, durSeq, susSeq, trigSeq, openStrings, pattern;
|
|
|
|
startTime = timePair[0];
|
|
endTime = timePair[1];
|
|
|
|
if((secIndex % 4) == 0, {measureCount = 0});
|
|
beatLength = (endTime - startTime) / 8;
|
|
beatSeq = ((beatLength / 2) - 1).asInteger.collect({[1, 2]});
|
|
beatSeq = if((beatLength % 2) == 0, {beatSeq.add([1, 2])}, {beatSeq.add([1, 2, 3])});
|
|
measureSeq = measureCount + beatSeq.collect({arg measure, mIndex; measure.collect({mIndex + 1})}).flat;
|
|
measureCount = measureSeq.last;
|
|
beatSeq = beatSeq.flat;
|
|
measureSeq = measureSeq.add(0);
|
|
beatSeq = beatSeq.add(0);
|
|
|
|
guitarSecSeq = genSectionSec.value(guitarSeqIn, startTime, endTime, 0);
|
|
accompLowSecSeq = genSectionSec.value(accompLowSeqIn, startTime, endTime, 1);
|
|
accompHighSecSeq = genSectionSec.value(accompHighSeqIn, startTime, endTime, 2);
|
|
|
|
if(accompHighSecSeq == [], {accompHighSecSeq = [[Rest(-1), 1, 0], [Rest(-1), 1, 0]]});
|
|
|
|
//guitarSecSeq.postln;
|
|
//accompLowSecSeq.postln;
|
|
//accompHighSecSeq.postln;
|
|
|
|
openStrings = [1/1, 3/2, 2/1, 5/2, 35/12, 7/2];
|
|
stringSeq = guitarSecSeq.slice(nil, 0);
|
|
fretSeq = guitarSecSeq.slice(nil, 1);
|
|
durSeq = guitarSecSeq.slice(nil, 2);
|
|
susSeq = calcSustains.value(stringSeq, durSeq);
|
|
|
|
susSeq.last.postln;
|
|
durSeq.last.postln;
|
|
accompLowSecSeq.last.postln;
|
|
accompHighSecSeq.last.postln;
|
|
//trigSeq = guitarSeq.slice(nil, 3);
|
|
//~player = EventPatternProxy.new;
|
|
pattern = EventPatternProxy.new;
|
|
pattern.source = Ppar([
|
|
Pbind(
|
|
\instrument, \karplus,
|
|
\amp, 0.3,
|
|
\dur, Pseq(durSeq * tempo),
|
|
\sustain, Pseq(susSeq * tempo),
|
|
\freq, Pseq(stringSeq.collect({arg string, index;
|
|
if(string.isRest, {Rest()}, {
|
|
((62.midicps * openStrings[string]).cpsmidi + fretSeq[index]).midicps})})),
|
|
//\bus, if(secIndex % 2 == 0, {~guitarBusA.index}, {~guitarBusB.index})),
|
|
\bus, ~guitarBus.index),
|
|
if(accompLowSecSeq.size > 1, {
|
|
Pmono(
|
|
\accompBass,
|
|
\amp, 0.5,
|
|
\freq1, Pseq(accompLowSecSeq.slice(nil, 0)),
|
|
\freq2, Pseq(accompLowSecSeq.slice(nil, 1)),
|
|
\dur, Pseq(accompLowSecSeq.slice(nil, 2)) * tempo,
|
|
//\cutoff, Pseq(accompLowSecSeq.drop(-1).size.collect({0}).add(1)),
|
|
\busLower, if(secIndex % 2 == 0, {~accompLowLowerBusA.index}, {~accompLowLowerBusB.index}),
|
|
\busUpper, if(secIndex % 2 == 0, {~accompLowUpperBusA.index}, {~accompLowUpperBusB.index}))
|
|
//\bus, ~accompLowBus)
|
|
}, {
|
|
Pmono(
|
|
\accompBass,
|
|
\amp, 0.5,
|
|
\freq1, Pseq([accompLowSecSeq[0][0]]),
|
|
\freq2, Pseq([accompLowSecSeq[0][1]]),
|
|
\dur, Pseq([accompLowSecSeq[0][2]]) * tempo,
|
|
//\cutoff, Pseq(accompLowSecSeq.drop(-1).size.collect({0}).add(1)),
|
|
\busLower, if(secIndex % 2 == 0, {~accompLowLowerBusA.index}, {~accompLowLowerBusB.index}),
|
|
\busUpper, if(secIndex % 2 == 0, {~accompLowUpperBusA.index}, {~accompLowUpperBusB.index}))
|
|
//\bus, ~accompLowBus)
|
|
}),
|
|
Pbind(
|
|
\instrument, \accompTreble,
|
|
\freq, Pseq(accompHighSecSeq.slice(nil, 0)),
|
|
\dur, Pseq(accompHighSecSeq.slice(nil, 1) * tempo),
|
|
\sustain, Pseq(accompHighSecSeq.slice(nil, 2) * tempo),
|
|
\amp, 0.5,
|
|
//\bus, if(secIndex % 2 == 0, {~accompHighBusA.index}, {~accompHighBusB.index})),
|
|
\bus, ~accompHighBus.index),
|
|
Pbind(
|
|
\instrument, \transport,
|
|
\measure, Pseq(measureSeq),
|
|
\beat, Pseq(beatSeq),
|
|
\dur, tempo * 8
|
|
)
|
|
]);
|
|
pattern
|
|
});
|
|
};
|
|
|
|
) |