Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Written by the driver87 for use with CC and tekkit pack in making a funciton slot machine--
- --revision date 6/9/2013--
- -- declare variables--
- local payoff= 256 -- this value is the number of items that are avaiable for payout --
- local payout=0 -- this number will change to the proper payout and is not a setting only a place holder
- local matches=0
- local pside="right" -- side of the coin counter
- local monside="top" -- set the side of the monitor
- local sside="bottom" -- set the side of the payment machine is dispenser or RS engine
- local spd=.1 -- time of the ticks between parts of the advetisment higher is slower--
- local white=1-- set a color table to use for setting colors easily
- local orange=2
- local mag=4
- local lblu=8
- local yell=16
- local lime=32
- local pink= 64
- local gray= 128
- local lightg=256
- local cyan=512
- local purple=1024
- local blue=2048
- local brown= 4096
- local green= 8192
- local red=16384
- local black=32768
- local cl1=gray -- background color1
- local cl2=black -- background color2 also reel color
- local cl3=red -- background color3 also reel color
- local cl4=orange -- extra advert and winning color
- local cl5=yell -- text color
- local payed=false
- ------------------------payout settings for different match styles-------------
- local horpay=2
- local linepay=4
- local diagpay=2
- local doublepay=8
- local jackpot=10 -- a jackpot bonus and will be added to total of all matches
- mon=peripheral.wrap(monside)
- local totalx, totaly=mon.getSize()
- mon.setBackgroundColor(cl1)
- -- produce functions --
- local function drawreel(totalx,totaly,rnum) -- draws each reel placed by rnum 1,2,3 and "moves it" each tick based on the speed value--
- x1=totalx-totalx+2
- x2=totalx/2
- x3=totalx-2
- if rnum==1 then -- gets the reel positon
- e=totaly+1
- o=totaly
- for i=1,totaly do
- e=e-2
- o=o-2
- mon.setTextColor(cl2)
- mon.setCursorPos(x1,e)
- mon.write("-o-")
- mon.setTextColor(cl3)
- mon.setCursorPos(x1,o)
- mon.write("=0=")
- end
- elseif rnum==2 then
- e=totaly+1
- o=totaly
- for i=1,totaly do
- e=e-2
- o=o-2
- mon.setTextColor(cl2)
- mon.setCursorPos(x2,e)
- mon.write("-o-")
- mon.setTextColor(cl3)
- mon.setCursorPos(x2,o)
- mon.write("=0=")
- end
- elseif rnum==3 then
- e=totaly+1
- o=totaly
- for i=1,totaly do
- e=e-2
- o=o-2
- mon.setTextColor(cl2)
- mon.setCursorPos(x3,e)
- mon.write("-o-")
- mon.setTextColor(cl3)
- mon.setCursorPos(x3,o)
- mon.write("=0=")
- end
- else
- error("mis designated reel")
- end
- end
- local function drawfin(totalx,totaly,rnum,pick1,pick2,pick3) -- draws each reel placed by rnum 1,2,3 and "moves it" each tick based on the speed value--
- x1=totalx-totalx+2
- x2=totalx/2
- x3=totalx-2
- if rnum==1 then -- gets the reel positon
- e=totaly+1
- o=totaly
- for i=1,totaly do
- e=e-2
- o=o-2
- mon.setTextColor(cl2)
- mon.setCursorPos(x1,e)
- mon.write("-O-")
- mon.setTextColor(cl3)
- mon.setCursorPos(x1,o)
- mon.write("=o=")
- end
- mon.setCursorPos(x1+1,totaly/2)
- mon.write(pick1)
- mon.setCursorPos(x1+1,totaly/2-2)
- mon.write(pick2)
- mon.setCursorPos(x1+1,totaly/2+2)
- mon.write(pick3)
- elseif rnum==2 then
- e=totaly+1
- o=totaly
- for i=1,totaly do
- e=e-2
- o=o-2
- mon.setTextColor(cl2)
- mon.setCursorPos(x2,e)
- mon.write("-O-")
- mon.setTextColor(cl3)
- mon.setCursorPos(x2,o)
- mon.write("=o=")
- end
- mon.setCursorPos(x2+1,totaly/2)
- mon.write(pick1)
- mon.setCursorPos(x2+1,totaly/2-2)
- mon.write(pick2)
- mon.setCursorPos(x2+1,totaly/2+2)
- mon.write(pick3)
- elseif rnum==3 then
- e=totaly+1
- o=totaly
- for i=1,totaly do
- e=e-2
- o=o-2
- mon.setTextColor(cl2)
- mon.setCursorPos(x3,e)
- mon.write("-O-")
- mon.setTextColor(cl3)
- mon.setCursorPos(x3,o)
- mon.write("=o=")
- end
- mon.setCursorPos(x3+1,totaly/2)
- mon.write(pick1)
- mon.setCursorPos(x3+1,totaly/2-2)
- mon.write(pick2)
- mon.setCursorPos(x3+1,totaly/2+2)
- mon.write(pick3)
- else
- error("mis designated reel")
- end
- end
- ---------------------------------------------------- spin function is primary generator and graphic drawing function
- local function spin(spins)
- local matches=0
- local totalx, totaly=mon.getSize()
- for i=1,spins do -- draw reel one
- drawreel(totalx,totaly,1)
- os.sleep(.5)
- mon.clear()
- drawreel(totalx,totaly+1,1)
- os.sleep(.5)
- mon.clear()
- end
- mon.clear()
- run1a=math.abs(math.random(0,9))
- run1b=math.abs(math.random(0,9))
- run1c=math.abs(math.random(0,9))
- drawfin(totalx,totaly,1,tostring(run1a),tostring(run1b),tostring(run1c)) -- finish reel one
- for i=1,spins do -- draw reel 2 while keeping one
- drawreel(totalx,totaly,2)
- os.sleep(.5)
- mon.clear()
- drawfin(totalx,totaly,1,tostring(run1a),tostring(run1b),tostring(run1c))
- drawreel(totalx,totaly+1,2)
- os.sleep(.5)
- mon.clear()
- drawfin(totalx,totaly,1,tostring(run1a),tostring(run1b),tostring(run1c))
- end
- run2a=math.random(0,9)
- run2b=math.random(0,9)
- run2c=math.random(0,9)
- drawfin(totalx,totaly,2,tostring(run2a),tostring(run2b),tostring(run2c)) -- finish reel 2
- for i=1,spins do
- drawreel(totalx,totaly,3)
- os.sleep(.5)
- mon.clear()
- drawfin(totalx,totaly,1,tostring(run1a),tostring(run1b),tostring(run1c))
- drawfin(totalx,totaly,2,tostring(run2a),tostring(run2b),tostring(run2c))
- drawreel(totalx,totaly+1,3)
- os.sleep(.5)
- mon.clear()
- drawfin(totalx,totaly,1,tostring(run1a),tostring(run1b),tostring(run1c))
- drawfin(totalx,totaly,2,tostring(run2a),tostring(run2b),tostring(run2c))
- end
- run3a=math.floor(math.random(0,9))
- run3b=math.floor(math.random(0,9))
- run3c=math.floor(math.random(0,9))
- drawfin(totalx,totaly,1,tostring(run1a),tostring(run1b),tostring(run1c))
- drawfin(totalx,totaly,2,tostring(run2a),tostring(run2b),tostring(run2c))
- drawfin(totalx,totaly,3,tostring(run3a),tostring(run3b),tostring(run3c))
- end
- local function coined(pside) -- listens for a RS signal on the designated side for configuration this is the main loop
- while payed==false do
- local rEvent, param = os.pullEvent()
- if rEvent == "redstone" then
- if rs.getInput(pside) then
- payed=true
- return
- end
- elseif rEvent == "char" then
- if param =="c" then
- --error()
- end
- end
- end
- end
- local function checks()
- compare(linepay,run1a,run2a,run3a)
- compare(linepay,run1b,run2b,run3b)
- compare(linepay,run1c,run2c,run3c)
- if matches== 2 then
- payout=payout+doublepay
- end
- if matches== 3 then
- payout=payout+jackpot
- end
- compare(diagpay,run1a,run2b,run3c)
- compare(diagpay,run1c,run2b,run3a)
- compare(horpay,run1a,run1b,run1c)
- compare(horpay,run2a,run2b,run2c)
- compare(horpay,run3a,run3b,run3c)
- while winner do -- paying out loop checks that amount can be paid and then
- for i=1,payout do
- mon.clear()
- mon.setCursorPos(totalx/2-4,totaly/2-1)
- mon.setTextColor(2048)
- mon.write("!You Win!")
- mon.setCursorPos(totalx/2-2,totaly/2+1)
- mon.setTextColor(16)
- mon.write("$",payout)
- if payout>payoff then
- mon.clear()
- mon.setTextColor(col4)
- mon.setCursorPos(totalx/2-5,totaly/2)
- mon.write("unable to payout $",payout)
- mon.setCursorPos(totalx/2-5,totaly/2)
- mon.write("please contact owner")
- error("payout exceeded")
- end
- rs.setOutput(sside,true)
- os.sleep(.4)
- rs.setOutput(sside,false)
- os.sleep(.4)
- payout=payout-1
- mon.clear()
- mon.setCursorPos(totalx/2-4,totaly/2-1)
- mon.setTextColor(yell)
- mon.write("!You Win!")
- mon.setCursorPos(totalx/2-2,totaly/2+1)
- mon.setTextColor(red)
- mon.write("$",payout)
- end
- winner=false
- end
- end
- ------------------------------------------------------------------------------
- local function compare(value,one,two,three) -- comparative function for diaganols yay
- if one==two then
- if two==three then
- winner=true
- payout=payout+value
- matches=matches+1
- end
- else
- winner=false
- end
- end
- local function advert(speed,col1,col2,col3,col4,col5)-- runs along side main loop as a screen saver
- while payed==false do
- mon.clear()
- mon.setBackgroundColor(col4)
- for i=1,totalx do
- mon.setBackgroundColor(col1)
- mon.setTextColor(col2)
- mon.setCursorPos(i,1)
- mon.write("-")
- os.sleep(speed)
- mon.setTextColor(col3)
- mon.setCursorPos(i+1,1)
- mon.write("=")
- os.sleep(speed)
- end
- mon.setBackgroundColor(col1)
- for i=1,totaly do
- mon.setTextColor(col2)
- mon.setCursorPos(totalx,i)
- mon.write("|")
- mon.setTextColor(col3)
- mon.setCursorPos(totalx,i+1)
- mon.write("I")
- os.sleep(speed)
- end
- for i=1,totalx do
- m=totalx
- j=m-i
- mon.setTextColor(col2)
- mon.setCursorPos(j,totaly)
- mon.write("-")
- mon.setTextColor(col3)
- mon.setCursorPos(j-1,totaly)
- mon.write("=")
- os.sleep(speed)
- end
- mon.setBackgroundColor(col1)
- for i=1,totaly do
- m=totaly
- j=m-i
- mon.setTextColor(col2)
- mon.setCursorPos(1,j)
- mon.write("|")
- mon.setTextColor(col3)
- mon.setCursorPos(1,j-1)
- mon.write("I")
- os.sleep(speed)
- end
- mon.setBackgroundColor(col4)
- mon.setCursorPos(totalx/2-3,totaly/2-2)
- mon.setTextColor(col2)
- mon.write("Casino")
- os.sleep(1)
- for i=1,totalx do
- mon.setTextColor(col2)
- mon.setCursorPos(i,totaly/2)
- mon.write("-")
- mon.setTextColor(col3)
- mon.setCursorPos(i+1,totaly/2)
- mon.write("=")
- os.sleep(speed)
- end
- mon.setBackgroundColor(col4)
- mon.setCursorPos(totalx/2-3,totaly/2+2)
- mon.setTextColor(col3)
- mon.write("Slots")
- os.sleep(2)
- end
- mon.clear()
- end
- while true do
- mon.clear()
- parallel.waitForAny(advert(spd,cl1,cl2,cl3,cl4,cl5),coined(pside))
- mon.clear()
- mon.setCursorPos(1,1)
- mon.write("debugging message")
- os.sleep(10)
- if payed== true then
- spin(4)
- check()
- end
- end
- --first time configuartion for admin user--
- --game loop holding on payment--
- --pay off loop--
- --empty machine loop, used when the payoff can not be given and displays remaining payoff value for the pit boss--
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement