-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsimulation.pde
160 lines (141 loc) · 4.43 KB
/
simulation.pde
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
import java.util.Map;
//R+G+B = white, R+G = cyan, R+B = magenta, G+B = yellow
color white = color(255);
color black = color(0);
color red = color(#FF0000);
color green = color(#00CC00);
color blue = color(#0000FF);
color yellow = color(#FFFF00);
color magenta = color(#FF00FF);
color cyan = color(#00FFFF);
int length = 500;
int dropSize = 30;
int addPos = length/4;
int subPos = .7*length;
HashMap<Integer,Integer> addColors = new HashMap<Integer,Integer>();
addColors.put(1, cyan);
addColors.put(2, magenta);
addColors.put(3, yellow);
HashMap<Integer,Integer> subColors = new HashMap<Integer,Integer>();
subColors.put(1, red);
subColors.put(2, green);
subColors.put(3, blue);
class Drop {
int pos;
color dropColor;
Drop(int startPos, color waterDropColor) {
pos = startPos;
dropColor = waterDropColor;
}
void addFall(int rate) {
pos = pos - rate;
fill(dropColor);
// stroke(dropColor);
if(pos > length) {
pos = 0;
}
if(pos < 0) {
pos = length;
}
ellipse(addPos, pos, dropSize, dropSize);
}
void subFall(int rate) {
pos = pos - rate;
fill(dropColor);
// stroke(dropColor);
if(pos > length) {
pos = 0;
}
if(pos < 0) {
pos = length;
}
ellipse(subPos, pos, dropSize, dropSize);
}
}
int numDrops = 4;
Drop[] redDrops = new Drop[numDrops]; // Declare and create the array
Drop[] greenDrops = new Drop[numDrops];
Drop[] blueDrops = new Drop[numDrops];
Drop[] cyanDrops = new Drop[numDrops];
Drop[] magentaDrops = new Drop[numDrops];
Drop[] yellowDrops = new Drop[numDrops];
void setup() {
size(length,length);
smooth();
//Loop through array to create each object
for (int i = 0; i < numDrops; i++) {
int pos = length/numDrops*i;
redDrops[i] = new Drop(pos, red); // Create each object
greenDrops[i] = new Drop(pos, green);
blueDrops[i] = new Drop(pos, blue);
cyanDrops[i] = new Drop(pos, cyan);
magentaDrops[i] = new Drop(pos, magenta);
yellowDrops[i] = new Drop(pos, yellow);
}
}
void equals(pos1, pos2) {
return (abs(pos1-pos2) < .3*dropSize);
}
float[] dropSpeeds = new float[]{abs(uivars.red), abs(uivars.green), abs(uivars.blue)};
int getSlowerDrop(int i, int j) {
if(dropSpeeds[i] < dropSpeeds[j]) {
return i;
}
else {
return j;
}
}
int getSlowestDrop() {
int minIndex = 0;
float minSpeed = min(dropSpeeds);
for(int i = 0; i < 3; i++) {
if(dropSpeeds[i] == minSpeed) {
return i;
}
}
}
void draw(){
stroke(0);
background(white);
fill(white);
for(int i = 0; i < numDrops; i++) {
redDrops[i].addFall(uivars.red);
greenDrops[i].addFall(uivars.green);
blueDrops[i].addFall(uivars.blue);
cyanDrops[i].subFall(uivars.red);
magentaDrops[i].subFall(uivars.green);
yellowDrops[i].subFall(uivars.blue);
}
for(int r = 0; r < numDrops; r++) {
for(int g = 0; g < numDrops; g++) {
for(int b = 0; b < numDrops; b++) {
int[] rgbPos = new int[] {redDrops[r].pos, greenDrops[g].pos, blueDrops[b].pos};
for(int i = 0; i < 2; i++) {
for(int j = i+1; j < 3; j++) {
if(equals(rgbPos[i], rgbPos[j])) {
fill(addColors.get(i+j));
int index = getSlowerDrop(i, j);
ellipse(addPos, rgbPos[index], dropSize, dropSize);
fill(subColors.get(i+j));
ellipse(subPos, rgbPos[index], dropSize, dropSize);
}
}
}
}
}
}
for(int r = 0; r < numDrops; r++) {
for(int g = 0; g < numDrops; g++) {
for(int b = 0; b < numDrops; b++) {
int[] rgbPos = new int[] {redDrops[r].pos, greenDrops[g].pos, blueDrops[b].pos};
int minIndex = getSlowestDrop();
if(equals(rgbPos[0], rgbPos[1]) && equals(rgbPos[0], rgbPos[2]) && equals(rgbPos[1], rgbPos[2])) {
fill(white);
ellipse(addPos, rgbPos[minIndex], dropSize, dropSize);
fill(black);
ellipse(subPos, rgbPos[minIndex], dropSize, dropSize);
}
}
}
}
}