Advertisement
Wired2coffee

Rednet Internet Browser Code

Mar 25th, 2012
273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.89 KB | None | 0 0
  1. serverBroadcastIDs = {}
  2. function getNumTable(tbl)
  3. sReturn = 0
  4. for i = 1,math.huge do
  5. if tbl[i] == nil then
  6. return sReturn
  7. else
  8. sReturn = sReturn+1
  9. end
  10. end
  11. end
  12. PAGE1 = {}
  13. rednet.open("back")
  14. rednet.open("front")
  15. rednet.open("left")
  16. rednet.open("right")
  17. rednet.open("top")
  18. rednet.open("bottom")
  19. function Start()
  20. while true do
  21. print("+-----------------------------------------------+")
  22. print("| |")
  23. print("+-----------------------------------------------+")
  24. print("| |")
  25. print("| |")
  26. print("| |")
  27. print("| |")
  28. print("| |")
  29. print("| |")
  30. print("| |")
  31. print("| |")
  32. print("| |")
  33. print("| |")
  34. print("| |")
  35. print("| |")
  36. print("| |")
  37. print("+-----------------------------------------------+")
  38. term.setCursorPos(3,2)
  39. websiteInput = read()
  40. if string.sub(websiteInput,1,9) ~= "download:" then
  41. if string.sub(websiteInput,1,7) ~= "upload:" then
  42. for i = 1, numberOfServerBroadcastIDs do
  43. sentCheck = rednet.send(serverBroadcastIDs[i], "getHTTP"..websiteInput)
  44. inputStuff()
  45. break
  46. end
  47. else
  48. if fs.exists(string.sub(websiteInput,8)) == true then
  49. for i = 1, numberOfServerBroadcastIDs do
  50. local sFile = fs.open(string.sub(websiteInput,8), "r")
  51. rednet.send(serverBroadcastIDs[i], "UPL"..checkLines(string.sub(websiteInput,8)))
  52. rednet.send(serverBroadcastIDs[i], string.sub(websiteInput,8))
  53. broadcastID = serverBroadcastIDs[i]
  54. for i = 1, checkLines(string.sub(websiteInput,8)) do
  55. rednet.send(broadcastID, tostring(sFile:readLine()))
  56. end
  57. end
  58. sFile:close()
  59. else
  60. term.clear()
  61. term.setCursorPos(1,1)
  62. error("File does not exist.")
  63. end
  64. end
  65. else
  66. for i = 1, numberOfServerBroadcastIDs do
  67. rednet.send(serverBroadcastIDs[i], "DWN"..string.sub(websiteInput,10))
  68. id, numOfLines = rednet.receive()
  69. numOfLines = tonumber(numOfLines)
  70. local sFilez = fs.open(string.sub(websiteInput,10), "w")
  71. for i = 1,numOfLines do
  72. id, received = rednet.receive()
  73. lol = sFilez.write(received.."\n")
  74. end
  75. sFilez:close()
  76. end
  77. end
  78. end
  79. end
  80. function inputStuff()
  81. for i = 1, 15 do
  82. if i == 1 then
  83. CODE = io.open("WEBSITECODE","w")
  84. id, msg = rednet.receive()
  85. CODE:write(msg)
  86. CODE:close()
  87. else
  88. id, PAGE1[i] = rednet.receive()
  89. end
  90. end
  91. for i = 1, 14 do
  92. if PAGE1[i] ~= nil then
  93. term.setCursorPos(2, 2+i)
  94. io.write(PAGE1[i])
  95. end
  96. end
  97. while true do
  98. shell.run("WEBSITECODE")
  99. event, key = os.pullEvent()
  100. if event == "key" then
  101. if key ~= 1 then
  102. term.clear()
  103. term.setCursorPos(1,1)
  104. Start()
  105. end
  106. end
  107. end
  108. end
  109. function checkLines(file)
  110. if fs.exists(file) == true then
  111. sFile = fs.open(file, "r")
  112. sCount = 0
  113. for i = 1, math.huge do
  114. line = sFile:readLine()
  115. if line ~= nil then
  116. sCount = sCount+1
  117. else
  118. return sCount
  119. end
  120. end
  121. else
  122. return false
  123. end
  124. end
  125. if fs.exists("clientConnect") == true then
  126. local filez = fs.open("clientConnect","r")
  127. for i = 1,checkLines("clientConnect") do
  128. table.insert(serverBroadcastIDs, tonumber(filez.readLine()))
  129. end
  130. filez.close()
  131. else
  132. error("Make clientConnect file!")
  133. end
  134. numberOfServerBroadcastIDs = getNumTable(serverBroadcastIDs)
  135. Start()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement