TIMAS_Bro

StationInstaller

May 11th, 2023 (edited)
96
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.09 KB | None | 0 0
  1. function main()
  2. shell.run("/station.lua")
  3. end
  4. function tablo()
  5. shell.run("/fff")
  6. end
  7. function write(txt)
  8. term.write(txt)
  9. end
  10. function sbc(clr)
  11. term.setBackgroundColor(clr)
  12. end
  13. function stc(clr)
  14. term.setTextColor(clr)
  15. end
  16. function scp(x,y)
  17. term.setCursorPos(x,y)
  18. end
  19. local sx,sy = term.getSize()
  20. function center(y,txt)
  21. term.setCursorPos(math.ceil((sx / 2) - (txt:len() / 2)), y)
  22. write(txt)
  23. end
  24. -- draw basic gui
  25. term.setBackgroundColor(colors.lightBlue)
  26. term.clear()
  27. sbc(colors.blue)
  28. center(2,"TMZS-STATION-INSTALLER")
  29. sbc(colors.lightBlue)
  30. center(4 ,"made for creatopicorails(monamu)")
  31. local monitors = {}
  32. for i=1,1 do
  33. scp(3,6)
  34. write("You need to enter "..i.." small_monitor_n(e: monitor_13)")
  35. scp(3,7)
  36. local len = 10
  37. for i=1,len do
  38. scp(2+i,7)
  39. sbc(colors.white)
  40. term.write(" ")
  41. end
  42. scp(3,7)
  43. stc(colors.black)
  44. local fid = read()
  45. local mn = peripheral.wrap(fid)
  46. scp(3,8)
  47. sbc(colors.lightBlue)
  48. stc(colors.white)
  49. write("Check and tap screen on "..fid.."!")
  50. mn.setBackgroundColor(colors.lime)
  51. mn.clear()
  52. mn.setCursorPos(1,1)
  53. mn.write("ClickScreen")
  54. repeat
  55. event, side, xPos, yPos = os.pullEvent("monitor_touch")
  56. until side == fid
  57. mn.clear()
  58. mn.setCursorPos(1,1)
  59. mn.write("OK")
  60. monitors[i] = fid
  61. scp(3,8)
  62. monitors[i] = fid
  63. write("OK ")
  64. sleep(1)
  65. scp(3,8)
  66. write(" ")
  67. end
  68. -- TabloDisplay
  69. local tablol = {}
  70. for i=1,1 do
  71. scp(3,6)
  72. write("You need to enter "..i.." tablo_monitor(e: monitor_13)")
  73. scp(3,7)
  74. local len = 10
  75. for i=1,len do
  76. scp(2+i,7)
  77. sbc(colors.white)
  78. term.write(" ")
  79. end
  80. scp(3,7)
  81. stc(colors.black)
  82. local fid = read()
  83. local mn = peripheral.wrap(fid)
  84. scp(3,8)
  85. sbc(colors.lightBlue)
  86. stc(colors.white)
  87. write("Check and tap screen on "..fid.."!")
  88. mn.setBackgroundColor(colors.lime)
  89. mn.clear()
  90. mn.setCursorPos(1,1)
  91. mn.write("ClickScreen")
  92. repeat
  93. event, side, xPos, yPos = os.pullEvent("monitor_touch")
  94. until side == fid
  95. mn.clear()
  96. mn.setCursorPos(1,1)
  97. mn.write("OK")
  98. tablol[i] = fid
  99. scp(3,8)
  100. write("OK ")
  101. sleep(1)
  102. scp(3,8)
  103. write(" ")
  104. end
  105. -- BigDisplay
  106. local bdl = {}
  107. for i=1,1 do
  108. scp(3,6)
  109. write("You need to enter "..i.." big_monitor(examles: monitor_13)")
  110. scp(3,7)
  111. local len = 10
  112. for i=1,len do
  113. scp(2+i,7)
  114. sbc(colors.white)
  115. term.write(" ")
  116. end
  117. scp(3,7)
  118. stc(colors.black)
  119. local fid = read()
  120. local mn = peripheral.wrap(fid)
  121. scp(3,8)
  122. sbc(colors.lightBlue)
  123. stc(colors.white)
  124. write("Check and tap screen on "..fid.."!")
  125. mn.setBackgroundColor(colors.lime)
  126. mn.clear()
  127. mn.setCursorPos(1,1)
  128. mn.write("ClickScreen")
  129. repeat
  130. event, side, xPos, yPos = os.pullEvent("monitor_touch")
  131. until side == fid
  132. mn.clear()
  133. mn.setCursorPos(1,1)
  134. mn.write("OK")
  135. bdl[i] = fid
  136. scp(3,8)
  137. write("OK ")
  138. sleep(1)
  139. scp(3,8)
  140. write(" ")
  141. end
  142. -- Speakers
  143. local spkl = {}
  144. for i=1,3 do
  145. scp(3,6)
  146. write("You need to enter "..i.." speakers(exampl: monitor_13)")
  147. scp(3,7)
  148. local len = 10
  149. for i=1,len do
  150. scp(2+i,7)
  151. sbc(colors.white)
  152. term.write(" ")
  153. end
  154. scp(3,7)
  155. stc(colors.black)
  156. local fid = read()
  157. local spk = peripheral.wrap(fid)
  158. scp(3,8)
  159. sbc(colors.lightBlue)
  160. stc(colors.white)
  161. write("PlayingTestSound on speaker_"..fid.."!")
  162. spk.playNote("harp",100,1)
  163. spkl[i] = fid
  164. scp(3,8)
  165. write("OK ")
  166. sleep(1)
  167. scp(3,8)
  168. write(" ")
  169. end
  170. term.clear()
  171. sbc(colors.lightBlue)
  172. term.clear()
  173. center(3,"Enter 1 marshrut id:")
  174. local len = 10
  175. stc(colors.white)
  176. for i=1,len do
  177. sbc(colors.white)
  178. scp(2+i,6)
  179. write(" ")
  180. end
  181. stc(colors.black)
  182. scp(3,6)
  183. local mid = read()
  184. center(7,"Enter marshrut name:")
  185. for i=1,len do
  186. sbc(colors.white)
  187. scp(2+i,8)
  188. write(" ")
  189. end
  190. stc(colors.black)
  191. scp(3,8)
  192. sleep(2)
  193. local mname = read()
  194. center(9,"Enter this station name: ")
  195. for i=1,len do
  196. sbc(colors.white)
  197. scp(2+i,10)
  198. write(" ")
  199. end
  200. stc(colors.black)
  201. scp(3,10)
  202. sleep(2)
  203. local sname = read()
  204. shell.run("cd","/")
  205. shell.run("mkdir","/tables")
  206. shell.run("cd","/tables")
  207. shell.run("pastebin","get",mid,mname)
  208. local config = {}
  209. for i=1,#monitors do
  210. table.insert(config,monitors[i])
  211. end
  212. for i=1,#spkl do
  213. table.insert(config,spkl[i])
  214. end
  215. for i=1,#bdl do
  216. table.insert(config,bdl[i])
  217. end
  218. local configf = fs.open("/config","w")
  219. if configf then
  220. for i=1,#config do
  221. configf.writeLine(config[i])
  222. end
  223. end
  224. configf.close()
  225. local configtl = {}
  226. for i=1,#tablol do
  227. table.insert(configtl,tablol[i])
  228. end
  229. local configtf = fs.open("/configt","w")
  230. if configtf then
  231. for i=1,#config do
  232. configtf.writeLine(configtl[i])
  233. end
  234. end
  235. configtf.close()
  236. term.clear()
  237. stc(colors.white)
  238. center(5,"All done!")
  239. sleep(1)
  240. shell.run("cp","/disk/station.lua","/station.lua")
  241. shell.run("cp","/disk/fff","/fff")
  242. shell.run("cp","/disk/ggg","/ggg")
  243. shell.run("cp","/disk/marshrut","/marshrut")
  244. shell.run("cp","/disk/startup","/startup")
  245. shell.run("cp","/disk/startuph","/startuph")
  246. sleep(1)
  247. shell.run("delete","/installer")
  248. shell.run("rename","/startup","/installer")
  249. shell.run("rename","/startuph","/startup")
  250. os.reboot()
Add Comment
Please, Sign In to add comment