Advertisement
exploder2013

ComputerCraft Miner OS

Aug 5th, 2013
594
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 5.81 KB | None | 0 0
  1. -- This code is recommended to use together with ComputerCraft Turtle OS!
  2. -- ComputerCraft Miner OS pastebin is sE0AU5up!
  3.  
  4. if not os.loadAPI("data/ExAPI") then
  5.     term.setCursorPos(1,1)
  6.     print("ExAPI is missing!")
  7.     print("You need to have ExAPI in data folder")
  8.     print("ExAPI pastebin is PTK4hM5g")
  9.     print("If you have pastebin enabled type:")
  10.     print("pastebin get PTK4hM5g data/ExAPI")
  11.     error()
  12. end
  13. if not term.isColor() then
  14.   print("Program requires an advanced computer.")
  15.   return
  16. end
  17. sleep(1)
  18. -- Variables.
  19. w,h = term.getSize()
  20. src = 0
  21. osName = ExAPI.readConfig(1)
  22. backgroundImageNumber = ExAPI.readConfig(2)
  23. clockToggled = tonumber(ExAPI.readConfig(3))
  24. backgroundImage = tostring(ExAPI.randomBackground(backgroundImageNumber))
  25. clockTimer = os.startTimer(1)
  26.  
  27. -- Tables.
  28. startMenu = {
  29.   "               ",
  30.   "  Turtle Scan  ",
  31.   " Turtle Control",
  32.   " Control Panel ",
  33.   "    Reboot     ",
  34.   "   Shutdown    ",
  35.   "               "
  36. }
  37.  
  38. extraMenu = {
  39.   "                 ",
  40.   " Edit Background ",
  41.   "     Edit GUI    ",
  42.   "    Rename OS    ",
  43.   "  Add background ",
  44.   "                 "
  45. }
  46.  
  47. contextMenu = {
  48.   "           ",
  49.   "   Reboot  ",
  50.   "    Exit   ",
  51.   "           "
  52. }
  53.  
  54. if not ExAPI.getModemSide() then
  55.   ExAPI.clearScreen()
  56.   ExAPI.writeCenter("Please add a modem to this computer",math.floor(h/2))
  57.   term.setCursorPos(1,1)
  58.   error()
  59. end
  60.  
  61. function drawScreen()
  62.   term.setBackgroundColor(colors.white)
  63.   ExAPI.clearScreen()
  64.   background = paintutils.loadImage("data/backgrounds/.background"..backgroundImage)
  65.   paintutils.drawImage(background,1,1)
  66.   drawTitle()
  67.   drawBottom()
  68.   displayTime()
  69. end
  70.  
  71. function drawTitle()
  72.   term.setCursorPos(1,1)
  73.   term.setBackgroundColor(colors.blue)
  74.   term.clearLine()
  75.   ExAPI.writeCenter(osName,1)
  76.   ExAPI.writeRight("[Extra]",2,1)
  77. end
  78.  
  79. function drawBottom()
  80.   term.setCursorPos(1,h)
  81.   term.setBackgroundColor(colors.green)
  82.   term.clearLine()
  83.   term.setCursorPos(1,h-1)
  84.   term.setBackgroundColor(colors.green)
  85.   term.clearLine()
  86.   term.setBackgroundColor(colors.blue)
  87.   ExAPI.writeLeft(" [Start] ",0,h-1)
  88.   ExAPI.writeLeft("         ",0,h)
  89. end
  90.  
  91. function drawStartMenu()
  92.   term.setBackgroundColor(128)
  93.   for k,v in pairs(startMenu) do
  94.     ExAPI.writeLeft(tostring(v),0,h-#startMenu-2+k)
  95.   end
  96. end
  97.  
  98. function drawInputBox(name)
  99.   term.setBackgroundColor(colors.blue)
  100.   for i=1,7 do
  101.     ExAPI.writeCenter("                                ",math.floor(h/2-4+i))
  102.   end
  103.   term.setTextColor(colors.red)
  104.   ExAPI.writeCenter(name,h/2-4+1)
  105.   term.setBackgroundColor(128)
  106.   ExAPI.writeCenter("                            ",h/2-4+4)
  107.   term.setCursorPos(w-40,h/2-4+4)
  108.   term.setTextColor(1)
  109.   input = read()
  110.   return input
  111. end
  112.  
  113. function displayTime()
  114.   if clockToggled == 1 then
  115.     term.setBackgroundColor(colors.green)
  116.     time = textutils.formatTime(os.time(),true)
  117.     ExAPI.writeRight(time,2,h-1)
  118.   end
  119. end
  120.  
  121. function drawMenu1()
  122.   term.setBackgroundColor(128)
  123.   for k,v in pairs(extraMenu) do
  124.     ExAPI.writeRight(tostring(v),-1,k+1)
  125.   end
  126. end
  127.  
  128. function drawExtMenu(contextX,contextY)
  129.   term.setBackgroundColor(128)
  130.   for k,v in pairs(contextMenu) do
  131.     term.setCursorPos(contextX,contextY - 1 + k)
  132.     term.write(tostring(v))
  133.   end
  134. end
  135.  
  136. drawScreen()
  137. while true do
  138.   local event,button,x,y,p5 = os.pullEvent()
  139.   if event == "mouse_click" then
  140.     if src == 0 then
  141.       if x >= 1 and x <= 9 and y >= h-1 and button == 1 then
  142.         src = 1
  143.         drawStartMenu()
  144.       elseif x >= w-9 and x <= w-2 and y == 1 and button == 1 then
  145.         src = 2
  146.         drawMenu1()
  147.       elseif x >= 1 and y >= 2 and button == 2 then
  148.         src = 3
  149.         if x >= w - 11 then
  150.             contextX = w - 11
  151.         end
  152.         if y >= h - 7 then
  153.             contextY = h - 6
  154.         end
  155.         if x <= w - 11 then
  156.             contextX = x
  157.         end
  158.         if y <= h - 4 then
  159.             contextY = y
  160.         end
  161.         drawExtMenu(contextX,contextY)
  162.       end
  163.     elseif src == 1 then
  164.       if x >= 1 and x <= 15 and y == h-3 and button == 1 then
  165.         src = 0
  166.         os.shutdown()
  167.       elseif x >= 1 and x <= 15 and y == h-6 and button == 1 then
  168.         src = 0
  169.         ExAPI.turtleControl()
  170.       elseif x >= 1 and x <= 15 and y == h-4 and button == 1 then
  171.         src = 0
  172.         os.reboot()
  173.       elseif x >= 1 and x <= 15 and y == h-5 and button == 1 then
  174.         src = 0
  175.         ControlPanel()
  176.       elseif x >= 1 and x <= 15 and y == h-7 and button == 1 then
  177.         src = 0
  178.         drawScreen()
  179.         ExAPI.turtleScan()
  180.       else
  181.         src = 0
  182.         drawScreen()
  183.       end
  184.     elseif src == 2 then
  185.       if x >= w-17 and x <= w and y == 3 and button == 1 then
  186.         src = 0
  187.         shell.run("paint","data/backgrounds/.background"..backgroundImage)
  188.         clockTimer = os.startTimer(1)
  189.         drawScreen()
  190.       elseif x >= w-17 and x <= w and y == 4 and button == 1 then
  191.         src = 0
  192.         shell.run("edit","startup")
  193.         clockTimer = os.startTimer(1)
  194.         drawScreen()
  195.       elseif x >= w-17 and x <= w and y == 5 and button == 1 then
  196.         src = 0
  197.         drawScreen()
  198.         value = drawInputBox("Enter OS name")
  199.         ExAPI.editConfig(1,value)
  200.         osName = value
  201.         drawScreen()
  202.       elseif x >= w-17 and x <= w and y == 6 and button == 1 then
  203.         src = 0
  204.         shell.run("paint","data/backgrounds/.background"..tostring(backgroundImageNumber))
  205.         ExAPI.editConfig(2,backgroundImageNumber+1)
  206.         backgroundImageNumber = ExAPI.readConfig(2)
  207.         clockTimer = os.startTimer(1)
  208.         drawScreen()
  209.       else
  210.         src = 0
  211.         drawScreen()
  212.       end
  213.     elseif src == 3 then
  214.       if x >= contextX and x <= contextX + 10 and y == contextY + 1 and button == 1 then
  215.         src = 0
  216.         os.reboot()
  217.       elseif x >= contextX and x <= contextX + 10 and y == contextY + 2 and button == 1 then
  218.         src = 0
  219.         term.setBackgroundColor(colors.black)
  220.         ExAPI.clearScreen()
  221.         error()
  222.       else
  223.         src = 0
  224.         drawScreen()
  225.       end
  226.     end
  227.   elseif event == "timer" then
  228.     if button == clockTimer then
  229.       displayTime()
  230.       clockTimer = os.startTimer(1)
  231.     end
  232.   end
  233. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement