-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathlifetimes.sc
78 lines (60 loc) · 2.09 KB
/
lifetimes.sc
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
__config()->m(l('scope','global'));
__command()->(
print(
'Available commands:\n'+
'/lifetimes start : Will start recording lifetimes of all mobs\n'+
'/lifetimes report : Prints out current lifetimes of mobs\n'+
'/lifetimes stop : Will print final full report of all mob lifetimes'
);
return('')
);
//Globals
global_start=false;
global_ticks=0;
global_minutes=0;
global_mobs=m();//To keep track of which mob types are actually there
global_lifetimes=m();//SO that I can measure multiple lifetimes at the same time, I have to have an entry for each mob which he puts into global_lifetimes when he dies
global_lifetimes_global=m();
global_pos1=l(0,0,0);
global_pos2=l(0,0,0);
//Events
__on_tick()->(
if(global_start,
global_ticks+=1;
global_minutes=round(global_ticks/12)/100;//it would be round(global_ticks/1200(mins)*100)/100, but I simplified
e=filter(entity_selector('@e'),query(_,'category')!='misc');
for(e,
if(!query(_,'has_tag','lifetime'),
modify(_,'tag','lifetime');
global_mobs:query(_,'type')+=1;
entity_event(_,'on_death',_(e,c)->put(global_lifetimes_global,query(e,'type'),get(global_lifetimes_global,query(e,'type'))+global_lifetimes:e));//tried to define func but nulpointerexception bs
);
global_lifetimes:_+=1
)
)
);
//Commands
start()->global_start=true;
stop()->_reset();
report()->(
total_avg=0.0;
print('Average lifetimes for mobs (in ticks) over '+global_minutes+' minutes:');
for(global_mobs,
mob_avg=round(global_lifetimes_global:_/(global_mobs:_*6))/10
print(' '+_+': '+mob_avg+' seconds');
total_avg=(total_avg+mob_avg)/2
);
print('Total average lifetime for all mobs is: '+total_avg+' seconds')
);
//Other functions
_reset()->(
report();
print('Reset all values, can now measure lifetimes again.');
global_start=false;
global_ticks=0;
global_minutes=0.0;
global_mobs=m();
global_lifetimes=m();
global_lifetimes_global=m();
return('')
)