Advertisement
hoguesteele

Minor edit of mitchfizz05's Bluetooth

Jun 28th, 2013
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local tArgs = { ... }
  2.  
  3. local function printUsage()
  4.     print("Usage:")
  5.     print("  bluetooth receive")
  6.     print("  bluetooth send <file> <computerID>")
  7.     return
  8. end
  9.  
  10. if #tArgs < 1 then
  11.   printUsage()
  12. end
  13.  
  14. local sModemSide = nil
  15. for n,sSide in ipairs(rs.getSides()) do
  16.   if peripheral.getType(sSide) == "modem" and peripheral.call(sSide,"isWireless") then
  17.     sModemSide = sSide
  18.     break
  19.   end
  20. end
  21. if sModemSide == nil then
  22.   print("No wireless modem attached")
  23.   return
  24. end
  25. rednet.open(sModemSide)
  26.  
  27. local function sendFile(file, computerID)
  28.     if not fs.exists(file) or fs.isDir(file) then
  29.         print("File can't be sent!")
  30.         print("It is either non existant or is a directory!")
  31.         return
  32.     end
  33.  
  34.     computerID = tonumber(computerID)
  35.  
  36.     local sr = io.open(file, "r")
  37.     print("Connecting to bluetooth device.")
  38.    
  39.     while true do
  40.         rednet.send(computerID, "bluetooth.connect")
  41.         os.startTimer(1)
  42.         local e,p1,p2,p3 = os.pullEvent()
  43.         if e == "rednet_message" then
  44.             local id,msg = p1,p2
  45.             if msg == "bluetooth.accept" then
  46.                 print("Bluetooth device connected!")
  47.                 break
  48.             end
  49.         end
  50.     end
  51.    
  52.     sleep(0.8)
  53.     rednet.send(computerID, "bluetooth.filename:" .. file)
  54.    
  55.     sleep(0.5)
  56.    
  57.     print("Sending file...")
  58.     local data
  59.     while true do
  60.         data = sr.read()
  61.         if data == nil then
  62.             break
  63.         end
  64.         rednet.send(computerID, "bluetooth.file:" .. data)
  65.         sleep(0.1)
  66.     end
  67.     rednet.send(computerID, "bluetooth.done")
  68.     print("File sent!")
  69. end
  70.  
  71. local function receiveFile()
  72.  shell.run("id")
  73.     print("Waiting for a bluetooth connection...")
  74.    
  75.     while true do
  76.         local id,msg
  77.         local e,p1,p2,p3 = os.pullEvent()
  78.         if e == "rednet_message" then
  79.             id,msg = p1,p2
  80.         end
  81.         if e == "key" then
  82.             break
  83.         end
  84.        
  85.         if msg == "bluetooth.connect" then
  86.             print("Connected to " .. id .. "!")
  87.             local remoteID = id
  88.             rednet.send(id, "bluetooth.accept")
  89.            
  90.             local fileName
  91.            
  92.             print("Getting the file name...")
  93.            
  94.             local id,msg = "",""
  95.             while true do
  96.                 id,msg = rednet.receive()
  97.                
  98.                 if id == remoteID and string.sub(msg, 1, #"bluetooth.filename:") == "bluetooth.filename:" then
  99.                     fileName = string.sub(msg, #"bluetooth.filename:" + 1)
  100.                     break
  101.                 end
  102.             end
  103.            
  104.             if fs.exists(fileName) then
  105.                 print("File already exists! Delete old file...")
  106.                 fs.delete(fileName)
  107.             end
  108.            
  109.             print("Receiving file: " .. fileName)
  110.            
  111.             local file = fs.open(fileName, "w")
  112.            
  113.             local id,msg
  114.             while true do
  115.                 id,msg = rednet.receive()
  116.                 if id == remoteID then
  117.                     if string.sub(msg, 1, #"bluetooth.file:") == "bluetooth.file:" then
  118.                         local subbedData = string.sub(msg, #"bluetooth.file:" + 1)
  119.                        
  120.                         if term.isColor() then
  121.                             term.setTextColor(colors.lightBlue)
  122.                         end
  123.                        
  124.                         print(subbedData)
  125.                         file.writeLine(subbedData)
  126.                     elseif msg == "bluetooth.done" then
  127.                         file.flush()
  128.                         file.close()
  129.                    
  130.                         if term.isColor() then
  131.                             term.setTextColor(colors.white)
  132.                         end
  133.                    
  134.                         print("Received file!")
  135.                        
  136.                         break
  137.                     end
  138.                 end
  139.             end
  140.         end
  141.     end
  142. end
  143.  
  144. if tArgs[1] == "receive" then
  145.     receiveFile()
  146. elseif tArgs[1] == "send" and #tArgs == 3 then
  147.     sendFile(tArgs[2], tArgs[3])
  148. else
  149. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement