-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopenhudRunner.lua
62 lines (44 loc) · 1.55 KB
/
openhudRunner.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
require("term").clear()
print("\n# OpenHud starting...\n")
require("openglasses/open-hud")
offsetY = 60
initComponents()
glassesTerminal.removeAll()
initStatusBox()
initInjectionRateMenue(offsetX + 370, offsetY);
stopme = false
function stop()
stopme=true
end
if tankDeuterium ~= false then hudDeuterium = addInfoHUD(10, 0, 100, 20, "Deuterium"); end
if tankTritium ~= false then hudTritium = addInfoHUD(10, 25, 100, 20, "Tritium"); end
hudProduction = addReactorHUD(10, 50, 100, 20, "Reactor")
addButton("ignite", offsetX + 10, offsetY + 75, 100, 20, ignite)
bI = addButton("[X]", 5, 5, 25, 25, stop)
--buttons[bI].widgets.box.addAutoTranslation(100, 0)
--buttons[bI].widgets.text.addAutoTranslation(100, 0)
--register event listeners and idle until user interrupts
function refreshAll()
--update tank status
updateTankHUD("Tritium", tankTritium, hudTritium)
updateTankHUD("Deuterium", tankDeuterium, hudDeuterium)
--update reactor production rate
hudProduction[2].setText(formatNumber(MJ2RF(reactor.getProducing())).."RF/tick")
--update big status box
updateStatusBox()
end
--updateEvent = event.timer(1, refreshAll, math.huge)
event.listen("interact_overlay", touchEvent)
print("\n# OpenHud loaded, close with [CTRL] + [C]")
--event.pull("interrupted")
event.listen("interrupted", stop)
while stopme == false do
refreshAll()
end
-- cancel and ignore events
--event.cancel(updateEvent)
event.ignore("interact_overlay", touchEvent)
event.ignore("interrupted", stop)
-- remove all widgets from glasses
glassesTerminal.removeAll()
print("OpenHud closed\n")