Merge branch 'master' of https://github.com/sugarcubes/SugarCubes
[SugarCubes.git] / AlexGreen.pde
1 class SineSphere extends DPat {
2 float modelrad = sqrt((model.xMax)*(model.xMax) + (model.yMax)*(model.yMax) + (model.zMax)*(model.zMax));
3 //PVector modelcenter = new PVector(model.xMax, model.yMax, model.zMax);
4 Pick Sshape;
5
6 class Sphery {
7 float f1xcenter, f1ycenter, f1zcenter, f2xcenter , f2ycenter, f2zcenter; //second three are for an ellipse with two foci
8 private SinLFO vibration;
9 private SinLFO surface;
10 private SinLFO vx;
11 private SinLFO xbounce;
12 public SinLFO ybounce;
13 private SinLFO zbounce;
14 float vibration_min, vibration_max, vperiod;
15 public BasicParameter widthparameter;
16 public BasicParameter huespread;
17 public BasicParameter bouncerate;
18 public BasicParameter bounceamp;
19
20
21
22 public Sphery(float f1xcenter, float f1ycenter, float f1zcenter, float vibration_min, float vibration_max, float vperiod)
23 {
24 this.f1xcenter = f1xcenter;
25 this.f1ycenter = f1ycenter;
26 this.f1zcenter = f1zcenter;
27 this.vibration_min = vibration_min;
28 this.vibration_max = vibration_max;
29 this.vperiod = vperiod;
30 addParameter(bounceamp = new BasicParameter("Amp", .5));
31 addParameter(bouncerate = new BasicParameter("Rate", .5)); //ybounce.modulateDurationBy(bouncerate);
32 addParameter(widthparameter = new BasicParameter("Width", .1));
33 addParameter(huespread = new BasicParameter("Hue", .2));
34
35 addModulator( vx = new SinLFO(-4000, 10000, 100000)).trigger() ;
36 //addModulator(xbounce = new SinLFO(model.xMax/3, 2*model.yMax/3, 2000)).trigger();
37 addModulator(ybounce= new SinLFO(model.yMax/3, 2*model.yMax/3, 240000./lx.tempo.bpm())).trigger(); //ybounce.modulateDurationBy
38
39 //addModulator(bounceamp); //ybounce.setMagnitude(bouncerate);
40 addModulator( vibration = new SinLFO(vibration_min , vibration_max, 240000./lx.tempo.bpm())).trigger(); //vibration.modulateDurationBy(vx);
41
42 }
43 public Sphery(float f1xcenter, float f1ycenter, float f1zcenter, float f2xcenter, float f2ycenter, float f2zcenter,
44 float vibration_min, float vibration_max, float vperiod)
45 {
46 this.f1xcenter = f1xcenter;
47 this.f1ycenter = f1ycenter;
48 this.f1zcenter = f1zcenter;
49 this.f2xcenter = f2xcenter;
50 this.f2ycenter = f2ycenter;
51 this.f2zcenter = f2zcenter;
52 this.vibration_min = vibration_min;
53 this.vibration_max = vibration_max;
54 this.vperiod = vperiod;
55 //addModulator(xbounce = new SinLFO(model.xMax/3, 2*model.yMax/3, 2000)).trigger();
56 addModulator(ybounce).trigger();
57 addModulator( vibration = new SinLFO(vibration_min , vibration_max, lx.tempo.rampf())).trigger(); //vibration.modulateDurationBy(vx);
58 addParameter(widthparameter = new BasicParameter("Width", .1));
59 addParameter(huespread = new BasicParameter("Hue", .2));
60
61 }
62
63
64
65
66
67 float distfromcirclecenter(float px, float py, float pz, float f1x, float f1y, float f1z)
68 {
69 return dist(px, py, pz, f1x, f1y, f1z);
70 }
71 //void updatespherey(deltaMs, )
72 color spheryvalue (float px, float py, float pz , float f1xc, float f1yc, float f1zc)
73 {
74 //switch(sShpape.cur() ) {}
75 return lx.hsb(constrain(huespread.getValuef()*5*px, 0, 360) , dist(px, py, pz, f1xc, f1yc, f1zc) ,
76 max(0, 100 - 100*widthparameter.getValuef()*abs(dist(px, py, pz, f1xcenter, ybounce.getValuef(), f1zcenter)
77 - vibration.getValuef() ) ) );
78 }
79 color ellipsevalue(float px, float py, float pz , float f1xc, float f1yc, float f1zc, float f2xc, float f2yc, float f2zc)
80 {
81 //switch(sShpape.cur() ) {}
82 return lx.hsb(huespread.getValuef()*5*px, dist(model.xMax-px, model.yMax-py, model.zMax-pz, f1xc, f1yc, f1zc) ,
83 max(0, 100 - 100*widthparameter.getValuef() *
84 abs( (dist(px, py, pz, f1xc, ybounce.getValuef(), f1zc) +
85 (dist(px, py , pz, f2xc, ybounce.getValuef(), f2zc) ) )/2
86 - 1.2*vibration.getValuef() ) ) ) ;
87 }
88
89
90 void run(int deltaMS) { };
91
92 }
93
94
95 final Sphery[] spherys;
96 SineSphere(GLucose glucose)
97 {
98 super(glucose);
99 //Sshape = addPick("Shape", , 1);
100 spherys = new Sphery[] {
101 new Sphery(model.xMax/4, model.yMax/2, model.zMax/2, modelrad/16, modelrad/8, 3000),
102 new Sphery(.75*model.xMax, model.yMax/2, model.zMax/2, modelrad/20, modelrad/10, 2000),
103 new Sphery(model.xMax/2, model.yMax/2, model.zMax/2, modelrad/4, modelrad/8, 2300),
104 };
105
106 }
107
108 // public void onParameterChanged(LXParameter parameter)
109 // {
110
111
112 // for (Sphery s : spherys) {
113 // if (s == null) continue;
114 // double bampv = s.bounceamp.getValue();
115 // double brv = s.bouncerate.getValue();
116 // double tempobounce = lx.tempo.bpm();
117 // if (parameter == s.bounceamp)
118 // {
119 // s.ybounce.setRange(bampv*model.yMax/3 , bampv*2*model.yMax/3, brv);
120 // }
121 // else if ( parameter == s.bouncerate )
122 // {
123 // s.ybounce.setDuration(120000./tempobounce);
124 // }
125 // }
126 // }
127
128 void StartRun(int deltaMs) {
129 float t = lx.tempo.rampf();
130 float bpm = lx.tempo.bpmf();
131 //spherys[1].run(deltaMs);
132 //spherys[2].run(deltaMs);
133 //spherys[3].run(deltaMs);
134
135
136
137
138 }
139 int spheremode = 0;
140
141 // void keyPressed() {
142 // spheremode++;
143 // }
144
145 color CalcPoint(xyz Px)
146 {
147 // if (spheremode == 0 )
148 //{
149 color c = 0;
150 c = blendColor(c, spherys[1].spheryvalue(Px.x, Px.y, Px.z, .75*model.xMax, model.yMax/2, model.zMax/2), ADD);
151 c = blendColor(c, spherys[0].spheryvalue(Px.x, Px.y, Px.z, model.xMax/4, model.yMax/4, model.zMax/2), ADD);
152 c = blendColor(c, spherys[2].spheryvalue(Px.x, Px.y, Px.z, model.xMax/2, model.yMax/2, model.zMax/2),ADD);
153 return c;
154 //}
155 // else if (spheremode == 1)
156 // {
157
158 // color c = 0;
159 // c = blendColor(c, spherys[3].ellipsevalue(Px.x, Px.y, Px.z, model.xMax/4, model.yMax/4, model.zMax/4, 3*model.xMax/4, 3*model.yMax/4, 3*model.zMax/4),ADD);
160 // return c;
161 // }
162 // return lx.hsb(0,0,0);
163 // // else if(spheremode ==2)
164 // { color c = 0;
165 // return lx.hsb(CalcCone( (xyz by = new xyz(0,spherys[2].ybounce.getValuef(),0) ), Px, mid) );
166
167 // }
168
169
170 }
171
172 }
173
174 class CubeCurl extends SCPattern{
175 float CH, CW, diag;
176 ArrayList<PVector> cubeorigin = new ArrayList<PVector>();
177 ArrayList<PVector> centerlist = new ArrayList<PVector>();
178 private SinLFO curl = new SinLFO(0, Cube.EDGE_HEIGHT, 5000 );
179
180 private SinLFO bg = new SinLFO(180, 220, 3000);
181
182 CubeCurl(GLucose glucose){
183 super(glucose);
184 addModulator(curl).trigger();
185 addModulator(bg).trigger();
186 this.CH = Cube.EDGE_HEIGHT;
187 this.CW = Cube.EDGE_WIDTH;
188 this.diag = sqrt(CW*CW + CW*CW);
189
190
191 ArrayList<PVector> centerlistrelative = new ArrayList<PVector>();
192 for (int i = 0; i < model.cubes.size(); i++){
193 Cube a = model.cubes.get(i);
194 cubeorigin.add(new PVector(a.x, a.y, a.z));
195 centerlist.add(centerofcube(i));
196
197 }
198
199 }
200 //there is definitely a better way of doing this!
201 PVector centerofcube(int i) {
202 Cube c = model.cubes.get(i);
203
204 println(" cube #: " + i + " c.x " + c.x + " c.y " + c.y + " c.z " + c.z );
205 PVector cubeangle = new PVector(c.rx, c.ry, c.rz);
206 //println("raw x" + cubeangle.x + "raw y" + cubeangle.y + "raw z" + cubeangle.z);
207 PVector cubecenter = new PVector(c.x + CW/2, c.y + CH/2, c.z + CW/2);
208 println("cubecenter unrotated: " + cubecenter.x + " " +cubecenter.y + " " +cubecenter.z );
209 PVector centerrot = new PVector(cos(c.rx)*CW/2 - sin(c.rx)*CW/2, 0, cos(c.rz)*CW/2 + sin(c.rz)*CW/2);
210 // nCos*(y-o.y) - nSin*(z-o.z) + o.y
211 cubecenter = PVector.add(cubecenter, centerrot);
212 println( " cubecenter.x " + cubecenter.x + " cubecenter.y " + cubecenter.y + " cubecenter.z " + cubecenter.z + " ");
213
214
215 return cubecenter;
216 }
217
218
219 void run(double deltaMs){
220 for (int i =0; i < model.cubes.size(); i++) {
221 Cube c = model.cubes.get(i);
222 float cfloor = c.y;
223
224 // if (i%3 == 0){
225
226 // for (Point p : c.points ){
227 // // colors[p.index]=color(0,0,0);
228 // //float dif = (p.y - c.y);
229 // //colors[p.index] = color( bg.getValuef() , 80 , dif < curl.getValuef() ? 80 : 0, ADD);
230 // }
231 // }
232
233 // else if (i%3 == 1) {
234
235 // for (Point p: c.points){
236 // colors[p.index]=color(0,0,0);
237 // float dif = (p.y - c.y);
238 // // colors[p.index] =
239 // // color(bg.getValuef(),
240 // // map(curl.getValuef(), 0, Cube.EDGE_HEIGHT, 20, 100),
241 // // 100 - 10*abs(dif - curl.getValuef()), ADD );
242 // }
243 // }
244 // else if (i%3 == 2){
245 // centerlist[i].sub(cubeorigin(i);
246 for (Point p: c.points) {
247 PVector pv = new PVector(p.x, p.y, p.z);
248 colors[p.index] =color( constrain(4* pv.dist(centerlist.get(i)), 0, 360) , 50, 100 );
249 // colors[p.index] =color(constrain(centerlist[i].x, 0, 360), constrain(centerlist[i].y, 0, 100), );
250
251
252 }
253
254
255 //}
256
257 }
258 }
259 }
260
261 class HueTestHSB extends SCPattern{
262 BasicParameter HueT = new BasicParameter("Hue", .5);
263 BasicParameter SatT = new BasicParameter("Sat", .5);
264 BasicParameter BriT = new BasicParameter("Bright", .5);
265
266 HueTestHSB(GLucose glucose) {
267 super(glucose);
268 addParameter(HueT);
269 addParameter(SatT);
270 addParameter(BriT);
271 }
272 void run(double deltaMs){
273
274 for (Point p : model.points) {
275 color c = 0;
276 c = blendColor(c, lx.hsb(360*HueT.getValuef(), 100*SatT.getValuef(), 100*BriT.getValuef()), ADD);
277 colors[p.index]= c;
278 }
279 int now= millis();
280 if (now % 1000 <= 20)
281 {
282 println("Hue: " + 360*HueT.getValuef() + "Sat: " + 100*SatT.getValuef() + "Bright: " + 100*BriT.getValuef());
283 }
284 }
285
286 }