chord chooser

This commit is contained in:
Richard Sewell 2015-08-16 12:42:37 +00:00
parent a162e95a38
commit 18abe36137
1 changed files with 29 additions and 16 deletions

View File

@ -17,6 +17,15 @@ gps = Gps::Receiver.create('gpsd',:host => 'localhost', :port => 2947)
gps.start gps.start
chords = [:e1, :e2, :e3, :e4, :e5, :c2, :c3, :c4, :c5, :a1, :a2, :a3, :a4, :a5,]
define :chooseChord do |chooser|
i = chooser % chords.size
c = chords[i];
print c
return c
end
define :gpsSatelliteCount do define :gpsSatelliteCount do
s = 0; s = 0;
if gps != nil && gps.satellites != nil && gps.satellites != 0 if gps != nil && gps.satellites != nil && gps.satellites != 0
@ -30,8 +39,8 @@ end
define :gotFix do define :gotFix do
g = false; g = false;
print "gps in gotFix" #print "gps in gotFix"
print gps #print gps
if gps != nil if gps != nil
g = gps.latitude != nil && gps.latitude != 0 g = gps.latitude != nil && gps.latitude != 0
@ -46,8 +55,8 @@ define :lat do
if gps != nil && gps.latitude != nil if gps != nil && gps.latitude != nil
l = gps.latitude l = gps.latitude
end end
print "lat" #print "lat"
print l #print l
return l return l
end end
@ -57,22 +66,22 @@ define :lon do
if gps != nil && gps.longitude != nil if gps != nil && gps.longitude != nil
l = gps.longitude l = gps.longitude
end end
print "lon" #print "lon"
print l #print l
return l return l
end end
define :latInt do define :latInt do
l = lat().abs * 10**9 l = lat().abs * 10**9
print "latInt" #print "latInt"
print l #print l
return l return l
end end
define :lonInt do define :lonInt do
l = lon().abs * 10**9 l = lon().abs * 10**9
print "lonInt" #print "lonInt"
print l #print l
return l return l
end end
@ -115,6 +124,8 @@ define :playTune do
print ":playTune" print ":playTune"
cue :foo cue :foo
loopChord = chooseChord( lonInt() % 656753 )
4.times do |i| 4.times do |i|
long = lonInt() % 100 long = lonInt() % 100
use_random_seed long use_random_seed long
@ -123,7 +134,7 @@ define :playTune do
use_random_seed lonInt() % 257867 # Use a selection of large primes to get different seeds for each loop use_random_seed lonInt() % 257867 # Use a selection of large primes to get different seeds for each loop
4.times do 4.times do
use_synth :tb303 use_synth :tb303
play chord(:e3, :minor).choose, attack: 0, release: 0.1, cutoff: rrand_i(50, 90) + i * 10 play chord(loopChord, :minor).choose, attack: 0, release: 0.1, cutoff: rrand_i(50, 90) + i * 10
sleep 0.125 sleep 0.125
end end
end end
@ -135,13 +146,14 @@ define :playTune do
cue :bar cue :bar
use_synth :tb303 use_synth :tb303
loopChord = chooseChord( lonInt() % 10719881 )
8.times do |i| 8.times do |i|
sample :bd_fat, amp: 5 sample :bd_fat, amp: 5
use_random_seed latInt() % 1412041 use_random_seed latInt() % 1412041
4.times do 4.times do
gspeed = speed().modulo(1) gspeed = speed().modulo(1)
puts gspeed #puts gspeed
play chord(:e3, :minor).choose, attack: 0, release: 0.05, cutoff: rrand_i(70, 98) + i, res: gspeed play chord(loopChord, :minor).choose, attack: 0, release: 0.05, cutoff: rrand_i(70, 98) + i, res: gspeed
sleep 0.125 sleep 0.125
end end
end end
@ -152,13 +164,14 @@ define :playTune do
cue :baz cue :baz
with_fx :reverb, mix: 0.3 do |r| with_fx :reverb, mix: 0.3 do |r|
loopChord = chooseChord( latInt() % 3101473 )
8.times do |m| 8.times do |m|
sample :bd_fat, amp: 5 sample :bd_fat, amp: 5
use_random_seed (lonInt() + latInt()) % 2256197 use_random_seed (lonInt() + latInt()) % 2256197
4.times do 4.times do
control r, mix: 0.3 + (0.5 * (m.to_f / 32.0)) unless m == 0 if m % 8 == 0 control r, mix: 0.3 + (0.5 * (m.to_f / 32.0)) unless m == 0 if m % 8 == 0
use_synth :prophet use_synth :prophet
play chord(:a3, :minor).choose, attack: 0, release: 0.08, cutoff: rrand_i(110, 130) play chord(loopChord, :minor).choose, attack: 0, release: 0.08, cutoff: rrand_i(110, 130)
sleep 0.125 sleep 0.125
end end
end end
@ -170,7 +183,7 @@ define :playTune do
cue :quux cue :quux
in_thread do in_thread do
loopChord = chooseChord( lonInt() % 480967 )
4.times do 4.times do
sample :bd_fat, amp: 5 sample :bd_fat, amp: 5
slat = latInt().modulo(1) + 0.1 slat = latInt().modulo(1) + 0.1
@ -179,7 +192,7 @@ define :playTune do
with_fx :slicer, mix: 0.75, wave: 3, phase: slat do with_fx :slicer, mix: 0.75, wave: 3, phase: slat do
4.times do 4.times do
use_synth :tb303 use_synth :tb303
play chord(:e3, :major).choose, attack: 0, release: 0.1, cutoff: rrand(50, 100) play chord(loopChord, :major).choose, attack: 0, release: 0.1, cutoff: rrand(50, 100)
sleep 0.25 sleep 0.25
end end
end end