Advertisement
Guest User

[CC] Multi Color Printer v0.4

a guest
Sep 29th, 2012
394
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 3.92 KB | None | 0 0
  1. --[[     Multi Color Printer v0.4      ]]--
  2. --[[ Made By Orwell (aka this_is_1984) ]]--
  3.  
  4. local function moveUp()
  5.   if not (turtle.up() and turtle.forward()) then
  6.       error('The area above and below the turtle should be cleared!')
  7.   end
  8. end
  9.  
  10. local function moveUpBack()
  11.   if not (turtle.back() and turtle.up()) then
  12.       error('The area above and below the turtle should be cleared!')
  13.   end
  14. end
  15.  
  16. local function moveDown()
  17.   if not (turtle.down() and turtle.forward()) then
  18.       error('The area above and below the turtle should be cleared!')
  19.   end
  20. end
  21.  
  22. local function moveDownBack()
  23.   if not (turtle.back() and turtle.down()) then
  24.       error('The area above and below the turtle should be cleared!')
  25.   end
  26. end
  27.  
  28. local function feedPaper()
  29.   turtle.select(16)
  30.   local paperLevel = peripheral.call('front','getPaperLevel')
  31.   if paperLevel ~= 1 then
  32.     moveUp()
  33.     if paperLevel > 1 then
  34.       turtle.suckDown()
  35.     else
  36.       turtle.suckUp(1)
  37.     end
  38.     turtle.dropUp(turtle.getItemCount(16)-1)
  39.     turtle.dropDown(1)
  40.     moveDownBack()
  41.   end
  42. end
  43.  
  44. local function cyclePaper()
  45.   moveDown()
  46.   turtle.select(16)
  47.   turtle.suckUp()
  48.   moveUpBack()
  49.   moveUp()
  50.   turtle.dropDown(1)
  51.   moveDownBack()
  52. end
  53.  
  54. local function outputPaper()
  55.   turtle.select(16)
  56.   moveDown()
  57.   turtle.suckUp()
  58.   turtle.dropDown()
  59.   moveUpBack()
  60. end
  61.  
  62. local w,h = 25,21
  63.  
  64. Pixel = {}
  65. Pixel.__index = Pixel
  66.  
  67. function Pixel.create(char, color)
  68.   local pixel = {}
  69.   setmetatable(pixel, Pixel)
  70.   pixel.char = char
  71.   pixel.color = color
  72.   return pixel
  73. end
  74.  
  75. local color = {
  76. colors.green,
  77. colors.brown,
  78. colors.black,
  79. colors.pink,
  80. colors.yellow,
  81. colors.orange,
  82. colors.magenta,
  83. colors.purple,
  84. colors.cyan,
  85. colors.red,
  86. colors.lightBlue,
  87. colors.lightGray,
  88. colors.gray,
  89. colors.lime,
  90. colors.blue,
  91. }
  92.  
  93. local function round(n)
  94.   if n-math.floor(n) <= 0.5 then
  95.     return math.floor(n)
  96.   else
  97.     return math.ceil(n)
  98.   end
  99. end
  100.  
  101. Page = {}
  102. Page.__index = Page
  103.  
  104. function newPage()
  105.   local page = {}
  106.   setmetatable(page, Page)
  107.   page.image = {}
  108.   page.width = w
  109.   page.height = h
  110.   page.x = 1
  111.   page.y = 1
  112.   for y=1,page.height do
  113.     page.image[y]={}
  114.   end
  115.   page.colors = {}
  116.   page.write =
  117.     function(str, clr)
  118.       clr = clr or colors.black
  119.       for i=1,math.min(#str,page.width-page.x) do
  120.         page.image[page.y][page.x+i] = Pixel.create(string.sub(str,i,i),clr)
  121.       end
  122.       page.x = math.min(page.width, page.x + #str)
  123.       page.colors[clr] = true
  124.     end
  125.   page.getCursorPos = function() return page.x,page.y end
  126.   page.setCursorPos = function(x,y) if x > 0 and x<= page.width and y > 0 and y<=page.height then page.x,page.y=round(x),round(y) end end
  127.   page.print = function(title) printPage(page,title) end
  128.   page.clear = function() for i=1,#page.image do page.image[i] = {} end end
  129.   return page
  130. end
  131.  
  132. function printPage(page, title)
  133.   local printerSide = 'front'  
  134.   local printer = peripheral.wrap(printerSide)
  135.   if not printer or peripheral.getType(printerSide) ~= "printer" then
  136.     error("No printer found in front of turtle!")
  137.   end
  138.  
  139.   feedPaper()
  140.   if printer.getPaperLevel() ~= 1 then
  141.     error("There should be exactly one page in the printer at the time of printing!")
  142.   end
  143.  
  144.   for i,v in ipairs(color) do
  145.     if page.colors[v] == true then
  146.       turtle.select(i)
  147.       if (turtle.getItemCount(i) == 0) then
  148.         print('Out of dye in slot '..i..'.')
  149.     os.pullEvent('key')
  150.       end
  151.       turtle.drop(1)
  152.       printer.newPage()
  153.       for x=1,w do
  154.         for y=1,h do
  155.           local pixel = page.image[y][x]
  156.           if pixel and pixel.color == v then
  157.             printer.setCursorPos(x,y)
  158.             printer.write(pixel.char)
  159.           end
  160.         end
  161.       end
  162.       if (i == #color) then
  163.         if title then
  164.           printer.setPageTitle(title)
  165.         end
  166.         printer.endPage()
  167.       else
  168.         printer.endPage()
  169.         cyclePaper()
  170.       end
  171.     end
  172.   end  
  173.   outputPaper()
  174. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement