brett122798

Moneybags Alpha 1.2.2

May 25th, 2013
118
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 8.74 KB | None | 0 0
  1. -- PROGRAM CONFIGURATION:
  2.  
  3. tickSpeed = 0.1  -- How fast the game goes. Lower the faster. 0.1 is the recommended speed.
  4. MPtickSpeed = 0.1 -- How fast the game goes in Multiplayer. This data will be sent to your opponent so you two will be at the same speed. 0.1 is the recommended speed.
  5.  
  6. -- END OF CONFIGURATION
  7.  
  8. version = "a1.2.2"
  9.  
  10.  
  11. function titleScreen()
  12.     term.clear()
  13.     term.setCursorPos(1, 1)
  14.     print("")
  15.     print("               $$$  Moneybags  $$$               ")
  16.     print("                   Alpha 1.2.2                   ")
  17.     print("")
  18.     print("")
  19.     menuPos = 1
  20.     while true do
  21.         term.setCursorPos(1, 6)
  22.         if menuPos == 1 then
  23.             print("                > Single Player <                ")
  24.         else
  25.             print("                  Single Player                  ")
  26.         end
  27.         print("")
  28.         if menuPos == 2 then
  29.             print("                 > Multiplayer <                 ")
  30.         else
  31.             print("                   Multiplayer                   ")
  32.         end
  33.         print("")
  34.         if menuPos == 3 then
  35.             print("                  > Quit Game <                  ")
  36.         else
  37.             print("                    Quit Game                    ")
  38.         end
  39.         event, key = os.pullEvent("key")
  40.         if (key == 17 or key == 200) and (menuPos >= 2) then
  41.             menuPos = menuPos - 1
  42.         elseif (key == 31 or key == 208) and (menuPos <= 2) then
  43.             menuPos = menuPos + 1
  44.         elseif key == 28 and menuPos == 1 then
  45.             parallel.waitForAny(singlePlayer, singlePlayerKeyListener)
  46.             term.setCursorPos(1, 5)
  47.             print("          -----------------------------          ")
  48.             print("          |         You Lose!         |          ")
  49.             print("          -----------------------------          ")
  50.             print("          |     $$  Game Data  $$     |          ")
  51.             print("          |---------------------------|          ")
  52.             print("          | Score: "..score)
  53.             term.setCursorPos(39, 10)
  54.             print("|")
  55.             print("          | Ticks: "..tickCount)
  56.             term.setCursorPos(39, 11)
  57.             print("|")
  58.             print("          -----------------------------          ")
  59.             sleep(1)
  60.             print("          | Press any key to continue |          ")
  61.             print("          |     to the Main Menu.     |          ")
  62.             print("          -----------------------------          ")
  63.             os.pullEvent("key")
  64.             term.clear()
  65.             term.setCursorPos(1, 1)
  66.             print("")
  67.     print("               $$$  Moneybags  $$$               ")
  68.     print("                   Alpha 1.2.2                   ")
  69.     print("")
  70.     print("")
  71.         elseif key == 28 and menuPos == 2 then
  72.             parallel.waitForAny(multiPlayer)
  73.         elseif key == 28 and menuPos == 3 then
  74.             term.clear()
  75.             term.setCursorPos(1, 1)
  76.             break
  77.         end
  78.         term.setCursorPos(1, 6)
  79.         term.clearLine()
  80.         term.clearLine()
  81.         term.clearLine()
  82.     end
  83.  
  84. end
  85.  
  86. function singlePlayer()
  87.     -- Variable Definitions
  88.     money = 300
  89.     playerPos = 8
  90.     score = 0
  91.     lives = 3
  92.     lose = false
  93.     moneybagTimer = 0
  94.     moneybagOne =
  95.     {
  96.         onScreen = false,
  97.         xPos = 0
  98.     }
  99.     moneybagTwo =
  100.     {
  101.         onScreen = false,
  102.         xPos = 0
  103.     }
  104.     moneybagThree =
  105.     {
  106.         onScreen = false,
  107.         xPos = 0
  108.     }
  109.     moneybagFour =
  110.     {
  111.         onScreen = false,
  112.         xPos = 0
  113.     }
  114.     moneybagFive =
  115.     {
  116.         onScreen = false,
  117.         xPos = 0
  118.     }
  119.     moneybagSix =
  120.     {
  121.         onScreen = false,
  122.         xPos = 0
  123.     }
  124.     moneybagSeven =
  125.     {
  126.         onScreen = false,
  127.         xPos = 0
  128.     }
  129.     moneybagEight =
  130.     {
  131.         onScreen = false,
  132.         xPos = 0
  133.     }
  134.  
  135.     playerMove = false
  136.     tickCount = 0
  137.     -- End of Variable Definitions
  138.    
  139.    
  140.     -- Tick Loop
  141.     repeat
  142.         if playerMove == true then
  143.             if currentKey == "up" and playerPos > 1 then
  144.                 playerPos = playerPos - 1
  145.                 currentKey = false
  146.             elseif currentKey == "down" and playerPos < 17 then
  147.                 playerPos = playerPos + 1
  148.                 currentKey = false
  149.             end
  150.             playerMove = false
  151.         else
  152.             playerMove = true
  153.         end
  154.         if moneybagTimer == 6 then
  155.             moneybagTimer = 0
  156.             if moneybagOne.onScreen == false then
  157.                 moneybagOne.onScreen = true
  158.                 moneybagOne.yPos = math.random(1, 17)
  159.             elseif moneybagTwo.onScreen == false then
  160.                 moneybagTwo.onScreen = true
  161.                 moneybagTwo.yPos = math.random(1, 17)
  162.             elseif moneybagThree.onScreen == false then
  163.                 moneybagThree.onScreen = true
  164.                 moneybagThree.yPos = math.random(1, 17)
  165.             elseif moneybagFour.onScreen == false then
  166.                 moneybagFour.onScreen = true
  167.                 moneybagFour.yPos = math.random(1, 17)
  168.             elseif moneybagFive.onScreen == false then
  169.                 moneybagFive.onScreen = true
  170.                 moneybagFive.yPos = math.random(1, 17)
  171.             elseif moneybagSix.onScreen == false then
  172.                 moneybagSix.onScreen = true
  173.                 moneybagSix.yPos = math.random(1, 17)
  174.             elseif moneybagSeven.onScreen == false then
  175.                 moneybagSeven.onScreen = true
  176.                 moneybagSeven.yPos = math.random(1, 17)
  177.             elseif moneybagEight.onScreen == false then
  178.                 moneybagEight.onScreen = true
  179.                 moneybagEight.yPos = math.random(1, 17)
  180.             end
  181.         else
  182.             moneybagTimer = moneybagTimer + 1
  183.         end
  184.         if moneybagOne.onScreen == true then
  185.             if moneybagOne.xPos == 48 then
  186.                 moneybagOne.onScreen = false
  187.                 moneybagOne.xPos = 0
  188.                 score = score + 1
  189.             else
  190.                 moneybagOne.xPos = moneybagOne.xPos + 1
  191.             end
  192.         end
  193.         if moneybagTwo.onScreen == true then
  194.             if moneybagTwo.xPos == 48 then
  195.                 moneybagTwo.onScreen = false
  196.                 moneybagTwo.xPos = 0
  197.                 score = score + 1
  198.             else
  199.                 moneybagTwo.xPos = moneybagTwo.xPos + 1
  200.             end
  201.         end
  202.         if moneybagThree.onScreen == true then
  203.             if moneybagThree.xPos == 48 then
  204.                 moneybagThree.onScreen = false
  205.                 moneybagThree.xPos = 0
  206.                 score = score + 1
  207.             else
  208.                 moneybagThree.xPos = moneybagThree.xPos + 1
  209.             end
  210.         end
  211.         if moneybagFour.onScreen == true then
  212.             if moneybagFour.xPos == 48 then
  213.                 moneybagFour.onScreen = false
  214.                 moneybagFour.xPos = 0
  215.                 score = score + 1
  216.             else
  217.                 moneybagFour.xPos = moneybagFour.xPos + 1
  218.             end
  219.         end
  220.         if moneybagFive.onScreen == true then
  221.             if moneybagFive.xPos == 48 then
  222.                 moneybagFive.onScreen = false
  223.                 moneybagFive.xPos = 0
  224.                 score = score + 1
  225.             else
  226.                 moneybagFive.xPos = moneybagFive.xPos + 1
  227.             end
  228.         end
  229.         if moneybagSix.onScreen == true then
  230.             if moneybagSix.xPos == 48 then
  231.                 moneybagSix.onScreen = false
  232.                 moneybagSix.xPos = 0
  233.                 score = score + 1
  234.             else
  235.                 moneybagSix.xPos = moneybagSix.xPos + 1
  236.             end
  237.         end
  238.         if moneybagSeven.onScreen == true then
  239.             if moneybagSeven.xPos == 48 then
  240.                 moneybagSeven.onScreen = false
  241.                 moneybagSeven.xPos = 0
  242.                 score = score + 1
  243.             else
  244.                 moneybagSeven.xPos = moneybagSeven.xPos + 1
  245.             end
  246.         end
  247.         if moneybagEight.onScreen == true then
  248.             if moneybagEight.xPos == 48 then
  249.                 moneybagEight.onScreen = false
  250.                 moneybagEight.xPos = 0
  251.                 score = score + 1
  252.             else
  253.                 moneybagEight.xPos = moneybagEight.xPos + 1
  254.             end
  255.         end
  256.         if (((moneybagOne.yPos == playerPos and moneybagOne.xPos == 47) or (moneybagTwo.yPos == playerPos and moneybagTwo.xPos == 47)) or ((moneybagThree.yPos == playerPos and moneybagThree.xPos == 47) or (moneybagFour.yPos == playerPos and moneybagFour.xPos == 47)) or ((moneybagFive.yPos == playerPos and moneybagFive.xPos == 47) or (moneybagSix.yPos == playerPos and moneybagSix.xPos == 47)) or ((moneybagSeven.yPos == playerPos and moneybagSeven.xPos == 47) or (moneybagEight.yPos == playerPos and moneybagEight.xPos == 47))) then
  257.         lives = lives - 1
  258.         end
  259.         if lives == 0 then
  260.         lose = true
  261.         end
  262.         tickCount = tickCount + 1
  263.         refreshSinglePlayerGraphics()
  264.         sleep(tickSpeed)
  265.     until lose
  266.     -- End of Tick Loop
  267. end
  268.  
  269. function singlePlayerKeyListener()
  270.     while true do
  271.     event, key = os.pullEvent("key")
  272.     if key == 17 or key == 200 then
  273.         currentKey = "up"
  274.     elseif key == 31 or key == 208 then
  275.         currentKey = "down"
  276.     elseif key == 1 then
  277.         currentKey = "escape"
  278.     end
  279.     end
  280. end
  281.  
  282. function refreshSinglePlayerGraphics()
  283.     term.clear()
  284.     term.setCursorPos(1, 1)
  285.     print("Ticks: "..tickCount.."    Score: "..score.."   Lives: "..lives)
  286.     term.setCursorPos(48, playerPos + 1)
  287.     print("X")
  288.     if moneybagOne.onScreen == true then
  289.     term.setCursorPos(moneybagOne.xPos, moneybagOne.yPos + 1)
  290.     print(">$")
  291.     end
  292.     if moneybagTwo.onScreen == true then
  293.     term.setCursorPos(moneybagTwo.xPos, moneybagTwo.yPos + 1)
  294.     print(">$")
  295.     end
  296.     if moneybagThree.onScreen == true then
  297.     term.setCursorPos(moneybagThree.xPos, moneybagThree.yPos + 1)
  298.     print(">$")
  299.     end
  300.     if moneybagFour.onScreen == true then
  301.     term.setCursorPos(moneybagFour.xPos, moneybagFour.yPos + 1)
  302.     print(">$")
  303.     end
  304.     if moneybagFive.onScreen == true then
  305.     term.setCursorPos(moneybagFive.xPos, moneybagFive.yPos + 1)
  306.     print(">$")
  307.     end
  308.     if moneybagSix.onScreen == true then
  309.     term.setCursorPos(moneybagSix.xPos, moneybagSix.yPos + 1)
  310.     print(">$")
  311.     end
  312.     if moneybagSeven.onScreen == true then
  313.     term.setCursorPos(moneybagSeven.xPos, moneybagSeven.yPos + 1)
  314.     print(">$")
  315.     end
  316.     if moneybagEight.onScreen == true then
  317.     term.setCursorPos(moneybagEight.xPos, moneybagEight.yPos + 1)
  318.     print(">$")
  319.     end
  320. end
  321.  
  322. titleScreen()
Add Comment
Please, Sign In to add comment