Advertisement
ArcticPhenom

Untitled

Nov 18th, 2014
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 7.34 KB | None | 0 0
  1. w,h = term.getSize()
  2. local running = true
  3. batx = math.floor(w/2-2)
  4. baty = h-1
  5. batw = 5
  6. function cTerm()
  7.   term.setBackgroundColor(colors.black)
  8.   term.clear()
  9.   term.setCursorPos(1,1)
  10. end
  11. function drawBat()
  12.   term.setBackgroundColor(colors.white)
  13.   term.setCursorPos(batx, baty)
  14.   term.write(string.rep(" ", batw))
  15. end
  16. function drawGame()
  17.   term.setBackgroundColor(bg)
  18.   term.clear()
  19.   drawBat()
  20.   drawBall()
  21. end
  22. function drawBall()
  23.   term.setCursorPos(ballx,bally)
  24.   term.setBackgroundColor(ballC)
  25.   term.write(" ")
  26. end
  27. function updateBall()
  28.   xvel = -1
  29.   yvel = 1
  30.   ballx = math.floor(w/2)
  31.   bally = math.ceil(h/2)
  32.   if ballx==1 or ballx==19 then
  33.     xvel = xvel*-1
  34.   end
  35.   if bally==1 then
  36.     yvel = yvel*-1
  37.   end
  38.   if bally==17 and (ballx==batx or ballx==batx+1 or ballx==batx+2 or ballx==batx+3 or ballx==batx+4) then
  39.     yvel=yvel*-1
  40.   elseif bally==17 then running = false
  41.   end
  42.   ballx = ballx+xvel
  43.   bally = bally+yvel
  44. end
  45. function updateGame()
  46.   local id,p1 = os.pullEvent()
  47.  
  48.   if id == "key" then
  49.     if p1 == keys.q then running = false end
  50.       if key == keys.a and batx > 1 then
  51.         batx = batx-1
  52.       end
  53.       if key == keys.d and batx < w - width + 1 then
  54.         batx = batx+1
  55.       end
  56.     end
  57.   if id == "timer" then
  58.     updateBall()
  59.   end
  60. end
  61. function gameLoop()
  62.   while running do
  63.     drawGame()
  64.     updateGame()
  65.   end
  66. end
  67. local menu_options = {
  68.   [1] = {text="Red", color=colors.red},
  69.   [2] = {text="Blue", color=colors.blue},
  70.   [3] = {text="Green", color=colors.green},
  71.   [4] = {text="White", color=colors.white},
  72.   [5] = {text="Black", color=colors.black}
  73. }
  74. local termX, termY = term.getSize()
  75.  
  76. local function menuDraw(selected)
  77.   local yPos = termY/2 - #menu_options/2
  78.   for index, data in pairs(menu_options) do
  79.     menu_options[index].bounds = {
  80.           x1 = termX/2 - (#data.text+4)/2,
  81.           x2 = termX/2 + (#data.text+4)/2,
  82.           y = yPos
  83.         }
  84.         term.setTextColor(data.color)
  85.         term.setCursorPos(data.bounds.x1, data.bounds.y)
  86.        
  87.         local text =
  88.         index==selected and "["..data.text.."]" or
  89.         " "..data.text.." "
  90.         term.write(text)
  91.         yPos = yPos+1
  92.   end
  93. end
  94. cTerm()
  95. term.setTextColor(colors.white)
  96. textutils.slowWrite("Select ball color...")
  97. sleep(0.5)
  98. local function checkClick(x,y)
  99.   for index, data in pairs(menu_options) do
  100.     if x>= data.bounds.x1 and x<= data.bounds.x2 and y==data.bounds.y then
  101.           return index
  102.         end
  103.   end
  104.   return false
  105. end
  106. term.clear()
  107. local selector = 1
  108. while true do
  109.   menuDraw(selector)
  110.   local e = {os.pullEvent()}
  111.   if e[1] == "key" then
  112.     if e[2] == keys.down then
  113.           selector = selector < #menu_options and selector+1 or 1
  114.     elseif e[2] == keys.up then
  115.           selector = selector > 1 and selector-1 or 3 or #menu_options
  116.         elseif e[2] == keys.enter then
  117.           break
  118.         end
  119.   elseif e[1] == "mouse_click" then
  120.     local value = checkClick(e[3], e[4])
  121.         if value then
  122.           selector = value
  123.           break
  124.         end
  125.   end
  126. end
  127. if selector==1 then ballC=colors.red end
  128. if selector==2 then ballC=colors.blue end
  129. if selector==3 then ballC=colors.green end
  130. if selector==4 then ballC=colors.white end
  131. if selector==5 then ballC=colors.black end
  132. cTerm()
  133. term.setTextColor(colors.white)
  134. textutils.slowWrite("Selected ball color: ")
  135. term.setTextColor(ballC)
  136. sleep(0.3)
  137. term.write(ballC)
  138. sleep(0.7)
  139. cTerm()
  140. term.setTextColor(colors.white)
  141. textutils.slowWrite("Select background color...")
  142. sleep(0.5)
  143. local menu_options = {
  144.   [1] = {text="Red", color=colors.red},
  145.   [2] = {text="Blue", color=colors.blue},
  146.   [3] = {text="Green", color=colors.green},
  147.   [4] = {text="White", color=colors.white},
  148.   [5] = {text="Black", color=colors.black}
  149. }
  150. local termX, termY = term.getSize()
  151.  
  152. local function menuDraw(selected)
  153.   local yPos = termY/2 - #menu_options/2
  154.   for index, data in pairs(menu_options) do
  155.     menu_options[index].bounds = {
  156.           x1 = termX/2 - (#data.text+4)/2,
  157.           x2 = termX/2 + (#data.text+4)/2,
  158.           y = yPos
  159.         }
  160.         term.setTextColor(data.color)
  161.         term.setCursorPos(data.bounds.x1, data.bounds.y)
  162.        
  163.         local text =
  164.         index==selected and "["..data.text.."]" or
  165.         " "..data.text.." "
  166.         term.write(text)
  167.         yPos = yPos+1
  168.   end
  169. end
  170. local function checkClick(x,y)
  171.   for index, data in pairs(menu_options) do
  172.     if x>= data.bounds.x1 and x<= data.bounds.x2 and y==data.bounds.y then
  173.           return index
  174.         end
  175.   end
  176.   return false
  177. end
  178. term.clear()
  179. local selector = 1
  180. while true do
  181.   menuDraw(selector)
  182.   local e = {os.pullEvent()}
  183.   if e[1] == "key" then
  184.     if e[2] == keys.down then
  185.           selector = selector < #menu_options and selector+1 or 1
  186.     elseif e[2] == keys.up then
  187.           selector = selector > 1 and selector-1 or 3 or #menu_options
  188.         elseif e[2] == keys.enter then
  189.           break
  190.         end
  191.   elseif e[1] == "mouse_click" then
  192.     local value = checkClick(e[3], e[4])
  193.         if value then
  194.           selector = value
  195.           break
  196.         end
  197.   end
  198. end
  199. if selector==1 then bg=colors.red end
  200. if selector==2 then bg=colors.blue end
  201. if selector==3 then bg=colors.green end
  202. if selector==4 then bg=colors.white end
  203. if selector==5 then bg=colors.black end
  204. if bg==ballC then cTerm() term.setTextColor(colors.white) print("Please do not have the background and the ball be the same colors.") sleep(2) shell.run("breakout") end
  205. local menu_options = {
  206.   [1] = {text="Easy", color=colors.white},
  207.   [2] = {text="Medium", color=colors.white},
  208.   [3] = {text="Hard", color=colors.white}
  209. }
  210. local termX, termY = term.getSize()
  211.  
  212. local function menuDraw(selected)
  213.   local yPos = termY/2 - #menu_options/2
  214.   for index, data in pairs(menu_options) do
  215.     menu_options[index].bounds = {
  216.           x1 = termX/2 - (#data.text+4)/2,
  217.           x2 = termX/2 + (#data.text+4)/2,
  218.           y = yPos
  219.         }
  220.         term.setTextColor(data.color)
  221.         term.setCursorPos(data.bounds.x1, data.bounds.y)
  222.        
  223.         local text =
  224.         index==selected and "["..data.text.."]" or
  225.         " "..data.text.." "
  226.         term.write(text)
  227.         yPos = yPos+1
  228.   end
  229. end
  230. local function checkClick(x,y)
  231.   for index, data in pairs(menu_options) do
  232.     if x>= data.bounds.x1 and x<= data.bounds.x2 and y==data.bounds.y then
  233.           return index
  234.         end
  235.   end
  236.   return false
  237. end
  238. term.clear()
  239. local selector = 1
  240. while true do
  241.   menuDraw(selector)
  242.   local e = {os.pullEvent()}
  243.   if e[1] == "key" then
  244.     if e[2] == keys.down then
  245.           selector = selector < #menu_options and selector+1 or 1
  246.     elseif e[2] == keys.up then
  247.           selector = selector > 1 and selector-1 or 3 or #menu_options
  248.         elseif e[2] == keys.enter then
  249.           break
  250.         end
  251.   elseif e[1] == "mouse_click" then
  252.     local value = checkClick(e[3], e[4])
  253.         if value then
  254.           selector = value
  255.           break
  256.         end
  257.   end
  258. end
  259. if selector==1 then rRate=0.3 end
  260. if selector==2 then rRate=0.2 end
  261. if selector==3 then rRate=0.1 end
  262. cTerm()
  263. term.setTextColor(colors.white)
  264. gtID = os.startTimer(rRate)
  265. print("Starting in 3")
  266. sleep(1)
  267. cTerm()
  268. print("Starting in 2")
  269. sleep(1)
  270. cTerm()
  271. print("Starting in 1")
  272. sleep(1)
  273. gtID = os.startTimer(rRate)
  274. gameLoop()
  275. os.sleep(0.01)
  276. shell.run("clear")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement