-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgeom.pde
433 lines (376 loc) · 8.36 KB
/
geom.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
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
class Point {
float x, y;
Point(float _x, float _y){
x = _x;
y = _y;
}
Point(Point other){
x = other.x;
y = other.y;
}
Point(JSONObject json){
x = json.getFloat("x");
y = json.getFloat("y");
}
JSONObject serialize(){
JSONObject json = new JSONObject();
json.setFloat("x", x);
json.setFloat("y", y);
return json;
}
Point copy(){
return new Point(x, y);
}
void add(Point other){
x += other.x;
y += other.y;
}
void subtract(Point other){
x -= other.x;
y -= other.y;
}
boolean equals(Point other){
return x == other.x && y == other.y;
}
String toStr(){
return String.format("(%f, %f)", x, y);
}
}
public class Box extends Callbacks<Box,String[]>{
String[] dummyString = {""};
public final Point pos, size;
Box(){
setCallbackArgType(dummyString.getClass());
pos = new Point(0, 0);
size = new Point(1, 1);
}
Box(float x, float y, float w, float h){
setCallbackArgType(dummyString.getClass());
pos = new Point(x, y);
size = new Point(w, h);
//updateGeometry();
}
Box(Point _pos, Point _size){
setCallbackArgType(dummyString.getClass());
pos = _pos.copy();
size = _size.copy();
//updateGeometry();
}
Box(Point _pos, float w, float h){
setCallbackArgType(dummyString.getClass());
pos = _pos.copy();
size = new Point(w, h);
//updateGeometry();
}
Box(float x, float y, Point _size){
setCallbackArgType(dummyString.getClass());
pos = new Point(x, y);
size = _size.copy();
//updateGeometry();
}
Box(Box _b){
setCallbackArgType(dummyString.getClass());
pos = _b.getPos();
size = _b.getSize();
//updateGeometry();
}
Box(JSONObject json){
setCallbackArgType(dummyString.getClass());
pos = new Point(json.getJSONObject("pos"));
size = new Point(json.getJSONObject("size"));
}
JSONObject serialize(){
JSONObject json = new JSONObject();
json.setJSONObject("pos", pos.serialize());
json.setJSONObject("size", size.serialize());
return json;
}
Box copy(){
return new Box(this);
}
void move(Point dxy){
pos.add(dxy);
//setPos(pos.add(dxy));
updateGeometry("x", "y");
}
float getAspectRatioW(){
return getHeight() / getWidth();
}
void setAspectRatioW(float ar){
setWidth(getHeight() / ar);
}
float getAspectRatioH(){
return getWidth() / getHeight();
}
void setAspectRatioH(float ar){
setHeight(getWidth() / ar);
}
void translate(float dx, float dy){
pos.x += dx;
pos.y += dy;
updateGeometry("x", "y");
}
void translate(Point p){
translate(p.x, p.y);
}
void setBox(Box b){
pos.x = b.pos.x;
pos.y = b.pos.y;
size.x = b.size.x;
size.y = b.size.y;
updateGeometry("x", "y", "w", "h");
}
Point getPos(){
return pos.copy();
}
void setPos(Point p){
pos.x = p.x;
pos.y = p.y;
updateGeometry("x", "y");
}
Point getSize(){
return size.copy();
}
void setSize(Point s){
size.x = s.x;
size.y = s.y;
updateGeometry("w", "h");
}
float getX(){
return pos.x;
}
void setX(float x){
pos.x = x;
updateGeometry("x");
}
float getY(){
return pos.y;
}
void setY(float y){
pos.y = y;
updateGeometry("y");
}
float getWidth(){
return size.x;
}
void setWidth(float w){
size.x = w;
updateGeometry("w");
}
float getHeight(){
return size.y;
}
void setHeight(float h){
size.y = h;
updateGeometry("h");
}
float getRight(){
return pos.x + getWidth();
}
void setRight(float r){
pos.x = r - getWidth();
updateGeometry("x");
}
float getBottom(){
return pos.y + getHeight();
}
void setBottom(float b){
pos.y = b - getHeight();
//assert getBottom() == b;
updateGeometry("y");
}
float getHCenter(){
return pos.x + getWidth() / 2;
}
void setHCenter(float c){
pos.x = c - getWidth() / 2;
//assert getHCenter() == c;
updateGeometry("x");
}
float getVCenter(){
return pos.y + getHeight() / 2;
}
void setVCenter(float c){
pos.y = c - getHeight() / 2;
updateGeometry("y");
}
Point getCenter(){
return new Point(getHCenter(), getVCenter());
}
void setCenter(Point c){
pos.x = c.x - getWidth() / 2;
pos.y = c.y - getHeight() / 2;
updateGeometry("x", "y");
}
Point getTopLeft(){
return new Point(getX(), getY());
}
Point getTopCenter(){
return new Point(getHCenter(), getY());
}
void setTopCenter(Point p){
pos.x = p.x - getWidth() / 2;
pos.y = p.y;
updateGeometry("x", "y");
}
Point getTopRight(){
return new Point(getRight(), getY());
}
Point getMiddleLeft(){
return new Point(getX(), getVCenter());
}
Point getMiddleRight(){
return new Point(getRight(), getVCenter());
}
Point getBottomLeft(){
return new Point(getX(), getBottom());
}
void setBottomLeft(Point p){
pos.x = p.x;
pos.y = p.y - getHeight();
updateGeometry("x", "y");
}
Point getBottomCenter(){
return new Point(getHCenter(), getBottom());
}
void setBottomCenter(Point p){
pos.x = p.x - getWidth() / 2;
pos.y = p.y - getHeight();
updateGeometry("x", "y");
}
Point getBottomRight(){
return new Point(getRight(), getBottom());
}
float getTotalArea(){
return getWidth() * getHeight();
}
void updateGeometry(){ }
void updateGeometry(String ... props){
updateGeometry();
triggerCallback(props);
}
void drawRect(PGraphics canvas){
canvas.rect(getX(), getY(), getWidth(), getHeight());
}
void drawImage(PGraphics canvas, PImage img){
canvas.image(img, getX(), getY(), getWidth(), getHeight());
}
void fillRect(PShape canvas, color c){
canvas.fill(c);
}
String toStr(){
return String.format("%s, %s", pos.toStr(), size.toStr());
}
}
class DisplayBox {
private Point _topLeftPadding, _bottomRightPadding;
private Box _bounds, _content;
private boolean _visible = true;
private float _alpha = 1;
DisplayBox(){
_topLeftPadding = new Point(0, 0);
_bottomRightPadding = new Point(0, 0);
_bounds = new Box(0, 0, 10, 10);
_content = new Box(0, 0, 10, 10);
try {
assert _bounds.registerCallback(this, "onBoundsChanged");
} catch(Exception e){
e.printStackTrace();
throw(e);
}
}
boolean visible(){
return _visible;
}
void visible(boolean v){
_visible = v;
}
float alpha(){
return _alpha;
}
void alpha(float v){
_alpha = v;
}
float leftPadding(){
return _topLeftPadding.x;
}
void leftPadding(float v){
_topLeftPadding.x = v;
updateGeometry();
}
float topPadding(){
return _topLeftPadding.y;
}
void topPadding(float v){
_topLeftPadding.y = 0;
updateGeometry();
}
float rightPadding(){
return _bottomRightPadding.x;
}
void rightPadding(float v){
_bottomRightPadding.x = v;
updateGeometry();
}
float bottomPadding(){
return _bottomRightPadding.y;
}
void bottomPadding(float v){
_bottomRightPadding.y = v;
updateGeometry();
}
void setHorizontalPadding(float v){
_topLeftPadding.x = v;
_bottomRightPadding.x = v;
updateGeometry();
}
void setVerticalPadding(float v){
_topLeftPadding.y = v;
_bottomRightPadding.y = v;
updateGeometry();
}
void setPadding(float x, float y){
_topLeftPadding.x = x;
_topLeftPadding.y = y;
_bottomRightPadding.x = x;
_bottomRightPadding.y = y;
updateGeometry();
}
void setPadding(float v){
_topLeftPadding.x = v;
_topLeftPadding.y = v;
_bottomRightPadding.x = v;
_bottomRightPadding.y = v;
updateGeometry();
}
Box bounds(){
return _bounds.copy();
}
void bounds(Box b){
_bounds.setBox(b);
}
void bounds(Point pos, Point size){
bounds(new Box(pos, size));
}
void bounds(float x, float y, float w, float h){
bounds(new Box(x, y, w, h));
}
Box content(){
return _content.copy();
}
void updateGeometry(){
Point cPos = _bounds.getPos();
cPos.add(_topLeftPadding);
_content.setPos(cPos);
Point cSize = new Point(_bounds.getSize());
cSize.subtract(_topLeftPadding);
cSize.subtract(_bottomRightPadding);
_content.setSize(cSize);
}
public void onBoundsChanged(String ... props){
updateGeometry();
}
String toStr(){
return String.format("bounds: %s - content: %s", _bounds.toStr(), _content.toStr());
}
}