-
Notifications
You must be signed in to change notification settings - Fork 0
/
GUI.pde
580 lines (523 loc) · 16.4 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
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
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
/* This file is part of C3D.
C3D is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
C3D is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with C3D. If not, see <https://www.gnu.org/licenses/>. */
//Libreria de interfaz para el usuario
import controlP5.*;
import java.util.*;
ControlP5 cp5;
String busq = "";
boolean mostrarTut = true;
boolean auto_rotar = true;
PImage t1, t2, t3, t4, t5, t6, t7, nota;
//Boton guardar mapa
Button guardarMapa;
//boton rotar automatica
Button rotar_auto;
//Boton ocultar Datos
Button ocultar_datos;
//Lista de formatos 3D
DropdownList lista_3d;
//Lista de datos estadisticos
ScrollableList lista_datos;
//Seleccion de maximo / minimo a mostrar
ScrollableList opcionesMapa;
//Guardar y cargar estados de camara
ScrollableList estadosCam;
//CheckBox modo dos mapas
CheckBox m2m/*, autoHideUI*/;
Button autoHideUI;
//campo de busqueda
Textfield campoBusqueda;
//Boton de area de texto
Button ord_datos;
int padd_entre_op = 12;
boolean escondido = false;
String ordenLog = "default";
boolean esconderPresionado = false;
Textarea textoMap1, textoMap2;
String log = "Datos del censo 2010 y otros documentos de organismos nacionales (mismo año)";
PFont pfont;
ControlFont font;
void setupGUI() {
pfont = createFont("times.ttf", 9, true);
font = new ControlFont(pfont);
if (cp5 == null) {
cp5 = new ControlP5(this);
cp5.setAutoDraw(false);
cargarTutorial();
crearInterfaz();
}
}
void cargarTutorial() {
t1 = loadImage("Tutorial/T1.png");
t2 = loadImage("Tutorial/T2.png");
t3 = loadImage("Tutorial/T3.png");
t4 = loadImage("Tutorial/T4.png");
t5 = loadImage("Tutorial/T5.png");
t6 = loadImage("Tutorial/T6.png");
t7 = loadImage("Tutorial/T7.png");
nota = loadImage("Tutorial/nota.png");
if (t1 == null || t2 == null || t3 == null || t4 == null || t5 == null || t6 == null || t7 == null || nota == null) {
mostrarTut = false;
}
}
void crearInterfaz() {
guardarMapa = cp5.addButton("Guardar Mapa")
.setPosition(width*0.88, height*0.925)
.setSize(70, 30)
.setLabel("Guardar Mapa")
;
ocultar_datos = cp5.addButton("Ocultar")
.setPosition(width-220 - 10 + 200 - 50, height*0.2 + 5 + 385)
.setSize(50, 25)
.setLabel("Ocultar")
;
lista_datos = cp5.addScrollableList("Lista de datos estadisticos")
.setFont(font)
.setPosition(padd_entre_op, 0)
.setBarHeight(35)
.setItemHeight(35)
.setColorBackground(color(60))
.setColorActive(color(255, 128))
.close()
;
crearDatos();
pushStyle();
font.setSize(16);
campoBusqueda = cp5.addTextfield("")
.setPosition(padd_entre_op , height - 30 - 20)
.setSize(200, 30)
.setFont(font)
.setColor(225)
.setColorLabel(30)
.setAutoClear(false)
.setText("Ingrese busqueda...")
;
font.setSize(12);
popStyle();
lista_3d = cp5.addDropdownList("Formatos 3D")
.setPosition(lista_datos.getWidth() + padd_entre_op * 2, 0)
.setSize(80, 150) //100
.setBackgroundColor(color(190, 190, 0))
.setItemHeight(35)//20
.setBarHeight(35)//15
.addItem("Estilo 3D_ARG", 0)
.addItem("Estilo Recto", 1)
.addItem("Estilo Puntual", 2)
.setColorBackground(color(60))
.setColorActive(color(255, 128))
.close()
;
textoMap1 = cp5.addTextarea("Datos 1")
.setPosition(width-220, height*0.2)
.setSize(200, 385)
.setFont(createFont("arial", 12))
.setLineHeight(14)
.setColor(color(128))
.setColorBackground(color(255, 100))
.setColorForeground(color(255, 100))
.setBorderColor(54);
textoMap1.setText(log);
textoMap2 = cp5.addTextarea("Datos 2")
.setPosition(width-220, height*0.2)
.setSize(200, 385)
.setFont(createFont("arial", 12))
.setLineHeight(14)
.setColor(color(128))
.setColorBackground(color(255, 100))
.setColorForeground(color(255, 100));
textoMap2.setText(log);
textoMap2.hide();
m2m = cp5.addCheckBox("m2m")
.setPosition(lista_datos.getWidth()+lista_3d.getWidth() + padd_entre_op * 3, 7)
.setSize(25, 25)
.setColorLabel(0)
.addItem("Modo dos mapas", 0)
;
autoHideUI = cp5.addButton("autoHideUI")
.setPosition(width - padd_entre_op - 50, 5)
.setSize(50, 30)
.setLabel("Esconder")
;
rotar_auto = cp5.addButton("Rotar")
.setPosition(width - padd_entre_op - autoHideUI.getWidth() - padd_entre_op - 50, 5)
.setSize(50, 30)
.setLabel("Rotar")
;
opcionesMapa = cp5.addScrollableList("Opciones de zoom")
.setPosition(lista_datos.getWidth()+lista_3d.getWidth() + m2m.getWidth() + 90 + padd_entre_op * 4, 0)
.setSize(260, 250) //300
.setBackgroundColor(color(190, 190, 0))
.setItemHeight(35)//20
.setBarHeight(35)//15
.addItem("Valor max.: provincia con valor mas alto", 0)
.addItem("Valor max.: segunda provincia con valor mas alto", 1)
.addItem("Valor max.: el valor promedio de los valores", 2)
.addItem("Valor min.: provincia con valor mas bajo", 3)
.addItem("Valor min.: usar 0 como minimo", 4)
.setColorBackground(color(60))
.close()
.setColorActive(color(255, 128));
estadosCam = cp5.addScrollableList("Estados de camara")
.setPosition(lista_datos.getWidth()+lista_3d.getWidth() + m2m.getWidth() + 90 + opcionesMapa.getWidth() + padd_entre_op * 5, 0)
.setSize(200, 200)
.setBackgroundColor(color(190, 190, 0))
.setItemHeight(35)//20
.setBarHeight(35)//15
.addItem("Guardar el estado de camara actual", 0)
.addItem("Volver el estado al valor guardado", 1)
.setColorBackground(color(60))
.close()
.setColorActive(color(255, 128));
//Callback listener para campo busqueda
campoBusqueda.onClick(new CallbackListener() {
public void controlEvent(CallbackEvent theEvent) {
campoBusqueda.setText("");
}
});
}
void mostrarTutorial() {
image(t1, padd_entre_op-10, lista_datos.getBarHeight()-10); // Menos diametro/2 (d = 20)
image(t2, lista_datos.getWidth() + padd_entre_op * 2 + 10 - t2.width, lista_datos.getBarHeight()-10); // Menos diametro/2 (d = 20)
image(t3, lista_datos.getWidth()+lista_3d.getWidth() + m2m.getWidth() + 90 + padd_entre_op * 4 - 10, lista_datos.getBarHeight()-10); // Menos diametro/2 (d = 20)
image(t4, width - padd_entre_op - 130 + 10 - t4.width, 7 + autoHideUI.getHeight() ); // Menos diametro/2 (d = 20)
image(t5, width-220 + 10 - t5.width, height*0.2 + textoMap1.getHeight() - 10); // Menos diametro/2 (d = 20)
image(t6, width*0.88 + 10 - t6.width, height*0.925 + guardarMapa.getHeight() - 10 - 10 -t6.height); // Menos diametro/2 (d = 20)
image(t7, padd_entre_op, height-10-t7.height);
image(nota, width*0.2, height/2);
}
void crearDatos() {
lista_datos.setBarHeight(35);
lista_datos.setItemHeight(35);
int tam = 0;
String s;
for (int i = 1; i < datos.data[0].length; i++) {
s = datos.data[0][i];
s = s.toLowerCase();
s.replace('é', 'e');
s.replace('í', 'i');
s.replace('ó', 'o');
s.replace('ú', 'u');
s.replace('á', 'a');
s.replace('ü', 'u');
String[] resul = match(s, busq);
if (resul != null || busq == "") {
lista_datos.addItem(s, i);
if (datos.data[0].length <= i + datos.cantDatosNuevos) {
CColor c = new CColor();
lista_datos.getItem(i-1).put("color", c);
} else if (i + datos.cantDatosEco >= datos.data[0].length - datos.cantDatosNuevos) {
CColor c = new CColor();
color w = color(91, 219, 100);
c.setBackground(w);
lista_datos.getItem(i-1).put("color", c);
}
tam++;
}
}
if (lista_datos.getBarHeight() + 35 * tam + 1 * tam < height - lista_datos.getBarHeight() - 5) {
lista_datos.setSize(420, int(lista_datos.getBarHeight() + 35 * tam + 1 * tam)); //350
} else {
lista_datos.setSize(420, height-1 - lista_datos.getBarHeight() - 5);
}
lista_datos.setColorBackground(color(60));
lista_datos.setColorActive(color(255, 128));
}
void esconderUI() {
rotar_auto.hide();
lista_datos.close();
lista_3d.close();
opcionesMapa.close();
estadosCam.close();
estadosCam.hide();
lista_datos.hide();
lista_3d.hide();
opcionesMapa.hide();
m2m.hide();
autoHideUI.hide();
guardarMapa.hide();
escondido = true;
}
void mostrarUI() {
rotar_auto.show();
lista_datos.show();
lista_3d.show();
opcionesMapa.show();
estadosCam.show();
m2m.show();
autoHideUI.show();
if (cantMapas == 1) {
guardarMapa.show();
}
escondido = false;
}
void esconder_mostrarUI() {
if (esconderPresionado) {
if (mouseY < 36 || cp5.isMouseOver()) {
if (!textoMap1.isMouseOver() || !textoMap2.isMouseOver()) {
mostrarUI();
}
} else if (!escondido) {
esconderUI();
}
}
if (lista_datos.isOpen()) {
campoBusqueda.show();
} else {
campoBusqueda.hide();
}
}
void colorearDatos() {
if (mapas[0].SELECTOR != 0) {
if (textoMap1.isVisible()) {
for (int j = 0; j < cantMapas; j++) {
float[] pos;
if (j == 0) {
pos = textoMap1.getPosition();
}
else {
pos = textoMap2.getPosition();
}
for (int i = 0; i < mapas[j].colores.length; i++) {
pushStyle();
stroke(0);
strokeWeight(2);
fill(mapas[j].colores[i]);
if (i != mapas[j].colores.length - 1) {
rect(pos[0] - 12, pos[1] + 3 + i * 14, 12, 12);
}
else {
rect(pos[0] - 12, pos[1] + 3 + (i+1) * 14, 12, 12);
}
popStyle();
}
}
}
}
}
void dibujarInterfaz() {
hint(DISABLE_DEPTH_TEST);
c.beginHUD();
if (!record) {
textFont(f, 30);
fill(0, 30);
text("" + nfc(frameRate, 1), width-100, 60);
//Mostrar texto
for (int i = 0; i < cantMapas; i++) {
mapas[i].mostrarTexto();
mapas[i].renovarDatos();
}
//Dibjuar leyendas de color de los datos
colorearDatos();
cp5.draw();
}
if (mostrarTut) {
mostrarTutorial();
}
esconder_mostrarUI();
c.endHUD();
hint(ENABLE_DEPTH_TEST);
}
void modif_interfaz() {
if (cantMapas == 2) {
estadosCam.addItem("[mapa2] Guardar el estado de camara actual", 2);
estadosCam.addItem("[mapa2] Volver el estado al valor guardado", 3);
estadosCam.addItem("Copiar camara [mapa1] a camara [mapa2]", 4);
estadosCam.addItem("Movimiento simultaneo", 5);
textoMap2.show();
textoMap2.setPosition(width-220, height*0.2);
textoMap1.setPosition(width/2-220, height*0.2);
guardarMapa.hide();
} else {
estadosCam.removeItem("[mapa2] Guardar el estado de camara actual");
estadosCam.removeItem("[mapa2] Volver el estado al valor guardado");
estadosCam.removeItem("Copiar camara [mapa1] a camara [mapa2]");
estadosCam.removeItem("Movimiento simultaneo");
guardarMapa.show();
textoMap2.hide();
textoMap1.setPosition(width-220, height*0.2);
}
}
void crearBusqueda() {
lista_datos.clear();
crearDatos();
}
void colorearSeleccionado(int op) { //No usar
//Creo los colores
CColor c = new CColor();
c.setBackground(color(255, 0, 0));
CColor c2 = new CColor();
c2.setBackground(color(60));
if (cantMapas == 1) {
//Le seteo el color al item
cp5.get(ScrollableList.class, "Lista de datos estadisticos").getItem(op-1).put("color", c);
if (mapas[0].SELECTOR != 0) {
cp5.get(ScrollableList.class, "Lista de datos estadisticos").getItem(mapas[0].SELECTOR-1).put("color", c2);
}
} else {
//Le seteo el color al item
cp5.get(ScrollableList.class, "Lista de datos estadisticos").getItem(op-1).put("color", c);
cp5.get(ScrollableList.class, "Lista de datos estadisticos").getItem(mapas[0].SELECTOR-1).put("color", c);
if (mapas[1].SELECTOR != 0) {
if (mapas[1].SELECTOR-1 != op-1) {
//REVISAR
cp5.get(ScrollableList.class, "Lista de datos estadisticos").getItem(mapas[1].SELECTOR-1).put("color", c2);
}
}
}
}
void controlEvent(ControlEvent theEvent) {
if (theEvent.isFrom(m2m)) {
cantMapas = (int)m2m.getArrayValue()[0] + 1;
modif_interfaz();
setup();
}
else if (theEvent.isFrom(rotar_auto)) {
if (auto_rotar) {
auto_rotar = false;
}
else {
auto_rotar = true;
}
} else if (theEvent.isFrom(autoHideUI)) {
if (esconderPresionado) {
esconderPresionado = false;
}
else {
esconderPresionado = true;
}
} else if (theEvent.isFrom(opcionesMapa)) {
if (opcionesMapa.getValue() == 0 || opcionesMapa.getValue() == 1 || opcionesMapa.getValue() == 2) {
for (int i = 0; i < cantMapas; i++) {
mapas[i].selectMaximo = (int)opcionesMapa.getValue();
}
} else if (opcionesMapa.getValue() == 3) {
for (int i = 0; i < cantMapas; i++) {
mapas[i].selectMinimo = 0;
}
} else if (opcionesMapa.getValue() == 4) {
for (int i = 0; i < cantMapas; i++) {
mapas[i].selectMinimo = 2;
}
}
} else if (theEvent.isFrom(estadosCam)) {
if (estadosCam.getValue() == 0) {
mapas[0].grabarEstadoCam();
} else if (estadosCam.getValue() == 1) {
mapas[0].volverEstadoCam();
} else if (estadosCam.getValue() == 2) {
//grabar estado map 2
mapas[1].grabarEstadoCam();
} else if (estadosCam.getValue() == 3) {
mapas[1].volverEstadoCam();
} else if (estadosCam.getValue() == 4) {
//poner las 2 cams como cam 1
CameraState c;
c = mapas[0].cam.getState();
mapas[1].cam.setState(c, 1000);
} else if (estadosCam.getValue() == 5) {
//mover las 2 cams al mismo tiempo
}
} else if (theEvent.isFrom(guardarMapa)) {
record = true;
}
else if (theEvent.isFrom(ocultar_datos)) {
if (!textoMap1.isVisible() && cantMapas == 2) {
textoMap1.show();
textoMap2.show();
}
else if (!textoMap1.isVisible()) {
textoMap1.show();
}
else if (textoMap1.isVisible() && cantMapas == 1) {
textoMap1.hide();
textoMap2.hide();
}
else {
textoMap1.hide();
textoMap2.hide();
}
}
if (theEvent.isAssignableFrom(Textfield.class)) {
busq = theEvent.getStringValue();
crearBusqueda();
}
if (theEvent.isController()) {
if (theEvent.getController() == lista_datos) {
int op = int(theEvent.getController().getValue()+1);
List l = lista_datos.getItems();
String s;
s = l.get(op-1).toString();
String[] m = match(s, "name=(.*?),");
for (int i = 0; i < datos.data[0].length; i++) {
String opcion = datos.data[0][i];
opcion = opcion.toLowerCase();
opcion.replace('é', 'e');
opcion.replace('í', 'i');
opcion.replace('ó', 'o');
opcion.replace('ú', 'u');
opcion.replace('á', 'a');
opcion.replace('ü', 'u');
if (m[1].equals(opcion) == true) {
op = i;
println("encontrado");
break;
}
else {
println(m[1] + " ::: " + opcion +".");
}
}
if (lista_datos.isActive()) {
lista_datos.bringToFront();
}
if (cantMapas == 2) {
mapas[1].SELECTOR = mapas[0].SELECTOR;
mapas[0].SELECTOR = op;
log = "";
for (int j = 0; j < cantMapas; j++) {
for (int i = 1; i < datos.data.length; i++) {
log = log +(datos.data[i][0])+": \t\t "+(datos.data[i][mapas[j].SELECTOR])+ "\n";
}
if (j == 0) {
textoMap1.setText(log);
log = "";
} else {
textoMap2.setText(log);
}
}
} else {
mapas[0].SELECTOR = op;
log = "";
for (int i = 1; i < datos.data.length; i++) {
log = log +(datos.data[i][0])+": \t"+(datos.data[i][mapas[0].SELECTOR])+ "\n";
}
textoMap1.setText(log);
}
}
if (theEvent.getController() == lista_3d) {
int op = int(theEvent.getController().getValue());
if (op ==0) {
piramide =false;
rect = false;
proyec= true;
} else if (op ==1) {
piramide =false;
rect = true;
proyec= false;
} else if (op ==2) {
piramide =true;
rect = false;
proyec= false;
}
}
setup();
}
}