Advertisement
RyuuzakiJulio

MC

Jan 15th, 2013
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.66 KB | None | 0 0
  1. w,h = term.getSize()
  2. --39x13
  3. --[[
  4. Q DOWN (DN)
  5. W FORWARD (FD)
  6. E UP (UP)
  7. A TURN LEFT (LT)
  8. S BACKWARD (BK)
  9. D TURN RIGHT (RT)
  10.  
  11. R DIG UP (DU)
  12. F DIG (DG)
  13. C DIG DOWN (DD)
  14.  
  15. T PLACE UP (PU)
  16. G PLACE (PL)
  17. V PLACE DOWN (PD)
  18.  
  19. X SELECT SLOT
  20.  
  21. Z CLEAR COMMANDS
  22. --]]
  23.  
  24. --term.setCursorPos(1,1)
  25. --term.write("123456789012345678901234567890123456789")
  26. function printGui()
  27. term.clear()
  28. info = os.getComputerLabel()..":"..turtle.getFuelLevel()
  29. term.setCursorPos(1,1)
  30. term.write("Manual Control | "..info)
  31. term.setCursorPos(1,2)
  32. term.write("---------------------------------------")
  33. term.setCursorPos(1,3)
  34. term.write(" ")
  35. term.setCursorPos(1,4)
  36. term.write(" ")
  37. term.setCursorPos(1,5)
  38. term.write(" ")
  39. term.setCursorPos(1,6)
  40. term.write(" ")
  41. term.setCursorPos(1,7)
  42. term.write(" ")
  43. term.setCursorPos(1,8)
  44. term.write(" ")
  45. term.setCursorPos(1,9)
  46. term.write(" ")
  47. term.setCursorPos(1,10)
  48. term.write(" ")
  49. term.setCursorPos(1,11)
  50. term.write(" ")
  51. term.setCursorPos(1,12)
  52. term.write("---------------------------------------")
  53. term.setCursorPos(1,13)
  54. term.write("#:")
  55. end
  56.  
  57. function keying(msg)
  58. term.setCursorPos(1,13)
  59. term.clearLine()
  60. term.write("#:"..msg)
  61. end
  62.  
  63. actions = {}
  64.  
  65. function printList()
  66. term.setCursorPos(27,13)
  67. term.write("Commands:"..#actions)
  68.  
  69. for i = 3,11 do
  70. term.setCursorPos(1,i)
  71. term.clearLine()
  72. end
  73.  
  74. px = 1
  75. py = 3
  76.  
  77. for key, value in pairs(actions) do
  78. term.setCursorPos(px,py)
  79. term.write(value)
  80. px = px + 3
  81. if px > 39 then
  82. px = 1
  83. py = py+1
  84. end
  85. end
  86. -- term.setCursorPos(35,13)
  87. -- term.write("x:"..px)
  88. end
  89.  
  90. function selectNumber()
  91. number = 0
  92. str = ""
  93.  
  94. while true do
  95. local evt, arg = os.pullEvent("key")
  96. if arg == 0 then
  97. break
  98. end
  99.  
  100. if arg == 2 then
  101. str="1"
  102. keying(str)
  103. while true do
  104. local evt2, arg2 = os.pullEvent("key")
  105. if arg2 == 0 then
  106. break
  107. end
  108. if arg2 > 1 and arg2 < 11 then
  109. str = str .. tostring(arg2-1)
  110. keying(str)
  111. break
  112. end
  113. end
  114. if str ~= nil then
  115. number = tonumber(str)
  116. break
  117. end
  118. end
  119.  
  120. if arg > 2 and arg < 11 then
  121. number = arg-1
  122. break
  123. end
  124.  
  125. end
  126. keying("")
  127. return number
  128. end
  129.  
  130. function turtleAction(val)
  131. if val == "FD" then
  132. turtle.forward()
  133. end
  134. if val == "LT" then
  135. turtle.turnLeft()
  136. end
  137. if val == "RT" then
  138. turtle.turnRight()
  139. end
  140. if val == "BK" then
  141. turtle.back()
  142. end
  143.  
  144. if val == "UP" then
  145. turtle.up()
  146. end
  147. if val == "DN" then
  148. turtle.down()
  149. end
  150.  
  151. if val == "DU" then
  152. turtle.digUp()
  153. end
  154. if val == "DI" then
  155. turtle.dig()
  156. end
  157. if val == "DD" then
  158. turtle.digDown()
  159. end
  160.  
  161. if val == "PU" then
  162. turtle.placeUp()
  163. end
  164. if val == "PL" then
  165. turtle.place()
  166. end
  167. if val == "PD" then
  168. turtle.placeDown()
  169. end
  170.  
  171. if tonumber(val) ~= nil then
  172. turtle.select(tonumber(val))
  173. end
  174. end
  175.  
  176.  
  177.  
  178.  
  179. printGui()
  180.  
  181. while true do
  182. local event, param1 = os.pullEvent()
  183. keying(" "..event..":"..param1)
  184.  
  185. if event == "key" then
  186. if param1 == 0 then -- "~"
  187. break
  188. end
  189.  
  190. if param1 == 14 then -- "~"
  191. table.remove(actions,#actions)
  192. printList()
  193. end
  194.  
  195.  
  196. if param1 == 28 then -- "Enter"
  197. if #actions > 0 then
  198. for key, value in pairs(actions) do
  199. turtleAction(value)
  200. printGui()
  201. end
  202. printList()
  203.  
  204. end
  205. end
  206. end
  207.  
  208. if event == "char" then
  209. if param1 == "w" then
  210. table.insert(actions,"FD")
  211. printList()
  212. end
  213. if param1 == "a" then
  214. table.insert(actions,"LT")
  215. printList()
  216. end
  217. if param1 == "d" then
  218. table.insert(actions,"RT")
  219. printList()
  220. end
  221. if param1 == "s" then
  222. table.insert(actions,"BK")
  223. printList()
  224. end
  225.  
  226. if param1 == "q" then
  227. table.insert(actions,"UP")
  228. printList()
  229. end
  230. if param1 == "e" then
  231. table.insert(actions,"DN")
  232. printList()
  233. end
  234.  
  235.  
  236. if param1 == "r" then
  237. table.insert(actions,"DU")
  238. printList()
  239. end
  240. if param1 == "f" then
  241. table.insert(actions,"DI")
  242. printList()
  243. end
  244. if param1 == "c" then
  245. table.insert(actions,"DD")
  246. printList()
  247. end
  248.  
  249. if param1 == "t" then
  250. table.insert(actions,"PU")
  251. printList()
  252. end
  253. if param1 == "g" then
  254. table.insert(actions,"PL")
  255. printList()
  256. end
  257. if param1 == "v" then
  258. table.insert(actions,"PD")
  259. printList()
  260. end
  261.  
  262. if param1 == "x" then
  263. number = 0
  264. number = selectNumber()
  265. if number > 0 and number < 10 then
  266. table.insert(actions,"0"..tostring(number))
  267. printList()
  268. end
  269. if number > 9 and number < 17 then
  270. table.insert(actions,tostring(number))
  271. printList()
  272. end
  273. end
  274.  
  275. if param1 == "z" then
  276. for k in ipairs(actions) do actions[k] = nil end
  277. printList()
  278. end
  279.  
  280. if param1 == " " then
  281. keying("")
  282. ans = read()
  283. if ans ~= nil then
  284. res = shell.run(ans)
  285. printGui()
  286. printList()
  287. end
  288. end
  289. end
  290. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement