final changes
[SugarCubes.git] / DanUtil.pde
CommitLineData
e28f168c 1//----------------------------------------------------------------------------------------------------------------------------------
4404e6b8 2xyz mMax, mCtr, mHalf;
dd00b10f 3int NumApcRows = 5, NumApcCols = 8;
59b99905 4DGlobals DG = new DGlobals();
e28f168c 5
4404e6b8 6boolean btwn (int a,int b,int c) { return a >= b && a <= c; }
7boolean btwn (double a,double b,double c) { return a >= b && a <= c; }
8float interp (float a, float b, float c) { return (1-a)*b + a*c; }
9float randctr (float a) { return random(a) - a*.5; }
10float min (float a, float b, float c, float d) { return min(min(a,b),min(c,d)); }
11
12float distToSeg (float x, float y, float x1, float y1, float x2, float y2) {
13 float A = x - x1, B = y - y1, C = x2 - x1, D = y2 - y1;
14 float dot = A * C + B * D, len_sq = C * C + D * D;
15 float xx, yy,param = dot / len_sq;
16
17 if (param < 0 || (x1 == x2 && y1 == y2)) { xx = x1; yy = y1; }
18 else if (param > 1) { xx = x2; yy = y2; }
19 else { xx = x1 + param * C;
20 yy = y1 + param * D; }
21 float dx = x - xx, dy = y - yy;
22 return sqrt(dx * dx + dy * dy);
23}
24
e28f168c
AG
25
26public class Pick {
3661fcee 27 int NumPicks, Default , CurRow , CurCol ,
6680a94a 28 StartRow, EndRow ;
29 String tag , Desc[] ;
30
32986078 31 Pick (String label, int _Def, int _Num, int nStart, String d[]) {
32 NumPicks = _Num; Default = _Def;
33 StartRow = nStart; EndRow = StartRow + floor((NumPicks-1) / NumApcCols);
6680a94a 34 tag = label; Desc = d;
35 reset();
36 }
3661fcee 37
38 int Cur() { return (CurRow-StartRow)*NumApcCols + CurCol; }
39 String CurDesc() { return Desc[Cur()]; }
40 void reset() { CurCol = Default % NumApcCols; CurRow = StartRow + Default / NumApcCols; }
41
42 boolean set(int r, int c) {
43 if (!btwn(r,StartRow,EndRow) || !btwn(c,0,NumApcCols-1) ||
44 !btwn((r-StartRow)*NumApcCols + c,0,NumPicks-1)) return false;
45 CurRow=r; CurCol=c; return true;
46 }
e28f168c 47}
6680a94a 48
49public class DBool {
50 boolean def, b;
51 String tag;
52 int row, col;
53 void reset() { b = def; }
3661fcee 54 boolean set (int r, int c, boolean val) { if (r != row || c != col) return false; b = val; return true; }
6680a94a 55 DBool(String _tag, boolean _def, int _row, int _col) {
56 def = _def; b = _def; tag = _tag; row = _row; col = _col;
57 }
58}
59
60public class DParam extends BasicParameter {
ef52f20b 61 double dflt;
6680a94a 62 DParam (String label, double value) { super(label,value); dflt=value; }
3661fcee 63 void set (double value) { super.setValue(value); }
b91ad0b6 64 void reset () { super.setValue(dflt); }
e28f168c 65 float Val () { return getValuef(); }
e28f168c 66}
e28f168c
AG
67//----------------------------------------------------------------------------------------------------------------------------------
68public class xyz { float x,y,z;
69 xyz() {x=y=z=0;}
70 xyz(Point p ) {x=p.fx ; y=p.fy; z=p.fz;}
4404e6b8 71 xyz(xyz p ) {set(p); }
e28f168c 72 xyz(float _x,float _y,float _z) {x=_x ; y=_y ; z=_z ;}
dd00b10f 73 void set(Point p ) {x=p.fx ; y=p.fy; z=p.fz;}
3661fcee 74 void set(xyz p ) {x=p.x ; y=p.y ; z=p.z ;}
e28f168c 75 void set(float _x,float _y,float _z) {x=_x ; y=_y ; z=_z ;}
3661fcee 76
4404e6b8 77 void zoomX (float zx) {x = x*zx - mMax.x*(zx-1)/2; }
78 void zoomY (float zy) {y = y*zy - mMax.y*(zy-1)/2; }
3661fcee 79
c9e7c456 80 float distance(xyz b) {return dist(x,y,z,b.x,b.y,b.z); }
4404e6b8 81 float distance(float _x, float _y) {return dist(x,y,_x,_y); }
c9e7c456 82 float dot (xyz b) {return x*b.x + y*b.y + z*b.z; }
6680a94a 83 void add (xyz b) {x += b.x; y += b.y; z += b.z; }
84 void add (float b) {x += b ; y += b ; z += b ; }
3661fcee 85 void subtract(xyz b) {x -= b.x; y -= b.y; z -= b.z; }
4404e6b8 86 void scale (float b) {x *= b ; y *= b ; z *= b ; }
c9e7c456 87
88 void RotateZ (xyz o, float nSin, float nCos) {
89 float nX = nCos*(x-o.x) - nSin*(y-o.y) + o.x;
90 float nY = nSin*(x-o.x) + nCos*(y-o.y) + o.y;
91 x = nX; y = nY;
92 }
dd00b10f 93
c9e7c456 94 void RotateX (xyz o, float nSin, float nCos) {
95 float nY = nCos*(y-o.y) - nSin*(z-o.z) + o.y;
96 float nZ = nSin*(y-o.y) + nCos*(z-o.z) + o.z;
97 y = nY; z = nZ;
98 }
99
100 void RotateY (xyz o, float nSin, float nCos) {
101 float nZ = nCos*(z-o.z) - nSin*(x-o.x) + o.z;
102 float nX = nSin*(z-o.z) + nCos*(x-o.x) + o.x;
103 z = nZ; x = nX;
dd00b10f 104 }
105
4404e6b8 106 void setRand () { x = random(mMax.x); y = random(mMax.y); z = random(mMax.z); }
107 void setNorm () { x /= mMax.x; y /= mMax.y; z /= mMax.z; }
3661fcee 108 void interpolate(float i, xyz d) { x = interp(i,x,d.x); y = interp(i,y,d.y); z = interp(i,z,d.z); }
e28f168c
AG
109}
110//----------------------------------------------------------------------------------------------------------------------------------
dd00b10f 111public class DGlobals {
112 boolean bInit = false;
113 MidiOutput APCOut = null;
114 MidiInput APCIn = null, OxygenIn = null;
6680a94a 115 DPat CurPat = null;
af83f61c 116 int KeyPressed = -1;
e28f168c 117
d5ce8c1c 118
6680a94a 119 float Sliders[] = new float [] {1,0,0,0,0,0,0,0};
af83f61c 120 String SliderText[] = new String[] {"Level", "SpinHue", "Spark", "Xwave", "Ywave", "Trails", "Quant", "??", "??"};
3661fcee 121
122 void SetNoteOn (int row, int col, int clr){ if (APCOut != null) APCOut.sendNoteOn (col, row, clr); }
123 void SetNoteOff (int row, int col, int clr){ if (APCOut != null) APCOut.sendNoteOff (col, row, clr); }
124 void SetKnob (int cc , int c , int v ){ if (APCOut != null) APCOut.sendController (cc , c, v); }
e28f168c 125
3661fcee 126 DBool GetBool (int i) { return (DBool)CurPat.bools .get(i); }
127 Pick GetPick (int i) { return (Pick) CurPat.picks .get(i); }
128 DParam GetParam(int i) { return (DParam) CurPat.params.get(i); }
6680a94a 129
af83f61c 130 float _Level () { return Sliders[0]; }
3661fcee 131 float _SpinHue () { return Sliders[1]; }
132 float _Spark () { return Sliders[2]; }
32986078 133 float _XWave () { return Sliders[3]; }
134 float _YWave () { return Sliders[4]; }
135 float _Trails () { return Sliders[5]; }
af83f61c 136 float _Quantize () { return Sliders[6]; }
e28f168c 137
3661fcee 138 void Init () {
dd00b10f 139 if (bInit) return; bInit=true;
6680a94a 140 for (MidiOutputDevice o: RWMidi.getOutputDevices()) { if (o.toString().contains("APC")) { APCOut = o.createOutput(); break;}}
141 for (MidiInputDevice i: RWMidi.getInputDevices ()) { if (i.toString().contains("APC")) { i.createInput (this); break;}}
c9e7c456 142 }
6680a94a 143
3661fcee 144 boolean isFocused () { return CurPat != null && CurPat == midiEngine.getFocusedDeck().getActivePattern(); }
145 void Deactivate (DPat p) { if (p != CurPat) return; uiDebugText.setText(""); CurPat = null; }
146 void Activate (DPat p) {
59b99905 147 CurPat = p;
dd00b10f 148 while (lx.tempo.bpm() > 40) lx.tempo.setBpm(lx.tempo.bpm()/2);
6680a94a 149 for (int i=0; i<p.params.size(); i++) GetParam(i).reset();
150 for (int i=0; i<p.bools .size(); i++) GetBool (i).reset();
151 for (int i=0; i<p.picks .size(); i++) GetPick (i).reset();
dd00b10f 152 UpdateLights();
e28f168c
AG
153 }
154
3661fcee 155 void SetText() {
6680a94a 156 if (!isFocused()) return;
157 String Text1="", Text2="";
158 for (int i=0; i<CurPat.bools.size(); i++) if (GetBool(i).b) Text1 += " " + GetBool(i).tag + " ";
159 for (int i=0; i<CurPat.picks.size(); i++) Text1 += GetPick(i).tag + ": " + GetPick(i).CurDesc() + " ";
d5ce8c1c 160 for (int i=0; i<8; i++) Text2 += SliderText[i] + ": " + round(100*Sliders[i]) + " ";
6680a94a 161 uiDebugText.setText(Text1, Text2);
162 }
163
dd00b10f 164 void UpdateLights() {
3661fcee 165 if (!isFocused() || APCOut == null) return;
166 for (int i=53;i< 58; i++) for (int j=0; j<NumApcCols; j++) SetNoteOn(i, j, 0);
167 for (int i=48;i< 56; i++) SetKnob(0, i, 0);
168 for (int i=16;i< 20; i++) SetKnob(0, i, 0);
169
32986078 170 for (int i=0; i<CurPat.params.size(); i++) SetKnob ( 0, i<8 ? 48+i : 16 + i - 8, round(GetParam(i).Val()*127) );
3661fcee 171 for (int i=0; i<CurPat.picks .size(); i++) SetNoteOn (GetPick(i).CurRow, GetPick(i).CurCol, 3);
172 for (int i=0; i<CurPat.bools .size(); i++) if (GetBool(i).b) SetNoteOn (GetBool(i).row, GetBool(i).col, 1);
173 else SetNoteOff (GetBool(i).row, GetBool(i).col, 0);
e28f168c 174 }
3661fcee 175
59b99905 176 void controllerChangeReceived(rwmidi.Controller cc) {
177 if (cc.getCC() == 7 && btwn(cc.getChannel(),0,7)) { Sliders[cc.getChannel()] = 1.*cc.getValue()/127.; }
178 }
179
3661fcee 180 void noteOffReceived(Note note) { if (!isFocused()) return;
181 int row = note.getPitch(), col = note.getChannel();
182 for (int i=0; i<CurPat.bools.size(); i++) if (GetBool(i).set(row, col, false)) return;
e28f168c
AG
183 UpdateLights();
184 }
185
3661fcee 186 void noteOnReceived (Note note) { if (!isFocused()) return;
187 int row = note.getPitch(), col = note.getChannel();
188 for (int i=0; i<CurPat.picks.size(); i++) if (GetPick(i).set(row, col)) return;
189 for (int i=0; i<CurPat.bools.size(); i++) if (GetBool(i).set(row, col, true)) return;
af83f61c 190 if (row == 52) { KeyPressed = col; return; }
191 println("row: " + row + " col: " + col);
e28f168c 192 }
dd00b10f 193}
194//----------------------------------------------------------------------------------------------------------------------------------
195public class DPat extends SCPattern
196{
d5ce8c1c 197 ArrayList picks = new ArrayList(); // should be ArrayList<Pick> picks = new ArrayList<Pick>();
6680a94a 198 ArrayList params = new ArrayList();
199 ArrayList bools = new ArrayList();
3661fcee 200 int nMaxRow = 53;
dd00b10f 201 float zSpinHue = 0;
6680a94a 202 float LastQuant = -1, LastJog = -1;
32986078 203 float[] xWaveNz, yWaveNz;
dd00b10f 204 int nPoint , nPoints;
4404e6b8 205 xyz xyzJog = new xyz(), vT1 = new xyz(), vT2 = new xyz();
206 xyz modmin;
af83f61c 207
dd00b10f 208 float NoiseMove = random(10000);
af83f61c 209 DParam pRotX, pRotY, pRotZ, pSpin, pSharp, pSaturate, pTransX, pTransY;
210
211 DBool pXsym, pYsym, pRsym, pXdup, pXtrip, pJog, pKey;
dd00b10f 212 float Dist (xyz a, xyz b) { return dist(a.x,a.y,a.z,b.x,b.y,b.z); }
32986078 213 int c1c (float a) { return round(100*constrain(a,0,1)); }
214 float interpWv(float i, float[] vals) { return interp(i-floor(i), vals[floor(i)], vals[ceil(i)]); }
215
4404e6b8 216 float CalcCone (xyz v1, xyz v2, xyz c) { vT1.set(v1); vT2.set(v2); vT1.subtract(c); vT2.subtract(c);
217 return degrees( acos ( vT1.dot(vT2) / (sqrt(vT1.dot(vT1)) * sqrt(vT2.dot(vT2)) ) )); }
32986078 218
219 void StartPattern() { }
dd00b10f 220 void StartRun(double deltaMs) { }
221 color CalcPoint(xyz p) { return color(0,0,0); }
59b99905 222 boolean IsActive() { return this == DG.CurPat; }
223 boolean IsFocused() { return this == midiEngine.getFocusedDeck().getActivePattern(); }
224 void onInactive() { UpdateState(); }
32986078 225 void onActive () { UpdateState(); StartPattern(); }
59b99905 226 void UpdateState() { if (IsFocused() != IsActive()) { if (IsFocused()) DG.Activate(this); else DG.Deactivate(this); } }
4404e6b8 227 color blend3(color c1, color c2, color c3){ return blendColor(c1,blendColor(c2,c3,ADD),ADD); }
e28f168c 228
6680a94a 229 DParam addParam(String label, double value) {
230 DParam P = new DParam(label, value);
e28f168c 231 super.addParameter(P);
6680a94a 232 params.add(P); return P;
e28f168c 233 }
af83f61c 234
32986078 235 Pick addPick(String name, int def, int _max, String[] desc) {
236 Pick P = new Pick(name, def, _max+1, nMaxRow, desc);
e28f168c 237 nMaxRow = P.EndRow + 1;
dd00b10f 238 picks.add(P);
e28f168c
AG
239 return P;
240 }
3661fcee 241
dd00b10f 242 DPat(GLucose glucose) {
243 super(glucose);
af83f61c 244
245 pSharp = addParam("Shrp", 0);
246 pSaturate = addParam("Sat" , .5);
247 pTransX = addParam("TrnX", .5);
248 pTransY = addParam("TrnY", .5);
249 pRotX = addParam("RotX", .5);
250 pRotY = addParam("RotY", .5);
251 pRotZ = addParam("RotZ", .5);
252 pSpin = addParam("Spin", .5);
253
4404e6b8 254 nPoints = model.points.size();
255 pXsym = new DBool("X-SYM", false, 49, 0); bools.add(pXsym );
256 pYsym = new DBool("Y-SYM", false, 49, 1); bools.add(pYsym );
257 pRsym = new DBool("R-SYM", false, 49, 2); bools.add(pRsym );
258 pXdup = new DBool("X-DUP", false, 49, 3); bools.add(pXdup );
259 pJog = new DBool("JOGGER",false, 49, 4); bools.add(pJog );
af83f61c 260 pKey = new DBool("KBD" ,false, 49, 5); bools.add(pKey );
4404e6b8 261 modmin = new xyz(model.xMin, model.yMin, model.zMin);
262 mMax = new xyz(model.xMax, model.yMax, model.zMax); mMax.subtract(modmin);
263 mCtr = new xyz(mMax); mCtr.scale(.5);
264 mHalf = new xyz(.5,.5,.5);
32986078 265 xWaveNz = new float[ceil(mMax.y)+1];
266 yWaveNz = new float[ceil(mMax.x)+1];
267
4404e6b8 268 //println (model.xMin + " " + model.yMin + " " + model.zMin);
269 //println (model.xMax + " " + model.yMax + " " + model.zMax);
dd00b10f 270 DG.Init();
dd00b10f 271 }
272
273 void run(double deltaMs)
274 {
59b99905 275 UpdateState();
32986078 276 NoiseMove += deltaMs; NoiseMove = NoiseMove % 1e7;
dd00b10f 277 StartRun (deltaMs);
32986078 278 zSpinHue += DG._SpinHue ()*deltaMs*.05; zSpinHue = zSpinHue % 5000.;
3661fcee 279 xyz P = new xyz(), tP = new xyz(), pSave = new xyz();
af83f61c 280 xyz pTrans = new xyz(pTransX.Val()*200-100, pTransY.Val()*100-50,0);
6680a94a 281 float fSharp = 1/(1.0001-pSharp.Val());
af83f61c 282 float fQuant = DG._Quantize ();
6680a94a 283 float fSaturate = pSaturate.Val();
284
dd00b10f 285 DG.SetText();
286 nPoint = 0;
af83f61c 287
6680a94a 288 if (fQuant > 0) {
32986078 289 float tRamp = (lx.tempo.rampf() % (1./pow(2,floor((1-fQuant) * 4))));
6680a94a 290 float f = LastQuant; LastQuant = tRamp; if (tRamp > f) return;
291 }
292
6680a94a 293 if (pJog.b) {
294 float tRamp = (lx.tempo.rampf() % .25);
4404e6b8 295 if (tRamp < LastJog) xyzJog.set(randctr(mMax.x*.2), randctr(mMax.y*.2), randctr(mMax.z*.2));
6680a94a 296 LastJog = tRamp;
297 }
298
32986078 299 // precalculate this stuff
300 float yWv = DG._YWave(), xWv = DG._XWave(), sprk = DG._Spark();
301 if (yWv > 0) for (int i=0; i<ceil(mMax.x)+1; i++)
302 yWaveNz[i] = yWv * (noise(i/(mMax.x*.3)-(2e3+NoiseMove)/1500.) - .5) * (mMax.y/2.);
303
304 if (xWv > 0) for (int i=0; i<ceil(mMax.y)+1; i++)
305 xWaveNz[i] = xWv * (noise(i/(mMax.y*.3)-(1e3+NoiseMove)/1500.) - .5) * (mMax.x/2.);
306
307 for (Point p : model.points) { nPoint++;
dd00b10f 308 P.set(p);
4404e6b8 309 P.subtract(modmin);
af83f61c 310 P.subtract(pTrans);
32986078 311 if (sprk > 0) { P.y += sprk*randctr(50); P.x += sprk*randctr(50); P.z += sprk*randctr(50); }
312 if (yWv > 0) P.y += interpWv(p.x-modmin.x, yWaveNz);
313 if (xWv > 0) P.x += interpWv(p.y-modmin.y, xWaveNz);
314 if (pJog.b) P.add(xyzJog);
315
dd00b10f 316
4404e6b8 317 color cNew, cOld = colors[p.index];
318 { tP.set(P); cNew = CalcPoint(tP); }
319 if (pXsym.b) { tP.set(mMax.x-P.x,P.y,P.z); cNew = blendColor(cNew, CalcPoint(tP), ADD); }
320 if (pYsym.b) { tP.set(P.x,mMax.y-P.y,P.z); cNew = blendColor(cNew, CalcPoint(tP), ADD); }
321 if (pRsym.b) { tP.set(mMax.x-P.x,mMax.y-P.y,mMax.z-P.z); cNew = blendColor(cNew, CalcPoint(tP), ADD); }
322 if (pXdup.b) { tP.set((P.x+mMax.x*.5)%mMax.x,P.y,P.z); cNew = blendColor(cNew, CalcPoint(tP), ADD); }
6680a94a 323
324 float b = brightness(cNew)/100.;
6680a94a 325 if (pSharp.Val()>0) b = b < .5 ? pow(b,fSharp) : 1-pow(1-b,fSharp);
326 if (DG._Trails()>0 && fQuant == 0) b = max(b, (float) (brightness(cOld)/100. - (1-DG._Trails()) * deltaMs/200.));
327
328 colors[p.index] = color(
329 (hue(cNew) + zSpinHue) % 360,
330 saturation(cNew) + 100*(fSaturate*2-1),
af83f61c 331 100 * b * DG._Level()
6680a94a 332 );
4404e6b8 333
334// colors[p.index] = color(0,0, p.fx >= modmin.x && p.fy >= modmin.y && p.fz >= modmin.z &&
335// p.fx <= modmin.x+mMax.x && p.fy <= modmin.y+mMax.y && p.fz <= modmin.z+mMax.z ? 100 : 0);
dd00b10f 336 }
337 }
e28f168c 338}
59b99905 339//----------------------------------------------------------------------------------------------------------------------------------