Advertisement
Guest User

With logging

a guest
Mar 16th, 2013
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.42 KB | None | 0 0
  1. output = 0
  2. local h = fs.open('log', 'a')
  3.  
  4. -- just a formatting line
  5. h.write('----------------------------\nDay: '..os.day..' Time: '..textutils.formatTime(os.time())..' Clock: '..os.clock()..'\n----------------------------')
  6.  
  7. rednet.open('left')
  8.  
  9. local function log(msg)
  10.   -- write the error to a file
  11.   h.write(msg..'\n')
  12.   h.flush()
  13.  
  14.   -- print it to the screen
  15.   print(msg)
  16.  
  17.   -- if using cc-emu and you have the latest version print it to the log
  18.   if emulog then emulog.log(msg) end
  19. end
  20.  
  21.  
  22. while true do
  23.   -- get our message
  24.   local sender, msg, dist = rednet.receive()
  25.   if sender == 45 and #msg == 2 then
  26.  
  27.     -- get the first part of our message and convert it from hex (base16) to decimal (base10)
  28.     local num = tonumber(msg:sub(1,1), 16)
  29.  
  30.     -- if it was not hexadecimal
  31.     if not num then
  32.       log('Invalid message (num not hex) >>> sender: '..sender..' msg: '..msg)
  33.     else -- if it was hex
  34.       -- decide which function we should use based on if the second character is a t (for true)
  35.       action = (msg:sub(2,2) == 't') and colors.combine or colors.subtract
  36.  
  37.       -- call out action with the current output and the one we just got
  38.       output = action(output, 2 ^ num)
  39.  
  40.       -- everything is valid now lets output
  41.       rs.setBundledOutput('back', output)
  42.     end
  43.   else
  44.     log('Invalid message (invalid sender) >>> sender: '..sender..' msg: '..msg)
  45.   end
  46. end
  47.  
  48. rednet.close('left')
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement