Advertisement
Guest User

Wireless Redstone v2.0

a guest
Jun 16th, 2013
390
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.85 KB | None | 0 0
  1. -- Wireless Redstone by DeweySalt aka islanderon01
  2. -- Version 2.0
  3. -- WR API no longer required in version 2.0
  4. -- Thanks to tomass1996 for the find and seperate functions
  5. local function openRednet()
  6. local listOfSides = rs.getSides()
  7. local listofPossibles = {}
  8. local counter1 = 0
  9. while true do
  10.   counter1 = counter1 +1
  11.  
  12.   if peripheral.isPresent(tostring(listOfSides[counter1])) and peripheral.getType(listOfSides[counter1]) == "modem" then
  13.    table.insert(listofPossibles,tostring(listOfSides[counter1]))
  14.   end
  15.  
  16.   if counter1 == 6 and table.maxn(listofPossibles) == 0 then
  17.    print("no wifi present")
  18.    return nil
  19.   end
  20.  
  21.   if counter1 == 6 and table.maxn(listofPossibles) ~= 0 then
  22.    rednet.open(listofPossibles[1])
  23.    return listofPossibles[1]
  24.   end
  25. end
  26. end
  27. function fromboolean(input)
  28. if input == true then
  29. return "true"
  30. else
  31. return "false"
  32. end
  33. end
  34. function toboolean(input)
  35. if input == "true" then
  36. return true
  37. else
  38. return false
  39. end
  40. end
  41. function find(str, match, startIndex) -- Find function by tomass1996
  42. if not match then return nil end
  43. str = tostring(str)
  44. local _ = startIndex or 1
  45. local _s = nil
  46. local _e = nil
  47. local _len = match:len()
  48. while true do
  49. local _t = str:sub( _ , _len + _ - 1)
  50. if _t == match then
  51. _s = _
  52. _e = _ + _len - 1
  53. break
  54. end
  55. _ = _ + 1
  56. if _ > str:len() then break end
  57. end
  58. if _s == nil then return nil else return _s, _e end
  59. end
  60. function seperate(str, divider) -- Seperate function by tomass1996
  61. if not divider then return nil end
  62. str = tostring(str)
  63. local start = {}
  64. local endS = {}
  65. local n=1
  66. repeat
  67. if n==1 then
  68. start[n], endS[n] = find(str, divider)
  69. else
  70. start[n], endS[n] = find(str, divider, endS[n-1]+1)
  71.                                 end
  72. n=n+1
  73. until start[n-1]==nil
  74. local subs = {}
  75. for n=1, #start+1 do
  76. if n==1 then
  77. subs[n] = str:sub(1, start[n]-1)
  78. elseif n==#start+1 then
  79. subs[n] = str:sub(endS[n-1]+1)
  80. else
  81. subs[n] = str:sub(endS[n-1]+1, start[n]-1)
  82.                                 end
  83. end
  84. return subs
  85. end
  86. function sendState(freq, side, state)
  87. openRednet()
  88. state = fromboolean(state)
  89. rednet.broadcast("RSW : "..freq.." : "..side.." : "..state)
  90. end
  91.  
  92. function recState(freq, set, timeout)
  93. openRednet()
  94. if timeout == nil then
  95. id, msg = rednet.receive()
  96. else
  97. id, msg = rednet.receive(tonumber(timeout))
  98. end
  99. parseddata = seperate(msg, " : ")
  100. if parseddata[1] == "RSW" and parseddata[2] == freq then
  101. finald = { }
  102. finald[1] = parseddata[3]
  103. finald[2] = toboolean(parseddata[4])
  104. if set == true then
  105. redstone.setOutput(finald[1], finald[2])
  106. return finald
  107. else
  108. return finald
  109. end
  110. end
  111. end
  112. openRednet()
  113. valid = 0
  114. function runprogram()
  115. term.clear()
  116. term.setCursorPos(1,1)
  117. if valid == 1 then
  118. print "Invalid Choice"
  119. end
  120. print "Pick One:"
  121. print "[1] Sender"
  122. print "[2] Receiver"
  123. print ""
  124. event, choice = os.pullEvent()
  125. if event == "key" and choice == 2 then -- Sending
  126. write "Frequency: "
  127. freq = io.read()
  128. term.clear()
  129. term.setCursorPos(1,1)
  130. print ("Now sending redstone input to frequency "..freq..", hold CTRL-T to end.")
  131. while true do
  132.   os.pullEvent("redstone")
  133.   states = {redstone.getInput("left"), redstone.getInput("right"), redstone.getInput("back"), redstone.getInput("front"), redstone.getInput("top"), redstone.getInput("bottom")}
  134.   sendState(freq, "left", states[1])
  135.   sendState(freq, "right", states[2])
  136.   sendState(freq, "back", states[3])
  137.   sendState(freq, "front", states[4])
  138.   sendState(freq, "top", states[5])
  139.   sendState(freq, "bottom", states[6])
  140.    print ("SENT: Redstone change")
  141. end
  142. elseif event == "key" and choice == 3 then -- Receiving
  143. write "Frequency: "
  144. freq = io.read()
  145. term.clear()
  146. term.setCursorPos(1,1)
  147. print ("Now receiving data on frequency "..freq..", hold CTRL-T to end.")
  148. while true do
  149.   rec = recState(freq, true)
  150.   rec[2] = fromboolean(rec[2])
  151.   print (rec[1].." : "..rec[2])
  152. end
  153. else
  154. valid = 1
  155. runprogram()
  156. end
  157. end
  158. runprogram()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement