sinesphere
[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 color(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 color(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", 0, 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 color(0,0,0);
163 // // else if(spheremode ==2)
164 // { color c = 0;
165 // return color(CalcCone( (xyz by = new xyz(0,spherys[2].ybounce.getValuef(),0) ), Px, mid) );
166
167 // }
168
169
170 }
171
172 }
173
174 class HueTestHSB extends SCPattern{
175 BasicParameter HueT = new BasicParameter("Hue", .5);
176 BasicParameter SatT = new BasicParameter("Sat", .5);
177 BasicParameter BriT = new BasicParameter("Bright", .5);
178
179 HueTestHSB(GLucose glucose) {
180 super(glucose);
181 addParameter(HueT);
182 addParameter(SatT);
183 addParameter(BriT);
184 }
185 void run(double deltaMs){
186
187 for (Point p : model.points) {
188 color c = 0;
189 c = blendColor(c, color(360*HueT.getValuef(), 100*SatT.getValuef(), 100*BriT.getValuef()), ADD);
190 colors[p.index]= c;
191 }
192 int now= millis();
193 if (now % 1000 <= 20)
194 {
195 println("Hue: " + 360*HueT.getValuef() + "Sat: " + 100*SatT.getValuef() + "Bright: " + 100*BriT.getValuef());
196 }
197 }
198
199 }