-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathGUI.pde
71 lines (59 loc) · 2.5 KB
/
GUI.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
// M_1_5_02_TOOL.pde
// Agent.pde, GUI.pde
//
// Generative Gestaltung, ISBN: 978-3-87439-759-9
// First Edition, Hermann Schmidt, Mainz, 2009
// Hartmut Bohnacker, Benedikt Gross, Julia Laub, Claudius Lazzeroni
// Copyright 2009 Hartmut Bohnacker, Benedikt Gross, Julia Laub, Claudius Lazzeroni
//
// http://www.generative-gestaltung.de
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
void setupGUI(){
color activeColor = color(0,130,164);
controlP5 = new ControlP5(this);
//controlP5.setAutoDraw(false);
controlP5.setColorActive(activeColor);
controlP5.setColorBackground(color(170));
controlP5.setColorForeground(color(50));
controlP5.setColorCaptionLabel(color(50));
controlP5.setColorValueLabel(color(255));
ControlGroup ctrl = controlP5.addGroup("menu",15,25,35);
ctrl.setColorLabel(color(255));
ctrl.close();
sliders = new Slider[10];
int left = 0;
int top = 5;
int len = 300;
int si = 0;
int posY = 0;
sliders[si++] = controlP5.addSlider("agentsCount",1,5000,left,top+posY+0,len,15);
posY += 30;
sliders[si++] = controlP5.addSlider("noiseScale",1,1000,left,top+posY+0,len,15);
sliders[si++] = controlP5.addSlider("noiseStrength",0,100,left,top+posY+20,len,15);
posY += 50;
sliders[si++] = controlP5.addSlider("strokeWidth",0,10,left,top+posY+0,len,15);
posY += 30;
sliders[si++] = controlP5.addSlider("agentsAlpha",0,255,left,top+posY+0,len,15);
sliders[si++] = controlP5.addSlider("overlayAlpha",0,255,left,top+posY+20,len,15);
for (int i = 0; i < si; i++) {
sliders[i].setGroup(ctrl);
sliders[i].getCaptionLabel().toUpperCase(true);
sliders[i].getCaptionLabel().getStyle().padding(4,3,3,3);
sliders[i].getCaptionLabel().getStyle().marginTop = -4;
sliders[i].getCaptionLabel().getStyle().marginLeft = 0;
sliders[i].getCaptionLabel().getStyle().marginRight = -14;
sliders[i].getCaptionLabel().setColorBackground(0x99ffffff);
}
}
void drawGUI(){
controlP5.show();
controlP5.draw();
}