-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathSettings.pde
82 lines (73 loc) · 1.87 KB
/
Settings.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
class Settings {
String[] data;
Settings(String _s) {
try {
data = loadStrings(_s);
for (int i=0;i<data.length;i++) {
if (data[i].equals("Output Filename")) fileName = setString(data[i+1]);
if (data[i].equals("Output Format (OBJ, PLY, PNG, ASC, BIN)")) fileType = setString(data[i+1].toLowerCase());
}
} catch(Exception e) {
println("Couldn't load settings file. Using defaults.");
}
}
int setInt(String _s) {
return int(_s);
}
float setFloat(String _s) {
return float(_s);
}
boolean setBoolean(String _s) {
return boolean(_s);
}
String setString(String _s) {
return ""+(_s);
}
color setColor(String _s) {
color endColor = color(0);
int commaCounter=0;
String sr = "";
String sg = "";
String sb = "";
String sa = "";
int r = 0;
int g = 0;
int b = 0;
int a = 0;
for (int i=0;i<_s.length();i++) {
if (_s.charAt(i)!=char(' ') && _s.charAt(i)!=char('(') && _s.charAt(i)!=char(')')) {
if (_s.charAt(i)==char(',')){
commaCounter++;
}else{
if (commaCounter==0) sr += _s.charAt(i);
if (commaCounter==1) sg += _s.charAt(i);
if (commaCounter==2) sb += _s.charAt(i);
if (commaCounter==3) sa += _s.charAt(i);
}
}
}
if (sr!="" && sg=="" && sb=="" && sa=="") {
r = int(sr);
endColor = color(r);
}
if (sr!="" && sg!="" && sb=="" && sa=="") {
r = int(sr);
g = int(sg);
endColor = color(r, g);
}
if (sr!="" && sg!="" && sb!="" && sa=="") {
r = int(sr);
g = int(sg);
b = int(sb);
endColor = color(r, g, b);
}
if (sr!="" && sg!="" && sb!="" && sa!="") {
r = int(sr);
g = int(sg);
b = int(sb);
a = int(sa);
endColor = color(r, g, b, a);
}
return endColor;
}
}