-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.py
816 lines (643 loc) · 23.1 KB
/
main.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
##########################################################
##########################################################
# description: ADA 2.0b
# autor: jeraman
# date: 26/04/2010
##########################################################
##########################################################
from pyata.pd import *
from clock import *
from planet import *
from random import *
from math import *
import os
from string import *
#variavel usada para debugar: define se o pd deve ser inicializado
init_pd = True
#define em qual regiao da tela os elementos irao surgir
str_x = -400
end_x = 1000
#characteres seguros para serem usados no pd
safe_chars = ascii_letters + digits + whitespace #+ punctuation + '_'
#################################
#################################
# thanking the public
#################################
#################################
def credits ():
print "crediting"
if init_pd:
pd.clear()
sleep(3)
c = Comment(500, 250, "==== THANK YOU ALL! ====")
c = Comment(500, 300, "performance by ADA 2.0b")
c = Comment(500, 360, "developed by Jeraman, 2010")
c = Comment(500, 380, "jeraman [at] wouwlabs.com")
sleep(10)
#limpe o patch
pd.clear()
pd.save()
pd.clear()
pd.save()
sleep(1)
print "fim do credits"
#################################
#################################
# painting the counter before the piece starting
#################################
#################################
def counter ():
print "counting"
if init_pd:
for i in xrange(10, 0, -1):
c = Comment(randint(400, 800), randint(200, 600), str(i))
sleep(1)
#limpe o patch
pd.clear()
pd.save()
pd.clear()
pd.save()
sleep(1)
c = Comment(600, 300, "hello")
sleep(3)
pd.clear()
sleep(2)
c = Comment(580, 300, "I'm ADA 2.0b")
sleep(10)
pd.clear()
sleep(2)
pd.clear()
pd.save()
pd.clear()
pd.save()
sleep(1)
print "fim do counter"
#################################
#################################
# pre primeiro movimento: o conteudo da memoria RAM
#################################
#################################
def pre_first_movement ():
print "pre primeiro movimento"
#abrindo a memoria e carregando-a numa lista
list = []
memory = open("/dev/mem","r")
#quantidade de linhas de memoria capturada
size = 250
#formata a memoria para ser usada
for i in range(size):
s = memory.readline().replace(";", "*")
s = s.replace("\n", " ")
#print "antes"
#print s
#print "depois"
s=''.join([char if char in safe_chars else '' for char in s])
print s
#if(len(s) > 50):
# s = s[0:50]
list.append(s)
memory.close()
#delimita a area de surgimento dos comentarios
if init_pd:
print "SUBMOV 3"
#por BOUNDS segundos imprima levemente a memria na tela
bound = 30
start = time()
now = time()
while (now - start)<bound:
for i in range (5):
aux = randint(0, size-1)
c1 = Comment(randint(str_x, end_x), randint(str_x, end_x), list[aux])
aux = randint(0, size-1)
c2 = Comment(randint(str_x, end_x), randint(str_x, end_x), list[aux])
aux = randint(0, size-1)
c3 = Comment(randint(str_x, end_x), randint(str_x, end_x), list[aux])
#t = uniform(0.5, 1.0)
#sleep(t)
sleep(0.5)
pd.clear()
now = time()
#limpe o patch
pd.clear()
pd.save()
pd.clear()
pd.save()
sleep(0.5)
print "fim do pre primeiro movimento"
#################################
#################################
# primeiro movimento: o conteudo da memoria RAM
#################################
#################################
def first_movement ():
print "primeiro movimento"
#abrindo a memoria e carregando-a numa lista
list = []
memory = open("/dev/mem","r")
#quantidade de linhas de memoria capturada
size = 250
#formata a memoria para ser usada
for i in range(size):
s = memory.readline().replace(";", "*")
s = s.replace("\n", " ")
s=''.join([char if char in safe_chars else '' for char in s])
#if(len(s) > 50):
# s = s[0:50]
list.append(s)
memory.close()
#delimita a area de surgimento dos comentarios
if init_pd:
print "SUBMOV 1"
#por BOUNDS segundos imprima levemente a memria na tela
bound = 15
start = time()
now = time()
while (now - start)<bound:
aux = randint(0, size-1)
c1 = Comment(randint(str_x, end_x), randint(str_x, end_x), list[aux])
aux = randint(0, size-1)
c2 = Comment(randint(str_x, end_x), randint(str_x, end_x), list[aux])
aux = randint(0, size-1)
c3 = Comment(randint(str_x, end_x), randint(str_x, end_x), list[aux])
#t = uniform(0.5, 1.0)
#sleep(t)
sleep(0.5)
pd.clear()
now = time()
print "SUBMOV 2"
#por BOUNDS segundos imprima sem apagar a memoria na tela
bound = 15
start = time()
now = time()
while (now - start)<bound:
aux = randint(0, size-1)
c1 = Comment(randint(str_x, end_x), randint(str_x, end_x), list[aux])
aux = randint(0, size-1)
c2 = Comment(randint(str_x, end_x), randint(str_x, end_x), list[aux])
aux = randint(0, size-1)
c3 = Comment(randint(str_x, end_x), randint(str_x, end_x), list[aux])
#t = uniform(0.5, 1.0)
#sleep(t)
sleep(0.5)
now = time()
pd.clear()
sleep(0.1)
print "SUBMOV 3"
#por BOUNDS segundos imprima levemente a memria na tela
bound = 30
start = time()
now = time()
while (now - start)<bound:
for i in range (3):
aux = randint(0, size-1)
c1 = Comment(randint(str_x, end_x), randint(str_x, end_x), list[aux])
aux = randint(0, size-1)
c2 = Comment(randint(str_x, end_x), randint(str_x, end_x), list[aux])
aux = randint(0, size-1)
c3 = Comment(randint(str_x, end_x), randint(str_x, end_x), list[aux])
sleep(0.7)
#t = uniform(0.5, 1.0)
#sleep(t)
pd.clear()
sleep(0.1)
now = time()
#limpe o patch
pd.clear()
pd.save()
pd.clear()
pd.save()
sleep(0.5)
print "fim do primeiro movimento"
#################################
#################################
# pra segundo movimento: os processos na CPU
#################################
#################################
def pre_second_movement ():
print "pre segundo movimento"
#seta a quantidade de processos
n_proc = 20
#pega a lista de processos e coloca em array
a = os.popen("ps axco %cpu,cmd | sort -k 1 -nr | head -" + str(n_proc+1))
array = a.read()
array = array.split("\n")
#removendo o cabecalho
#print len(array)
for s in array:
if s.find("%") > -1:
array.remove(s)
#pega todos os processos e sua respectiva cpu
list = []
for s in array:
s = s.strip()
temp = s.split(" ")
temp.reverse()
if len(temp) == 2:
list.append(temp)
#"aleatoriesando" a lista
final_list = []
for i in range(len(list)):
final_list.append(list[randint(0, len(list)-1)])
#se o pd deve ser iniciado
if init_pd:
#criando o centro do relogio em questao
osc=Object(600, 350, "osc~")
dac=Object(osc.x, osc.y+30, "dac~")
connect(osc, 0, dac, 0)
centro = [osc,dac]
#criando o relogio
c = Clock(300, centro, final_list, 1000)
#por BOUNDS segundos imprima levemente a memria na tela
bound = 30
start = time()
now = time()
while (now - start)<bound:
c.increment()
sleep(0.1)
now = time()
#destrua esse relogio
c.destroy()
#limpe o patch
pd.clear()
pd.save()
pd.clear()
pd.save()
sleep(0.5)
print "fim do pre segundo movimento"
#################################
#################################
# segundo movimento: a loucaura dos processos na CPU
#################################
#################################
def second_movement ():
print "segundo movimento"
#seta a quantidade de processos
n_proc = 20
#pega a lista de processos e coloca em array
a = os.popen("ps axco %cpu,cmd | sort -k 1 -nr | head -" + str(n_proc+1))
array = a.read()
array = array.split("\n")
#removendo o cabecalho
#print len(array)
for s in array:
if s.find("%") > -1:
array.remove(s)
#pega todos os processos e sua respectiva cpu
list = []
for s in array:
s = s.strip()
temp = s.split(" ")
temp.reverse()
if len(temp) == 2:
list.append(temp)
#se o pd deve ser iniciado
if init_pd:
#numero de relogios
n_clocks = 5
#clocks
clocks = []
#criando N_CLOCK relogios
for i in range(n_clocks):
#criando o centro do relogio em questao
osc=Object(randint(100, 800), randint(100, 600), "osc~")
dac=Object(osc.x, osc.y+30, "dac~")
connect(osc, 0, dac, 0)
centro = [osc,dac]
#criando os objectos que farao parte da lista
n_processes = randint(2, 5)
final_list = []
for i in range(n_processes):
final_list.append(list[randint(0, n_processes-1)])
#adicionando o relogio na lista
clocks.append(Clock(randint(50, 300), centro, final_list, randint(7, 30)))
#por BOUNDS segundos imprima levemente a memria na tela
bound = 90
start = time()
now = time()
while (now - start)<bound:
for c in clocks:
c.increment()
now = time()
#destrua C e crie um novo relogio aleatorio
if c.lifetime < 0:
c.destroy()
sleep(0.5)
#criando o centro do relogio em questao
osc=Object(randint(100, 800), randint(100, 600), "osc~")
dac=Object(osc.x, osc.y+30, "dac~")
connect(osc, 0, dac, 0)
centro = [osc,dac]
#criando os objectos que farao parte da lista
n_processes = randint(3, 6)
final_list = []
for i in range(n_processes):
final_list.append(list[randint(0, n_processes-1)])
#adicionando o relogio na lista
clocks.append(Clock(randint(50, 300), centro, final_list, randint(5, 30)))
sleep(0.5)
#limpe o patch
pd.clear()
pd.save()
pd.clear()
pd.save()
sleep(0.5)
print "fim do segundo movimento"
#################################
#################################
# terceiro movimento: a memoria do computador
#################################
#################################
def third_movement ():
print "third movement"
#seta a quantidade de processos
n_proc = 20
#pega a lista de processos e coloca em array
a = os.popen("ps axco %mem,cmd | sort -k 1 -nr | head -" + str(n_proc+1))
array = a.read()
array = array.split("\n")
#removendo o cabecalho
#print len(array)
for s in array:
#print s
if s.find("%") > -1:
array.remove(s)
#pega todos os processos e sua respectiva memoria
list = []
for s in array:
s = s.strip()
temp = s.split(" ")
temp.reverse()
if len(temp) == 2:
list.append(temp)
#embaralhando os processos
n_processes = 10
final_list = []
for i in range(n_processes):
final_list.append(list[randint(0, len(list)-1)])
list = final_list
#criando o planet
if init_pd:
#variavel que armazenara os planetas
planets = []
#criando os planetas
for l in list:
#criando as caixas basicas
centro = Number(randint(200, 1000), randint(100, 650))
dac = Object(centro.x, centro.y+30, "dac~")
label = Comment(centro.x-5, centro.y-15, l[0])
osc = Object(centro.x, centro.y+60, "osc~")
#conectando as caixas
connect(osc, 0, dac, 0)
connect(centro, 0, osc, 0)
#setando os valores
exp = (float(l[1])*100/pow(2,float(l[1])/10))+110
centro.set(exp)
#criando o planet que gira em torno do centro
p1 = Planet(randint(80, 200), centro.x, centro.y, dac)
#setando as velocidades
speed = randint(1, 3)
if randint(0, 1) == 0:
p1.set_speed(speed)
else:
p1.set_speed(-speed)
#criando o planet que gira em torno de p1
p2 = Planet(50, dac.x, dac.y, osc)
#setando as velocidades
speed = randint(2, 8)
if randint(0, 1) == 0:
p2.set_speed(speed)
else:
p2.set_speed(-speed)
#adicionando os planetas na lista
ps = [p1, p2, dac]
p1.move()
p2.move()
planets.append(ps)
#pd.dsp(False)
#por BOUNDS segundos imprima levemente a memria na tela
bound = 120
start = time()
now = time()+1
while (now - start)<bound:
now = time()
#the main loop to rotate
for p in planets:
p[0].move()
p[1].c_x = p[2].x
p[1].c_y = p[2].y
p[1].move()
sleep(0.05)
#a cada multiplo de 30 cria mais 10 listas
if (floor((now - start)%40) == 0) and (now - start > 1):
print "SUBMOV " + str(now-start)
#criando os 20 planetas
for i in range(15):
#pegando um processo aleatorio na lista
l = list[randint(0, len(list)-1)]
#criando as caixas basicas
centro = Number(randint(200, 1000), randint(100, 650))
dac = Object(centro.x, centro.y+30, "dac~")
label = Comment(centro.x-5, centro.y-15, l[0])
osc = Object(centro.x, centro.y+60, "osc~")
#conectando as caixas
connect(osc, 0, dac, 0)
connect(centro, 0, osc, 0)
#setando os valores
exp = (float(l[1])*100/pow(2,float(l[1])/10))+110
centro.set(exp)
#criando o planet que gira em torno do centro
p1 = Planet(randint(80, 200), centro.x, centro.y, dac)
#setando as velocidades
speed = randint(1, 3)
if randint(0, 1) == 0:
p1.set_speed(speed)
else:
p1.set_speed(-speed)
#criando o planet que gira em torno de p1
p2 = Planet(50, dac.x, dac.y, osc)
#setando as velocidades
speed = randint(2, 8)
if randint(0, 1) == 0:
p2.set_speed(speed)
else:
p2.set_speed(-speed)
#adicionando os planetas na lista
ps = [p1, p2, dac]
p1.move()
p2.move()
planets.append(ps)
#pd.dsp(True)
#limpe o patch
pd.clear()
pd.save()
pd.clear()
pd.save()
sleep(0.5)
print "fim do segundo movimento"
#################################
#################################
# quarto movimento: o conteudo da memoria RAM- fade out
#################################
#################################
def fourth_movement ():
print "quarto movimento"
#seta a quantidade de processos
n_proc = 20
#pega a lista de processos e coloca em array
a = os.popen("ps axco %cpu,cmd | sort -k 1 -nr | head -" + str(n_proc+1))
array = a.read()
array = array.split("\n")
#removendo o cabecalho
#print len(array)
for s in array:
if s.find("%") > -1:
array.remove(s)
#pega todos os processos e sua respectiva cpu
list_cpu = []
for s in array:
s = s.strip()
temp = s.split(" ")
temp.reverse()
if len(temp) == 2:
list_cpu.append(temp)
#abrindo a memoria e carregando-a numa lista
list = []
memory = open("/dev/mem","r")
#quantidade de linhas de memoria capturada
size = 250
#formata a memoria para ser usada
for i in range(size):
s = memory.readline().replace(";", "*")
s = s.replace("\n", "")
s=''.join([char if char in safe_chars else '' for char in s])
#if(len(s) > 50):
# s = s[0:50]
list.append(s)
#print str(i) + " - " + s
memory.close()
#delimita a area de surgimento dos comentarios
str_x = -400
end_x = 1000
if init_pd:
'''
print "SUBMOV 1"
#por BOUNDS segundos imprima levemente a memria na tela
bound = 15
start = time()
now = time()
while (now - start)<bound:
aux = randint(0, size-1)
c1 = Comment(randint(str_x, end_x), randint(str_x, end_x), list[aux])
aux = randint(0, size-1)
c2 = Comment(randint(str_x, end_x), randint(str_x, end_x), list[aux])
aux = randint(0, size-1)
c3 = Comment(randint(str_x, end_x), randint(str_x, end_x), list[aux])
t = uniform(0.5, 1.0)
sleep(t)
#sleep(0.5)
pd.clear()
now = time()
print "SUBMOV 2"
#por BOUNDS segundos imprima sem apagar a memoria na tela
bound = 15
start = time()
now = time()
while (now - start)<bound:
aux = randint(0, size-1)
c1 = Comment(randint(str_x, end_x), randint(str_x, end_x), list[aux])
aux = randint(0, size-1)
c2 = Comment(randint(str_x, end_x), randint(str_x, end_x), list[aux])
aux = randint(0, size-1)
c3 = Comment(randint(str_x, end_x), randint(str_x, end_x), list[aux])
t = uniform(0.5, 1.0)
sleep(t)
#sleep(0.5)
now = time()
'''
pd.clear()
sleep(0.1)
print "SUBMOV 3"
#por BOUNDS segundos imprima levemente a memria na tela
bound = 30
start = time()
now = time()
while (now - start)<bound:
for i in range (5):
aux = randint(0, size-1)
c1 = Comment(randint(str_x, end_x), randint(str_x, end_x), list[aux])
aux = randint(0, size-1)
c2 = Comment(randint(str_x, end_x), randint(str_x, end_x), list[aux])
aux = randint(0, size-1)
c3 = Comment(randint(str_x, end_x), randint(str_x, end_x), list[aux])
#t = uniform(0.5, 1.0)
#sleep(t)
sleep(0.5)
pd.clear()
now = time()
#numero de relogios
n_clocks = 5
#clocks
clocks = []
#criando N_CLOCK relogios
for i in range(n_clocks):
#criando o centro do relogio em questao
osc=Object(randint(100, 800), randint(100, 600), "osc~")
dac=Object(osc.x, osc.y+30, "dac~")
connect(osc, 0, dac, 0)
centro = [osc,dac]
#criando os objectos que farao parte da lista
n_processes = randint(5, 10)
final_list = []
for i in range(n_processes):
final_list.append(list_cpu[randint(0, n_processes-1)])
#adicionando o relogio na lista
clocks.append(Clock(randint(50, 300), centro, final_list, randint(7, 30)))
print "SUBMOV 4"
#por BOUNDS segundos imprima sem apagar a memoria na tela
bound = 180
start = time()
now = time()
i = 0
while (now - start)<bound:
clocks[i].increment()
i=(i+1)%len(clocks)
aux = randint(0, size-1)
c1 = Comment(randint(str_x, end_x), randint(str_x, end_x), list[aux])
aux = randint(0, size-1)
c2 = Comment(randint(str_x, end_x), randint(str_x, end_x), list[aux])
aux = randint(0, size-1)
c3 = Comment(randint(str_x, end_x), randint(str_x, end_x), list[aux])
sleep(0.5)
now = time()
pd.clear()
sleep(1)
pd.save()
sleep(0.2)
pd.clear()
sleep(1)
pd.save()
print "fim do quarto movimento"
#################################
#################################
#################################
# MAIN - MAIN - MAIN
#################################
#################################
#################################
if __name__ == '__main__':
if init_pd:
#creates an instance of Pd
pd = Pd()
#initializes Pyata
pd.init()
counter()
first_movement()
third_movement()
pre_first_movement()
pre_second_movement()
second_movement()
fourth_movement()
credits()
if init_pd:
#finishes Pyata
pd.quit()