Advertisement
flamedragon822

Elevator Server 1.0

Mar 14th, 2014
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.53 KB | None | 0 0
  1. function findCurrentFloor ()
  2.     local whichFloor = 0
  3.     while redstone.testBundledInput("back",colors.green) == false and whichFloor < 30 do
  4.         whichFloor = whichFloor + 1
  5.         redstone.setBundledOutput("back",whichFloor)
  6.         sleep(0.1)
  7.     end
  8.     redstone.setBundledOutput("back",0)
  9.     if whichFloor >= 30 then
  10.         return 0
  11.     else
  12.         return whichFloor
  13.     end
  14. end
  15.  
  16. function findAvailableFloors ()
  17.     local whichFloor = 0
  18.     local validFloors = {}
  19.     while whichFloor < 30 do
  20.         whichFloor = whichFloor + 1
  21.         redstone.setBundledOutput("back",whichFloor)
  22.         sleep(0.2)
  23.         if redstone.testBundledInput("back",colors.blue) then
  24.             validFloors[whichFloor] = true
  25.             print("Found Floor: "..whichFloor)
  26.         else
  27.             validFloors[whichFloor] = false
  28.             print("Invalid Floor: "..whichFloor)
  29.         end
  30.         sleep(0.05)
  31.         redstone.setBundledOutput("back",0)
  32.     end
  33.     print("Done finding floors")
  34.     return validFloors
  35. end
  36.  
  37. function moveToFloor(destinationFloor)
  38.     redstone.setBundledOutput("back",destinationFloor + 32)
  39.     sleep(0.2)
  40.     while redstone.testBundledInput("back", colors.green) == false do
  41.         os.pullEvent("redstone")
  42.     end
  43. end
  44.  
  45. redstone.setBundledOutput("back",colors.brown)
  46. sleep(0.05)
  47. redstone.setBundledOutput("back",0)
  48.  
  49. local floors = findAvailableFloors()
  50. local currentFloor = findCurrentFloor()
  51. local peripheralList = peripheral.getNames()
  52. local useModem = false
  53. local floorChoice = 0
  54. local mainframeId
  55. local modemSide
  56. local modemPeripheral
  57. local computerInfo = {}
  58. local file
  59. local hostAiId
  60.  
  61. if fs.exists("computerInfo") then
  62.     file = fs.open ("computerInfo", "r")
  63.     computerInfo = textutils.unserialize(file.readAll())
  64.     file.close()
  65. end
  66.  
  67. if fs.exists("aiInfo") then
  68.     file = fs.open ("aiInfo", "r")
  69.     hostAiId = tonumber(file.readLine())
  70.     file.close()
  71. end
  72.  
  73. if not computerInfo["computerType"] then
  74.     computerInfo["computerType"] = "ELEVATOR"
  75.     print("Please enter an alias for this computer: ")
  76.     computerInfo["computerAlias"] = read()
  77.     file = fs.open("computerInfo","w")
  78.     file.write(textutils.serialize(computerInfo))
  79.     file.close()
  80. end
  81.  
  82.  
  83. for i = 1, #peripheralList do
  84.     if peripheral.getType(peripheralList[i]) == "modem" and peripheral.call(peripheralList[i], "isWireless") then
  85.         useModem = true
  86.         modemSide = peripheralList[i]
  87.         modemPeripheral = peripheral.wrap(peripheralList[i])
  88.     end
  89. end
  90.  
  91. if currentFloor == 0 then
  92.     for i = 1, #floors do
  93.         if floors[i] == true then
  94.             currentFloor = i
  95.             moveToFloor(i)
  96.             break
  97.         end
  98.     end
  99. end
  100.  
  101. if useModem == true then
  102.     rednet.open(modemSide)
  103.     print("Modem found, switching to modem control")
  104.     local tempAiId
  105.     while not hostAiId do
  106.         local senderId, message, distance = rednet.receive()
  107.         if message == "AIREQNEWSERVER" then
  108.             print("AI sent request. Sending info")
  109.             tempAiId = senderId
  110.             rednet.send(tempAiId,textutils.serialize(computerInfo))        
  111.         elseif message == "ACK" and senderId == tempAiId then
  112.             hostAiId = tempAiId
  113.             print("AI ID found")
  114.             file = fs.open("aiInfo","w")
  115.             file.write(hostAiId)
  116.             file.close()
  117.         end
  118.     end
  119.     while true do
  120.         local senderId, message, distance = rednet.receive()
  121.         if senderId == hostAiId and not message == "AIREQNEWSERVER" then
  122.             local orders = textutils.unserialize(message)
  123.             local command = orders["command"]
  124.             local arguments = orders["arguments"]
  125.             if rs.testBundledInput("back",colors.green) then
  126.                 if command == "GOTOFLOOR" then
  127.                     if floors[tonumber(arguments[1])] then
  128.                         rednet.send(hostAiId,"DONE")
  129.                         moveToFloor(tonumber(arguments[1]))
  130.                         currentFloor = arguments[1]
  131.                     else
  132.                         rednet.send(hostAiId,"NOTAFLOOR")
  133.                     end
  134.                 elseif command == "FINDFLOORS" then
  135.                     rednet.send(hostAiId,"DONE")
  136.                     findAvailableFloors()
  137.                 elseif command == "CURRENTFLOOR" then
  138.                     rednet.send(hostAiId,currentFloor)
  139.                 elseif command == "REALIAS" then
  140.                     computerInfo["computerAlias"] = arguments[1]
  141.                     file = fs.open("computerInfo","w")
  142.                     file.write(textutils.serialize(computerInfo))
  143.                     file.close()
  144.                     rednet.send(hostAiId,"DONE")
  145.                 else
  146.                     rednet.send(hostAiId,"ERR")
  147.                 end
  148.             else
  149.                 rednet.send(hostAiId,"BUSY")
  150.             end
  151.         end
  152.     end
  153. else
  154.     print("No modem found. Manual floor choice initiated\n\n")
  155.     while true do
  156.         print("Select a floor: ")
  157.         floorChoice = tonumber(read())
  158.         print("\n")
  159.         if floorChoice and floorChoice > 0 and floorChoice < 31 and (not (floorChoice == currentFloor)) and floors[floorChoice] then
  160.             moveToFloor(floorChoice)
  161.             currentFloor = floorChoice
  162.         elseif floorChoice and floorChoice == -1 then
  163.             floors = findAvailableFloors()
  164.         end
  165.         floorChoice = 0
  166.     end
  167. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement