Advertisement
Guest User

startup

a guest
Dec 22nd, 2013
61
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 5.07 KB | None | 0 0
  1. local serverId = 18
  2. local atmTurtleId = 16
  3. local buttons = { }
  4. local window = paintutils.loadImage("window.nfp")
  5. local items = {{2,"RS"},{2,"Coal"},{2,"Lapis"},{5,"Iron"},{10,"Gold"},{50,"Diamond"},{75,"Obsidian"}}
  6. rednet.open("back")
  7.  
  8. function button(xPos, yPos, xSize, ySize, bColor, tColor, text, id)
  9.   term.setCursorPos(xPos, yPos)
  10.   term.setBackgroundColor(bColor)
  11.   term.setTextColor(tColor)
  12.   for a = 1, ySize + 1 do
  13.   for b = 1, xSize do
  14.     write(" ")
  15.   end
  16.   term.setCursorPos(xPos, yPos + (a - 1))
  17.   end
  18.   term.setCursorPos(((xSize/2) + xPos) - (#text / 2),yPos + (ySize / 2))
  19.   print(text)
  20.   buttons[id] = {xP = xPos, yP = yPos, xS = xSize, yS = ySize}
  21. end
  22.  
  23. function checkButton(mouseX, mouseY, id)
  24.   if mouseX >= buttons[id].xP and mouseX <= buttons[id].xP + (buttons[id].xS - 1) and mouseY >= buttons[id].yP and mouseY <= buttons[id].yP + (buttons[id].yS - 1) then
  25.     return true
  26.   else
  27.     return false
  28.   end
  29. end
  30.  
  31. function drawMainScreen()
  32.     term.setBackgroundColor(colors.white)
  33.     term.clear()
  34.     term.setCursorPos(24,1)
  35.     term.setTextColor(colors.black)
  36.     write("ATM")
  37.     button(7,6,15,3,colors.lime,colors.white,"Create Acount","create")
  38.     button(29,6,15,3,colors.lime,colors.white,"Check Balance","check")
  39.     button(7,11,15,3,colors.lime,colors.white,"Withdraw","withdraw")
  40.     button(29,11,15,3,colors.lime,colors.white,"Deposit","deposit")
  41. end
  42.  
  43. function chooseItem(amount,string)
  44.     amount = tonumber(amount)
  45.     term.setBackgroundColor(colors.white)
  46.     term.clear()
  47.     term.setCursorPos(17,2)
  48.     term.setTextColor(colors.black)
  49.     if string ~= nil then
  50.         write(string)
  51.         term.setCursorPos(17,3)
  52.     end
  53.         write("What item do you want?")
  54.     for a = 1,#items do
  55.         if amount >= items[a][1] then
  56.             if a <= 4 then
  57.                 button(3,4+4*a-4,10,3,colors.lime,colors.white,items[a][2],items[a][2])
  58.             else
  59.                 button(14,4+4*(a-4)-4,10,3,colors.lime,colors.white,items[a][2],items[a][2])
  60.             end
  61.         else
  62.             if a <= 4 then
  63.                 button(3,4+4*a-4,10,3,colors.lightGray,colors.white,items[a][2],items[a][2].."x")
  64.             else
  65.                 button(14,4+4*(a-4)-4,10,3,colors.lightGray,colors.white,items[a][2],items[a][2].."x")
  66.             end
  67.         end
  68.     end
  69.     local e,b,x,y = os.pullEvent("mouse_click")
  70.     for a = 1,#items do
  71.         price = items[a][1]
  72.         if checkButton(x,y,items[a][2]) then
  73.             rednet.send(atmTurtleId,tostring(a)..":"..tostring(math.floor(amount/price)))
  74.             rem = amount - math.floor(amount/price) * price
  75.             if rem > 0 then
  76.                 return chooseItem(rem,"Given "..tostring(math.floor(amount/price)).." "..items[a][2])
  77.             end
  78.         end
  79.     end
  80. end
  81.  
  82. function openWindow(action,string,char)
  83.     if action == "get" then
  84.         paintutils.drawImage(window,1,1)
  85.         term.setCursorPos(25 - #string/2,9)
  86.         term.setBackgroundColor(colors.blue)
  87.         print(string)
  88.         term.setCursorPos(6,10)
  89.         term.setBackgroundColor(colors.gray)
  90.         return read(char)
  91.     elseif action == "info" then
  92.         paintutils.drawImage(window,1,1)
  93.         term.setCursorPos(25 - #string/2,9)
  94.         term.setBackgroundColor(colors.blue)
  95.         print(string)
  96.         term.setCursorPos(12,10)
  97.         term.setBackgroundColor(colors.gray)
  98.         write("Press any key to continue")
  99.         os.pullEvent("key")
  100.         drawMainScreen()
  101.     end
  102. end
  103.  
  104. function card()
  105.     if disk.isPresent("top") then
  106.         return true
  107.     end
  108.     openWindow("info","Please insert a disk")
  109.     return false
  110. end
  111.  
  112. function getPin(string)
  113.     while true do
  114.         term.setBackgroundColor(colors.white)
  115.         local pin = openWindow("get",string,"*")
  116.         if #pin == 4 then
  117.             return pin
  118.         end
  119.         openWindow("info","Pin must be 4 digits")
  120.     end
  121. end
  122.  
  123. function createAcount()
  124.     if card() then
  125.     local pin = getPin("Enter a pin")
  126.     drawMainScreen()
  127.     rednet.send(serverId,"create")
  128.     local i,m,d = rednet.receive()
  129.     sleep(1)
  130.     if i == serverId and m == "pin" then
  131.         rednet.send(serverId,pin)
  132.     end
  133.     i,m,d = rednet.receive()
  134.     disk.setLabel("top",m)
  135.     i,m,d = rednet.receive()
  136.     if m == "success" then
  137.         openWindow("info","Success. Your card number is on your disk")
  138.     end
  139.     end
  140. end
  141.  
  142. function checkBalance(id)
  143.     if card() then
  144.         rednet.send(serverId,"get_balance")
  145.         local i,m,d = rednet.receive()
  146.         sleep(1)
  147.         if i == serverId and m == "id:pin" then
  148.             local pin = getPin("Enter you pin")
  149.             rednet.send(serverId,id..":"..pin)
  150.         end
  151.         rednet.receive()
  152.         local i,m,d = rednet.receive()
  153.         return m
  154.     end
  155.     return "Error"
  156. end
  157.  
  158. function withdraw(id)
  159.     rednet.send(serverId,"get_balance")
  160.     local i,m,d = rednet.receive()
  161.    
  162.     rednet.send(serverId,"change_balance")
  163.     local i,m,d = rednet.receive()
  164.     local pin = getPin("Enter you pin")
  165.     local amount = openWindow("get","Enter the amount you want to withdraw")
  166.     if i == serverId and m == "id:pin:amount" then
  167.         sleep(1)
  168.         rednet.send(serverId,id..":"..pin..":-"..amount)
  169.     end
  170.     local i,m,d = rednet.receive()
  171.     if m == "success" then
  172.         chooseItem(amount)
  173.     else
  174.         openWindow("info","Error")
  175.     end
  176. end
  177.  
  178. drawMainScreen()
  179. local e,button,x,y = os.pullEvent("mouse_click")
  180. if checkButton(x,y,"create") then
  181. createAcount()
  182. elseif checkButton(x,y,"check") then
  183. openWindow("info","Current balance is [ "..checkBalance(disk.getLabel("top")).." ]")
  184. elseif checkButton(x,y,"withdraw") then
  185. withdraw(disk.getLabel("top"))
  186. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement