X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=DanHorwitz.pde;h=cdec36b6b1d160b44e8e3aeeda1a1d1c62a76621;hb=7d60f6f6ea82fd5c9794524ce11d40e7d6c00bf7;hp=4f0c41b03ec422375facb9ae8feb3ac6a226013e;hpb=3ce73bc7c95a6f4485a6cd70881bd3299ef3507d;p=SugarCubes.git diff --git a/DanHorwitz.pde b/DanHorwitz.pde index 4f0c41b..cdec36b 100644 --- a/DanHorwitz.pde +++ b/DanHorwitz.pde @@ -3,10 +3,10 @@ public class Pong extends DPat { SinLFO x,y,z,dx,dy,dz; float cRad; BasicParameter pSize; Pick pChoose; - xyz v = new xyz(), vMir = new xyz(); + PVector v = new PVector(), vMir = new PVector(); - Pong(GLucose glucose) { - super(glucose); + Pong(LX lx) { + super(lx); cRad = mMax.x/10; addModulator(dx = new SinLFO(6000, 500, 30000 )).trigger(); addModulator(dy = new SinLFO(3000, 500, 22472 )).trigger(); @@ -15,19 +15,19 @@ public class Pong extends DPat { addModulator(y = new SinLFO(cRad, mMax.y - cRad, 0)).trigger(); y.modulateDurationBy(dy); addModulator(z = new SinLFO(cRad, mMax.z - cRad, 0)).trigger(); z.modulateDurationBy(dz); pSize = addParam ("Size" , 0.4 ); - pChoose = addPick ("Animiation" , 0, 2, new String[] {"Pong", "Ball", "Cone"} ); + pChoose = addPick ("Animiation" , 2, 2, new String[] {"Pong", "Ball", "Cone"} ); } void StartRun(double deltaMs) { cRad = mMax.x*val(pSize)/6; } - color CalcPoint(xyz p) { + color CalcPoint(PVector p) { v.set(x.getValuef(), y.getValuef(), z.getValuef()); v.z=0;p.z=0;// ignore z dimension switch(pChoose.Cur()) { - case 0: vMir.set(mMax); vMir.subtract(p); - return lx.hsb(lxh(),100,c1c(1 - min(v.distance(p), v.distance(vMir))*.5/cRad)); // balls - case 1: return lx.hsb(lxh(),100,c1c(1 - v.distance(p)*.5/cRad)); // ball + case 0: vMir.set(mMax); vMir.sub(p); + return lx.hsb(lxh(),100,c1c(1 - min(v.dist(p), v.dist(vMir))*.5/cRad)); // balls + case 1: return lx.hsb(lxh(),100,c1c(1 - v.dist(p)*.5/cRad)); // ball case 2: vMir.set(mMax.x/2,0,mMax.z/2); - return lx.hsb(lxh(),100,c1c(1 - CalcCone(p,v,vMir) * max(.02,.45-val(pSize)))); // spot + return lx.hsb(lxh(),100,c1c(1 - calcCone(p,v,vMir) * max(.02,.45-val(pSize)))); // spot } return lx.hsb(0,0,0); } @@ -57,8 +57,8 @@ public class Noise extends DPat int _ND = 4; NDat N[] = new NDat[_ND]; - Noise(GLucose glucose) { - super(glucose); + Noise(LX lx) { + super(lx); pSpeed = addParam("Fast" , .55); pDensity = addParam("Dens" , .5); pSharp = addParam("Shrp" , 0); @@ -71,7 +71,7 @@ public class Noise extends DPat void StartRun(double deltaMs) { zTime += deltaMs*(val(pSpeed)-.5)*.002 ; - zTheta += deltaMs*(val(pSpin )-.5)*.01 ; + zTheta += deltaMs*(spin()-.5)*.01 ; rtime += deltaMs; iSymm = pSymm.Cur(); zSin = sin(zTheta); @@ -107,28 +107,28 @@ public class Noise extends DPat } } - color CalcPoint(xyz P) { + color CalcPoint(PVector p) { color c = 0; - P.rotateZ(mCtr, zSin, zCos); + rotateZ(p, mCtr, zSin, zCos); if (CurAnim == 6 || CurAnim == 7) { - P.setNorm(); + setNorm(p); return lx.hsb(lxh(),100, 100 * ( - constrain(1-50*(1-val(pDensity))*abs(P.y-sin(zTime*10 + P.x*(300))*.5 - .5),0,1) + - (CurAnim == 7 ? constrain(1-50*(1-val(pDensity))*abs(P.x-sin(zTime*10 + P.y*(300))*.5 - .5),0,1) : 0)) + constrain(1-50*(1-val(pDensity))*abs(p.y-sin(zTime*10 + p.x*(300))*.5 - .5),0,1) + + (CurAnim == 7 ? constrain(1-50*(1-val(pDensity))*abs(p.x-sin(zTime*10 + p.y*(300))*.5 - .5),0,1) : 0)) ); } - if (iSymm == XSym && P.x > mMax.x/2) P.x = mMax.x-P.x; - if (iSymm == YSym && P.y > mMax.y/2) P.y = mMax.y-P.y; + if (iSymm == XSym && p.x > mMax.x/2) p.x = mMax.x-p.x; + if (iSymm == YSym && p.y > mMax.y/2) p.y = mMax.y-p.y; for (int i=0;i<_ND; i++) if (N[i].Active()) { NDat n = N[i]; float zx = zTime * n.speed * n.sinAngle, zy = zTime * n.speed * n.cosAngle; - float b = (iSymm==RadSym ? noise(zTime*n.speed+n.xoff-P.distance(mCtr)/n.xz) - : noise(P.x/n.xz+zx+n.xoff,P.y/n.yz+zy+n.yoff,P.z/n.zz+n.zoff)) + float b = (iSymm==RadSym ? noise(zTime*n.speed+n.xoff-p.dist(mCtr)/n.xz) + : noise(p.x/n.xz+zx+n.xoff,p.y/n.yz+zy+n.yoff,p.z/n.zz+n.zoff)) *1.8; b += n.den/100 -.4 + val(pDensity) -1; @@ -157,26 +157,26 @@ public class Play extends DPat prvR = dstR; dstR = random(mCtr.y); } } - int nBeats = 0; BasicParameter pAmp, pRadius, pBounce; + Pick pTimePattern, pTempoMult, pShape; - float t,amp,rad,bnc; - float zTheta=0; ArrayList waves = new ArrayList(10); - rAngle a1 = new rAngle(), a2 = new rAngle(), - a3 = new rAngle(), a4 = new rAngle(); - xyz cPrev = new xyz(), cRand = new xyz(), - cMid = new xyz(), V = new xyz(), - theta = new xyz(), tSin = new xyz(), - tCos = new xyz(), cMidNorm = new xyz(), - Pn = new xyz(); + int nBeats = 0; + float t,amp,rad,bnc,zTheta=0; + + rAngle a1 = new rAngle(), a2 = new rAngle(), + a3 = new rAngle(), a4 = new rAngle(); + PVector cPrev = new PVector(), cRand = new PVector(), + cMid = new PVector(), V = new PVector(), + theta = new PVector(), tSin = new PVector(), + tCos = new PVector(), cMidNorm = new PVector(), + Pn = new PVector(); float LastBeat=3, LastMeasure=3; int curRandTempo = 1, curRandTPat = 1; - Pick pTimePattern, pTempoMult, pShape; - Play(GLucose glucose) { - super(glucose); + Play(LX lx) { + super(lx); pRadius = addParam("Rad" , .1 ); pBounce = addParam("Bnc" , .2 ); pAmp = addParam("Amp" , .2 ); @@ -206,6 +206,7 @@ public class Play extends DPat } } + void onReset() { zTheta=0; super.onReset(); } void onActive() { zTheta=0; while (lx.tempo.bpm() > 40) lx.tempo.setBpm(lx.tempo.bpm()/2); @@ -261,7 +262,7 @@ public class Play extends DPat } if (t .5?1:0)); // cone + return lx.hsb(lxh(),100,c1c(1 - calcCone(Px,cMid,mCtr) * 0.02 > .5?1:0)); // cone case 12: return lx.hsb(lxh() + noise(Pn.x,Pn.y,Pn.z + (NoiseMove+50000)/1000.)*200, 85,c1c(Pn.y < noise(Pn.x + NoiseMove/2000.,Pn.z)*(1+amp)-amp/2.-.1 ? 1 : 0)); // noise @@ -350,19 +351,11 @@ public class Play extends DPat default: return lx.hsb(0,0,0); } - return lx.hsb(lxh(), 100, c1c(1 - V.distance(Pn)/rad)); + return lx.hsb(lxh(), 100, c1c(1 - V.dist(Pn)/rad)); } } //---------------------------------------------------------------------------------------------------------------------------------- -// 0 - TLB, L (b), BLB, B (l) // Fwd , Down, Back, Up -// 4 - TLF, F (l), BLF, L (f) // Fwd , Down, Back, Up -// 8 - TRF, R (f), BRF, F (r) // Back, Down, Fwd , Up -// 12- TRB, B (r), BRB, R (b) // Back, Down, Fwd , Up -// 1->7, 15->9 - -int randDir() { return round(random(1))*2-1; } -//---------------------------------------------------------------------------------------------------------------------------------- -boolean dDebug = true; +boolean dDebug = false; class dCursor { dVertex vCur, vNext, vDest; float destSpeed; @@ -410,7 +403,7 @@ class dCursor { evalTurn(vCur.t2); evalTurn(vCur.t3); } - Point p1, p2; int i2; + LXPoint p1, p2; int i2; int draw(int nAmount, SCPattern pat) { int nFrom = (pos ) >> 12; @@ -446,34 +439,35 @@ class Worms extends SCPattern { private BasicParameter pSpawn = new BasicParameter("DIR" , 0); private BasicParameter pColor = new BasicParameter("CLR" , .1); - int zMidLat = 82; + float zMidLat = 82.; float nConfusion; private final Click moveChase = new Click(1000); - xyz middle; + PVector middle; int AnimNum() { return floor(pSpawn.getValuef()*(4-.01)); } float randX() { return random(model.xMax-model.xMin)+model.xMin; } float randY() { return random(model.yMax-model.yMin)+model.yMin; } - xyz randEdge() { - return random(2) < 1 ? new xyz(random(2)<1 ? model.xMin:model.xMax, randY(), zMidLat) : - new xyz(randX(), random(2)<1 ? model.yMin:model.yMax, zMidLat) ; + PVector randEdge() { + return random(2) < 1 ? new PVector(random(2)<1 ? model.xMin:model.xMax, randY(), zMidLat) : + new PVector(randX(), random(2)<1 ? model.yMin:model.yMax, zMidLat) ; } - Worms(GLucose glucose) { - super(glucose); + Worms(LX lx) { + super(lx); addModulator(moveChase).start(); addParameter(pBeat); addParameter(pSpeed); addParameter(pBlur); addParameter(pWorms); addParameter(pEQ); addParameter(pConfusion); addParameter(pSpawn); addParameter(pColor); - middle = new xyz(model.cx, model.cy, 71); + middle = new PVector(1.5*model.cx, 1.5*model.cy, 71); if (lattice == null) lattice = new dLattice(); for (int i=0; i