Advertisement
HPWebcamAble

[CC] Pause a Program

Jul 12th, 2015
470
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.54 KB | None | 0 0
  1. -- WARNING - BUGGY - Won't damage your computer, but has a lot of unexpected behavior!
  2. -- I'm going to completely redo this program in the near future :)
  3.  
  4. -- Pause a Program! Written by Grim Reaper: computercraft.info/forums2/index.php?/topic/23942-capture-computer-screen
  5. -- Hit the 'Home' key to toggle
  6. -- While paused, you can click on the screen, and it will tell you the location of the click
  7.  
  8. -- Make sure to change '/stuff' below to the path of the program you want to pause,
  9. -- then run this program
  10.  
  11. -- Updated 8/11/2015 - Fixed a few problems... I hadn't actually used the program before
  12.  
  13. local programPath = "/stuff"
  14. local program = coroutine.create(
  15.     setfenv(
  16.         loadfile(programPath),
  17.         setmetatable({ shell = shell }, { __index = _G })
  18.     )
  19. )
  20.  
  21. coroutine.resume(program) -- Initialize the program.
  22.  
  23.  
  24. local paused = false
  25.  
  26. while coroutine.status(program) ~= "dead" do
  27.     local eventData = { os.pullEvent() }
  28.  
  29.     -- Toggle pause.
  30.     if eventData[1] == "key" and eventData[2] == keys.home then
  31.         paused = not paused
  32.  
  33.         -- Neutralize event.
  34.         eventData = {}
  35.     end
  36.  
  37.     -- Distribute events if the program isn't paused.
  38.     if not paused then
  39.         coroutine.resume(program, unpack(eventData))
  40.     -- Display mouse click if paused.
  41.     elseif eventData[1] == "mouse_click" then
  42.         term.setBackgroundColor(colors.black)
  43.         term.setTextColor(colors.white)
  44.  
  45.         term.setCursorPos(1, 1)
  46.         term.write("(" .. eventData[3] .. "," .. eventData[4] .. ")")
  47.     end
  48. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement