Advertisement
Guest User

pong

a guest
Oct 16th, 2023
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.32 KB | None | 0 0
  1.  
  2. local file = fs.open("lgame/lgame","r")
  3. if file then
  4.     file.close()
  5. os.loadAPI('/lg/lg')
  6. lg.setup('term')
  7. os.loadAPI("uap")
  8. os.loadAPI("/lgame/lgame")
  9. lgame.setup("term")
  10. lg.fillScreen(colors.black)
  11. local im1 = fs.open("/pong/ball.nfp","r")
  12. if im1 then
  13.   im1.close()
  14. else
  15.   shell.run("pastebin","get","cnJQa66z","/pong/wall.nfp")
  16.   shell.run("pastebin","get","sJBDTsfR","/pong/ball.nfp")
  17.   lg.drawText(1,1,colors.white,colors.black,"Downloading sprites...")
  18.   os.sleep(1)
  19.   lg.fillScreen(colors.black)
  20.  
  21. end
  22. lgame.lggSetDefBG(colors.black)
  23. local lefty = 1
  24. lgame.drawSprite('left',2,1,'/pong/wall.nfp')
  25. lgame.drawSprite("ball",12,8,"/pong/ball.nfp")
  26. local px = 12
  27. local py = 8
  28. local dir = 1
  29. colided = false
  30. local ly = 1
  31. local speed = 0.2
  32. local c = 0
  33. local d = false
  34. os.sleep(0.1)
  35. local function dt(text)
  36.   lgame.fill(1,lgame.getSize().x,lgame.getSize().y,lgame.getSize().y,colors.black)
  37.   lgame.drawText(1,lgame.getSize().y,colors.white,colors.black,text)
  38. end
  39. dt("3")
  40. os.sleep(1)
  41. dt("2")
  42. os.sleep(1)
  43. dt("1")
  44. os.sleep(1)
  45. --lgame.drawText(1,10,colors.white,colors.black,"SIZE: "..lgame.getSize().x.." "..lgame.getSize().y)
  46. function click()
  47.   while true do
  48.   local event, key = os.pullEvent("key")
  49.   if key == keys.w then
  50.     if ly ~= 1 then
  51.     ly = ly - 1
  52.     end
  53.   elseif key == keys.s then
  54.     if lgame.getSpriteColider("left").y2 ~= lgame.getSize().y then
  55.    ly = ly + 1
  56.     end
  57.   elseif key == keys.e then
  58.     os.reboot()
  59.   end
  60.   lgame.moveSprite("left",2,ly)
  61.   end
  62. end
  63. function game()
  64. local i = 1
  65. while true do
  66.     d = false
  67.     --local bal = lgame.getSpriteColider("ball").x
  68.     if lgame.getSpriteColider('ball').x == 1 then
  69.     lg.fillScreen(colors.black)
  70.     lg.drawText(9,9,colors.white,colors.black, 'You lose! R: '..c)
  71.     break
  72.     end
  73.    
  74.   i = i + 1
  75.   if not (px == lgame.getSize().x + 1 and py == lgame.getSize().y+1) then
  76.   if px <= lgame.getSize().x and px > 0 then
  77.     if py <= lgame.getSize().y and py > 0 then
  78.       if lgame.getSpriteColider("ball").x == lgame.getSize().x and dir == 1 then
  79.         dir = 3
  80.       elseif lgame.getSpriteColider("ball").x == lgame.getSize().x and dir == 2 then
  81.         dir = 4
  82.       elseif lgame.getSpriteColider("ball").x == 1 and dir == 4 then
  83.         dir = 2
  84.       elseif lgame.getSpriteColider("ball").x == 1 and dir == 3 then
  85.         dir = 4
  86.       elseif lgame.getSpriteColider("ball").y == lgame.getSize().y and dir == 1 then
  87.         dir = 2  
  88.       elseif lgame.getSpriteColider("ball").y == lgame.getSize().y and dir == 3 then
  89.         dir = 4
  90.       elseif lgame.getSpriteColider("ball").y == 1 and dir == 2 then
  91.         dir = 1
  92.       elseif lgame.getSpriteColider("ball").y == 1 and dir == 4 then
  93.         dir = 3                                    
  94.       end
  95.     elseif py == 0 then
  96.       d = true
  97.       if (dir == 4) then
  98.         dir = 3
  99.       else
  100.       dir = 1
  101.       end
  102.     elseif py == lgame.getSize().y+1 then
  103.       d = true
  104.       if (dir == 3) then
  105.         dir = 4
  106.       else
  107.         dir = 2
  108.       end
  109.     end
  110.   elseif px < 1 then
  111.     d = true
  112.     if (dir == 4) then
  113.       dir = 2
  114.     else
  115.       dir = 1
  116.     end
  117.   elseif px == lgame.getSize().x+1 then
  118.     d = true
  119.     if (dir == 1) then
  120.     dir = 3
  121.     else
  122.     dir = 4
  123.     end
  124.   end
  125.   if dir == 1 then
  126.   px = px + 1
  127.   py = py + 1
  128.   elseif dir == 2 then
  129.   px = px + 1
  130.   py = py - 1
  131.   elseif dir == 3 then
  132.   px = px - 1
  133.   py = py + 1
  134.   elseif dir == 4 then
  135.   px = px - 1
  136.   py = py - 1
  137.   end
  138.   if not d  then
  139.   lgame.moveSprite("ball",px,py)
  140.   end
  141.   os.sleep(speed)
  142.   dt("Score: "..c.." | EXIT - E")
  143.   else
  144.     break
  145.   end
  146.   if colided == false and lgame.isColiding("ball","left") then
  147.     lgame.moveSprite("ball",lgame.getSpriteColider("ball").x+2,lgame.getSpriteColider("ball").y)
  148.     speed = speed - 0.01
  149.     colided = true
  150.     c = c + 1
  151.     if dir == 4 then
  152.       dir = 2
  153.     elseif dir == 3 then
  154.       dir = 1
  155.     end
  156.   else
  157.     colided = false
  158.   end
  159. end
  160. end
  161. parallel.waitForAny(click,game)
  162. lg.drawBT('end',1,4,19,19,colors.white,colors.black,'exit')
  163. while true do
  164.  local event, button, x, y = os.pullEvent( "mouse_click" )
  165.    if (lg.isButton(x,y) == "end") then
  166. os.reboot()
  167. end
  168. end
  169. lg.exit()
  170. lgame.exit()    
  171. else
  172.     term.clear()
  173.     term.setCursorPos(1,2)
  174.     term.write("Install lgame from updater!")
  175.     uap.upd()
  176. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement