Advertisement
jesusthekiller

TermPlus

Aug 13th, 2013
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 5.13 KB | None | 0 0
  1. --[[
  2.     Project info:
  3.    
  4.     Name: TermPlus API
  5.     Creator: Jesusthekiller
  6.     Language: Lua (CC)
  7.     Website: None
  8.     License: GNU GPL
  9.         License file can be fount at www.jesusthekiller.com/license-gpl.html
  10.  
  11.     Version: 1.0
  12. ]]--
  13.  
  14. --[[
  15.     Changelog:
  16.       1.0:
  17.         Public Release
  18. ]]--
  19.  
  20. --[[
  21.     LICENSE:
  22.    
  23.     TermPlus API - Terminal Extended!
  24.     Copyright (c) 2013 Jesusthekiller
  25.  
  26.     This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
  27.  
  28.     This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  29.  
  30.     See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.
  31. ]]--
  32.  
  33. -- Term backup
  34. local oldTerm = {}
  35. for k,v in pairs(term) do
  36.     oldTerm[k] = v
  37. end
  38.  
  39. -- Overrides table
  40. local overrides = {}
  41.  
  42. -- Colors API
  43. colors.isValid = function(color)
  44.     color = tonumber(color) or error("Expected number", 2)
  45.     return (color > 0 and color < 65535) and true or false
  46. end
  47.  
  48. colors.isSingle = function(color)
  49.     for _,v in pairs(colors) do
  50.         if color == v and type(v) == "number" then
  51.             return true
  52.         end
  53.     end
  54.     return false
  55. end
  56.  
  57. colours.isValid = colors.isValid
  58. colours.isSingle = colors.isSingle
  59.  
  60. -- Term API - setColor override
  61. local color = {}
  62. color.txt = colors.white  -- Initialize
  63. color.bkg = colors.black
  64.  
  65. overrides.setTextColor = function(c)
  66.     if colors.isSingle(c) then
  67.         color.txt = c
  68.         oldTerm.setTextColor(c)
  69.     else
  70.         error("Color code expected!", 2)
  71.     end
  72. end
  73. overrides.setTextColour = overrides.setTextColor
  74.  
  75. overrides.setBackgroundColor = function(c)
  76.     if colors.isSingle(c) then
  77.         color.txt = c
  78.         oldTerm.setBackgroundColor(c)
  79.     else
  80.         error("Color code expected!", 2)
  81.     end
  82. end
  83. overrides.setBackgroundColour = overrides.setBackgroundColor
  84.  
  85. -- Term API - getColor
  86. overrides.getTextColor = function()
  87.     return color.txt
  88. end
  89. overrides.getTextColour = overrides.getTextColor
  90.  
  91. overrides.getBackgroundColor = function()
  92.     return color.bkg
  93. end
  94. overrides.getBackgroundColour = overrides.getBackgroundColor
  95.  
  96. -- Buffer
  97. local buffer = {}
  98. buffer.buffer = {}
  99.  
  100. buffer.reset = function()
  101.     local maxx, maxy = term.getSize()
  102.     buffer.buffer = {}
  103.    
  104.     for i = 1, maxy do
  105.         buffer.buffer[i] = {}
  106.     end
  107. end
  108.  
  109. buffer.clear = function(txt, bkg)
  110.     txt = txt or overrides.getTextColor()
  111.     bkg = bkg or overrides.getBackgroundColor()
  112.    
  113.     local maxx, maxy = term.getSize()
  114.    
  115.     for i = 1, maxy do -- Set X
  116.         buffer.buffer[i] = {}
  117.         for j = 1, maxx do -- Set Y
  118.             buffer.buffer[i][j] = {
  119.                 ['char'] = " ",
  120.                 ['txt'] = txt,
  121.                 ['bkg'] = bkg,
  122.             }
  123.         end
  124.     end
  125. end
  126.  
  127. buffer.clearLine = function(y, txt, bkg)
  128.     y = y or ({term.getCursorPos()})[2]
  129.     txt = txt or overrides.getTextColor()
  130.     bkg = bkg or overrides.getBackgroundColor()
  131.    
  132.     local maxx, maxy = term.getSize()
  133.    
  134.     for x = 1, maxx do -- Clear Line
  135.         buffer.buffer[y][x] = {
  136.             ['char'] = " ",
  137.             ['txt'] = txt,
  138.             ['bkg'] = bkg,
  139.         }
  140.     end
  141. end
  142.  
  143. buffer.setPixel = function(char, x, y, txt, bkg)
  144.     char = char or error("Character expected", 2)
  145.     x = x or term.getCursorPos()
  146.     y = y or ({term.getCursorPos()})[2]
  147.     txt = txt or overrides.getTextColor()
  148.     bkg = bkg or overrides.getBackgroundColor()
  149.    
  150.     buffer.buffer[y][x] = {
  151.         ['char'] = char,
  152.         ['txt'] = txt,
  153.         ['bkg'] = bkg
  154.     }
  155. end
  156.  
  157. buffer.scroll = function(lines)
  158.     local maxx, maxy = term.getSize()
  159.     local lines = lines or error("Number expected", 2)
  160.    
  161.     -- Move up 
  162.     for y = 1, maxy - lines do
  163.         buffer.buffer[y] = buffer.buffer[y+lines]
  164.     end
  165.    
  166.     -- Reset last lines
  167.     for y = maxy - lines, maxy do
  168.         buffer.clearLine(y)
  169.     end
  170. end
  171.  
  172. -- Term API - overrides
  173. overrides.write = function(text)
  174.     local maxx, maxy = term.getSize()
  175.     text = tostring(text) or ""
  176.    
  177.     for i = 1, #text do -- Loop trough all chars, print them and store
  178.         local char = text:sub(i,i)
  179.         local x, y = term.getCursorPos()
  180.        
  181.         if x > 0 and x <= maxx and y > 0 and y <= maxy then
  182.             buffer.setPixel(char, x, y)
  183.             oldTerm.write(char)
  184.         end
  185.     end
  186. end
  187.  
  188. overrides.clear = function()
  189.     buffer.clear()
  190.     oldTerm.clear()
  191. end
  192.  
  193. overrides.clearLine = function()
  194.     buffer.clearLine()
  195.     oldTerm.clearLine()
  196. end
  197.  
  198. overrides.scroll = function(lines)
  199.     lines = lines or error("No lines count specified!", 2)
  200.     buffer.scroll(lines)
  201.     oldTerm.scroll(lines)
  202. end
  203.  
  204. -- Term API - getPixel/frame
  205. overrides.getPixel = function(x, y)
  206.     x = x or error("No X axis specified!", 2)
  207.     y = y or error("No Y axis specified!", 2)
  208.    
  209.     return buffer.buffer[y][x]['char'], buffer.buffer[y][x]['txt'], buffer.buffer[y][x]['bkg']
  210. end
  211.  
  212. -- Restore function
  213. overrides.unloadPlusAPI = function()
  214.     for k,_ in pairs(overrides) do
  215.         term[k] = nil
  216.     end
  217.    
  218.     for k,v in pairs(oldTerm) do
  219.         term[k] = v
  220.     end
  221.    
  222.     colors.isValid = nil
  223.     colors.isSingle = nil
  224. end
  225.  
  226. -- Initialize Buffer
  227. buffer.reset()
  228.  
  229. -- Replace term functions
  230. for k,v in pairs(overrides) do
  231.     term[k] = v
  232. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement