This repository has been archived by the owner on Mar 16, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.ck
231 lines (210 loc) · 5.84 KB
/
config.ck
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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
////////////////////////////////////////////////////////////
// Final Project
// Config Module
////////////////////////////////////////////////////////////
// Slork 2012
// Mayank Sanganeria, Jiffer Harriman, Hunter McCurry
////////////////////////////////////////////////////////////
// Holds common information
public class Config
{
// Config mode
0 => static int mode;
// Number of nodes:
16 => static int NUMNODES;
// Name of nodes, update before each run
fun static string host_name(int index)
{
if (mode == 1)
{
return "localhost";
}
else if (mode == 2)
{
if (index == 0)
return "jiffer8.local";
if (index == 1)
return "Mayank.local";
}
else // mode 0
{
if (index == 0)
{
return "albacore.local";
}
else if (index == 1)
{
return "banhmi.local";
}
else if (index == 2)
{
return "chowder.local";
}
else if (index == 3)
{
return "donut.local";
}
else if (index == 4)
{
return "empanada.local";
}
else if (index == 5)
{
return "foiegras.local";
}
else if (index == 6)
{
return "gelato.local";
}
else if (index == 7)
{
return "hamburger.local";
}
else if (index == 8)
{
return "kimchi.local";
}
else if (index == 9)
{
return "lasagna.local";
}
else if (index == 10)
{
return "meatloaf.local";
}
else if (index == 11)
{
return "nachos.local";
}
else if (index == 12)
{
return "quinoa.local";
}
else if (index == 13)
{
return "ratatouille.local";
}
else if (index == 14)
{
return "spam.local";
}
else if (index == 15)
{
return "tiramisu.local";
}
else
{
<<< "ERROR: Requested node index too high!" >>>;
return "";
}
}
}
// Name of server, update before each run
fun static string server_name()
{
if (mode == 1)
{
return "localhost";
}
else if (mode == 2)
{
return "Mayank.local";
}
else
{
return "waffle.local";
}
}
// Different modes we can be in:
0 => static int MODE_IDLE;
1 => static int MODE_ACTIVE;
// OSC ports:
6470 => static int server_to_node_port; // send status pulse
6471 => static int node_to_server_port; // send state request
6472 => static int node_to_server_trigger_port; // send trigger
6473 => static int node_to_synth_port; // make sound
6474 => static int server_to_display_port; // send data to visualizer
// Delay between OSC server burst messages, in ms
// 1 => static int osc_burst_delay;
// OSC message definitions:
fun static string osc_message_state()
{
return "/state";
}
fun static string osc_message_state_data()
{
// mahine_num, next_node, sequence_length, sequence_index, pulses_since_banged, wail_mode, section
return "i i i i i i i ";
}
fun static string osc_message_node_to_synth()
{
return "/synth";
}
fun static string osc_message_node_to_synth_data()
{
// Indicates sequence index, sequence length, pulses_since_banged, next_node, do_wail, section, machine_num
return "i i i i i i i";
}
fun static string osc_message_server_to_display_connections()
{
return "/display_connections";
}
fun static string osc_message_server_to_display_connections_data()
{
// state of all computers - node connected to
"" => string data;
for( 0 => int i; i < NUMNODES; i++ )
"i " +=>data;
return data;
}
fun static string osc_message_server_to_display_playing()
{
return "/display_playing";
}
fun static string osc_message_server_to_display_playing_data()
{
// state of all computers - playing or not
"" => string data;
for( 0 => int i; i < NUMNODES; i++ )
"i " +=>data;
return data;
}
fun static string osc_message_server_to_display_transition()
{
return "/disp_transition";
}
fun static string osc_message_server_to_display_transition_data()
{
// node from - node to
return "i i";
}
fun static string osc_message_server_to_display_pulses_since_banged()
{
return "/disp_pulses_since_banged";
}
fun static string osc_message_server_to_display_pulses_since_banged_data()
{
// state of all computers - pulses since banged
"" => string data;
for( 0 => int i; i < NUMNODES; i++ )
"i " +=>data;
return data;
}
}
// Instantiate to initialize static variables:
Config config;
if (me.args() > 0)
{
if (me.arg(0) == "local_test")
{
<<< "Setting up local test version" >>>;
1 => Config.mode;
1 => Config.NUMNODES;
}
else if (me.arg(0) == "two_test")
{
<<< "Setting up 2 computer test version" >>>;
2 => Config.mode;
2 => Config.NUMNODES;
}
}