Advertisement
Lion4ever

Pause for normal Computers

May 31st, 2015
272
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.40 KB | None | 0 0
  1. local pauseKey = 68 --f10
  2. local ignoreEvent = {term_resize=true}
  3. local dropEvent = {key=true,char=true,mouse_click=true,mouse_scroll=true,paste=true,terminate=true}
  4. local password = ""
  5.  
  6. if #password > 0 then
  7.   ignoreEvent["char"] = false
  8. end
  9.  
  10. local paused = false
  11. local qEvents = {}
  12. local pchars = 0
  13.  
  14. local oldPull = os.pullEventRaw
  15.  
  16. local function osQueue()
  17.   for i,j in pairs(qEvents) do
  18.     os.queueEvent(unpack(j))
  19.   end
  20.   qEvents = {}
  21. end
  22.  
  23. os.pullEventRaw = function(filter)
  24.   while true do
  25.     local r = {oldPull()}
  26.     if r[1] == "key" and r[2] and r[2] == pauseKey and (pchars == #password or not paused) then
  27.       paused = not paused
  28.       if not paused then
  29.         osQueue()
  30.         pchars = 0
  31.       end
  32.     elseif paused and not ignoreEvent[r[1]] then
  33.       if not dropEvent[r[1]] then
  34.         table.insert(qEvents,r)
  35.       end
  36.       if r[1] == "terminate" and pchars == #password then
  37.         --print("Pause Programm unloaded")
  38.         os.pullEventRaw = oldPull
  39.         paused=false
  40.         osQueue()
  41.         return oldPull(filter)
  42.       end
  43.       if r[1] == "char" and r[2] then
  44.         pchars = pchars + 1
  45.         if r[2] ~= password:sub(pchars,pchars) then
  46.           pchars = r[2] == password:sub(1,1) and 1 or 0
  47.         end
  48.       end      
  49.     elseif not filter or r[1]==filter or (r[1]=="terminate" and not paused) then
  50.       return unpack(r)
  51.     end
  52.   end
  53. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement