Advertisement
Guest User

Spades

a guest
May 10th, 2014
37
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.16 KB | None | 0 0
  1. local screenW, screenH = term.getSize()
  2. local Cards = {
  3.                 Harts =     {1,2,3,4,5,6,7,8,9,10,11,12,13,14},
  4.                 Spade =     {1,2,3,4,5,6,7,8,9,10,11,12,13,14},
  5.                 Diamond =   {1,2,3,4,5,6,7,8,9,10,11,12,13,14},
  6.                 Clubs =     {1,2,3,4,5,6,7,8,9,10,11,12,13,14},
  7.                 }
  8.                
  9. local Users = { {},
  10.                 {},
  11.                 {},
  12.                 {}
  13.               }
  14.                
  15. local Buttons = {   {1,5,7},
  16.                     {2,8,10},
  17.                     {3,11,13},
  18.                     {4,14,16},
  19.                     {5,17,19},
  20.                     {6,20,22},
  21.                     {7,23,25},
  22.                     {8,26,28},
  23.                     {9,29,31},
  24.                     {10,32,34},
  25.                     {11,35,37},
  26.                     {12,38,40},
  27.                     {13,41,43},
  28.                     {14,44,46},
  29.                 }
  30.  
  31.  
  32. function pick()
  33.     local CardSort = ""
  34.     local ranSort = math.random(1,4)
  35.     if ranSort == 1 then ranSort = Cards.Harts  CardSort = "Harts"
  36.         elseif ranSort == 2 then ranSort = Cards.Spade  CardSort = "Spade"
  37.         elseif ranSort == 3 then ranSort = Cards.Diamond  CardSort = "Diamond"
  38.         elseif ranSort == 4 then ranSort = Cards.Clubs  CardSort = "Clubs" end
  39.     if #ranSort > 0 then
  40.         local ranCard = math.random(1,#ranSort)
  41.         print(#ranSort)
  42.         --sleep(.1)
  43.         table.remove(ranSort,ranCard)
  44.         return {CardSort,ranCard}
  45.     end
  46. end
  47.  
  48. function draw(player)
  49. term.clear()
  50. term.setBackgroundColor(colours.red)
  51.     for k = 1,#Buttons do
  52.         if Users[player][k][1] == "Harts" then term.setBackgroundColor(colors.red) CardDrawed = "H"
  53.         elseif Users[player][k][1] == "Spade" then term.setBackgroundColor(colors.gray) CardDrawed = "S"
  54.         elseif Users[player][k][1] == "Diamond" then term.setBackgroundColor(colors.lightGray) CardDrawed = "D"
  55.         elseif Users[player][k][1] == "Clubs" then term.setBackgroundColor(colors.orange) CardDrawed = "C" end
  56.             for y = Buttons[k][2],Buttons[k][3] do
  57.                 for u = 16,18 do
  58.                     term.setCursorPos(y,u)
  59.                     print(" ")
  60.                     term.setCursorPos(Buttons[k][2],u)
  61.                     print("|")
  62.                     term.setCursorPos(Buttons[14][3]+1,u)
  63.                     print("|") 
  64.                     term.setCursorPos(Buttons[k][2]+1,16)
  65.                     print(CardDrawed)
  66.                     term.setCursorPos(Buttons[k][2]+1,17)
  67.                     print(Users[player][k][2])
  68.                 end
  69.             end
  70.     end
  71.     term.setCursorPos(1,1)
  72. end
  73.  
  74. function manage()
  75. for i = 1,4 do
  76.     while #Users[i] < 14 do
  77.         local a = pick()
  78.         table.insert(Users[i],a)
  79.     end
  80. end
  81. end
  82.  
  83. manage()
  84. draw(3)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement