Advertisement
Guest User

iMusic

a guest
May 8th, 2015
1,634
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.09 KB | None | 0 0
  1. --(C) 2015 Dumb Co. All rights reserved
  2.  
  3. --Center Text
  4. local function centerText(text)
  5.   local x,y = term.getSize()
  6.   local x1,y1 = term.getCursorPos()
  7.   term.setCursorPos((math.floor(x/2) - (math.floor(#text/2))), y1)
  8.   write(text)
  9. end
  10.  
  11. --Finds the disk drive
  12. local d = peripheral.find("drive")
  13. local side
  14. for _,tSide in pairs(rs.getSides()) do
  15.   if peripheral.getType(tSide) == "drive" then
  16.     side = tSide
  17.     break
  18.   end
  19. end
  20. if side == nil then error("Disk Drive required") end
  21. if d == nil then error("Disk Drive required") end
  22. --Actual program
  23. while true do
  24.   term.setBackgroundColor(colors.white)
  25.   term.setTextColor(colors.black)
  26.   term.clear()
  27.   term.setCursorPos(1,1)
  28.   term.setBackgroundColor(colors.lightGray)
  29.   term.clearLine()
  30.   centerText("iMusic 2.0")
  31.   term.setCursorPos(1,5)
  32.   term.clearLine()
  33.   term.setCursorPos(1,17)
  34.   print("Created by: Shad and Val")
  35.   print("Press C for more info   ")
  36.   term.setBackgroundColor(colors.green)
  37.   term.setCursorPos(1,2)
  38.   term.clearLine()
  39.   term.setCursorPos(1,3)
  40.   term.clearLine()
  41.   centerText("Insert Music Disk And Press F3")
  42.   term.setCursorPos(1,5)
  43.   term.setBackgroundColor(colors.lightGray)
  44.   centerText("F1 Exit   F2 Pause   F3 Play   F4 Eject")
  45.   term.setBackgroundColor(colors.green)
  46.   term.setCursorPos(1,3)
  47.   term.setCursorPos(1,4)
  48.   term.clearLine()
  49.   while true do
  50.     evt = {os.pullEvent("key")}
  51.     --F1
  52.     if evt[2] == 59 then
  53.       disk.stopAudio(side)
  54.       term.setBackgroundColor(colors.black)
  55.       term.setTextColor(colors.white)
  56.       term.clear()
  57.       term.setCursorPos(1,1)
  58.       centerText("Thanks for using iMusic 2.0!")
  59.       term.setCursorPos(1,2)
  60.       return
  61.     end
  62.     --F2
  63.     if evt[2] == 60 then
  64.       if disk.isPresent(side) == true then
  65.         disk.stopAudio(side)
  66.         term.setCursorPos(1,3)
  67.         term.clearLine()
  68.         centerText("Paused")
  69.         sleep(0.25)
  70.       else
  71.         term.setCursorPos(1,3)
  72.         centerText("Insert Music Disk And Press F3")
  73.       end
  74.     end
  75.    --F3
  76.     if evt[2] == 61 then
  77.       if disk.isPresent(side) == true then
  78.         term.setCursorPos(1,3)
  79.         disk.playAudio(side)
  80.         term.clearLine()
  81.         centerText("Now Playing: "..disk.getAudioTitle(side))
  82.         sleep(0.25)
  83.       else
  84.         term.setCursorPos(1,3)
  85.         centerText("Insert Music Disk And Press F3")
  86.       end
  87.     end
  88.     --F4
  89.     if evt[2] == 62 then
  90.       if disk.isPresent(side) == true then
  91.         disk.stopAudio(side)
  92.         disk.eject(side)
  93.         term.setCursorPos(1,3)
  94.         term.clearLine()
  95.         centerText("Insert Music Disk And Press F3")
  96.       else
  97.         term.setCursorPos(1,3)
  98.         centerText("Insert Music Disk And Press F3")
  99.       end
  100.     end
  101.       --C
  102.       if evt[2] == 46 then
  103.         term.setBackgroundColor(colors.lightGray)
  104.         term.setCursorPos(1,17)
  105.         print("Created by shadowminer_55 and valithor2        ")
  106.         term.setCursorPos(1,18)
  107.         print("Copyright (C) 2015 Dumb Co. All rights reserved")
  108.         term.setBackgroundColor(colors.green)
  109.       end
  110.     end
  111.   sleep(0.75)
  112. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement