Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local metro = "007"
- local colortop = 0x444444
- local colorvenster = 0x666666
- local colortext = 0x000000
- local dienstbestand = "/info.txt"
- local dienstbs = "lijn="
- local beginbs = "begin="
- local eindbs = "eind="
- --
- print("[LOG] Opstarten")
- for _, v in pairs(rs.getSides()) do
- if peripheral.getType(v) == "modem" then rednet.open(v) present = true break end
- end
- if fs.exists("/ocs/apis/sensor") then
- os.loadAPI("ocs/apis/sensor")
- end
- for k,v in pairs(rs.getSides()) do
- if (peripheral.getType(v) == "terminal_glasses_bridge") or (peripheral.getType(v) == "glassesbridge") then
- plastic = peripheral.wrap(v)
- break
- elseif (peripheral.getType(v) == "sensor") and (not worldSensor) then
- worldSensor = sensor.wrap(v)
- if not (worldSensor.getSensorName() == "worldCard") then
- worldSensor = false
- end
- end
- end
- local file = io.open(shell.resolve(".")..dienstbestand)
- if not file then
- print("[ERROR] Bestand '"..dienstbestand.."' is er niet!")
- end
- local sidl = file:read()
- sidl = string.gsub(dienst, dienstbs, "")
- sidl = string.gsub(begin, beginbs, "")
- sidl = string.gsub(eind, eindbs, "")
- print("[LOG] Informatie geladen van '"..dienstbestand.."'")
- print(" Lijn: "..dienst)
- print(" Begin: "..begin)
- print(" Eind: "..eind)
- local lijn = plastic.addText(19, 37, "Lijn: "..dienst.."", colortext)
- print("[LOG] Opstarten sucsesvol")
- while true do
- local senderId, message, distance = rednet.receive()
- if message == "bord" then
- rednet.send(senderId, begin)
- rednet.send(senderId, eind)
- end
- if message == "dienst" then
- rednet.send(denderId, "accept-dienst")
- local senderId2, lijnOnt, distance = rednet.receive()
- local senderId2, beginOnt, distance = rednet.receive()
- local senderId2, eindOnt, distance = rednet.receive()
- end
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement