Advertisement
Guest User

Untitled

a guest
Apr 17th, 2013
106
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.10 KB | None | 0 0
  1. os.pullEvent = os.pullEventRaw
  2. term.clear()
  3. term.setCursorPos(1,1)
  4.  
  5. function cPrint ( nText )
  6. scrWid, scrHei = term.getSize()
  7. print(string.rep(" ",scrWid/2-nText:len()/2)..nText..string.rep(" ",scrWid/2-nText:len()/2))
  8. end
  9.  
  10. function sntim ()
  11. while true do
  12. term.clear()
  13. term.setCursorPos(1,1)
  14. cPrint(tostring((tick-1)/5))
  15. os.sleep(0.2)
  16. tick = tick + 1
  17. if (tick-1)/5 == 10 then
  18. break
  19. end
  20. end
  21. end
  22.  
  23. function smtim ()
  24. while true do
  25. action = os.pullEvent("key")
  26. notes[tick] = notes[tick]+1
  27. end
  28. end
  29.  
  30. function saveSong ( nNotes )
  31. ak=io.open(".passbeat","w")
  32. for i=1, 52 do
  33. if i < 52 then
  34. ak:write(tostring(nNotes[i]).."\n")
  35. else
  36. ak:write(tostring(nNotes[i]))
  37. end
  38. end
  39. ak:close()
  40. end
  41.  
  42. function mode_a ()
  43. cPrint("Welcome!")
  44. cPrint("- Passbeat Sec System -")
  45. print("")
  46. sleep(2)
  47. cPrint("Press any key to setup your beat!")
  48. os.pullEvent('key')
  49. term.clear()
  50. term.setCursorPos(1,1)
  51. cPrint("3")
  52. os.sleep(1)
  53. term.clear()
  54. term.setCursorPos(1,1)
  55. cPrint("2")
  56. os.sleep(1)
  57. term.clear()
  58. term.setCursorPos(1,1)
  59. cPrint("1")
  60. os.sleep(1)
  61. term.clear()
  62. term.setCursorPos(1,1)
  63. cPrint("GO!")
  64. os.sleep(0.5)
  65. term.clear()
  66. term.setCursorPos(1,1)
  67. tick = 1
  68. notes = {}
  69. for i=1, 52 do
  70. notes[i] = 0
  71. end
  72. parallel.waitForAny( sntim, smtim )
  73. term.clear()
  74. term.setCursorPos(1,1)
  75. cEmpty = true
  76. for i=1, 52 do
  77. if notes[i] ~= 0 then cEmpty = false end
  78. end
  79. if cEmpty then
  80. cPrint(":( We didn't hear anything. Try again!")
  81. os.sleep(2)
  82. mode_a()
  83. end
  84. cPrint("-Thank You-")
  85. cPrint("We received your song data!")
  86. cPrint("Recorded into the pass system!")
  87. print("")
  88. cPrint("Saving data...")
  89. cPrint("Please wait!")
  90. saveSong(notes)
  91. term.clear()
  92. term.setCursorPos(1,1)
  93. cPrint("-Thank You-")
  94. cPrint("We received your song data!")
  95. cPrint("Recorded into the pass system!")
  96. print("")
  97. cPrint("Rebooting!")
  98. os.sleep(3)
  99. os.reboot()
  100. end
  101.  
  102. function readData ( nFile )
  103. ak=fs.open(nFile,"r")
  104. nDat = ak:readAll()
  105. ak:close()
  106. return nDat
  107. end
  108.  
  109. function returnLines ( nFile )
  110. ak=io.open(nFile,"r")
  111. nFileLines = {}
  112. for line in ak:lines() do
  113. nFileLines[#nFileLines+1] = line
  114. end
  115. ak:close()
  116. return nFileLines
  117. end
  118.  
  119. function readSong ()
  120. dn = returnLines(".passbeat")
  121. nacs = {}
  122. for i=1, #dn do
  123. nacs[i]=tonumber(dn[i])
  124. end
  125. return nacs
  126. end
  127.  
  128. function mode_b ()
  129. song = readSong()
  130. term.clear()
  131. term.setCursorPos(1,1)
  132. cPrint("-PASS SONG-")
  133. print("")
  134. os.sleep(2)
  135. cPrint("Press any key to start!")
  136. os.pullEvent('key')
  137. term.clear()
  138. term.setCursorPos(1,1)
  139. cPrint("3")
  140. os.sleep(1)
  141. term.clear()
  142. term.setCursorPos(1,1)
  143. cPrint("2")
  144. os.sleep(1)
  145. term.clear()
  146. term.setCursorPos(1,1)
  147. cPrint("1")
  148. os.sleep(1)
  149. term.clear()
  150. term.setCursorPos(1,1)
  151. cPrint("GO!")
  152. os.sleep(0.5)
  153. term.clear()
  154. term.setCursorPos(1,1)
  155. tick = 1
  156. notes = {}
  157. for i=1, 52 do
  158. notes[i] = 0
  159. end
  160. parallel.waitForAny( sntim, smtim )
  161. term.clear()
  162. term.setCursorPos(1,1)
  163. cPrint("Analyzing...")
  164. sif=0
  165. for i=1, 52 do
  166. if notes[i] == song[i] then
  167. sif=sif+1
  168. end
  169. end
  170. isAble = false
  171. if sif/52 >= 0.70 then
  172. isAble = true
  173. end
  174. sig=0
  175. for i=1, 52 do
  176. if notes[i] == song[i-1] then
  177. sig=sig+1
  178. end
  179. end
  180. if sig/52 >= 0.70 then
  181. isAble = true
  182. end
  183. siq=0
  184. for i=1, 52 do
  185. if notes[i] == song[i+1] then
  186. siq=siq+1
  187. end
  188. end
  189. if siq/52 >= 0.70 then
  190. isAble = true
  191. end
  192.  
  193. if isAble then
  194. term.clear()
  195. term.setCursorPos(1,1)
  196. cPrint("Access Granted!")
  197. cPrint("t: "..tostring(sif/52*100).."%")
  198. cPrint("g: "..tostring(sig/52*100).."%")
  199. cPrint("q: "..tostring(siq/52*100).."%")
  200. print("")
  201. cPrint("Passing Grade: 70%")
  202. os.sleep(3)
  203. term.clear()
  204. term.setCursorPos(1,1)
  205. print("CraftOS")
  206. else
  207. term.clear()
  208. term.setCursorPos(1,1)
  209. cPrint("Access Denied!")
  210. cPrint("t: "..tostring(sif/52*100).."%")
  211. cPrint("g: "..tostring(sig/52*100).."%")
  212. cPrint("q: "..tostring(siq/52*100).."%")
  213. print("")
  214. cPrint("Passing Grade: 70%")
  215. os.sleep(3)
  216. os.reboot()
  217. end
  218. end
  219.  
  220. if not fs.exists(".passbeat") then
  221. mode_a()
  222. else
  223. mode_b()
  224. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement