Advertisement
AgentE382

Symmetryc's Buffer API, "."-style, redirect.(Fixed Untested)

Dec 18th, 2013
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. -- Buffer API, By Symmetryc
  2. -- Edited by AgentE382 to change ":" OO-syntax to "." OO-syntax. (First step to redirect target based on this.)
  3. -- Edited by AgentE382 to add preliminary redirect-target capability.
  4. -- Edited by AgentE382 to add full redirect-target functionality.
  5. -- Edited by AgentE382 to fix full redirect-target functionality.
  6. return {
  7.     new = function()
  8.         local redirectStack = {}
  9.  
  10.         local out = term.native
  11.  
  12.         local self = {
  13.             act = {pos = {}};
  14.             pos = {};
  15.             back = colors.white;
  16.             text = colors.lightGray;
  17.             blink = true
  18.         }
  19.  
  20.         function self.write(_str)
  21.             local act = self.act
  22.             local selfpos = self.pos
  23.             local append = true
  24.             if selfpos[1] ~= act.pos[1] or selfpos[2] ~= act.pos[2] then
  25.                 act[#act + 1] = {"setCursorPos", selfpos[1], selfpos[2]}
  26.                 append = false
  27.             end
  28.             if self.back ~= act.back then
  29.                 act[#act + 1] = {"setBackgroundColor", self.back}
  30.                 act.back = self.back
  31.                 append = false
  32.             end
  33.             if self.text ~= act.text then
  34.                 act[#act + 1] = {"setTextColor", self.text}
  35.                 act.text = self.text
  36.                 append = false
  37.             end
  38.             if self.blink ~= act.blink then
  39.                 act[#act + 1] = {"setCursorBlink", self.blink}
  40.                 act.blink = self.blink
  41.                 append = false
  42.             end
  43.             for line, nl in _str:gmatch("([^\n]*)(\n?)") do
  44.                 if append then
  45.                     act[#act][2] = act[#act][2]..line
  46.                     append = false
  47.                 else
  48.                     act[#act + 1] = {"write", line}
  49.                 end
  50.                 selfpos[1] = selfpos[1] + #line
  51.                 if nl == "\n" then
  52.                     selfpos[1] = 1
  53.                     selfpos[2] = selfpos[2] + 1
  54.                     act[#act + 1] = {"setCursorPos", 1, selfpos[2]}
  55.                 end
  56.             end
  57.             act.pos = {selfpos[1], selfpos[2]}
  58.             return self
  59.         end;
  60.         function self.draw(self)
  61.             for i, v in ipairs(self.act) do
  62.                 if v[3] then
  63.                     out[v[1]](v[2], v[3])
  64.                 else
  65.                     out[v[1]](v[2])
  66.                 end
  67.             end
  68.             self.act = {}
  69.             return self
  70.         end;
  71.  
  72.         function self.clear()
  73.             local a = self.act
  74.             for i = #a, 1, -1 do
  75.                 a[i] = nil
  76.             end
  77.             a.pos[1], a.pos[2], a.back, a.text, a.blink = nil
  78.             a[#a + 1] = {"clear"}
  79.             return self
  80.         end
  81.  
  82.         function self.clearLine()
  83.             local a = self.act
  84.             if a[#a][1] ~= "clearLine" then
  85.                 a[#a + 1] = {"clearLine"}
  86.             end
  87.             return self
  88.         end
  89.  
  90.         function self.getCursorPos()
  91.             local p = self.pos
  92.             return p[1], p[2]
  93.         end
  94.  
  95.         function self.setCursorPos(x, y)
  96.             local p = self.pos
  97.             p[1], p[2] = x, y
  98.             return self
  99.         end
  100.  
  101.         function self.setCursorBlink(state)
  102.             self.blink = state
  103.             return self
  104.         end
  105.  
  106.         function self.isColor()
  107.             return out.isColor and out.isColor()
  108.         end
  109.  
  110.         function self.getSize()
  111.             return out.getSize()
  112.         end
  113.  
  114.         function self.redirect(target)
  115.             redirectStack[#redirectStack + 1] = out
  116.             out = target
  117.             return self
  118.         end
  119.  
  120.         function self.restore()
  121.             out = redirectStack[#redirectStack] or out
  122.             redirectStack[#redirectStack] = nil
  123.             return self
  124.         end
  125.  
  126.         function self.scroll(n)
  127.             local a = self.act
  128.             if a[#a][1] ~= "scroll" then
  129.                 a[#a + 1] = {"scroll", n}
  130.             else
  131.                 local s = a[#a]
  132.                 s[2] = s[2] + n
  133.             end
  134.             return self
  135.         end
  136.  
  137.         function self.setTextColor(color)
  138.             self.text = color
  139.             return self
  140.         end
  141.  
  142.         function self.setBackgroundColor(color)
  143.             self.back = color
  144.             return self
  145.         end
  146.  
  147.         return self
  148.     end;
  149. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement