Advertisement
dlord

/airlock/doorclient

Nov 1st, 2012
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.86 KB | None | 0 0
  1. --   Copyright 2012 John Paul Alcala
  2. --
  3. --   Licensed under the Apache License, Version 2.0 (the "License");
  4. --   you may not use this file except in compliance with the License.
  5. --   You may obtain a copy of the License at
  6. --
  7. --       http://www.apache.org/licenses/LICENSE-2.0
  8. --
  9. --   Unless required by applicable law or agreed to in writing, software
  10. --   distributed under the License is distributed on an "AS IS" BASIS,
  11. --   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  12. --   See the License for the specific language governing permissions and
  13. --   limitations under the License.
  14.  
  15.  
  16. local openAirlockColor = colors.cyan
  17. local closeAirlockColor = colors.lime
  18. local maxRetriesForAcknowledgementSignal = 10
  19.  
  20. local getEntranceHatchState = function()
  21.   if redstone.testBundledInput("bottom", colors.red) ~= true then
  22.     return "OPEN"
  23.   else
  24.     return "CLOSED"
  25.   end
  26. end
  27.  
  28. local getExitHatchState = function()
  29.   if redstone.testBundledInput("bottom", colors.yellow) ~= true then
  30.     return "OPEN"
  31.   else
  32.     return "CLOSED"
  33.   end
  34. end
  35.  
  36. local sendCommand = function(color)
  37.   redstone.setBundledOutput("bottom", color)
  38.   sleep(0.5)
  39.   redstone.setBundledOutput("bottom", 0)
  40. end
  41.  
  42. local waitForAcknowledgementSignal = function(color)
  43.   for i=1,maxRetriesForAcknowledgementSignal do
  44.     local event = os.pullEvent("redstone")
  45.     if redstone.testBundledInput("bottom", color) == true then
  46.       print("DONE!")
  47.       sleep(1.5)
  48.       return
  49.     end
  50.   end
  51.  
  52.   print("TIMEOUT ENCOUNTERED!")
  53.   sleep(1.5)
  54. end
  55.  
  56. local openAirlockCommand = function()
  57.   if getEntranceHatchState() == "CLOSED" then
  58.     print("")
  59.     print("Opening Airlock...")
  60.     sendCommand(openAirlockColor)
  61.     waitForAcknowledgementSignal(openAirlockColor)
  62.   else
  63.     print("")
  64.     print("Airlock is already open!")
  65.     sleep(1.5)
  66.   end
  67. end
  68.  
  69. local closeAirlockCommand = function()
  70.   if getEntranceHatchState() == "OPEN" then
  71.     print("")
  72.     print("Closing Airlock...")
  73.     sendCommand(closeAirlockColor)
  74.     waitForAcknowledgementSignal(closeAirlockColor)
  75.   else
  76.     print("")
  77.     print("Airlock is already closed!")
  78.     sleep(1.5)
  79.   end
  80. end
  81.  
  82. local askForCommand = function()
  83.   write("open/close? ")
  84.   local command = read()
  85.  
  86.   if command == "open" then
  87.     openAirlockCommand()
  88.   elseif command == "close" then
  89.     closeAirlockCommand()
  90.   else
  91.     print("Invalid command!")
  92.     sleep(1.5)
  93.   end
  94. end
  95.  
  96.  
  97. -- Run the airlock client
  98.  
  99. while true do
  100.   term.clear()
  101.   term.setCursorPos(1,3)
  102.  
  103.   print("AIRLOCK STATUS")
  104.   print("")
  105.   print("Entrance Hatch: "..getEntranceHatchState())
  106.   print("Exit Hatch: "..getExitHatchState())
  107.   print("")
  108.   print("Press space to enter command")
  109.   print("Press any other key to update status")
  110.   print("")
  111.  
  112.   local event, param = os.pullEvent("char")
  113.   if param == " " then
  114.     askForCommand()
  115.   end
  116. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement