-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBoundaryObject_d.py
1039 lines (761 loc) · 42.1 KB
/
BoundaryObject_d.py
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
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# -*- encoding: utf-8 -*-
from pprint import pprint
from PySide2.QtCore import *
from PySide2.QtCore import Qt
from PySide2.QtGui import *
from PySide2 import QtCore, QtGui
from PySide2.QtCore import QObject, QUrl, Slot
import csv
import sys
import json
from PySide2.QtWidgets import QApplication, QMainWindow, QFileDialog, QInputDialog, QWidget, QTableWidget,QTableWidgetItem,QPushButton,QListView,QAbstractItemView,QTreeView,QMessageBox
from PySide2.QtWebEngineWidgets import QWebEngineView
# from PySide2.QtWebKit import *
#=SI(IZQUIERDA(E2;1)="9";CONCATENAR("0";E2);E2)
import controlador
import ventanitaPro
import os
from os.path import isfile
import csv
import math
#from PySide2.phonon import Phonon
import time
import itertools
#http://dev.openlayers.org/examples/sld.html
#http://localhost/geoserver/wfs?service=WFS&version=1.1.0&request=GetFeature&typename=megadapt:infra&outputFormat=application/json&srsname=EPSG:4326
#pyside-uic.exe -o controlador.py controlador.ui
#pyside-uic.exe -o dialog.py dialog.ui
class tiempoItem(QStandardItem):
def __init__(self, parent=None):
super(tiempoItem, self).__init__(parent)
self.arrayDeSettings=[]
def setArrayDeSettings(self,settings):
self.arrayDeSettings=[]
for diccionario in settings:
self.arrayDeSettings.append(diccionario.copy())
def getArrayDeSettings(self):
return(self.arrayDeSettings)
def clickEvent(self, evt):
print("auch!!")
return super(tiempoItem, self).dropEvent(evt)
def onclick(self):
print("aqui pondre la cofiguracion de las 6 pantallas")
class Ui_MainWindow(QMainWindow, controlador.Ui_MainWindow):
def __init__(self, parent=None):
super(Ui_MainWindow, self).__init__(parent)
self.setupUi(self)
estaImagen = QImage("Logotipos_Tablero_de_Control_Megadapt.png")
sample_palette = QPalette()
sample_palette.setColor(QPalette.Window, Qt.white)
sample_palette.setColor(QPalette.WindowText, Qt.blue)
self.frame_7.setAutoFillBackground(True)
self.frame_7.setPalette(sample_palette)
try:
self.logos.setPixmap(QPixmap.fromImage(estaImagen))
except:
print("no pude")
self.pantallaActivaIndex=0
self.fechaSlider.valueChanged.connect(self.ponFecha)
self.fpSlider.valueChanged.connect(self.ponFp)
self.groupsOfTimeSisters = []
self.groupsOfSpaceSisters = []
self.satellite.clicked.connect(self.ponSatelite)
self.calles.clicked.connect(self.ponCalles)
self.P1.clicked.connect(lambda: self.activaPantalla(0))
self.P2.clicked.connect(lambda: self.activaPantalla(1))
self.P3.clicked.connect(lambda: self.activaPantalla(2))
self.P4.clicked.connect(lambda: self.activaPantalla(3))
self.P5.clicked.connect(lambda: self.activaPantalla(4))
self.P6.clicked.connect(lambda: self.activaPantalla(5))
self.P1.setChecked(True)
self.guardaPantallas.clicked.connect(self.guardaPantallasEnArchivo)
self.guardaGuion.clicked.connect(self.guardaGuionEnArchivo)
self.cargaGuion.clicked.connect(self.cargaGuionDeArchivo)
self.borrar.clicked.connect(self.borraTiempo)
self.model = QStandardItemModel(self.listView)
self.listView.setModel(self.model)
self.cualRow=0
self.listView.clicked.connect(self.ponTiempo)
self.contador=0
self.addImage.clicked.connect(self.agregaCustomImage)
self.addVideo.clicked.connect(self.agregaCustomVideo)
self.addSerie.clicked.connect(self.agregaSerie)
self.addSerieWeb.clicked.connect(self.agregaSerieWeb)
self.addWeb.clicked.connect(self.agregaWeb)
self.vincularPorEspacio.clicked.connect(self.setSpaceSisters)
self.vincularPorTiempo.clicked.connect(self.setTimeSisters)
self.desvincularTiempo.clicked.connect(self.removeTimeSisterhood)
self.desvincularEspacio.clicked.connect(self.removeSpaceSisterhood)
self.x1.clicked.connect(lambda: self.extiendePantalla(1))
self.x2.clicked.connect(lambda: self.extiendePantalla(2))
self.x3.clicked.connect(lambda: self.extiendePantalla(3))
self.x4.clicked.connect(lambda: self.extiendePantalla(4))
self.play.clicked.connect(self.hasPlay)
self.stop.clicked.connect(self.hasStop)
self.pause.clicked.connect(self.hasPause)
#self.loop.clicked.connect(self.pantallaX4)
self.playGuion.setEnabled(False)
self.stopGuion.setEnabled(False)
self.playGuion.clicked.connect(self.playGuionConDelay)
self.stopGuion.clicked.connect(self.stopGuionConDelay)
alpha = 255
color = QtGui.QColor(237,248,251)
values = "{r}, {g}, {b}, {a}".format(r = color.red(), g = color.green(), b = color.blue(), a = alpha)
self.c1.setStyleSheet("QLabel { background-color: rgba("+values+"); }")
color = QtGui.QColor(179,205,227)
values = "{r}, {g}, {b}, {a}".format(r = color.red(), g = color.green(), b = color.blue(), a = alpha)
self.c2.setStyleSheet("QLabel { background-color: rgba("+values+"); }")
color = QtGui.QColor(140,150,198)
values = "{r}, {g}, {b}, {a}".format(r = color.red(), g = color.green(), b = color.blue(), a = alpha)
self.c3.setStyleSheet("QLabel { background-color: rgba("+values+"); }")
color = QtGui.QColor(136,86,167)
values = "{r}, {g}, {b}, {a}".format(r = color.red(), g = color.green(), b = color.blue(), a = alpha)
self.c4.setStyleSheet("QLabel { background-color: rgba("+values+"); }")
color = QtGui.QColor(129,15,124)
values = "{r}, {g}, {b}, {a}".format(r = color.red(), g = color.green(), b = color.blue(), a = alpha)
self.c5.setStyleSheet("QLabel { background-color: rgba("+values+"); }")
#
def ponFp(self,valor):
fp = float(valor) / 10.0
cuts = self.bojorquezSerrano(fp,maximo=self.pantallaActiva.api.maximo)##aqui esta mal
print(str(cuts))
self.pantallaActiva.webFrame.evaluateJavaScript("setIntervals("+str(cuts)+");")
self.pantallaActiva.currentFp = valor
labelCuts = self.bojorquezSerrano(fp,maximo=330.0)
self.c1.setGeometry(10,10,labelCuts[1],24)
self.c2.setGeometry(10+labelCuts[1],10,labelCuts[2]-labelCuts[1],24)
self.c3.setGeometry(10+labelCuts[2],10,labelCuts[3]-labelCuts[2],24)
self.c4.setGeometry(10+labelCuts[3],10,labelCuts[4]-labelCuts[3],24)
self.c5.setGeometry(10+labelCuts[4],10,labelCuts[5]-labelCuts[4],24)
def bojorquezSerrano(self,fp,numcats=5,maximo=1.0,minimo=0.0):
laSuma = 0
for i in range(numcats) :
laSuma += ((fp) ** i)
cachito = (maximo-minimo) / laSuma
cut = []
cut.append(minimo)
for i in range(numcats):
anterior = cut[i]
corte = anterior + fp ** i * cachito
cut.append(corte)
return cut
def setSpaceSisterhood(self,listaDeHermanas):
for hermana in listaDeHermanas:
susHermanasEnNumero = self.settingsPantallas[int(hermana)-1]['spaceSisters']
susHermanas = []
for hermanaNumero in susHermanasEnNumero:
susHermanas.append(self.pantalla[hermanaNumero].webFrame)
self.pantalla[int(hermana)-1].api.addSpacialSisters(susHermanas)
def setSpaceSisters(self):
print ("vinculando pantallas " + self.hermanasDeEspacio.text() + " espacialmente")
listaDeHermanas = self.hermanasDeEspacio.text().split(",")
for hermana in listaDeHermanas:
self.settingsPantallas[int(hermana)-1]['spaceSisters'] = []
for sister in listaDeHermanas:
if not sister == hermana:
self.settingsPantallas[int(hermana)-1]['spaceSisters'].append(int(sister)-1)
self.setSpaceSisterhood(listaDeHermanas)
print (self.settingsPantallas)
def setTimeSisterhood(self, listaDeHermanas):
for hermana in listaDeHermanas:
susHermanasEnNumero = self.settingsPantallas[int(hermana)-1]['timeSisters']
susHermanas = []
for hermanaNumero in susHermanasEnNumero:
susHermanas.append(self.pantalla[hermanaNumero].webFrame)
self.pantalla[int(hermana)-1].api.addTemporalSisters(susHermanas)
def setTimeSisters(self):
print ("vinculando pantallas " + self.hermanasDeTiempo.text() + " temporalmente")
listaDeHermanas = self.hermanasDeTiempo.text().split(",")
for hermana in listaDeHermanas:
self.settingsPantallas[int(hermana)-1]['timeSisters'] = []
for sister in listaDeHermanas:
if not sister == hermana:
self.settingsPantallas[int(hermana)-1]['timeSisters'].append(int(sister)-1)
self.setTimeSisterhood(listaDeHermanas)
print (self.settingsPantallas)
def removeSpaceSisterhood(self):
self.hermanasDeEspacio.setText("")
print ("desvinculando pantallas")
for i in range(0, self.numeroDePantallas):
self.pantalla[i].api.spatial_sisters = []
self.settingsPantallas[i]['spaceSisters'] = []
def removeTimeSisterhood(self):
self.hermanasDeTiempo.setText("")
print ("desvinculando pantallas")
for i in range(0, self.numeroDePantallas):
self.pantalla[i].api.temporal_sisters = []
self.settingsPantallas[i]['timeSisters'] = []
def ponGeometria(self,p,offsetX,offsetY):
self.pantalla[p].setGeometry(1920+(p*1920)+offsetX,offsetY,1920,1080)
def setSisterhoods(self):
# esto es para reestablecer los sisterhoods
print(self.groupsOfTimeSisters)
print(self.groupsOfSpaceSisters)
for groupOfSisters in self.groupsOfTimeSisters:
self.setTimeSisterhood(groupOfSisters)
for groupOfSisters in self.groupsOfSpaceSisters:
self.setSpaceSisterhood(groupOfSisters)
def ajustaSliders(self, sender, earg):##esta es la funcion handler del evento del api de cada pantalla que se activa cuando se carga para obtener informacion de la serie web (nFrames y paleta)
print ('foo! '+str(sender.numberOfFrames))
nFrames = sender.numberOfFrames
self.settingsPantallas[earg]['numberOfFrames'] = nFrames
self.fechaSlider.setMaximum (nFrames)
self.fechaSlider.setMinimum(1)
self.fechaSlider.setValue(1)
self.pantalla[earg].paleta = sender.paleta#si la paleta es vacia??
if len(sender.paleta) > 0:
#print (str(sender.paleta))
self.setWebberPaleta(earg)
self.cargando[earg] = False
if self.guion == True:
self.ponSiguienteSerieWeb()
if True in self.cargando:
print(str(earg)+" ya, pero faltan")
else:
print("todos ya")
self.setSisterhoods()
def setWebberPaleta(self, p):
alpha = 255
p_chunk = self.pantalla[p].paleta[0].split("(")[1].split(",")
color = QtGui.QColor(int(p_chunk[0]),int(p_chunk[1]),int(p_chunk[2]))
values = "{r}, {g}, {b}, {a}".format(r = color.red(), g = color.green(), b = color.blue(), a = alpha)
self.c1.setStyleSheet("QLabel { background-color: rgba("+values+"); }")
p_chunk = self.pantalla[p].paleta[1].split("(")[1].split(",")
color = QtGui.QColor(int(p_chunk[0]),int(p_chunk[1]),int(p_chunk[2]))
values = "{r}, {g}, {b}, {a}".format(r = color.red(), g = color.green(), b = color.blue(), a = alpha)
self.c2.setStyleSheet("QLabel { background-color: rgba("+values+"); }")
p_chunk = self.pantalla[p].paleta[2].split("(")[1].split(",")
color = QtGui.QColor(int(p_chunk[0]),int(p_chunk[1]),int(p_chunk[2]))
values = "{r}, {g}, {b}, {a}".format(r = color.red(), g = color.green(), b = color.blue(), a = alpha)
self.c3.setStyleSheet("QLabel { background-color: rgba("+values+"); }")
p_chunk = self.pantalla[p].paleta[3].split("(")[1].split(",")
color = QtGui.QColor(int(p_chunk[0]),int(p_chunk[1]),int(p_chunk[2]))
values = "{r}, {g}, {b}, {a}".format(r = color.red(), g = color.green(), b = color.blue(), a = alpha)
self.c4.setStyleSheet("QLabel { background-color: rgba("+values+"); }")
p_chunk = self.pantalla[p].paleta[4].split("(")[1].split(",")
color = QtGui.QColor(int(p_chunk[0]),int(p_chunk[1]),int(p_chunk[2]))
values = "{r}, {g}, {b}, {a}".format(r = color.red(), g = color.green(), b = color.blue(), a = alpha)
self.c5.setStyleSheet("QLabel { background-color: rgba("+values+"); }")
def ensamblaPantallas(self, numeroDePantallas):
self.numeroDePantallas=numeroDePantallas
self.pantalla=[]
self.settingsPantallas=[]
self.cargando = []
for p in range(0,numeroDePantallas):
self.settingsPantallas.append({'type' : None,'path' : None,'numberOfFrames' : 1,'initialFrame' : 1,'timeSisters' : [],'spaceSisters' : [],'multiplicador': 1})
self.pantalla.append(Wind())
self.ponGeometria(p,0,0)
self.pantalla[p].show()
self.cargando.append(False)
self.pantallaActiva=self.pantalla[0]
self.P1.setEnabled(True if (self.numeroDePantallas>0) else False)
self.P2.setEnabled(True if (self.numeroDePantallas>1) else False)
self.P3.setEnabled(True if (self.numeroDePantallas>2) else False)
self.P4.setEnabled(True if (self.numeroDePantallas>3) else False)
self.P5.setEnabled(True if (self.numeroDePantallas>4) else False)
self.P6.setEnabled(True if (self.numeroDePantallas>5) else False)
def playGuionConDelay(self):
print("aqui se activa el modo de reproduccion automatica del guion")
print(str(self.elGuion))
for tiempo in self.elGuion:
time.sleep(14)
self.settingsPantallas=[]
for row in tiempo:
self.settingsPantallas.append(row[:])
self.ponPantallasAsi()
def stopGuionConDelay(self):
print("aqui se detiene el modo de reproduccion automatica del guion")
def hasPlay(self):
print("aqui se reproduce el video")
self.pantallaActiva.media_obj.play()
def hasStop(self):
print("aqui se detiene el video")
self.pantallaActiva.media_obj.stop()
def hasPause(self):
print("aqui se pausa el video")
self.pantallaActiva.media_obj.pause()
def extiendePantalla(self,multiplicador):
elPunto = self.pantallaActiva.pos()
self.settingsPantallas[self.pantallaActivaIndex]['multiplicador']=multiplicador
largo = 1920 * multiplicador
self.pantallaActiva.setGeometry(elPunto.x(),0,largo,1080)
self.pantallaActiva.frame.setGeometry(0,0,largo,1080)
self.pantallaActiva.imageCanvas.setGeometry(0,0,largo,1080)
if multiplicador>1:
for i in range(self.pantallaActivaIndex+1,self.pantallaActivaIndex+multiplicador):
self.pantalla[i].hide()
self.settingsPantallas[i]['type']=None
self.pantallaActiva.show()
def extiendePantallaNoActiva(self,p,multiplicador):
elPunto = self.pantalla[p].pos()
self.settingsPantallas[p]['multiplicador']=multiplicador
largo = 1920 * multiplicador
self.pantalla[p].setGeometry(elPunto.x(),0,largo,1080)
self.pantalla[p].frame.setGeometry(0,0,largo,1080)
self.pantalla[p].imageCanvas.setGeometry(0,0,largo,1080)
if multiplicador>1:
for i in range(p+1,p+multiplicador):
self.pantalla[i].hide()
self.settingsPantallas[i]['type']=None
self.pantalla[p].show()
def pantallasX1(self):
print("todas x1")
for p in range(0,self.numeroDePantallas):
self.settingsPantallas[p]['multiplicador']=1
self.pantalla[p].ponGeometria(p)
self.pantalla[p].show()
def agregaSerie(self):
self.guion = False
print("aqui agregare una serie de imagenes")
imageSerie, _ = QFileDialog.getOpenFileNames(self, 'Selecciona serie de imágenes')
prefijo=imageSerie[0].split(".")[0][:-2]
print(prefijo,len(imageSerie))
image0 = imageSerie[0]
estaImagen = QImage(image0)
if self.settingsPantallas[self.pantallaActivaIndex]['multiplicador']==None:
self.settingsPantallas[self.pantallaActivaIndex]['multiplicador']=1
multiplicador = self.settingsPantallas[self.pantallaActivaIndex]['multiplicador']
self.extiendePantalla(multiplicador)
self.settingsPantallas[self.pantallaActivaIndex]['numberOfFrames']=len(imageSerie)
self.settingsPantallas[self.pantallaActivaIndex]['path']=prefijo
self.settingsPantallas[self.pantallaActivaIndex]['multiplicador']=multiplicador
self.settingsPantallas[self.pantallaActivaIndex]['initialFrame']=1
self.fechaSlider.setMaximum(len(imageSerie))
self.sliderObservados.setVisible(True)
self.fechaSlider.setFocus()
try:
if self.pantallaActiva.video_widget:
self.pantallaActiva.video_widget.resize(0, 0)
self.pantallaActiva.imageCanvas.setPixmap(QPixmap.fromImage(estaImagen))
except:
print("no pude")
def agregaCustomImage(self):
self.guion = False
customImage, _ = QFileDialog.getOpenFileName(self, 'Cargar imagen')
estaImagen = QImage(customImage)
if self.settingsPantallas[self.pantallaActivaIndex]['multiplicador']==None:
self.settingsPantallas[self.pantallaActivaIndex]['multiplicador']=1
multiplicador = self.settingsPantallas[self.pantallaActivaIndex]['multiplicador']
self.extiendePantalla(multiplicador)
self.settingsPantallas[self.pantallaActivaIndex]['type']="customImage"
self.settingsPantallas[self.pantallaActivaIndex]['path']=customImage
self.settingsPantallas[self.pantallaActivaIndex]['multiplicador']=multiplicador
try:
if self.pantallaActiva.video_widget:
self.pantallaActiva.video_widget.resize(0, 0)
self.pantallaActiva.imageCanvas.setPixmap(QPixmap.fromImage(estaImagen))
self.pantallaActiva.view.hide()
except:
print("no pude")
def agregaCustomVideo(self):
self.guion = False
if self.settingsPantallas[self.pantallaActivaIndex]['multiplicador']==None:
self.settingsPantallas[self.pantallaActivaIndex]['multiplicador']=1
multiplicador = self.settingsPantallas[self.pantallaActivaIndex]['multiplicador']
self.extiendePantalla(multiplicador)
largo = 1920 *multiplicador
customVideo, _ = QFileDialog.getOpenFileName(self, 'Cargar video')
#self.pantallaActiva.mapFrame.setGeometry(0,0,1900,1050)
self.controlesVideo.setVisible(True)
#self.pantallaActiva.mapFrame.setGeometry(0,0,1900,1050)
media_src = Phonon.MediaSource(customVideo)
self.pantallaActiva.media_obj = Phonon.MediaObject(self.pantallaActiva.frame)
self.pantallaActiva.media_obj.setCurrentSource(media_src)
self.pantallaActiva.video_widget = Phonon.VideoWidget(self.pantallaActiva.frame)
self.pantallaActiva.video_widget.setGeometry(0,0,largo,1080)
Phonon.createPath(self.pantallaActiva.media_obj, self.pantallaActiva.video_widget)
audio_out = Phonon.AudioOutput(Phonon.VideoCategory)
Phonon.createPath(self.pantallaActiva.media_obj, audio_out)
self.pantallaActiva.video_widget.show()
self.pantallaActiva.media_obj.play()
self.settingsPantallas[self.pantallaActivaIndex]['type']="customVideo"
self.settingsPantallas[self.pantallaActivaIndex]['path']=customVideo
self.settingsPantallas[self.pantallaActivaIndex]['multiplicador']=multiplicador
def agregaSerieWeb(self):
self.guion = False
url, ok = QInputDialog.getText(self, 'Input Dialog',
'url:')
if ok:
self.settingsPantallas[self.pantallaActivaIndex]['path'] = str(url)
self.settingsPantallas[self.pantallaActivaIndex]['type'] = 'serieWeb'
self.pantallaActiva.setWebKit(url)
self.pantallaActiva.api.setEvent(self.pantallaActivaIndex)
self.pantallaActiva.api.evt_foo += self.ajustaSliders
def agregaWeb(self):
self.guion = False
url, ok = QInputDialog.getText(self, 'Input Dialog',
'url:')
if ok:
self.settingsPantallas[self.pantallaActivaIndex]['path'] = str(url)
self.settingsPantallas[self.pantallaActivaIndex]['type'] = 'webPage'
self.settingsPantallas[self.pantallaActivaIndex]['numberOfFrames'] = 1
self.pantallaActiva.numberOfFrames = 1
self.pantallaActiva.setSimpleWebKit(url)
def borraTiempo(self):
self.model.removeRow(self.cualRow)
def cargaGuionDeArchivo(self):
proyectoFileName, _ = QFileDialog.getOpenFileName(self, 'Cargar guión')
#proyectoFile= open(proyectoFileName,"r")
with open(proyectoFileName) as data_file:
self.elGuion = json.load(data_file)
self.model.clear()
# proyectoFile
contador = 0
for i in range(1,len(self.elGuion)+1):
k = 'tiempo'+str(i)
tiempo = self.elGuion[k][:]
pixpathFoto = "screens30.png"
elIcon = QImage(pixpathFoto)
contador += 1
textual_item = tiempoItem()
textual_item.setData(elIcon,Qt.DecorationRole)
textual_item.setText(str(contador))
textual_item.setArrayDeSettings(tiempo)
#textual_item = QStandardItem('Item text'+str(self.contador))
self.model.appendRow(textual_item)
self.playGuion.setEnabled(True)
self.stopGuion.setEnabled(True)
def guardaGuionEnArchivo(self):
print("Salvando...")
proyectoFileName, _ = QFileDialog.getSaveFileName(self, 'Guardar guión')
proyectoFile= open(proyectoFileName,"w")
#proyectoFile = asksaveasfile(title="Donde guardo?", mode='w')
#self.listView
losItems = self.model.findItems('', Qt.MatchContains)
print(str(losItems))
contador = 0
proyectoFile.write("{")
for item in losItems:
contador += 1
if contador > 1:
proyectoFile.write(",\n")
proyectoFile.write('"tiempo'+str(contador)+'" :\n')
contador2 = 0
proyectoFile.write("[")
for diccionario in item.arrayDeSettings:
contador2 += 1
if contador2 > 1:
proyectoFile.write(",\n")
proyectoFile.write(json.dumps(diccionario, sort_keys=False,))
proyectoFile.write("]")
proyectoFile.write("}")
proyectoFile.close()
def ponTiempo(self,evnt):
print(str(evnt.row()))
print(str(self.model.item(evnt.row()).getArrayDeSettings()))
self.cualRow=evnt.row()
array = self.model.item(evnt.row()).getArrayDeSettings()
self.settingsPantallas=array[:]
self.ponPantallasAsi()
def ponPantallasAsi(self):
print(str(self.settingsPantallas))
self.guion = True
estabaEnLaPantalla = self.pantallaActivaIndex
self.groupsOfTimeSisters = []
self.groupsOfSpaceSisters = []
self.cargando = [False for i in range(0, self.numeroDePantallas)]
for x in range(0,self.numeroDePantallas):
if self.settingsPantallas[x]['type']=="serieWeb":
self.cargando[x] = True
for p in range(0,self.numeroDePantallas):
ya = False
for i in range(0, len(self.groupsOfTimeSisters)):
if p in self.groupsOfTimeSisters[i]:
ya = True
if not ya and len(self.settingsPantallas[p]['timeSisters']) > 0:
lista = self.settingsPantallas[p]['timeSisters'][:]
lista.append(p)
self.groupsOfTimeSisters.append(lista)
ya = False
for i in range(0, len(self.groupsOfSpaceSisters)):
if p in self.groupsOfSpaceSisters[i]:
ya = True
if not ya and len(self.settingsPantallas[p]['spaceSisters']) > 0:
lista = self.settingsPantallas[p]['spaceSisters'][:]
lista.append(p)
self.groupsOfSpaceSisters.append(lista)
if self.settingsPantallas[p]['type']=="imageSerie":
print("imageSerie")
print(str(self.settingsPantallas[p]))
print("poniendo el slider en "+ str(self.settingsPantallas[p]['initialFrame']))
self.sliderObservados.setVisible(True)
self.fechaSlider.setFocus()
self.extiendePantallaNoActiva(p,self.settingsPantallas[p]['multiplicador'])
if self.pantalla[p].video_widget:
self.pantalla[p].video_widget.resize(0, 0)
print(str(self.settingsPantallas[p]))
#self.fechaSlider.setMaximum(self.settingsPantallas[self.pantallaActivaIndex][0])
self.ponFecha(self.settingsPantallas[p]['initialFrame'])
elif self.settingsPantallas[p]['type']=="customVideo":
largo = self.settingsPantallas[p]['multiplicador']*1920
self.extiendePantallaNoActiva(p,self.settingsPantallas[p]['multiplicador'])
self.pantalla[p].frame.setGeometry(0,0,largo,1080)
self.controlesVideo.setVisible(True)
#self.pantallaActiva.mapFrame.setGeometry(0,0,1900,1050)
customVideo= self.settingsPantallas[p]['path']
media_src = Phonon.MediaSource(customVideo)
self.pantalla[p].media_obj = Phonon.MediaObject(self.pantalla[p].frame)
self.pantalla[p].media_obj.setCurrentSource(media_src)
self.pantalla[p].video_widget = Phonon.VideoWidget(self.pantalla[p].frame)
self.pantalla[p].video_widget.setGeometry(0,0,largo,1050)
Phonon.createPath(self.pantalla[p].media_obj, self.pantalla[p].video_widget)
audio_out = Phonon.AudioOutput(Phonon.VideoCategory)
Phonon.createPath(self.pantalla[p].media_obj, audio_out)
self.pantalla[p].video_widget.show()
self.pantalla[p].media_obj.play()
elif self.settingsPantallas[p]['type']=="customImage":
print("aqui se agrega una imagen custom " + self.settingsPantallas[p]['path']+ " en la pantalla " + str(p))
customImage= str(self.settingsPantallas[p]['path'])
estaImagen = QImage(customImage)
multiplicador = self.settingsPantallas[p]['multiplicador']
self.extiendePantallaNoActiva(p,multiplicador)
try:
if self.pantalla[p].video_widget:
self.pantalla[p].video_widget.resize(0, 0)
self.pantalla[p].imageCanvas.setPixmap(QPixmap.fromImage(estaImagen))
self.pantalla[p].view.hide()
except:
print("no pude")
elif self.settingsPantallas[p]['type']=="webPage":
print("webPage")
print(str(self.settingsPantallas[p]))
self.extiendePantallaNoActiva(p,self.settingsPantallas[p]['multiplicador'])
self.settingsPantallas[p]['numberOfFrames'] = 1
self.pantalla[p].numberOfFrames = 1
self.pantalla[p].setSimpleWebKit(self.settingsPantallas[p]['path'])
if self.pantalla[p].video_widget:
self.pantalla[p].video_widget.resize(0, 0)
#self.ponFecha(self.settingsPantallas[self.pantallaActivaIndex]['initialFrame'])
else:
print("no es nada")
if True in self.cargando:
#elif self.settingsPantallas[p]['type']=="serieWeb":
self.ponSiguienteSerieWeb()
self.pantallaActiva=self.pantalla[estabaEnLaPantalla]
self.pantallaActivaIndex = estabaEnLaPantalla
def ponSiguienteSerieWeb(self):
print("serieWeb")
if True in self.cargando:
p = self.cargando.index(True)
print(str(self.settingsPantallas[p]))
print("poniendo el slider en "+ str(self.settingsPantallas[p]['initialFrame']))
self.sliderObservados.setVisible(True)
self.extiendePantallaNoActiva(p,self.settingsPantallas[p]['multiplicador'])
self.pantalla[p].setWebKit(self.settingsPantallas[p]['path'])
if self.pantalla[p].video_widget:
self.pantalla[p].video_widget.resize(0, 0)
print(str(self.settingsPantallas[p]))
#self.fechaSlider.setMaximum(self.settingsPantallas[self.pantallaActivaIndex][0])
self.pantalla[p].api.setEvent(p)
self.pantalla[p].api.evt_foo += self.ajustaSliders
def guardaPantallasEnArchivo(self):
elIcon = QImage("screens30.png")
textual_item = tiempoItem()
textual_item.setData(elIcon,Qt.DecorationRole)
textual_item.setArrayDeSettings(self.settingsPantallas[:])
#textual_item = QStandardItem('Item text'+str(self.contador))
self.model.appendRow(textual_item)
print(str(self.model.item(0).getArrayDeSettings()))
self.contador+=1
#self.listView.show()
def ponSatelite(self):
self.pantallaActiva.webFrame.evaluateJavaScript("setSatelite();")
def ponCalles(self):
self.pantallaActiva.webFrame.evaluateJavaScript("setCalles();")
def ponFecha(self,valor):
#self.pantallaActiva.webFrame.evaluateJavaScript("setup();")
#print str(self.settingsPantallas[self.pantallaActivaIndex])
if self.settingsPantallas[self.pantallaActivaIndex]['numberOfFrames'] > 1:
if valor>9:
valorStr = str(valor)
else:
valorStr = "0"+str(valor)
if self.settingsPantallas[self.pantallaActivaIndex]['type']=="serieWeb":
self.pantallaActiva.webFrame.evaluateJavaScript("setStep("+str(valor-1)+");")
self.pantallaActiva.currentFrame = valor
for i in self.settingsPantallas[self.pantallaActivaIndex]['timeSisters']:
self.pantalla[i].webFrame.evaluateJavaScript("setStep("+str(valor-1)+");")
self.pantalla[i].currentFrame = valor
else:
print("aqui va el slider de serie de imagenes custom "+str(valor))
#self.settingsPantallas[self.pantallaActivaIndex][3]=valor
#if self.settingsPantallas[self.pantallaActivaIndex]['numberOfFrames'] > 1: ##esto es para saber si es una serie,cuando settingsPantallas sea un diccionario bien parido esto se escribira mejor
pixpath = os.path.join(self.settingsPantallas[self.pantallaActivaIndex]['path']+valorStr+".png")
print(pixpath)
laImagen = QImage(pixpath)
try:
self.pantallaActiva.imageCanvas.setPixmap(QPixmap.fromImage(laImagen))
except:
print("no hay")
def ponFechaSliderCustom(self, valor):
if valor>9:
valorStr = str(valor)
else:
valorStr = "0"+str(valor)
#self.settingsPantallas[self.pantallaActivaIndex][3]=valor
if self.settingsPantallas[self.pantallaActivaIndex]['numberOfFrames'] > 1: ##esto es para saber si es una serie,cuando settingsPantallas sea un diccionario bien parido esto se escribira mejor
pixpath = os.path.join(self.settingsPantallas[self.pantallaActivaIndex]['path']+valorStr+".png")
print(pixpath)
laImagen = QImage(pixpath)
try:
self.pantallaActiva.imageCanvas.setPixmap(QPixmap.fromImage(laImagen))
except:
print("no hay")
def recuperaPantalla(self):
if self.settingsPantallas[self.pantallaActivaIndex]['numberOfFrames'] > 1:##esto es para saber si es una serie,cuando settingsPantallas sea un diccionario bien parido esto se escribira mejor
#self.quitaSliders()
self.fpSlider.setValue(self.pantallaActiva.currentFp)
self.fechaSlider.setValue(self.pantallaActiva.currentFrame)
self.fechaSlider.setMaximum (self.settingsPantallas[self.pantallaActivaIndex]['numberOfFrames'])
self.fechaSlider.setMinimum(1)
if len(self.pantallaActiva.api.paleta) > 0:
self.setWebberPaleta(self.pantallaActivaIndex)
self.sliderObservados.setVisible(True)
self.fechaSlider.setFocus()
if self.settingsPantallas[self.pantallaActivaIndex]['type']=="customVideo":
#self.quitaSliders()
self.controlesVideo.setVisible(True)
def activaPantalla(self,pantallaIndex):
print(str(self.settingsPantallas[pantallaIndex]))
self.pantallaActiva=self.pantalla[pantallaIndex]
self.pantallaActivaIndex=pantallaIndex
self.recuperaPantalla()
self.x2.setEnabled(True if (pantallaIndex<self.numeroDePantallas-2) else False)
self.x3.setEnabled(True if (pantallaIndex<self.numeroDePantallas-3) else False)
self.x4.setEnabled(True if (pantallaIndex<self.numeroDePantallas-4) else False)
if self.settingsPantallas[pantallaIndex]['numberOfFrames'] == 1:
print("pantalla "+str(pantallaIndex+1)+" activa")
else:
print("pantalla "+str(pantallaIndex+1)+" activa en el frame " + str(self.pantallaActiva.currentFrame))
# turn on developer tools in webkit so we can get at the javascript console for debugging
#QWebSettings.globalSettings().setAttribute(QWebSettings.DeveloperExtrasEnabled, True)
# not required, used for example javascript->python calls
import json
import event
# any QObject can be added to the javascript window object
# slots are then callable from javascript
class PythonAPI(QObject):
def setEvent(self,p):
if p==0:
self.evt_foo = event.Event0()
if p==1:
self.evt_foo = event.Event1()
if p==2:
self.evt_foo = event.Event2()
if p==3:
self.evt_foo = event.Event3()
if p==4:
self.evt_foo = event.Event4()
if p==5:
self.evt_foo = event.Event5()
def addSpacialSisters(self, hermanas):
self.spatial_sisters = []
for hermana in hermanas:
self.spatial_sisters.append(hermana)
def addTemporalSisters(self, hermanas):
self.temporal_sisters = []
for hermana in hermanas:
self.temporal_sisters.append(hermana)
@Slot(float, float, float, float, float)
def setWebberCuts(self, c1,c2,c3,c4,c5):
self.webberCuts = [c1,c2,c3,c4,c5]
print (str(self.webberCuts))
@Slot('QStringList')
def setPaleta(self, paleta):
#print (str(paleta))
self.paleta = paleta
@Slot(str)
def setBorde(self,borde):
self.borde = borde
@Slot(float)
def setMaximum(self, m):
self.maximo = m
@Slot(int)
def setNumberOfFrames(self, n):
self.numberOfFrames = n
self.evt_foo(self)
@Slot(float, float)
def rePanSisters(self, x,y):
for sister in self.spatial_sisters:
sister.evaluateJavaScript("rePan("+str(x)+","+str(y)+");")
@Slot(float)
def reZoomSisters(self, res):
for sister in self.spatial_sisters:
sister.evaluateJavaScript("reZoom("+str(res)+");")
# take two integers and return an integer
@Slot(int, int, result=int)
def add(self, a, b):
return a + b
# take a list of strings and return a string
# because of setapi line above, we get a list of python strings as input
@Slot('QStringList', result=str)
def concat(self, strlist):
return ''.join(strlist)
# take a javascript object and return string
# javascript objects come into python as dictionaries
# functions are represented by an empty dictionary
@Slot('QVariantMap', result=str)
def json_encode(self, jsobj):
# import is here to keep it separate from 'required' import
return json.dumps(jsobj)
# take a string and return an object (which is represented in python
# by a dictionary
@Slot(str, result='QVariantMap')
def json_decode(self, jsstr):
return json.loads(jsstr)
class Wind(QMainWindow, ventanitaPro.Ui_MainWindow):
def __init__(self, parent=None):
super(Wind, self).__init__(parent)
self.setupUi(self)
self.setWindowFlags(Qt.FramelessWindowHint);
self.video_widget=None
self.view = QWebEngineView(self)
self.api = PythonAPI()
self.currentFrame = 1
self.currentFp = 1.0
def setWebKit(self, url):
#print("estoy intentando abrir una pagina web")
#self.titleFrame.setVisible(False)
#self.graphFrame.setVisible(False)
#self.fotosFrame.setVisible(False)
#cualUrl =
self.view = QWebEngineView(self)
#self.view.settings().setAttribute(QWebSettings.WebAttribute.DeveloperExtrasEnabled, True)
self.api = PythonAPI()
self.currentFrame = 1
self.currentFp = 1.0
self.view.setGeometry(0,0,1920,1080)
#self.view.load(QtCore.QUrl('http://localhost/~fidel/testMegadapt2.html'))
self.view.load(QtCore.QUrl(url))
self.view.show()
self.view.setFocus()
self.webFrame = self.view.page().mainFrame()
self.webFrame.javaScriptWindowObjectCleared.connect(self.load_api)
self.show()