Advertisement
CrazedProgrammer

Surface API 1.4.0

Apr 27th, 2015
507
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 34.27 KB | None | 0 0
  1. -- Surface API version 1.5.0 by CrazedProgrammer
  2. -- You can find info and documentation on these pages:
  3. -- http://www.computercraft.info/forums2/index.php?/topic/22397-surface-api/
  4. -- You may use this in your ComputerCraft programs and modify it without asking.
  5. -- However, you may not publish this API under your name without asking me.
  6. -- If you have any suggestions, bug reports or questions then please send an email to:
  7. version = "1.5.0"
  8.  
  9. local _log = math.log(2)
  10.  
  11. local _bufferLine = function(buffer, width, x1, y1, x2, y2)
  12.     local delta_x = x2 - x1
  13.     local ix = delta_x > 0 and 1 or -1
  14.     delta_x = 2 * math.abs(delta_x)
  15.     local delta_y = y2 - y1
  16.     local iy = delta_y > 0 and 1 or -1
  17.     delta_y = 2 * math.abs(delta_y)
  18.     buffer[(y1 - 1) * width + x1] = true
  19.     if delta_x >= delta_y then
  20.         local error = delta_y - delta_x / 2
  21.         while x1 ~= x2 do
  22.             if (error >= 0) and ((error ~= 0) or (ix > 0)) then
  23.                 error = error - delta_x
  24.                 y1 = y1 + iy
  25.             end
  26.             error = error + delta_y
  27.             x1 = x1 + ix
  28.             buffer[(y1 - 1) * width + x1] = true
  29.         end
  30.     else
  31.         local error = delta_x - delta_y / 2
  32.         while y1 ~= y2 do
  33.             if (error >= 0) and ((error ~= 0) or (iy > 0)) then
  34.                 error = error - delta_y
  35.                 x1 = x1 + ix
  36.             end
  37.             error = error + delta_x
  38.             y1 = y1 + iy
  39.             buffer[(y1 - 1) * width + x1] = true
  40.         end
  41.     end
  42. end
  43.  
  44. local _drawHLine = function(surf, x1, x2, y, char, backcolor, textcolor)
  45.     if x1 > x2 then
  46.         local temp = x1
  47.         x1, x2 = x2, temp
  48.     end
  49.     if y < surf.y1 or y > surf.y2 or x2 < surf.x1 or x1 > surf.x2 then return end
  50.     if x1 < surf.x1 then x1 = surf.x1 end
  51.     if x2 > surf.x2 then x2 = surf.x2 end
  52.     if char or surf.overwrite then
  53.         for x=x1,x2 do
  54.             surf.buffer[((y - 1) * surf.width + x) * 3 - 2] = char
  55.         end
  56.     end
  57.     if backcolor or surf.overwrite then
  58.         for x=x1,x2 do
  59.             surf.buffer[((y - 1) * surf.width + x) * 3 - 1] = backcolor
  60.         end
  61.     end
  62.     if textcolor or surf.overwrite then
  63.         for x=x1,x2 do
  64.             surf.buffer[((y - 1) * surf.width + x) * 3] = textcolor
  65.         end
  66.     end
  67. end
  68.  
  69. local _drawVLine = function(surf, y1, y2, x, char, backcolor, textcolor)
  70.     if y1 > y2 then
  71.         local temp = y1
  72.         y1, y2 = y2, temp
  73.     end
  74.     if x < surf.x1 or x > surf.x2 or y2 < surf.y1 or y1 > surf.y2 then return end
  75.     if y1 < surf.y1 then y1 = surf.y1 end
  76.     if y2 > surf.y2 then y2 = surf.y2 end
  77.     if char or surf.overwrite then
  78.         for y=y1,y2 do
  79.             surf.buffer[((y - 1) * surf.width + x) * 3 - 2] = char
  80.         end
  81.     end
  82.     if backcolor or surf.overwrite then
  83.         for y=y1,y2 do
  84.             surf.buffer[((y - 1) * surf.width + x) * 3 - 1] = backcolor
  85.         end
  86.     end
  87.     if textcolor or surf.overwrite then
  88.         for y=y1,y2 do
  89.             surf.buffer[((y - 1) * surf.width + x) * 3] = textcolor
  90.         end
  91.     end
  92. end
  93.  
  94. local _functions = {
  95. setBounds = function(surf, x1, y1, x2, y2)
  96.     if x1 > x2 then
  97.         local temp = x1
  98.         x1, x2 = x2, temp
  99.     end
  100.     if y1 > y2 then
  101.         local temp = y1
  102.         y1, y2 = y2, temp
  103.     end
  104.     if x2 < 1 or x1 > surf.width or y2 < 1 or y1 > surf.height then return end
  105.     if x1 < 1 then x1 = 1 end
  106.     if x2 > surf.width then x2 = surf.width end
  107.     if y1 < 1 then y1 = 1 end
  108.     if y2 > surf.height then y2 = surf.height end
  109.     surf.x1, surf.y1, surf.x2, surf.y2 = x1, y1, x2, y2
  110. end,
  111.  
  112. getBounds = function(surf)
  113.     return surf.x1, surf.y1, surf.x2, surf.y2
  114. end,
  115.  
  116. copy = function(surf)
  117.     local surf2 = surface.create(surf.width, surf.height)
  118.     surf2.x1, surf2.y1, surf2.x2, surf2.y2, surf2.blink, surf2.curX, surf2.curY, surf2.overwrite = surf.x1, surf.y1, surf.x2, surf.y2, surf.blink, surf.curX, surf.curY, surf.overwrite
  119.     for i=1,surf.width * surf.height * 3 do
  120.         surf2.buffer[i] = surf.buffer[i]
  121.     end
  122.     return surf2
  123. end,
  124.  
  125. save = function(surf, path, type)
  126.     type = type or "srf"
  127.     local f = fs.open(path, "w")
  128.     if type == "nfp" then
  129.         local color = nil
  130.         for j=1,surf.height do
  131.             if j > 1 then f.write("\n") end
  132.             for i=1,surf.width do
  133.                 color = surf.buffer[((j - 1) * surf.width + i) * 3 - 1]
  134.                 if color then
  135.                     f.write(string.format("%x", math.log(color)/_log))
  136.                 else
  137.                     f.write(" ")
  138.                 end
  139.             end
  140.         end
  141.     elseif type == "nft" then
  142.         local backcolor, textcolor, char = nil
  143.         for j=1,surf.height,1 do
  144.             if j > 1 then f.write("\n") end
  145.             backcolor = nil
  146.             textcolor = nil
  147.             for i=1,surf.width do
  148.                 if backcolor ~= surf.buffer[((j - 1) * surf.width + i) * 3 - 1] then
  149.                     f.write(string.char(30))
  150.                     backcolor = surf.buffer[((j - 1) * surf.width + i) * 3 - 1]
  151.                     if backcolor then
  152.                         f.write(string.format("%x", math.log(backcolor)/_log))
  153.                     else
  154.                         f.write(" ")
  155.                     end
  156.                 end
  157.                 if textcolor ~= surf.buffer[((j - 1) * surf.width + i) * 3] then
  158.                     f.write(string.char(31))
  159.                     textcolor = surf.buffer[((j - 1) * surf.width + i) * 3]
  160.                     if textcolor then
  161.                         f.write(string.format("%x", math.log(textcolor)/_log))
  162.                     else
  163.                         f.write(" ")
  164.                     end
  165.                 end
  166.                 char = surf.buffer[((j - 1) * surf.width + i) * 3 - 2]
  167.                 if char then
  168.                     f.write(char)
  169.                 else
  170.                     f.write(" ")
  171.                 end
  172.             end
  173.         end
  174.     elseif type == "srf" then
  175.         f.write(surf:saveString())
  176.     end
  177.     f.close()
  178. end,
  179.  
  180. saveString = function(surf)
  181.     local str = { "_"..string.format("%04x", surf.width)..string.format("%04x", surf.height) }
  182.     for j=1,surf.height do
  183.         for i=1,surf.width do
  184.             if surf.buffer[((j - 1) * surf.width + i) * 3 - 2] then
  185.                 str[#str + 1] = string.format("%02x", surf.buffer[((j - 1) * surf.width + i) * 3 - 2]:byte(1))
  186.             else
  187.                 str[#str + 1] = "__"
  188.             end
  189.             if surf.buffer[((j - 1) * surf.width + i) * 3 - 1] then
  190.                 str[#str + 1] = string.format("%x", math.log(surf.buffer[((j - 1) * surf.width + i) * 3 - 1])/_log)
  191.             else
  192.                 str[#str + 1] = "_"
  193.             end
  194.             if surf.buffer[((j - 1) * surf.width + i) * 3] then
  195.                 str[#str + 1] = string.format("%x", math.log(surf.buffer[((j - 1) * surf.width + i) * 3])/_log)
  196.             else
  197.                 str[#str + 1] = "_"
  198.             end
  199.         end
  200.     end
  201.     return table.concat(str)
  202. end,
  203.  
  204. getTerm = function(surf)
  205.     local term, textcolor, backcolor = { }
  206.     function term.write(str)
  207.         surf:drawText(surf.curX, surf.curY, str, backcolor, textcolor)
  208.         surf.curX = surf.curX + #str
  209.     end
  210.     function term.blit(str, text, back)
  211.         for i=1,#str do
  212.             if surf.curX >= surf.x1 and surf.curY >= surf.y1 and surf.curX <= surf.x2 and surf.curY <= surf.y2 then
  213.                 surf.buffer[((surf.curY - 1) * surf.width + surf.curX) * 3 - 2] = str:sub(i, i)
  214.                 surf.buffer[((surf.curY - 1) * surf.width + surf.curX) * 3 - 1] = 2 ^ tonumber(back:sub(i, i), 16)
  215.                 surf.buffer[((surf.curY - 1) * surf.width + surf.curX) * 3] = 2 ^ tonumber(text:sub(i, i), 16)
  216.             end
  217.             surf.curX = surf.curX + 1
  218.         end
  219.     end
  220.     function term.clear()
  221.         surf:clear(" ", backcolor, textcolor)
  222.     end
  223.     function term.clearLine(n)
  224.         _drawHLine(surf, surf.x1, surf.x2, n)
  225.     end
  226.     function term.getCursorPos()
  227.         return surf.curX, surf.curY
  228.     end
  229.     function term.setCursorPos(x, y)
  230.         surf.curX, surf.curY = math.floor(x), math.floor(y)
  231.     end
  232.     function term.setCursorBlink(blink)
  233.         surf.blink = blink
  234.     end
  235.     function term.isColor()
  236.         return true
  237.     end
  238.     term.isColour = term.isColor
  239.     function term.setTextColor(color)
  240.         textcolor = color
  241.     end
  242.     term.setTextColour = term.setTextColor
  243.     function term.setBackgroundColor(color)
  244.         backcolor = color
  245.     end
  246.     term.setBackgroundColour = term.setBackgroundColor
  247.     function term.getSize()
  248.         return surf.width, surf.height
  249.     end
  250.     function term.scroll(n)
  251.         surf:shift(0, n)
  252.     end
  253.     function term.getTextColor()
  254.         return textcolor
  255.     end
  256.     term.getTextColour = term.getTextColor
  257.     function term.getBackgroundColor()
  258.         return backcolor
  259.     end
  260.     term.getBackgroundColour = term.getBackgroundColor
  261.     return term
  262. end,
  263.  
  264. render = function(surf, display, x, y, sx1, sy1, sx2, sy2)
  265.     display, x, y, sx1, sy1, sx2, sy2 = display or term, x or 1, y or 1, sx1 or 1, sy1 or 1, sx2 or surf.width, sy2 or surf.height
  266.     if sx1 > sx2 then
  267.         local temp = sx1
  268.         sx1, sx2 = sx2, temp
  269.     end
  270.     if sy1 > sy2 then
  271.         local temp = sy1
  272.         sy1, sy2 = sy2, temp
  273.     end
  274.     if sx2 < 1 or sx1 > surf.width or sy2 < 1 or sy1 > surf.height then return end
  275.     if sx1 < 1 then sx1 = 1 end
  276.     if sx2 > surf.width then sx2 = surf.width end
  277.     if sy1 < 1 then sy1 = 1 end
  278.     if sy2 > surf.height then sy2 = surf.height end
  279.     if display.blit then
  280.         local cmd, str, back, text = { }, { }, { }, { }
  281.         for j=sy1,sy2 do
  282.             for i=sx1,sx2 do
  283.                 str[i - sx1 + 1] = surf.buffer[((j - 1) * surf.width + i) * 3 - 2] or " "
  284.                 back[i - sx1 + 1] = math.log(surf.buffer[((j - 1) * surf.width + i) * 3 - 1] or 32768)/_log
  285.                 text[i - sx1 + 1] = math.log(surf.buffer[((j - 1) * surf.width + i) * 3] or 1)/_log
  286.             end
  287.             cmd[#cmd + 1] = y + j - sy1
  288.             cmd[#cmd + 1] = table.concat(str)
  289.             cmd[#cmd + 1] = string.format(string.rep("%x", #text), unpack(text))
  290.             cmd[#cmd + 1] = string.format(string.rep("%x", #back), unpack(back))
  291.         end
  292.         for i=1,#cmd,4 do
  293.             display.setCursorPos(x, cmd[i])
  294.             display.blit(cmd[i + 1], cmd[i + 2], cmd[i + 3])
  295.         end
  296.     else
  297.         local cmd, str, backcolor, textcolor = { }, "", nil, nil
  298.         for j=sy1,sy2 do
  299.             cmd[#cmd + 1] = 1
  300.             cmd[#cmd + 1] = y + j - sy1
  301.             for i=sx1,sx2 do
  302.                 if surf.buffer[((j - 1) * surf.width + i) * 3 - 1] ~= backcolor then
  303.                     backcolor = surf.buffer[((j - 1) * surf.width + i) * 3 - 1]
  304.                     if str ~= "" then
  305.                         cmd[#cmd + 1] = 4
  306.                         cmd[#cmd + 1] = str
  307.                         str = ""
  308.                     end
  309.                     cmd[#cmd + 1] = 2
  310.                     cmd[#cmd + 1] = backcolor
  311.                 end
  312.                 if surf.buffer[((j - 1) * surf.width + i) * 3] ~= textcolor then
  313.                     textcolor = surf.buffer[((j - 1) * surf.width + i) * 3]
  314.                     if str ~= "" then
  315.                         cmd[#cmd + 1] = 4
  316.                         cmd[#cmd + 1] = str
  317.                         str = ""
  318.                     end
  319.                     cmd[#cmd + 1] = 3
  320.                     cmd[#cmd + 1] = textcolor
  321.                 end
  322.                 str = str..(surf.buffer[((j - 1) * surf.width + i) * 3 - 2] or " ")
  323.             end
  324.             cmd[#cmd + 1] = 4
  325.             cmd[#cmd + 1] = str
  326.             str = ""
  327.         end
  328.         local c, a = nil, nil
  329.         for i=1,#cmd,2 do
  330.             c, a = cmd[i], cmd[i + 1]
  331.             if c == 1 then
  332.                 display.setCursorPos(x, a)
  333.             elseif c == 2 then
  334.                 display.setBackgroundColor(a or 32768)
  335.             elseif c == 3 then
  336.                 display.setTextColor(a or 1)
  337.             else
  338.                 display.write(a)
  339.             end
  340.         end
  341.     end
  342.     if surf.blink then
  343.         display.setCursorPos(x + surf.curX - sx1, y + surf.curY - sy1)
  344.         display.setCursorBlink(true)
  345.     elseif surf.blink == false then
  346.         display.setCursorBlink(false)
  347.         surf.blink = nil
  348.     end
  349. end,
  350.  
  351. clear = function(surf, char, backcolor, textcolor)
  352.     local overwrite = surf.overwrite
  353.     surf.overwrite = true
  354.     surf:fillRect(surf.x1, surf.y1, surf.x2, surf.y2, char, backcolor, textcolor)
  355.     surf.overwrite = overwrite
  356. end,
  357.  
  358. drawPixel = function(surf, x, y, char, backcolor, textcolor)
  359.     if x < surf.x1 or y < surf.y1 or x > surf.x2 or y > surf.y2 then return end
  360.     if char or surf.overwrite then
  361.         surf.buffer[((y - 1) * surf.width + x) * 3 - 2] = char
  362.     end
  363.     if backcolor or surf.overwrite then
  364.         surf.buffer[((y - 1) * surf.width + x) * 3 - 1] = backcolor
  365.     end
  366.     if textcolor or surf.overwrite then
  367.         surf.buffer[((y - 1) * surf.width + x) * 3] = textcolor
  368.     end
  369. end,
  370.  
  371. getPixel = function(surf, x, y)
  372.     if x < 1 or y < 1 or x > surf.width or y > surf.height then return end
  373.     return surf.buffer[((y - 1) * surf.width + x) * 3 - 2], surf.buffer[((y - 1) * surf.width + x) * 3 - 1], surf.buffer[((y - 1) * surf.width + x) * 3]
  374. end,
  375.  
  376. drawText = function(surf, x, y, text, backcolor, textcolor)
  377.     local px = x
  378.     for i=1,#text,1 do
  379.         if text:sub(i, i) ~= "\n" then
  380.             if x >= surf.x1 and y >= surf.y1 and x <= surf.x2 and y <= surf.y2 then
  381.                 surf.buffer[((y - 1) * surf.width + x) * 3 - 2] = text:sub(i, i)
  382.                 if backcolor or surf.overwrite then
  383.                     surf.buffer[((y - 1) * surf.width + x) * 3 - 1] = backcolor
  384.                 end
  385.                 if textcolor or surf.overwrite then
  386.                     surf.buffer[((y - 1) * surf.width + x) * 3] = textcolor
  387.                 end
  388.             end
  389.         else
  390.             x = px - 1
  391.             y = y + 1
  392.         end
  393.         x = x + 1
  394.     end
  395. end,
  396.  
  397. drawLine = function(surf, x1, y1, x2, y2, char, backcolor, textcolor)
  398.     local delta_x = x2 - x1
  399.     local ix = delta_x > 0 and 1 or -1
  400.     delta_x = 2 * math.abs(delta_x)
  401.     local delta_y = y2 - y1
  402.     local iy = delta_y > 0 and 1 or -1
  403.     delta_y = 2 * math.abs(delta_y)
  404.     surf:drawPixel(x1, y1, char, backcolor, textcolor)
  405.     if delta_x >= delta_y then
  406.         local error = delta_y - delta_x / 2
  407.         while x1 ~= x2 do
  408.             if (error >= 0) and ((error ~= 0) or (ix > 0)) then
  409.                 error = error - delta_x
  410.                 y1 = y1 + iy
  411.             end
  412.             error = error + delta_y
  413.             x1 = x1 + ix
  414.             surf:drawPixel(x1, y1, char, backcolor, textcolor)
  415.         end
  416.     else
  417.         local error = delta_x - delta_y / 2
  418.         while y1 ~= y2 do
  419.             if (error >= 0) and ((error ~= 0) or (iy > 0)) then
  420.                 error = error - delta_y
  421.                 x1 = x1 + ix
  422.             end
  423.             error = error + delta_x
  424.             y1 = y1 + iy
  425.             surf:drawPixel(x1, y1, char, backcolor, textcolor)
  426.         end
  427.     end
  428. end,
  429.  
  430. drawLines = function(surf, points, mode, char, backcolor, textcolor)
  431.     mode = mode or 1
  432.     if mode == 1 then
  433.         for i=1,#points,4 do
  434.             surf:drawLine(points[i], points[i+1], points[i+2], points[i+3], char, backcolor, textcolor)
  435.         end
  436.     elseif mode == 2 then
  437.         local lastx, lasty = points[1], points[2]
  438.         for i=3,#points,2 do
  439.             local curx, cury = points[i], points[i+1]
  440.             surf:drawLine(lastx, lasty, curx, cury, char, backcolor, textcolor)
  441.             lastx = curx
  442.             lasty = cury
  443.         end
  444.     elseif mode == 3 then
  445.         local midx, midy = points[1], points[2]
  446.         for i=3,#points,2 do
  447.             surf:drawLine(midx, midy, points[i], points[i+1], char, backcolor, textcolor)
  448.         end
  449.     end
  450. end,
  451.  
  452. drawRect = function(surf, x1, y1, x2, y2, char, backcolor, textcolor)
  453.     _drawHLine(surf, x1, x2, y1, char, backcolor, textcolor)
  454.     _drawHLine(surf, x1, x2, y2, char, backcolor, textcolor)
  455.     _drawVLine(surf, y1, y2, x1, char, backcolor, textcolor)
  456.     _drawVLine(surf, y1, y2, x2, char, backcolor, textcolor)
  457. end,
  458.  
  459. drawRoundRect = function(surf, x1, y1, x2, y2, char, backcolor, textcolor)
  460.     _drawHLine(surf, x1 + 1, x2 - 1, y1, char, backcolor, textcolor)
  461.     _drawHLine(surf, x1 + 1, x2 - 1, y2, char, backcolor, textcolor)
  462.     _drawVLine(surf, y1 + 1, y2 - 1, x1, char, backcolor, textcolor)
  463.     _drawVLine(surf, y1 + 1, y2 - 1, x2, char, backcolor, textcolor)
  464. end,
  465.  
  466. drawRoundedRect = function(surf, x1, y1, x2, y2, radius, char, backcolor, textcolor)
  467.     _drawHLine(surf, x1 + radius, x2 - radius, y1, char, backcolor, textcolor)
  468.     _drawHLine(surf, x1 + radius, x2 - radius, y2, char, backcolor, textcolor)
  469.     _drawVLine(surf, y1 + radius, y2 - radius, x1, char, backcolor, textcolor)
  470.     _drawVLine(surf, y1 + radius, y2 - radius, x2, char, backcolor, textcolor)
  471.     surf:drawArc(x1, y1, x1 + radius * 2 + 2, y1 + radius * 2 + 2, -math.pi, -math.pi / 2, char, backcolor, textcolor)
  472.     surf:drawArc(x2, y1, x2 - radius * 2 - 2, y1 + radius * 2 + 2, 0, -math.pi / 2, char, backcolor, textcolor)
  473.     surf:drawArc(x1, y2, x1 + radius * 2 + 2, y2 - radius * 2 - 2, math.pi, math.pi / 2, char, backcolor, textcolor)
  474.     surf:drawArc(x2, y2, x2 - radius * 2 - 2, y2 - radius * 2 - 2, 0, math.pi / 2, char, backcolor, textcolor)
  475. end,
  476.  
  477. fillRect = function(surf, x1, y1, x2, y2, char, backcolor, textcolor)
  478.     if x1 > x2 then
  479.         local temp = x1
  480.         x1, x2 = x2, temp
  481.     end
  482.     if y1 > y2 then
  483.         local temp = y1
  484.         y1, y2 = y2, temp
  485.     end
  486.     if x2 < surf.x1 or x1 > surf.x2 or y2 < surf.y1 or y1 > surf.y2 then return end
  487.     if x1 < surf.x1 then x1 = surf.x1 end
  488.     if x2 > surf.x2 then x2 = surf.x2 end
  489.     if y1 < surf.y1 then y1 = surf.y1 end
  490.     if y2 > surf.y2 then y2 = surf.y2 end
  491.     if char or surf.overwrite then
  492.         for y=y1,y2 do
  493.             for x=x1,x2 do
  494.                 surf.buffer[((y - 1) * surf.width + x) * 3 - 2] = char
  495.             end
  496.         end
  497.     end
  498.     if backcolor or surf.overwrite then
  499.         for y=y1,y2 do
  500.             for x=x1,x2 do
  501.                 surf.buffer[((y - 1) * surf.width + x) * 3 - 1] = backcolor
  502.             end
  503.         end
  504.     end
  505.     if textcolor or surf.overwrite then
  506.         for y=y1,y2 do
  507.             for x=x1,x2 do
  508.                 surf.buffer[((y - 1) * surf.width + x) * 3] = textcolor
  509.             end
  510.         end
  511.     end
  512. end,
  513.  
  514. fillRoundRect = function(surf, x1, y1, x2, y2, char, backcolor, textcolor)
  515.     _drawHLine(surf, x1 + 1, x2 - 1, y1, char, backcolor, textcolor)
  516.     _drawHLine(surf, x1 + 1, x2 - 1, y2, char, backcolor, textcolor)
  517.     _drawVLine(surf, y1 + 1, y2 - 1, x1, char, backcolor, textcolor)
  518.     _drawVLine(surf, y1 + 1, y2 - 1, x2, char, backcolor, textcolor)
  519.     surf:fillRect(x1 + 1, y1 + 1, x2 - 1, y2 - 1, char, backcolor, textcolor)
  520. end,
  521.  
  522. fillRoundedRect = function(surf, x1, y1, x2, y2, radius, char, backcolor, textcolor)
  523.     surf:fillRect(x1 + radius, y1, x2 - radius, y2, char, backcolor, textcolor)
  524.     surf:fillRect(x1, y1 + radius, x1 + radius, y2 - radius, char, backcolor, textcolor)
  525.     surf:fillRect(x2 - radius, y1 + radius, x2, y2 - radius, char, backcolor, textcolor)
  526.     surf:fillPie(x1, y1, x1 + radius * 2 + 2, y1 + radius * 2 + 2, -math.pi, -math.pi / 2, char, backcolor, textcolor)
  527.     surf:fillPie(x2, y1, x2 - radius * 2 - 2, y1 + radius * 2 + 2, 0, -math.pi / 2, char, backcolor, textcolor)
  528.     surf:fillPie(x1, y2, x1 + radius * 2 + 2, y2 - radius * 2 - 2, math.pi, math.pi / 2, char, backcolor, textcolor)
  529.     surf:fillPie(x2, y2, x2 - radius * 2 - 2, y2 - radius * 2 - 2, 0, math.pi / 2, char, backcolor, textcolor)
  530. end,
  531.  
  532. drawTriangle = function(surf, x1, y1, x2, y2, x3, y3, char, backcolor, textcolor)
  533.     surf:drawLine(x1, y1, x2, y2, char, backcolor, textcolor)
  534.     surf:drawLine(x2, y2, x3, y3, char, backcolor, textcolor)
  535.     surf:drawLine(x3, y3, x1, y1, char, backcolor, textcolor)
  536. end,
  537.  
  538. fillTriangle = function(surf, x1, y1, x2, y2, x3, y3, char, backcolor, textcolor)
  539.     local minX, minY, maxX, maxY = x1, y1, x1, y1
  540.     if x2 < minX then minX = x2 end
  541.     if x3 < minX then minX = x3 end
  542.     if y2 < minY then minY = y2 end
  543.     if y3 < minY then minY = y3 end
  544.     if x2 > maxX then maxX = x2 end
  545.     if x3 > maxX then maxX = x3 end
  546.     if y2 > maxY then maxY = y2 end
  547.     if y3 > maxY then maxY = y3 end
  548.     local width, height, buffer, min, max = maxX - minX + 1, maxY - minY + 1, { }, 0, 0
  549.     _bufferLine(buffer, width, x1 - minX + 1, y1 - minY + 1, x2 - minX + 1, y2 - minY + 1)
  550.     _bufferLine(buffer, width, x2 - minX + 1, y2 - minY + 1, x3 - minX + 1, y3 - minY + 1)
  551.     _bufferLine(buffer, width, x3 - minX + 1, y3 - minY + 1, x1 - minX + 1, y1 - minY + 1)
  552.     for j=1,height do
  553.         min, max = nil, 0
  554.         for i=1,width,1 do
  555.             if buffer[(j - 1) * width + i] then
  556.                 if not min then min = i end
  557.                 if i > max then max = i end
  558.             end
  559.         end
  560.         _drawHLine(surf, min + minX - 1, max + minX - 1, j + minY - 1, char, backcolor, textcolor)
  561.     end
  562. end,
  563.  
  564. drawTriangles = function(surf, points, mode, char, backcolor, textcolor)
  565.     mode = mode or 1
  566.     if mode == 1 then
  567.         for i=1,#points,6 do
  568.             surf:drawTriangle(points[i], points[i+1], points[i+2], points[i+3], points[i+4], points[i+5], char, backcolor, textcolor)
  569.         end
  570.     elseif mode == 2 then
  571.         local lastx, lasty, prevx, prevy, curx, cury = points[1], points[2], points[3], points[4]
  572.         for i=5,#points,2 do
  573.             curx, cury = points[i], points[i+1]
  574.             surf:drawTriangle(lastx, lasty, prevx, prevy, curx, cury, char, backcolor, textcolor)
  575.             lastx, lasty, prevx, prevy = prevx, prevy, curx, cury
  576.         end
  577.     elseif mode == 3 then
  578.         local midx, midy, lastx, lasty, curx, cury = points[1], points[2], points[3], points[4]
  579.         for i=5,#points,2 do
  580.             curx, cury = points[i], points[i+1]
  581.             surf:drawTriangle(midx, midy, lastx, lasty, curx, cury, char, backcolor, textcolor)
  582.             lastx, lasty = curx, cury
  583.         end
  584.     end
  585. end,
  586.  
  587. fillTriangles = function(surf, points, mode, char, backcolor, textcolor)
  588.     mode = mode or 1
  589.     if mode == 1 then
  590.         for i=1,#points,6 do
  591.             surf:fillTriangle(points[i], points[i+1], points[i+2], points[i+3], points[i+4], points[i+5], char, backcolor, textcolor)
  592.         end
  593.     elseif mode == 2 then
  594.         local lastx, lasty, prevx, prevy, curx, cury = points[1], points[2], points[3], points[4]
  595.         for i=5,#points,2 do
  596.             curx, cury = points[i], points[i+1]
  597.             surf:fillTriangle(lastx, lasty, prevx, prevy, curx, cury, char, backcolor, textcolor)
  598.             lastx, lasty, prevx, prevy = prevx, prevy, curx, cury
  599.         end
  600.     elseif mode == 3 then
  601.         local midx, midy, lastx, lasty, curx, cury = points[1], points[2], points[3], points[4]
  602.         for i=5,#points,2 do
  603.             curx, cury = points[i], points[i+1]
  604.             surf:fillTriangle(midx, midy, lastx, lasty, curx, cury, char, backcolor, textcolor)
  605.             lastx, lasty = curx, cury
  606.         end
  607.     end
  608. end,
  609.  
  610. drawEllipse = function(surf, x1, y1, x2, y2, char, backcolor, textcolor)
  611.     if x1 > x2 then
  612.         local temp = x1
  613.         x1, x2 = x2, temp
  614.     end
  615.     if y1 > y2 then
  616.         local temp = y1
  617.         y1, y2 = y2, temp
  618.     end
  619.     local step, midX, midY, width, height, lastX, lastY = (math.pi * 2) / 16, (x1 + x2) / 2, (y1 + y2) / 2, (x2 - x1) / 2, (y2 - y1) / 2, 1, 1
  620.     for i=1,17,1 do
  621.         local x, y = math.floor((midX + math.cos(step * i) * width) + 0.5), math.floor((midY + math.sin(step * i) * height) + 0.5)
  622.         if i > 1 then
  623.             surf:drawLine(lastX, lastY, x, y, char, backcolor, textcolor)
  624.         end
  625.         lastX, lastY = x, y
  626.     end
  627. end,
  628.  
  629. fillEllipse = function(surf, x1, y1, x2, y2, char, backcolor, textcolor)
  630.     if x1 > x2 then
  631.         local temp = x1
  632.         x1, x2 = x2, temp
  633.     end
  634.     if y1 > y2 then
  635.         local temp = y1
  636.         y1, y2 = y2, temp
  637.     end
  638.     local resolution, step, midX, midY, width, height, lastX, lastY, bwidth, bheight, buffer = 16, (math.pi * 2) / 16, (x1 + x2) / 2, (y1 + y2) / 2, (x2 - x1) / 2, (y2 - y1) / 2, 1, 1, x2 - x1 + 1, y2 - y1 + 1, { }
  639.     for i=1,resolution+1,1 do
  640.         local x, y = math.floor((midX + math.cos(step * i) * width) + 0.5), math.floor((midY + math.sin(step * i) * height) + 0.5)
  641.         if i > 1 then
  642.             _bufferLine(buffer, bwidth, lastX - x1 + 1, lastY - y1 + 1, x - x1 + 1, y - y1 + 1)
  643.         end
  644.         lastX, lastY = x, y
  645.     end
  646.     for j=1,bheight do
  647.         min, max = nil, 0
  648.         for i=1,bwidth,1 do
  649.             if buffer[(j - 1) * bwidth + i] then
  650.                 if not min then min = i end
  651.                 if i > max then max = i end
  652.             end
  653.         end
  654.         _drawHLine(surf, min + x1 - 1, max + x1 - 1, j + y1 - 1, char, backcolor, textcolor)
  655.     end
  656. end,
  657.  
  658. drawArc = function(surf, x1, y1, x2, y2, a1, a2, char, backcolor, textcolor)
  659.     if x1 > x2 then
  660.         local temp = x1
  661.         x1, x2 = x2, temp
  662.     end
  663.     if y1 > y2 then
  664.         local temp = y1
  665.         y1, y2 = y2, temp
  666.     end
  667.     if a1 > a2 then
  668.         local temp = a1
  669.         a1, a2 = a2, temp
  670.     end
  671.     local step, midX, midY, width, height, lastX, lastY = (a2 - a1) / 16, (x1 + x2) / 2, (y1 + y2) / 2, (x2 - x1) / 2, (y2 - y1) / 2, 1, 1
  672.     for i=1,17,1 do
  673.         local x, y = math.floor((midX + math.cos(step * (i - 1) + a1) * width) + 0.5), math.floor((midY + math.sin(step * (i - 1) + a1) * height) + 0.5)
  674.         if i > 1 then
  675.             surf:drawLine(lastX, lastY, x, y, char, backcolor, textcolor)
  676.         end
  677.         lastX, lastY = x, y
  678.     end
  679. end,
  680.  
  681. drawPie = function(surf, x1, y1, x2, y2, a1, a2, char, backcolor, textcolor)
  682.     if x1 > x2 then
  683.         local temp = x1
  684.         x1, x2 = x2, temp
  685.     end
  686.     if y1 > y2 then
  687.         local temp = y1
  688.         y1, y2 = y2, temp
  689.     end
  690.     if a1 > a2 then
  691.         local temp = a1
  692.         a1, a2 = a2, temp
  693.     end
  694.     local step, midX, midY, width, height, lastX, lastY = (a2 - a1) / 16, (x1 + x2) / 2, (y1 + y2) / 2, (x2 - x1) / 2, (y2 - y1) / 2, 1, 1
  695.     for i=1,17,1 do
  696.         local x, y = math.floor((midX + math.cos(step * (i - 1) + a1) * width) + 0.5), math.floor((midY + math.sin(step * (i - 1) + a1) * height) + 0.5)
  697.         if i > 1 then
  698.             surf:drawLine(lastX, lastY, x, y, char, backcolor, textcolor)
  699.         end
  700.         lastX, lastY = x, y
  701.     end
  702.     surf:drawLine(math.floor(midX + 0.5), math.floor(midY + 0.5), math.floor((midX + math.cos(a1) * width) + 0.5), math.floor((midY + math.sin(a1) * height) + 0.5), char, backcolor, textcolor)
  703.     surf:drawLine(math.floor(midX + 0.5), math.floor(midY + 0.5), math.floor((midX + math.cos(a2) * width) + 0.5), math.floor((midY + math.sin(a2) * height) + 0.5), char, backcolor, textcolor)
  704. end,
  705.  
  706. fillPie = function(surf, x1, y1, x2, y2, a1, a2, char, backcolor, textcolor)
  707.     if x1 > x2 then
  708.         local temp = x1
  709.         x1, x2 = x2, temp
  710.     end
  711.     if y1 > y2 then
  712.         local temp = y1
  713.         y1, y2 = y2, temp
  714.     end
  715.     if a1 > a2 then
  716.         local temp = a1
  717.         a1, a2 = a2, temp
  718.     end
  719.     local step, midX, midY, width, height, lastX, lastY, bwidth, bheight, buffer = (a2 - a1) / 16, (x1 + x2) / 2, (y1 + y2) / 2, (x2 - x1) / 2, (y2 - y1) / 2, 1, 1, x2 - x1 + 1, y2 - y1 + 1, { }
  720.     for i=1,17,1 do
  721.         local x, y = math.floor((midX + math.cos(step * (i - 1) + a1) * width) + 0.5), math.floor((midY + math.sin(step * (i - 1) + a1) * height) + 0.5)
  722.         if i > 1 then
  723.             _bufferLine(buffer, bwidth, lastX - x1 + 1, lastY - y1 + 1, x - x1 + 1, y - y1 + 1)
  724.         end
  725.         lastX, lastY = x, y
  726.     end
  727.     _bufferLine(buffer, bwidth, math.floor(midX + 0.5) - x1 + 1, math.floor(midY + 0.5) - y1 + 1, math.floor((midX + math.cos(a1) * width) + 0.5) - x1 + 1, math.floor((midY + math.sin(a1) * height) + 0.5) - y1 + 1)
  728.     _bufferLine(buffer, bwidth, math.floor(midX + 0.5) - x1 + 1, math.floor(midY + 0.5) - y1 + 1, math.floor((midX + math.cos(a2) * width) + 0.5) - x1 + 1, math.floor((midY + math.sin(a2) * height) + 0.5) - y1 + 1)
  729.     for j=1,bheight do
  730.         min, max = nil, 0
  731.         for i=1,bwidth,1 do
  732.             if buffer[(j - 1) * bwidth + i] then
  733.                 if not min then min = i end
  734.                 if i > max then max = i end
  735.             end
  736.         end
  737.         if min then
  738.             _drawHLine(surf, min + x1 - 1, max + x1 - 1, j + y1 - 1, char, backcolor, textcolor)
  739.         end
  740.     end
  741. end,
  742.  
  743. floodFill = function(surf, x, y, char, backcolor, textcolor)
  744.     if x < surf.x1 or y < surf.y1 or x > surf.x2 or y > surf.y2 then return end
  745.     local stack, tchar, tbackcolor, ttextcolor = { x, y }, surf.buffer[((y - 1) * surf.width + x) * 3 - 2], surf.buffer[((y - 1) * surf.width + x) * 3 - 1], surf.buffer[((y - 1) * surf.width + x) * 3]
  746.     if (tchar == char) and (tbackcolor == backcolor) and (ttextcolor == textcolor) then return end
  747.     while #stack > 0 do
  748.         local cx, cy = stack[#stack - 1], stack[#stack]
  749.         stack[#stack] = nil
  750.         stack[#stack] = nil
  751.         if cx >= surf.x1 and cy >= surf.y1 and cx <= surf.x2 and cy <= surf.y2 then
  752.             local cchar, cbackcolor, ctextcolor = surf.buffer[((cy - 1) * surf.width + cx) * 3 - 2], surf.buffer[((cy - 1) * surf.width + cx) * 3 - 1], surf.buffer[((cy - 1) * surf.width + cx) * 3]
  753.             if (tchar == cchar) and (tbackcolor == cbackcolor) and (ttextcolor == ctextcolor) then
  754.                 if char or surf.overwrite then
  755.                     surf.buffer[((cy - 1) * surf.width + cx) * 3 - 2] = char
  756.                 end
  757.                 if backcolor or surf.overwrite then
  758.                     surf.buffer[((cy - 1) * surf.width + cx) * 3 - 1] = backcolor
  759.                 end
  760.                 if textcolor or surf.overwrite then
  761.                     surf.buffer[((cy - 1) * surf.width + cx) * 3] = textcolor
  762.                 end
  763.                 stack[#stack + 1] = cx - 1
  764.                 stack[#stack + 1] = cy
  765.                 stack[#stack + 1] = cx + 1
  766.                 stack[#stack + 1] = cy
  767.                 stack[#stack + 1] = cx
  768.                 stack[#stack + 1] = cy - 1
  769.                 stack[#stack + 1] = cx
  770.                 stack[#stack + 1] = cy + 1
  771.             end
  772.         end
  773.     end
  774. end,
  775.  
  776. drawSurface = function(surf, x, y, surf2)
  777.     for j=1,surf2.height,1 do
  778.         for i=1,surf2.width,1 do
  779.             surf:drawPixel(i + x - 1, j + y - 1, surf2.buffer[((j - 1) * surf2.width + i) * 3 - 2], surf2.buffer[((j - 1) * surf2.width + i) * 3 - 1], surf2.buffer[((j - 1) * surf2.width + i) * 3])
  780.         end
  781.     end
  782. end,
  783.  
  784. drawSurfacePart = function(surf, x, y, sx1, sy1, sx2, sy2, surf2)
  785.     if sx1 > sx2 then
  786.         local temp = sx1
  787.         sx1, sx2 = sx2, temp
  788.     end
  789.     if sy1 > sy2 then
  790.         local temp = sy1
  791.         sy1, sy2 = sy2, temp
  792.     end
  793.     if sx2 < 1 or sx1 > surf2.width or sy2 < 1 or sy1 > surf2.height then return end
  794.     if sx1 < 1 then sx1 = 1 end
  795.     if sx2 > surf2.width then sx2 = surf2.width end
  796.     if sy1 < 1 then sy1 = 1 end
  797.     if sy2 > surf2.height then sy2 = surf2.height end
  798.     for j=sy1,sy2,1 do
  799.         for i=sx1,sx2,1 do
  800.             surf:drawPixel(x + i - sx1, y + j - sy1, surf2.buffer[((j - 1) * surf2.width + i) * 3 - 2], surf2.buffer[((j - 1) * surf2.width + i) * 3 - 1], surf2.buffer[((j - 1) * surf2.width + i) * 3])
  801.         end
  802.     end
  803. end,
  804.  
  805. drawSurfaceScaled = function(surf, x1, y1, x2, y2, surf2)
  806.     local x, width, xinv, y, height, yinv = 0, 0, false, 0, 0, false
  807.     if x1 <= x2 then
  808.         x = x1
  809.         width = x2 - x1 + 1
  810.     else
  811.         x = x2
  812.         width = x1 - x2 + 1
  813.         xinv = true
  814.     end
  815.     if y1 <= y2 then
  816.         y = y1
  817.         height = y2 - y1 + 1
  818.     else
  819.         y = y2
  820.         height = y1 - y2 + 1
  821.         yinv = true
  822.     end
  823.     local xscale, yscale, px, py = width / surf2.width, height / surf2.height
  824.     for j=1,height,1 do
  825.         for i=1,width,1 do
  826.             if xinv then
  827.                 px = math.floor((width - i + 0.5) / xscale) + 1
  828.             else
  829.                 px = math.floor((i - 0.5) / xscale) + 1
  830.             end
  831.             if yinv then
  832.                 py = math.floor((height - j + 0.5) / yscale) + 1
  833.             else
  834.                 py = math.floor((j - 0.5) / yscale) + 1
  835.             end
  836.             surf:drawPixel(x + i - 1, y + j - 1, surf2.buffer[((py - 1) * surf2.width + px) * 3 - 2], surf2.buffer[((py - 1) * surf2.width + px) * 3 - 1], surf2.buffer[((py - 1) * surf2.width + px) * 3])
  837.         end
  838.     end
  839. end,
  840.  
  841. drawSurfaceRotated = function(surf, x, y, ox, oy, angle, surf2)
  842.     local cos, sin, range = math.cos(angle), math.sin(angle), math.floor(math.sqrt(surf2.width * surf2.width + surf2.height * surf2.height))
  843.     x, y = x - math.floor(cos * (ox - 1) + sin * (oy - 1) + 0.5), y - math.floor(cos * (oy - 1) - sin * (ox - 1) + 0.5)
  844.     for j=-range,range,1 do
  845.         for i=-range,range,1 do
  846.             local sx, sy = math.floor(i * cos - j * sin), math.floor(i * sin + j * cos)
  847.             if sx >= 0 and sx < surf2.width and sy >= 0 and sy < surf2.height then
  848.                 surf:drawPixel(x + i, y + j, surf2.buffer[(sy * surf2.width + sx) * 3 + 1], surf2.buffer[(sy * surf2.width + sx) * 3 + 2], surf2.buffer[(sy * surf2.width + sx) * 3 + 3])
  849.             end
  850.         end
  851.     end
  852. end,
  853.  
  854. shader = function(surf, f, x1, y1, x2, y2)
  855.     x1, y1, x2, y2 = x1 or surf.x1, y1 or surf.y1, x2 or surf.x2, y2 or surf.y2
  856.     if x1 > x2 then
  857.         local temp = x1
  858.         x1, x2 = x2, temp
  859.     end
  860.     if y1 > y2 then
  861.         local temp = y1
  862.         y1, y2 = y2, temp
  863.     end
  864.     if x2 < surf.x1 or x1 > surf.x2 or y2 < surf.y1 or y1 > surf.y2 then return end
  865.     if x1 < surf.x1 then x1 = surf.x1 end
  866.     if x2 > surf.x2 then x2 = surf.x2 end
  867.     if y1 < surf.y1 then y1 = surf.y1 end
  868.     if y2 > surf.y2 then y2 = surf.y2 end
  869.     local width, buffer = x2 - x1 + 1, { }
  870.     for j=y1,y2 do
  871.         for i=x1,x2 do
  872.             buffer[((j - y1) * width + i - x1) * 3 + 1], buffer[((j - y1) * width + i - x1) * 3 + 2], buffer[((j - y1) * width + i - x1) * 3 + 3] = f(surf.buffer[((j - 1) * surf.width + i) * 3 - 2], surf.buffer[((j - 1) * surf.width + i) * 3 - 1], surf.buffer[((j - 1) * surf.width + i) * 3], i, j)
  873.         end
  874.     end
  875.     for j=y1,y2 do
  876.         for i=x1,x2 do
  877.             surf.buffer[((j - 1) * surf.width + i) * 3 - 2], surf.buffer[((j - 1) * surf.width + i) * 3 - 1], surf.buffer[((j - 1) * surf.width + i) * 3] = buffer[((j - y1) * width + i - x1) * 3 + 1], buffer[((j - y1) * width + i - x1) * 3 + 2], buffer[((j - y1) * width + i - x1) * 3 + 3]
  878.         end
  879.     end
  880. end,
  881.  
  882. shift = function(surf, x, y, x1, y1, x2, y2)
  883.     x1, y1, x2, y2 = x1 or surf.x1, y1 or surf.y1, x2 or surf.x2, y2 or surf.y2
  884.     if x1 > x2 then
  885.         local temp = x1
  886.         x1, x2 = x2, temp
  887.     end
  888.     if y1 > y2 then
  889.         local temp = y1
  890.         y1, y2 = y2, temp
  891.     end
  892.     if x2 < surf.x1 or x1 > surf.x2 or y2 < surf.y1 or y1 > surf.y2 then return end
  893.     if x1 < surf.x1 then x1 = surf.x1 end
  894.     if x2 > surf.x2 then x2 = surf.x2 end
  895.     if y1 < surf.y1 then y1 = surf.y1 end
  896.     if y2 > surf.y2 then y2 = surf.y2 end
  897.     local width, buffer = x2 - x1 + 1, { }
  898.     for j=y1,y2 do
  899.         for i=x1,x2 do
  900.             if i - x >= 1 and j - y >= 1 and i - x <= surf.width and j - y <= surf.height then
  901.                 buffer[((j - y1) * width + i - x1) * 3 + 1], buffer[((j - y1) * width + i - x1) * 3 + 2], buffer[((j - y1) * width + i - x1) * 3 + 3] = surf.buffer[((j - y - 1) * surf.width + i - x) * 3 - 2], surf.buffer[((j - y - 1) * surf.width + i - x) * 3 - 1], surf.buffer[((j - y - 1) * surf.width + i - x) * 3]
  902.             end
  903.         end
  904.     end
  905.     for j=y1,y2 do
  906.         for i=x1,x2 do
  907.             surf.buffer[((j - 1) * surf.width + i) * 3 - 2], surf.buffer[((j - 1) * surf.width + i) * 3 - 1], surf.buffer[((j - 1) * surf.width + i) * 3] = buffer[((j - y1) * width + i - x1) * 3 + 1], buffer[((j - y1) * width + i - x1) * 3 + 2], buffer[((j - y1) * width + i - x1) * 3 + 3]
  908.         end
  909.     end
  910. end
  911. }
  912.  
  913. function create(width, height, char, backcolor, textcolor)
  914.     local surf = { }
  915.     for k,v in pairs(_functions) do
  916.         surf[k] = v
  917.     end
  918.     surf.width, surf.height, surf.x1, surf.y1, surf.x2, surf.y2, surf.blink, surf.curX, surf.curY, surf.overwrite, surf.buffer = width, height, 1, 1, width, height, nil, 1, 1, false, { }
  919.     if char then
  920.         for i=1,width * height do
  921.             surf.buffer[i * 3 - 2] = char
  922.         end
  923.     end
  924.     if backcolor then
  925.         for i=1,width * height do
  926.             surf.buffer[i * 3 - 1] = backcolor
  927.         end
  928.     end
  929.     if textcolor then
  930.         for i=1,width * height do
  931.             surf.buffer[i * 3] = textcolor
  932.         end
  933.     end
  934.     return surf
  935. end
  936.  
  937. function load(path)
  938.     local lines, f = { }, fs.open(path, "r")
  939.     for line in f.readLine do
  940.         lines[#lines + 1] = line
  941.     end
  942.     f.close()
  943.     local height = #lines
  944.     if lines[1]:byte(1) == 30 then
  945.         local width, i = 0, 1
  946.         while i <= #lines[1] do
  947.             local char = lines[1]:byte(i)
  948.             if char == 30 or char == 31 then
  949.                 i = i + 1
  950.             else
  951.                 width = width + 1
  952.             end
  953.             i = i + 1
  954.         end
  955.         local surf, backcolor, textcolor, i, px, char, color = create(width, height)
  956.         for j=1,height do
  957.             i = 1
  958.             px = 1
  959.             while i <= #lines[j] do
  960.                 char = lines[j]:byte(i)
  961.                 if char == 30 then
  962.                     i = i + 1
  963.                     char = lines[j]:byte(i)
  964.                     color = tonumber(lines[j]:sub(i, i), 16)
  965.                     if color then
  966.                         backcolor = 2^color
  967.                     else
  968.                         backcolor = nil
  969.                     end
  970.                 elseif char == 31 then
  971.                     i = i + 1
  972.                     char = lines[j]:byte(i)
  973.                     color = tonumber(lines[j]:sub(i, i), 16)
  974.                     if color then
  975.                         textcolor = 2^color
  976.                     else
  977.                         textcolor = nil
  978.                     end
  979.                 else
  980.                     surf.buffer[((j - 1) * surf.width + px) * 3 - 2] = lines[j]:sub(i, i)
  981.                     surf.buffer[((j - 1) * surf.width + px) * 3 - 1] = backcolor
  982.                     surf.buffer[((j - 1) * surf.width + px) * 3] = textcolor
  983.                     px = px + 1
  984.                 end
  985.                 i = i + 1
  986.             end
  987.         end
  988.         return surf
  989.     elseif lines[1]:byte(1) == 95 then
  990.         return loadString(lines[1])
  991.     else
  992.         local width = 0
  993.         for i=1,#lines,1 do
  994.             if #lines[i] > width then
  995.                 width = #lines[i]
  996.             end
  997.         end
  998.         local surf, color = create(width, height)
  999.         for j=1,height do
  1000.             for i=1,width do
  1001.                 color = tonumber(lines[j]:sub(i, i), 16)
  1002.                 if color then
  1003.                     surf.buffer[((j - 1) * surf.width + i) * 3 - 1] = 2 ^ color
  1004.                 end
  1005.             end
  1006.         end
  1007.         return surf
  1008.     end
  1009. end
  1010.  
  1011. function loadString(str)
  1012.     local width, height, n = tonumber(str:sub(2, 5), 16), tonumber(str:sub(6, 9), 16), 10
  1013.     local surf = create(width, height)
  1014.     for j=1,height do
  1015.         for i=1,width do
  1016.             if str:byte(n) ~= 95 then
  1017.                 surf.buffer[((j - 1) * surf.width + i) * 3 - 2] = string.char(tonumber(str:sub(n, n + 1), 16))
  1018.             end
  1019.             if str:byte(n + 2) ~= 95 then
  1020.                 surf.buffer[((j - 1) * surf.width + i) * 3 - 1] = 2 ^ tonumber(str:sub(n + 2, n + 2), 16)
  1021.             end
  1022.             if str:byte(n + 3) ~= 95 then
  1023.                 surf.buffer[((j - 1) * surf.width + i) * 3] = 2 ^ tonumber(str:sub(n + 3, n + 3), 16)
  1024.             end
  1025.             n = n + 4
  1026.         end
  1027.     end
  1028.     return surf
  1029. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement