forked from seiggy/graftorio2
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtrain.lua
More file actions
174 lines (138 loc) · 5.33 KB
/
Copy pathtrain.lua
File metadata and controls
174 lines (138 loc) · 5.33 KB
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
-- train.lua
-- Collects train travel time metrics including trip times, wait times, and loop times
-- Uses histograms with configurable buckets for time distribution analysis
require("utils")
-- Constants
local TICKS_PER_SECOND = 60
function train_buckets(bucket_settings)
local train_buckets = {}
for _, bucket in pairs(split(bucket_settings, ",")) do
table.insert(train_buckets, tonumber(bucket))
end
return train_buckets
end
local train_trips = {}
local arrivals = {}
local watched_train = 0
local watched_station = ""
local function watch_train(event, msg)
if event.train.id == watched_train then
game.print(msg)
end
end
local function watch_station(event, msg)
if event.train.path_end_stop.backer_name == watched_station then
game.print(msg)
end
end
local function create_train(event)
if event.train.path_end_stop == nil then
return
end
-- {source station, tick it departed there, tick last begun waiting, total ticks spent waiting}
train_trips[event.train.id] = { event.train.path_end_stop.backer_name, game.tick, 0, 0 }
-- watch_train(event, "begin tracking " .. event.train.id)
end
local function create_station(event)
if event.train.path_end_stop == nil then
return
end
-- {last arrival tick}
arrivals[event.train.path_end_stop.backer_name] = { 0 }
-- watch_station(event, "created station " .. event.train.path_end_stop.backer_name)
end
local function reset_train(event)
if event.train.path_end_stop == nil then
return
end
train_trips[event.train.id] = { event.train.path_end_stop.backer_name, game.tick, 0, 0 }
end
local seen = {}
local function direct_loop(event, duration, labels)
local from = labels[1]
local to = labels[2]
local train_id = labels[3]
if seen[train_id] == nil then
seen[train_id] = {}
end
if seen[train_id][from] == nil then
seen[train_id][from] = {}
end
if seen[train_id][from][to] then
local total = (game.tick - seen[train_id][from][to]) / TICKS_PER_SECOND
local sorted = { from, to }
table.sort(sorted)
-- watch_train(event, sorted[1] .. ":" .. sorted[2] .. " total " .. total)
gauge_train_direct_loop_time:set(total, sorted)
histogram_train_direct_loop_time:observe(total, sorted)
end
if seen[train_id][to] and seen[train_id][to][from] then
-- watch_train(event, from .. ":" .. to .. " lap " .. (game.tick - seen[train_id][to][from]) / TICKS_PER_SECOND)
end
seen[train_id][from][to] = game.tick
end
local function track_arrival(event)
if event.train.path_end_stop == nil then
return
end
if arrivals[event.train.path_end_stop.backer_name] == nil then
create_station(event)
end
-- watch_station(event, "arrived at " .. event.train.path_end_stop.backer_name)
if arrivals[event.train.path_end_stop.backer_name][1] ~= 0 then
local time_since_last_arrival = (game.tick - arrivals[event.train.path_end_stop.backer_name][1]) / TICKS_PER_SECOND
local labels = { event.train.path_end_stop.backer_name }
gauge_train_arrival_time:set(time_since_last_arrival, labels)
histogram_train_arrival_time:observe(time_since_last_arrival, labels)
-- watch_station(event, "time_since_last_arrival was " .. time_since_last_arrival)
end
arrivals[event.train.path_end_stop.backer_name][1] = game.tick
end
function register_events_train(event)
if event == nil or event.train == nil then
return
end
if event.train.state == defines.train_state.arrive_station then
track_arrival(event)
end
if train_trips[event.train.id] ~= nil then
if event.train.state == defines.train_state.arrive_station then
if event.train.path_end_stop == nil then
return
end
if train_trips[event.train.id][1] == event.train.path_end_stop.backer_name then
return
end
local duration = (game.tick - train_trips[event.train.id][2]) / TICKS_PER_SECOND
local wait = train_trips[event.train.id][4] / TICKS_PER_SECOND
-- watch_train(event, event.train.id .. ": " .. train_trips[event.train.id][1] .. "->" .. event.train.path_end_stop.backer_name .. " took " .. duration .. "s waited " .. wait .. "s")
local labels = { train_trips[event.train.id][1], event.train.path_end_stop.backer_name, event.train.id }
gauge_train_trip_time:set(duration, labels)
gauge_train_wait_time:set(wait, labels)
histogram_train_trip_time:observe(duration, labels)
histogram_train_wait_time:observe(wait, labels)
direct_loop(event, duration, labels)
reset_train(event)
elseif
event.train.state == defines.train_state.on_the_path
and event.old_state == defines.train_state.wait_station
then
-- begin moving after waiting at a station
train_trips[event.train.id][2] = game.tick
-- watch_train(event, event.train.id .. " leaving for " .. event.train.path_end_stop.backer_name)
elseif event.train.state == defines.train_state.wait_signal then
-- waiting at a signal
train_trips[event.train.id][3] = game.tick
-- watch_train(event, event.train.id .. " waiting")
elseif event.old_state == defines.train_state.wait_signal then
-- begin moving after waiting at a signal
train_trips[event.train.id][4] = train_trips[event.train.id][4]
+ (game.tick - train_trips[event.train.id][3])
-- watch_train(event, event.train.id .. " waited for " .. (game.tick - train_trips[event.train.id][3]) / TICKS_PER_SECOND)
train_trips[event.train.id][3] = 0
end
end
if train_trips[event.train.id] == nil and event.train.state == defines.train_state.arrive_station then
create_train(event)
end
end