-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathinterpret.pl
94 lines (68 loc) · 1.81 KB
/
interpret.pl
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
use Time::HiRes qw(usleep);
use Net::OpenSoundControl::Server;
use Net::OpenSoundControl::Client;
#usage: interpret.pl $filename $OSC_listenPort
my $fname = shift @ARGV;
my $port = shift @ARGV;
my $seqPos = -1;
open(IN, $fname);
@lines = ();
while(<IN>) {
$line = $_;
chomp($line);
push(@lines, $line);
}
close(IN);
my $sTime = 250; # 250 ms
my $indx = 0;
my $synced = 0;
#&connectOSC(9999);
my $client;
$client = Net::OpenSoundControl::Client->new(
Host => "127.0.0.1", Port => 9999)
or die "Could not start client: $@\n";
$client->send(['/hello', 'i', $port]);
print "Waiting for connection response\n";
my $once = 1;
$server = Net::OpenSoundControl::Server->new(
Port => $port, Handler => \&handler) or
die "Could not start server: $@\n";
$server->readloop();
#handles osc messages:
sub handler {
my ($sender, $message) = @_;
if($$message[0] eq '/sync/start') { $seqPos = 0; $synced = 1; }
else { $seqPos++; }
if(!$synced) { return; }
if($once) { $once = 0; &intro; }
print "Tick $seqPos.\n";
$indx = $seqPos;
#print $lines[$indx] . "\n";
eval($lines[$indx]);
#usleep($sTime * 1000 * $timeMult);
$indx++;
if($indx == scalar(@lines)) { $indx = 0; }
}
sub sendOSC {
#print "Sending OSC";
my @msg = @_;
if($client) {
$client->send(@msg);
}
}
sub connectOSC {
#print "Connecting OSC";
my $port = shift;
if($client) { return; } #already connected
$client = Net::OpenSoundControl::Client->new(
Host => "127.0.0.1", Port => $port)
or die "Could not start client: $@\n";
}
sub intro {
&connectOSC(9999);
sendOSC(['/vol/stutter', 'f', 0.4]);
for(my $i = 0; $i < 20; $i++) { # do this for 10 s
usleep(1000 * 500);
sendOSC(['/stutter/width', 'f', 0.05 * $i]);
}
}