Advertisement
Guest User

FindDev_Updated

a guest
Sep 13th, 2016
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.34 KB | None | 0 0
  1.  
  2. -- Inventory and Peripheral Program
  3. -- For use with computercraft and OpenPeripherals, to display Inventory information on both items and
  4. -- fluids.
  5. -- Programmed By Linrox
  6. -- Requirements: 1x Advanced Computer (GOLD) and 40x Advanced Monitors (5 heigh x 8 wide)
  7.  
  8.  
  9. -- SETUP VARIABLES
  10. local w, s, tp, ID, txt, timeout,modSd,monSd,bc
  11. local MyID, MyName, wm, hm, DevName, currKey,termx, termy, yy
  12. monFound=False
  13. termx,termy=term.getSize()
  14. yy=termy-2
  15. local TableVSpace=6
  16. local y=1
  17. -- Table Variables
  18. term.clear()
  19. term.setCursorPos(1,y)
  20.  
  21. --TABLES
  22. local DeviceNames={}
  23.  
  24.  
  25.  
  26. function ComputerInfo()
  27. MyID= (os.getComputerID())
  28. MyName=(os.getComputerLabel())
  29. end
  30.  
  31. ComputerInfo()
  32.  
  33. function MonitorInfo(newDevName)
  34. monitor=newDevName
  35. if monFound==false then
  36. term.setCursorPos(1,yy)
  37. print("Monitor not found")
  38. sleep(1)
  39. elseif monFound==true then
  40. wm, hm = monitor.getSize()
  41. term.setCursorPos(1,yy)
  42. print("Monitor Height:"..hm.." Width:"..wm)
  43. end
  44. end
  45.  
  46. function displayConnDevs()
  47. y=4
  48. term.clear()
  49. term.setCursorPos(1,1)
  50. print("ID: "..MyID.." Name: "..MyName)
  51. print("____________________________")
  52. print("Key Found Devices")
  53. for k,v in pairs(DeviceNames) do
  54. sleep(.5)
  55. print(k.." "..v)
  56.  
  57. end
  58. end
  59.  
  60. function checkDB(newDevName, DevName)
  61. for k,v in pairs(DeviceNames) do
  62. if tostring(v)==newDevName then
  63. term.setCursorPos(1,termy-4 )
  64. print(v.." has been added, using key "..k)
  65. newDevName=peripheral.wrap(DevName)
  66. print(v.." Assigned")
  67. if DevName=="monitor_0" then
  68. monFound=true
  69. MonitorInfo(newDevName)
  70. end
  71. end
  72. displayConnDevs() -- CHECKS DB
  73. end
  74. end
  75.  
  76. function findRDev(DevName,currKey,s,Devs)
  77. if s~=nil then
  78. if peripheral.getType(s)=="modem" and peripheral.isPresent(s) then
  79. UDevWrap=peripheral.wrap(s)
  80. if UDevWrap.isWireless() == true then
  81. DevName="Wireless Modem"
  82. end
  83.  
  84. if peripheral.isPresent(s) then
  85. term.setCursorPos(1,termy-6 )
  86. print("Local "..DevName.." Found on side ",currKey)
  87. print("Give a user friendly name to use for "..DevName)
  88. newDevName=io.read() --*
  89. DeviceNames[tonumber(currKey)]=tostring(newDevName) --*****ADDING TO DB
  90. end
  91. else
  92.  
  93. UDevName=peripheral.getType(DevName)
  94. if UDevName~=nil then
  95. if (UDevName.."_0")==DevName then
  96. if peripheral.isPresent(DevName) then
  97. y=(#DeviceNames+TableVSpace)
  98. term.setCursorPos(1,termy-4)
  99. print("Remote "..DevName.." is Found, and will use key ",currKey)
  100. print("Give a user friendly name to use for "..DevName)
  101. newDevName=io.read() --*
  102. DeviceNames[tonumber(currKey)]=tostring(newDevName) --*****ADDING TO DB
  103. end
  104. else
  105. print(UDevName.." not Found")
  106. end
  107.  
  108. elseif UDevName==nil then
  109. print("UDevName is Nil "..tostring(Devs))
  110. sleep(2)
  111. Devs=1
  112. print(tostring(Devs))
  113. sleep(2)
  114. RemoteDevs(Devs,currKey)
  115. else
  116. print("UDevName not matched "..tostring(Devs))
  117. sleep(2)
  118. Devs=(Devs+1)
  119. print(tostring(Devs))
  120. sleep(2)
  121. RemoteDevs(Devs,currKey)
  122. end
  123. end
  124. end
  125. checkDB(newDevName, DevName)
  126. end
  127.  
  128. function RemoteDevs(Devs,currKey)
  129. for num=1,Devs do
  130. term.setCursorPos(1,10)
  131. print(tostring(Devs))
  132. sleep(1)
  133. y=(#DeviceNames+TableVSpace)
  134. term.setCursorPos(1,termy-6)
  135. print("What is the Name of device "..Devs.."?")
  136. DevName=io.read()
  137. currKey=currKey+1
  138. findRDev(DevName,currKey,Devs)
  139.  
  140. end
  141. end
  142.  
  143. function MoreDevs()
  144. print("How many devices?")
  145. currKey=5
  146. local Devs=io.read()
  147. RemoteDevs(Devs,currKey)
  148. end
  149.  
  150. function DevAsk()
  151. y=(#DeviceNames+TableVSpace)
  152. term.setCursorPos(1,y+2)
  153. print("Are there remote devices to connect? Y/N")
  154. Answer=io.read()
  155. if string.lower(Answer)=="y" then MoreDevs()
  156. elseif string.lower(Answer)=="n" then
  157. error(reason)
  158. else print("Try again")
  159. DevAsk()
  160. end
  161. end
  162.  
  163. function findDev()
  164. for w = 1 , 5, 1 do
  165. if (w==1) then s="left" end
  166. if (w==2) then s="right" end
  167. if (w==3) then s="top" end
  168. if (w==4) then s="back" end
  169. if (w==5) then s="bottom" end
  170. ps=peripheral.isPresent(s)
  171. if (ps== true) then
  172. tp=peripheral.getType(s)
  173. --print("True found - w: ",w," s: ",s," tp: ",tp )
  174. if (tp=="modem") then
  175. Comms= peripheral.wrap(s)
  176. if Comms.isWireless() == true then
  177. DevName="modem"
  178. currKey=w
  179. findRDev(DevName,currKey,s)
  180. --[[for i,v in ipairs(peripheral.getMethods(s)) do
  181. print(i..". "..v) ]]--
  182. --** print("Wireless Modem Found - Side: ",s)
  183. --Wireless=peripheral.wrap(s)
  184. --modSd=s
  185. else
  186. --print("Modem Found - Side: ",s)
  187. DevName="modem"
  188. currKey=w
  189. findRDev(DevName,currKey,s)
  190. --Wired=peripheral.wrap(s)
  191. --modSd=s
  192. end
  193. --end
  194. -- print("Device: "..tp)
  195. -- for i,v in ipairs(peripheral.getMethods(modSd)) do
  196. -- print(i..". "..v)
  197. -- end
  198. end
  199. if (tp=="monitor") then
  200. if monFound==false then print("Monitor not found")
  201. DevName="monitor_0"
  202. currKey=w
  203. findRDev(DevName,currKey,s)
  204. --[[for i,v in ipairs(peripheral.getMethods(s)) do
  205. --print(i..". "..v)]]--
  206. --monitor= peripheral.wrap(s)
  207. --print("Monitor Found - Side: ",s )
  208. --local monSd=s
  209. --monFound=True
  210. --MonitorInfo()
  211. --print("Monitor Height:"..hm.." Width:"..wm)
  212. end
  213. end
  214. end
  215. end
  216. end
  217.  
  218. findDev()
  219. DevAsk()
  220.  
  221. print("EOL")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement