Advertisement
CC_Umbre0n

Umbre0n's File Transfer v2

Jun 25th, 2014
313
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 10.36 KB | None | 0 0
  1. local tArgs = {...}
  2. local ptcl = 'ftp' --Used protocol for file transfer,
  3. local mc = 'mouse_click'
  4. local IDe, rID, fPath = '','',''
  5. local c = 0
  6. local g, lg, gr, bu, ba,r = colors.gray, ,colors.lightGray, colors.green, colors.blue, colors.black, colors.red
  7. --Colors for graphic mode, you can modify them as you want :)
  8.  
  9. function size() --Gets screen size (Needed for pocket computers compatibility)
  10.     local x2,y2 = term.getSize()
  11.     if pocket then
  12.         X = x2/2
  13.         Y = y2/2
  14.     else
  15.         X = (x2-1)/2
  16.         Y = (y2-1)/2
  17.     end
  18. end
  19.  
  20. function clear() --The title says it all
  21.     term.setBackgroundColor(ba)
  22.     term.clear()
  23.     term.setCursorPos(1,1)
  24. end
  25.  
  26. function modemSide() --Finds the modem.
  27.     for _,s in ipairs(rs.getSides()) do
  28.         if peripheral.getType(s) == "modem" then
  29.             mS = s
  30.         end
  31.     end
  32. end
  33.  
  34. function Graphics() --Checks if we want graphics or not.
  35.     if #tArgs == 0 then --No args: graphics.
  36.         ChoiceG()
  37.     else
  38.         if tArgs[1] == "-g" then --Correct args: no graphics.
  39.             Choice()
  40.         else --Not correct args: error
  41.             term.setTextColor(r)
  42.             print('Usage: FTP <-g>')
  43.         end
  44.     end
  45. end
  46.  
  47. function ChoiceG() --Checks if we want to send or receive a file -with graphics!-
  48.     term.setBackgroundColor(bu)
  49.     term.clear()
  50.     term.setBackgroundColor(ba)
  51.     term.setCursorPos(X-4,Y-3)
  52.     write('choice  ')
  53.     term.setBackgroundColor(r)
  54.     write('X')
  55.     term.setBackgroundColor(g)
  56.     term.setCursorPos(X-4,Y-2)
  57.     write('         ')
  58.     term.setCursorPos(X-4,Y)
  59.     write('         ')
  60.     term.setCursorPos(X-4,Y+2)
  61.     write('         ')
  62.     paintutils.drawPixel(X-4,Y-1,g)
  63.     paintutils.drawPixel(X-4,Y+1,g)
  64.     paintutils.drawPixel(X+4,Y-1,g)
  65.     paintutils.drawPixel(X+4,Y+1,g)
  66.     term.setBackgroundColor(gr)
  67.     term.setCursorPos(X-3,Y-1)
  68.     print(' send  ')
  69.     term.setCursorPos(X-3,Y+1)
  70.     print('receive')
  71.     while true do
  72.         local ev,n,x,y = os.pullEvent() --Waits for a click.
  73.         if ev == mc and x == X+4 and y == Y-3 then
  74.             clear()
  75.             print('Program stopped!')
  76.             break
  77.         elseif ev == mc and x >= X-3 and x <= X+3 and y == Y-1 then
  78.             sendG() --Runs the sending function
  79.             break
  80.         elseif ev == mc and x >= X-3 and x <= X+3 and y == Y+1 then
  81.             receiveG() --Runs the receiving function
  82.             break
  83.         end
  84.     end
  85. end
  86.  
  87. function sendG() --Sends the file -with graphics!-
  88.     term.setBackgroundColor(bu)
  89.     term.clear()
  90.     term.setBackgroundColor(gr)
  91.     term.setCursorPos(X-5,Y+2)
  92.     print('   send   ')
  93.     term.setCursorPos(X-6,Y-5)
  94.     term.setBackgroundColor(ba)
  95.     write('send       ')
  96.     term.setBackgroundColor(r)
  97.     write('X')
  98.     term.setBackgroundColor(g)
  99.     term.setCursorPos(X-6,Y-4)
  100.     write('            ')
  101.     term.setCursorPos(X-6,Y-2)
  102.     write('            ')
  103.     term.setCursorPos(X-6,Y+1)
  104.     write('            ')
  105.     term.setCursorPos(X-6,Y+3)
  106.     write('            ')
  107.     paintutils.drawPixel(X+5,Y+2,g)
  108.     paintutils.drawPixel(X+5,Y-3,g)
  109.     paintutils.drawPixel(X+5,Y,g)
  110.     paintutils.drawPixel(X-6,Y,g)
  111.     paintutils.drawPixel(X-6,Y+2,g)
  112.     term.setTextColor(ba)
  113.     term.setCursorPos(X-6,Y-1)
  114.     print(' File path: ')
  115.     term.setCursorPos(X-6,Y-3)
  116.     write(' Send to:')
  117.     term.setBackgroundColor(lg)
  118.     term.setCursorPos(X+3,Y-3)
  119.     write('  ')
  120.     term.setCursorPos(X-5,Y)
  121.     write('          ')
  122.     while true do
  123.         local ev,b,x,y = os.pullEvent()
  124.         if ev == mc and x == X+5 and y == Y-5 then
  125.             clear()
  126.             term.setTextColor(colors.white)
  127.             print('Program stopped!')
  128.             break
  129.         elseif ev == mc and x >= X+3 and x <= X+4 and y == Y-3 then
  130.             term.setCursorPos(X+3,Y-3)
  131.             IDe = read()
  132.         elseif ev == mc and x >= X-5 and x <= X+4 and y == Y then
  133.             term.setCursorPos(X-5,Y)
  134.             fPath = read()
  135.         elseif ev == mc and x >= X-5 and x <= X+4 and y == Y+2 then
  136.             if tonumber(IDe) == nil then
  137.                 term.setTextColor(r)
  138.                 clear()
  139.                 print("Error: incorrect ID entered!")
  140.                 break
  141.             elseif not fs.exists(fPath) then
  142.                 clear()
  143.                 term.setTextColor(r)
  144.                 print("Error: file doesn't exists!")
  145.                 break
  146.             elseif fPath == '' then
  147.                 clear()
  148.                 term.setTextColor(r)
  149.                 print("Error: you must enter a filename!")
  150.                 break
  151.             elseif fs.exists(fPath) then
  152.                 rID = tonumber(IDe)
  153.                 FTS = fs.open(fPath,'r')
  154.                 FC = FTS.readAll()
  155.                 rednet.open(mS)
  156.                 rednet.send(rID,FC,ptcl)
  157.                 rednet.close(mS)
  158.                 FTS.close()
  159.                 clear()
  160.                 term.setTextColor(colors.white)
  161.                 print('File sent!')
  162.             end
  163.             break
  164.         end
  165.     end
  166. end
  167.  
  168. function receiveG() --Receives the file -with graphics!-
  169.     term.setBackgroundColor(bu)
  170.     term.clear()
  171.     term.setBackgroundColor(gr)
  172.     term.setCursorPos(X-4,Y+5)
  173.     write('receive ')
  174.     term.setCursorPos(X-6,Y-5)
  175.     term.setBackgroundColor(ba)
  176.     write('receive    ')
  177.     term.setBackgroundColor(r)
  178.     write('X')
  179.     term.setBackgroundColor(g)
  180.     term.setTextColor(ba)
  181.     paintutils.drawPixel(X+5,Y-3,g)
  182.     paintutils.drawPixel(X+5,Y+3,g)
  183.     paintutils.drawPixel(X-6,Y+3,g)
  184.     term.setCursorPos(X-6,Y+5)
  185.     write('  ')
  186.     term.setCursorPos(X+4,Y+5)
  187.     write('  ')
  188.     term.setCursorPos(X-6,Y-4)
  189.     write('            ')
  190.     term.setCursorPos(X-6,Y+4)
  191.     write('            ')
  192.     term.setCursorPos(X-6,Y+6)
  193.     write('            ')
  194.     term.setCursorPos(X-6,Y+1)
  195.     write('            ')
  196.     term.setCursorPos(X-6,Y-2)
  197.     write('Leave blank ')
  198.     term.setCursorPos(X-6,Y-1)
  199.     write('   for no   ')
  200.     term.setCursorPos(X-6,Y)
  201.     write('verification')
  202.     term.setCursorPos(X-6,Y+2)
  203.     write(' File path: ')
  204.     term.setCursorPos(X-6,Y-3)
  205.     write('  Sender:')
  206.     term.setBackgroundColor(lg)
  207.     write('  ')
  208.     term.setCursorPos(X-5,Y+3)
  209.     write('          ')
  210.     while true do
  211.         local ev,b,x,y = os.pullEvent()
  212.         if ev == mc and x == X+5 and y == Y-5 then
  213.             clear()
  214.             term.setTextColor(colors.white)
  215.             print('Program stopped!')
  216.             break
  217.         elseif ev == mc and x >= X+3 and x <= X+4 and y == Y-3 then
  218.             term.setCursorPos(X+3,Y-3)
  219.             IDe = read()
  220.         elseif ev == mc and x >= X-5 and x <= X+4 and y == Y+3 then
  221.             term.setCursorPos(X-5,Y+3)
  222.             fPath = read()
  223.         elseif ev == mc and x >= X-4 and x <= X+3 and y == Y+5 then
  224.             if tonumber(IDe) == nil and IDe ~= '' then
  225.                 term.setTextColor(r)
  226.                 clear()
  227.                 print("Error: incorrect ID entered!")
  228.                 break
  229.             elseif fPath == '' then
  230.                 clear()
  231.                 term.setTextColor(r)
  232.                 print("Error: you must enter a filename!")
  233.                 break
  234.             elseif fs.exists(fPath) then
  235.                 clear()
  236.                 term.setTextColor(r)
  237.                 print("Error: file already exists!")
  238.                 break
  239.             elseif not fs.exists(fPath) then
  240.                 while true do
  241.                     rednet.open(mS)
  242.                     term.setCursorPos(X-4,Y+5)
  243.                     term.setTextColor(colors.white)
  244.                     term.setBackgroundColor(gr)
  245.                     write('Waiting')
  246.                     local rID,FC = rednet.receive(ptcl)
  247.                     if IDe == '' then
  248.                         local FTW = fs.open(fPath,'w')
  249.                         FTW.write(FC)
  250.                         FTW.close()
  251.                         rednet.close(mS)
  252.                         clear()
  253.                         print('File received from computer '..rID)
  254.                         break
  255.                     elseif tonumber(IDe) == tonumber(rID) then
  256.                         local FTW = fs.open(fPath,'w')
  257.                         FTW.write(FC)
  258.                         FTW.close()
  259.                         rednet.close(mS)
  260.                         clear()
  261.                         print('File received!')
  262.                         break
  263.                     end
  264.                 end
  265.             end
  266.         break
  267.         end
  268.     end
  269. end
  270.  
  271. function Choice() --Asks if we want to send or receive a file
  272.     clear()
  273.     print('Press <Del> to stop.')
  274.     print('Want you to send or receive a file?')
  275.     print('[send] receive')
  276.     while true do
  277.         local ev,k = os.pullEvent()
  278.         if ev == 'key' and k == 205 and c == 0 then
  279.             c = 1
  280.             clear()
  281.             print('Press <Del> to stop.')
  282.             print('Want you to send or receive a file?')
  283.             print(' send [receive]')
  284.         elseif ev == 'key' and k == 203 and c == 1 then
  285.             c = 0
  286.             clear()
  287.             print('Press <Del> to stop.')
  288.             print('Want you to send or receive a file?')
  289.             print('[send] receive')
  290.         elseif ev == 'key' and k == 205 and c == 1 then
  291.             c = 0
  292.             clear()
  293.             print('Press <Del> to stop.')
  294.             print('Want you to send or receive a file?')
  295.             print('[send] receive')
  296.         elseif ev == 'key' and k == 203 and c == 0 then
  297.             c = 1
  298.             clear()
  299.             print('Press <Del> to stop.')
  300.             print('Want you to send or receive a file?')
  301.             print(' send [receive]')
  302.         elseif ev == 'key' and k == 28 then
  303.             if c == 1 then
  304.                 receive()
  305.             else
  306.                 send()
  307.             end
  308.             break
  309.         elseif ev == 'key' and k == 211 then
  310.             clear()
  311.             print('Program stopped!')
  312.             break
  313.         end
  314.     end
  315. end
  316.  
  317. function send() --Sends the file
  318.     clear()
  319.     write('Send to computer:')
  320.     IDe = read()
  321.     write('File to send:')
  322.     fPath = read()
  323.     if tonumber(IDe) == nil then
  324.         clear()
  325.         print("Error: incorrect ID entered!")
  326.     elseif not fs.exists(fPath) or fPath == '' then
  327.         clear()
  328.         print("Error: file doesn't exists!")
  329.     elseif fs.exists(fPath) then
  330.         print('Receiver ready?')
  331.         print('Press <Enter> to send the file')
  332.         print('Or <Del> to stop.')
  333.         while true do
  334.             local ev,k = os.pullEvent()
  335.             if ev == 'key' and k == 211 then
  336.                 clear()
  337.                 print('Program stopped!')
  338.                 break
  339.             elseif ev == 'key' and k == 28 then
  340.                 rID = tonumber(IDe)
  341.                 FTS = fs.open(fPath,'r')
  342.                 FC = FTS.readAll()
  343.                 rednet.open(mS)
  344.                 rednet.send(rID,FC,ptcl)
  345.                 rednet.close(mS)
  346.                 FTS.close()
  347.                 print('File sent!')
  348.                 break
  349.             end
  350.         end
  351.     end
  352. end
  353.  
  354. function receive() --Receives the file
  355.     clear()
  356.     print('Leave blank for no verification -dangerous!')
  357.     write('Receive from computer:')
  358.     IDe = read()
  359.     write('File to receive path:')
  360.     fPath = read()
  361.     if tonumber(IDe) == nil and IDe ~= '' then
  362.         clear()
  363.         print("incorrect ID entered!")
  364.     elseif fs.exists(fPath) then
  365.         clear()
  366.         print("Error: file already exists!")
  367.     else
  368.         print('Sender ready?')
  369.         print('Press <Enter> to receive the file.')
  370.         print('Or <Del> to stop.')
  371.         while true do
  372.             local ev,k = os.pullEvent()
  373.             if ev == 'key' and k == 211 then
  374.                 clear()
  375.                 print('Program stopped!')
  376.                 break
  377.             elseif ev == 'key' and k == 28 and IDe == '' then
  378.                 rednet.open(mS)
  379.                 print('Waiting for the file...')
  380.                 local rID, FC = rednet.receive(ptcl)
  381.                 print('File received from computer '..tostring(rID)..'!')
  382.                 rednet.close(mS)
  383.                 local FTW = fs.open(fPath,'w')
  384.                 FTW.write(FC)
  385.                 FTW.close()
  386.                 break
  387.             elseif ev == 'key' and k == 28 and IDe ~= '' then
  388.                 rednet.open(mS)
  389.                 print('Waiting for the file...')
  390.                 local rID, FC = rednet.receive()
  391.                 if rID == tonumber(IDe) then
  392.                     rednet.close(mS)
  393.                     print('File received from computer '..tostring(rID)..'!')
  394.                     local FTW = fs.open(fPath,'w')
  395.                     FTW.write(FC)
  396.                     FTW.close()
  397.                     break
  398.                 else
  399.                     print('Computer '..tostring(rID)..' tried to send you a file!')
  400.                     print('Press <Enter> to continue...')
  401.                     print('Or <Del> to stop.')
  402.                 end    
  403.             end
  404.         end
  405.     end
  406. end
  407.  
  408. size()
  409. modemSide()
  410. Graphics()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement