Advertisement
Guest User

Remote Door Lock for gknova61

a guest
Nov 14th, 2012
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.60 KB | None | 0 0
  1. -- Written by Grim Reaper of ComputerCraft Forums.
  2.  
  3. -- This solution is written that the door will close at 18:00 Minecraft time,
  4. -- and open at 6.
  5. rednet.open("top")
  6. print("G&K Industries Day/Night Handler")
  7.  
  8. local doorComputerID = 379                                      -- The ID of the computer that is handling the door opening/closing.
  9. local doorCommands = {open = "Door-Open", close = "Door-Close"} -- The commands we can send to the door.
  10.  
  11. local isDoorOpen     = true    -- Whether or not the door is currently open. Assuming that the door will begin open.
  12. local isNight        = false   -- Whether or not the time is currently night or day. Assuming that the time is currently day.
  13. local nightStartTime = 18 -- When, in hours, the time is considered night. This is when the door should be closed.
  14. local dayStartTime   = 6  -- When, in hours, the time is considered day. This is when the door should be open.
  15.  
  16. -- Checks if the time is correct to open/close the door. Sets 'isNight' to the appropriate values.
  17. -- Params : dayTime - The time the day starts, nightTime - The time the night starts.
  18. -- Returns: true - If the time has changed
  19. function checkTime(dayTime, nightTime)
  20.       -- Get the time in 24 hour format and compare it to the times
  21.       -- given for the start of night and the start of day.
  22.       local time = textutils.formatTime(os.time(), true)
  23.       local colonPosition = time:find(':')
  24.       time = tonumber(time:sub(1, colonPos - 1)) -- The current time in decimal hours.
  25.      
  26.       local tempIsNight = isNight
  27.       if time > dayTime and time < nightTime then
  28.             isNight = false
  29.       else
  30.             isNight = true
  31.       end
  32. end
  33.  
  34. -- Sends the proper commands to close/open the door depending on whether or not the time is night.
  35. -- Params : isNight - Whether or not it is currently night time.
  36. -- Returns: nil
  37. function updateDoor(isNight)
  38.       if not isNight and not isDoorOpen then
  39.             openDoor()
  40.             isDoorOpen = true
  41.       elseif isNight and isDoorOpen then
  42.             closeDoor()
  43.             isDoorOpen = false
  44.       end
  45. end
  46.  
  47. -- Sends the open door command.
  48. -- Params : nil
  49. -- Returns: nil
  50. function openDoor()
  51.       rednet.send(doorComputerID, doorCommands.open)
  52. end
  53.  
  54. -- Sends the close door command.
  55. -- Params : nil
  56. -- Returns: nil
  57. function closeDoor()
  58.       rednet.send(doorComputerID, doorCommands.close)
  59. end
  60.  
  61. while true do
  62.       checkTime(dayStartTime, nightStartTime)
  63.       updateDoor(isNight)
  64.       sleep(1) -- Make sure there is some delay so the computer does not cause Java to throw an exception due to stack overflow.
  65. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement