-
Notifications
You must be signed in to change notification settings - Fork 7
/
PureStatus_5_Screen.lua
236 lines (215 loc) · 10 KB
/
PureStatus_5_Screen.lua
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
--[[
Pure Status Display
Refactored thanks to Dorian Gray
1. Copy & paste this script into your Programming Board, into slot "unit" and filter "start()"
2. Add a "stop()" filter and enter "displayOff()" into the Lua editor for this filter
3. Add a "tick()" filter and enter the parameter "updateTick, so "tick(updateTick)". In the Lua editor for the filter enter "processTick()"
4. Link the core this setup is placed on to your Programming Board and rename the slot to "core"
5. Link up to 5 screens to your Programming Board, preferably S or larger, and name the slots "displayT1", "displayT2", etc. Tiers you don't have can be ommited by leaving that screen out.
6. Rename your pure storage boxes you want this script to observe. Pures must be named "Pure <purename>", e.g. "Pure Alumnium". Any wrongly named container will not be observed.You can rename the searchString under Advanced->Edit Lua Parameters, You MUST include spaces not in the actual substance name. You can have more than one container for a single substance, if you have e.g. three large containers for Aluminum, name all of them "Pure Aluminum". The script does not support multiple substances in one container.
7. On your Programming Board choose Advanced->Edit Lua Parameters and enter your Container Proficiency Bonus in percent (0 to 50) and your Container Optimization Bonus in percent (0-25)
8. Activate the Programming Board.
]]
unit.hide()
if displayT1 then displayT1.activate() end
if displayT2 then displayT2.activate() end
if displayT3 then displayT3.activate() end
if displayT4 then displayT4.activate() end
if displayT5 then displayT5.activate() end
function displayOff()
if displayT1 then displayT1.clear() end
if displayT2 then displayT2.clear() end
if displayT3 then displayT3.clear() end
if displayT4 then displayT4.clear() end
if displayT5 then displayT5.clear() end
end
function round(number,decimals)
local power = 10^decimals
return math.floor((number/1000) * power) / power
end
PlayerContainerProficiency = 30 --export Your Container Proficiency bonus in total percent (Skills->Mining and Inventory->Inventory Manager)
PlayerContainerOptimization = 0 --export Your Container Optimization bonus in total percent (Skills->Mining and Inventory->Stock Control)
MinimumYellowPercent = 25 --export At which percent level do you want bars to be drawn in yellow (not red anymore)
MinimumGreenPercent = 50 --export At which percent level do you want bars to be drawn in green (not yellow anymore)
searchString = "Pure " --export Your identifier for Pure Storage Containers (e.g. "Pure Aluminum"). Include the spaces if you change this!
headerFontSize = 8 --export Header font-size in em
fontSize = 5 --export font-size in em
font = "monospace" --export font-family Must be in "". Capitalization matters.
function processTick()
elementsIds = core.getElementIdList()
outputData = {}
substanceMass = {
Oxygen=1;
Hydrogen=0.07;
Aluminum=2.7;
Carbon=2.27;
Silicon=2.33;
Iron=7.85;
Calcium=1.55;
Chromium=7.19;
Copper=8.96;
Sodium=0.97;
Lithium=0.53;
Nickel=8.91;
Silver=10.49;
Sulfur=1.82;
Cobalt=8.9;
Fluorine=1.7;
Gold=19.3;
Scandium=2.98;
Manganese=7.21;
Niobium=8.57;
Titanium=4.51;
Vanadium=6;
}
function processSubstanceContainer(_id)
local ContainerName = core.getElementNameById(_id)
local ContainerTotalMass = core.getElementMassById(_id)
local ContainerMaxHP = core.getElementMaxHitPointsById(_id)
SubstanceName=string.gsub(ContainerName, searchString, "")
if SubstanceName~="" then
SubstanceSingleMass=substanceMass[SubstanceName]
if SubstanceSingleMass~=nil then
if ContainerMaxHP > 49 and ContainerMaxHP <=123 then
ContainerSelfMass = 0
CapacityForSubstance = 0
elseif ContainerMaxHP > 123 and ContainerMaxHP <= 998 then
ContainerSelfMass = 229.09
CapacityForSubstance = (1000+(1000*(PlayerContainerProficiency/100)))
elseif ContainerMaxHP > 998 and ContainerMaxHP <= 7996 then
ContainerSelfMass = 1280
CapacityForSubstance = (8000+(8000*(PlayerContainerProficiency/100)))
elseif ContainerMaxHP > 7996 and ContainerMaxHP <= 17315 then
ContainerSelfMass = 7420
CapacityForSubstance = (64000+(64000*(PlayerContainerProficiency/100)))
elseif ContainerMaxHP > 17315 then
ContainerSelfMass = 14840
CapacityForSubstance = (128000+(128000*(PlayerContainerProficiency/100)))
end
local ContentMass=ContainerTotalMass-ContainerSelfMass
local OptimizedContentMass = ContentMass+ContentMass*(PlayerContainerOptimization/100)
local ContentAmount = round((OptimizedContentMass/SubstanceSingleMass),1)
if outputData[SubstanceName]~=nil then
outputData[SubstanceName] = {
name = SubstanceName;
amount = outputData[SubstanceName]["amount"]+ContentAmount;
capacity = outputData[SubstanceName]["capacity"]+CapacityForSubstance;
}
else
local entry = {
name = SubstanceName;
amount = ContentAmount;
capacity = CapacityForSubstance;
}
outputData[SubstanceName]=entry
end
end
end
end
for i = 1, #elementsIds do
if string.match(core.getElementTypeById(elementsIds[i]), "ontainer") and string.match(core.getElementNameById(elementsIds[i]), searchString) then
processSubstanceContainer(elementsIds[i])
end
end
function BarGraph(percent)
if percent <= 25 then return [[
background: rgb(27,0,0);
background: linear-gradient(90deg, rgba(27,0,0,.8) 0%, rgba(129,23,23,.8) 25%, rgba(251,0,0,.8) 100%);
]]
elseif percent > 25 and percent < 60 then return [[
background: rgb(27,0,0);
background: linear-gradient(90deg, rgba(27,0,0,.8) 0%, rgba(129,101,23,.8) 25%, rgba(251,202,0,.8) 100%);
]]
else return [[
background: rgb(5,27,0);
background: linear-gradient(90deg, rgba(5,27,0,.8) 0%, rgba(38,129,23,.8) 25%, rgba(34,251,0,.8) 100%);
]]
end
end
function AddHTMLEntry(_id1)
local id1amount = 0
local id1percent = 0
if outputData[_id1]~=nil then
id1amount = outputData[_id1]["amount"]
id1percent = (outputData[_id1]["amount"])/outputData[_id1]["capacity"]*100000
end
if id1amount >= 1000 then
id1amount = id1amount/1000
id1unit = "ML"
else
id1unit = "KL"
end
resHTML =
[[<tr>
<th align=right>]].._id1..[[:</th>
<th align=right>]]..string.format("%02.2f", id1amount)..id1unit..[[ </th>
<td class="bar" style="]]..BarGraph(id1percent)..[[; background-repeat: repeat-y; background-size:]]..((30/100)*id1percent)..[[vw">]]..string.format("%02.2f", id1percent)..[[%</td>
</tr>]]
return resHTML
end
htmlHeader = [[<head><style>td.bar {border-style: solid; border-right-width: 1vw; text-align: left; vertical-align: top; font-weight:bold; font-family:]]..font..[[;}</style></head>]]
d1 = [[<div class="bootstrap" style="text-align:left; vertical-align: text-top;">]]
d2 = [[<span style="text-transform: capitalize; font-family:]]..font..[[; font-size:]]..headerFontSize..[[em;"> ]]
t1 = [[ </span>
<table style="text-transform: capitalize; font-family:]]..font..[[; font-size:]]..fontSize..[[em; table-layout: auto; width: 100vw;">
<tr style="width:100vw; background-color: blue; color: white;">]]
t2 = [[ <th style="width:35vw; text-align:right;">Type</th>
<th style="width:25vw; text-align:center;">Vol</th>
<th style="width:30vw;text-align:left;">Levels</th>
</tr>]]
c1 = [[</table></div> ]]
if displayT1 then
html=htmlHeader
html=html..d1..d2.."Tier 1"..t1..t2
html=html..AddHTMLEntry("Aluminum")
html=html..AddHTMLEntry("Carbon")
html=html..AddHTMLEntry("Iron")
html=html..AddHTMLEntry("Silicon")
html=html..AddHTMLEntry("Hydrogen")
html=html..AddHTMLEntry("Oxygen")
html=html..c1
displayT1.setHTML(html)
end
if displayT2 then
html=htmlHeader
html=html..d1..d2.."Tier 2"..t1..t2
html=html..AddHTMLEntry("Sodium")
html=html..AddHTMLEntry("Copper")
html=html..AddHTMLEntry("Calcium")
html=html..AddHTMLEntry("Chromium")
html=html..c1
displayT2.setHTML(html)
end
if displayT3 then
html=htmlHeader
html=html..d1..d2.."Tier 3"..t1..t2
html=html..AddHTMLEntry("Lithium")
html=html..AddHTMLEntry("Nickel")
html=html..AddHTMLEntry("Sulfur")
html=html..AddHTMLEntry("Silver")
html=html..c1
displayT3.setHTML(html)
end
if displayT4 then
html=htmlHeader
html=html..d1..d2.."Tier 4"..t1..t2
html=html..AddHTMLEntry("Cobalt")
html=html..AddHTMLEntry("Fluorine")
html=html..AddHTMLEntry("Gold")
html=html..AddHTMLEntry("Scandium")
html=html..c1
displayT4.setHTML(html)
end
if displayT5 then
html=htmlHeader
html=html..d1..d2.."Tier 5"..t1..t2
html=html..AddHTMLEntry("Manganese")
html=html..AddHTMLEntry("Niobium")
html=html..AddHTMLEntry("Titanium")
html=html..AddHTMLEntry("Vanadium")
html=html..c1
displayT5.setHTML(html)
end
end
processTick()
unit.setTimer('updateTick', 5)