[Helix][perf] Don't call trig functions more than needed
[SugarCubes.git] / ShaheenGandhi.pde
CommitLineData
fd8a39b0
SG
1import toxi.geom.Vec3D;
2import toxi.geom.Matrix4x4;
3
4class HelixPattern extends SCPattern {
5
6 // Stores a line in point + vector form
7 private class Line {
8 private final PVector origin;
9 private final PVector vector;
ee1f21c7 10
fd8a39b0
SG
11 Line(PVector pt, PVector v) {
12 origin = pt;
13 vector = v.get();
14 vector.normalize();
15 }
ee1f21c7 16
fd8a39b0
SG
17 PVector getPoint() {
18 return origin;
19 }
ee1f21c7 20
fd8a39b0
SG
21 PVector getVector() {
22 return vector;
23 }
ee1f21c7
SG
24
25 PVector getPointAt(final float t) {
26 return PVector.add(origin, PVector.mult(vector, t));
fd8a39b0 27 }
ee1f21c7
SG
28
29 boolean isColinear(final PVector pt) {
30 PVector projected = projectPoint(pt);
fd8a39b0
SG
31 return projected.x==pt.x && projected.y==pt.y && projected.z==pt.z;
32 }
ee1f21c7
SG
33
34 float getTValue(final PVector pt) {
fd8a39b0
SG
35 PVector subtraction = PVector.sub(pt, origin);
36 return subtraction.dot(vector);
ee1f21c7
SG
37 }
38
39 PVector projectPoint(final PVector pt) {
fd8a39b0
SG
40 return getPointAt(getTValue(pt));
41 }
ee1f21c7 42
44521cb7
SG
43 PVector rotatePoint(final PVector p, final float t) {
44 final PVector o = origin;
45 final PVector v = vector;
46
d814f9ad
SG
47 final float cost = cos(t);
48 final float sint = sin(t);
49
50 float x = (o.x*(v.y*v.y + v.z*v.z) - v.x*(o.y*v.y + o.z*v.z - v.x*p.x - v.y*p.y - v.z*p.z))*(1 - cost) + p.x*cost + (-o.z*v.y + o.y*v.z - v.z*p.y + v.y*p.z)*sint;
51 float y = (o.y*(v.x*v.x + v.z*v.z) - v.y*(o.x*v.x + o.z*v.z - v.x*p.x - v.y*p.y - v.z*p.z))*(1 - cost) + p.y*cost + (o.z*v.x - o.x*v.z + v.z*p.x - v.x*p.z)*sint;
52 float z = (o.z*(v.x*v.x + v.y*v.y) - v.z*(o.x*v.x + o.y*v.y - v.x*p.x - v.y*p.y - v.z*p.z))*(1 - cost) + p.z*cost + (-o.y*v.x + o.x*v.y - v.y*p.x + v.x*p.y)*sint;
44521cb7 53 return new PVector(x, y, z);
fd8a39b0
SG
54 }
55 }
56
57 private class Helix {
58 private final Line axis;
ee1f21c7
SG
59 private final float period; // period of coil
60 private final float rotationPeriod; // animation period
61 private final float radius; // radius of coil
62 private final float girth; // girth of coil
fd8a39b0
SG
63 private final PVector referencePoint;
64 private float phase;
65 private PVector phaseNormal;
66
67 Helix(Line axis, float period, float radius, float girth, float phase, float rotationPeriod) {
68 this.axis = axis;
69 this.period = period;
70 this.radius = radius;
71 this.girth = girth;
72 this.phase = phase;
73 this.rotationPeriod = rotationPeriod;
74
75 // Generate a normal that will rotate to
76 // produce the helical shape.
77 PVector pt = new PVector(0, 1, 0);
78 if (this.axis.isColinear(pt)) {
79 pt = new PVector(0, 0, 1);
80 if (this.axis.isColinear(pt)) {
81 pt = new PVector(0, 1, 1);
82 }
83 }
84
85 this.referencePoint = pt;
fd8a39b0 86
ee1f21c7
SG
87 // The normal is calculated by the cross product of the axis
88 // and a random point that is not colinear with it.
89 phaseNormal = axis.getVector().cross(referencePoint);
fd8a39b0
SG
90 phaseNormal.normalize();
91 phaseNormal.mult(radius);
92 }
ee1f21c7 93
ee1f21c7
SG
94 Line getAxis() {
95 return axis;
96 }
97
fd8a39b0 98 void step(int deltaMs) {
ee1f21c7
SG
99 // Rotate
100 if (rotationPeriod != 0) {
117f538a 101 this.phase = (phase + ((float)deltaMs / (float)rotationPeriod) * TWO_PI);
ee1f21c7 102 }
fd8a39b0 103 }
ee1f21c7 104
fd8a39b0
SG
105 PVector pointOnToroidalAxis(float t) {
106 PVector p = axis.getPointAt(t);
107 PVector middle = PVector.add(p, phaseNormal);
117f538a 108 return axis.rotatePoint(middle, (t / period) * TWO_PI + phase);
fd8a39b0 109 }
ee1f21c7
SG
110
111 color colorOfPoint(final PVector p) {
2a7c5e4d
SG
112 float t = axis.getTValue(p);
113
114 // For performance reasons, cut out points that are outside of
115 // the tube where the toroidal coil lives.
116 if (abs(PVector.dist(p, axis.getPointAt(t)) - radius) > girth*.5f) {
117 return color(0,0,0);
118 }
119
fd8a39b0
SG
120 // Find the appropriate point for the current rotation
121 // of the helix.
fd8a39b0 122 PVector toroidPoint = pointOnToroidalAxis(t);
ee1f21c7 123
fd8a39b0
SG
124 // The rotated point represents the middle of the girth of
125 // the helix. Figure out if the current point is inside that
126 // region.
127 float d = PVector.dist(p, toroidPoint);
ee1f21c7 128
117f538a 129 // Soften edges by fading brightness.
c27cb078 130 float b = constrain(100*(1 - ((d-.5*girth)/(girth*.5))), 0, 100);
117f538a 131 return color((lx.getBaseHuef() + (360*(phase / TWO_PI)))%360, 80, b);
fd8a39b0
SG
132 }
133 }
134
135 private final Helix h1;
136 private final Helix h2;
ee1f21c7 137
fd8a39b0
SG
138 private final BasicParameter helix1On = new BasicParameter("H1ON", 1);
139 private final BasicParameter helix2On = new BasicParameter("H2ON", 1);
f904d86b 140 private final BasicParameter basePairsOn = new BasicParameter("BPON", 1);
f904d86b
SG
141
142 private static final float helixCoilPeriod = 100;
143 private static final float helixCoilRadius = 45;
144 private static final float helixCoilGirth = 20;
145 private static final float helixCoilRotationPeriod = 10000;
146
7992264a
SG
147 private static final float spokePeriod = 40;
148 private static final float spokeGirth = 10;
149 private static final float spokePhase = 10;
150 private static final float spokeRadius = 35; // helixCoilRadius - helixCoilGirth*.5f;
151
fd8a39b0
SG
152 public HelixPattern(GLucose glucose) {
153 super(glucose);
ee1f21c7 154
fd8a39b0
SG
155 addParameter(helix1On);
156 addParameter(helix2On);
f904d86b 157 addParameter(basePairsOn);
f904d86b
SG
158
159 PVector origin = new PVector(100, 50, 45);
160 PVector axis = new PVector(1,0,0);
ee1f21c7 161
fd8a39b0 162 h1 = new Helix(
f904d86b
SG
163 new Line(origin, axis),
164 helixCoilPeriod,
165 helixCoilRadius,
166 helixCoilGirth,
167 0,
168 helixCoilRotationPeriod);
fd8a39b0 169 h2 = new Helix(
f904d86b
SG
170 new Line(origin, axis),
171 helixCoilPeriod,
172 helixCoilRadius,
173 helixCoilGirth,
fd8a39b0 174 PI,
f904d86b 175 helixCoilRotationPeriod);
fd8a39b0 176 }
7992264a
SG
177
178 private color calculateSpokeColor(final color h1c, final color h2c, final PVector pt) {
179 // Find the closest spoke's t-value and calculate its
180 // axis. Until everything animates in the model reference
181 // frame, this has to be calculated at every step because
182 // the helices rotate.
183 float t = h1.getAxis().getTValue(pt) + spokePhase;
184 float spokeAxisTValue = floor(((t + spokePeriod/2) / spokePeriod)) * spokePeriod;
185 PVector h1point = h1.pointOnToroidalAxis(spokeAxisTValue);
5e66f02a
SG
186 // TODO(shaheen) investigate why h1.getAxis().getPointAt(spokeAxisTValue) doesn't quite
187 // have the same value as finding the middle between h1point and h2point.
188 PVector spokeCenter = h1.getAxis().getPointAt(spokeAxisTValue);
189 PVector spokeVector = PVector.sub(h1point, spokeCenter);
7992264a
SG
190 spokeVector.normalize();
191 Line spokeLine = new Line(h1point, spokeVector);
7992264a
SG
192 PVector pointOnSpoke = spokeLine.projectPoint(pt);
193 float b = ((PVector.dist(pt, pointOnSpoke) < spokeGirth) && (PVector.dist(pointOnSpoke, spokeCenter) < spokeRadius)) ? 100.f : 0.f;
194 return color(100, 80.f, b);
195 }
ee1f21c7 196
fd8a39b0
SG
197 void run(int deltaMs) {
198 boolean h1on = helix1On.getValue() > 0.5;
199 boolean h2on = helix2On.getValue() > 0.5;
f904d86b 200 boolean spokesOn = (float)basePairsOn.getValue() > 0.5;
ee1f21c7 201
fd8a39b0
SG
202 h1.step(deltaMs);
203 h2.step(deltaMs);
ee1f21c7 204
fd8a39b0 205 for (Point p : model.points) {
f904d86b
SG
206 PVector pt = new PVector(p.x,p.y,p.z);
207 color h1c = h1.colorOfPoint(pt);
208 color h2c = h2.colorOfPoint(pt);
7992264a 209 color spokeColor = calculateSpokeColor(h1c, h2c, pt);
f904d86b
SG
210
211 if (!h1on) {
212 h1c = color(0,0,0);
213 }
ee1f21c7 214
f904d86b
SG
215 if (!h2on) {
216 h2c = color(0,0,0);
fd8a39b0 217 }
ee1f21c7 218
f904d86b
SG
219 if (!spokesOn) {
220 spokeColor = color(0,0,0);
fd8a39b0 221 }
ee1f21c7 222
fd8a39b0
SG
223 // The helices are positioned to not overlap. If that changes,
224 // a better blending formula is probably needed.
f904d86b 225 colors[p.index] = blendColor(blendColor(h1c, h2c, ADD), spokeColor, ADD);
fd8a39b0
SG
226 }
227 }
228}
229