Advertisement
Guest User

Editor WIP

a guest
Apr 18th, 2014
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 10.43 KB | None | 0 0
  1. local running = true
  2.  
  3. local width, height = term.getSize()
  4.  
  5. local scroll = 0
  6.  
  7. local lines = {""}
  8. local cmdHist = {}
  9. local highlights = {}
  10.  
  11. local currentLine = 1
  12. local currentChar = 1
  13.  
  14. local insertMode = false
  15. local edited = false
  16.  
  17. local status = "[New File]"
  18.  
  19. local tArgs = {...}
  20.  
  21. local function trim(text)
  22.   return (text:gsub("^%s*(.-)%s*$", "%1"))
  23. end
  24.  
  25. local function splitWords(text)
  26.   local words = {}
  27.   for word in text:gmatch("%S+") do
  28.     table.insert(words, word)
  29.   end
  30.   return words
  31. end
  32.  
  33. local function sortByIndex(tab, index)
  34.   table.sort(table, function (a, b)
  35.     return (a[index] > b[index])
  36.   end)
  37. end
  38.  
  39. local function doSetColor(color, bgColor, invertOnNormal)
  40.   if term.isColor() then
  41.     term.setTextColor(color)
  42.     if bgColor ~= nil then
  43.       term.setBackgroundColor(bgColor)
  44.     end
  45.   else
  46.     if invertOnNormal then
  47.       term.setTextColor(colors.black)
  48.       term.setBackgroundColor(colors.white)
  49.     else
  50.       term.setTextColor(colors.white)
  51.       term.setBackgroundColor(colors.black)
  52.     end
  53.   end
  54. end
  55.  
  56. local function addHighlight(line, start, stop, color)
  57.   local cand = {line, start, stop, color}
  58.   for h = 1, #highlights do
  59.     local exhi = highlights[h]
  60.     if cand[1] == exhi[1] then
  61.       if cand[4] == exhi[4] then
  62.         local centered = cand[2] >= exhi[2] and cand[3] <= exhi[3]
  63.         if centered then
  64.           return
  65.         end
  66.         if cand[2] <= exhi[3]+1 and cand[3] >= exhi[2]-1 then
  67.           highlights[h][2] = math.min(cand[2], exhi[2])
  68.           highlights[h][3] = math.max(cand[3], exhi[3])
  69.           return
  70.         end
  71.       end
  72.     end
  73.   end
  74.   table.insert(highlights, cand)
  75. end
  76.  
  77. local function drawTextDisplay()
  78.   for i = 1, height-1 do
  79.     doSetColor(colors.white, colors.black)
  80.     term.setCursorPos(1, i)
  81.     term.clearLine()
  82.     if i+scroll > #lines then
  83.       doSetColor(colors.blue, colors.black, true)
  84.       term.write("~")
  85.     else
  86.       local lineh = {}
  87.       for h = 1, #highlights do
  88.         if highlights[h][1] == i then
  89.           table.insert(lineh, highlights[h])
  90.         end
  91.       end
  92.       local line = lines[i+scroll]
  93.       if #lineh > 0 then
  94.         term.write(line:sub(1, lineh[1][2]-1))
  95.         for h = 1, #lineh do
  96.           local high = lineh[h]
  97.           doSetColor(colors.white, high[4], true)
  98.           term.setCursorPos(high[2], i)
  99.           term.write(line:sub(high[2], high[3]))
  100.           doSetColor(colors.white, colors.black)
  101.           term.setCursorPos(high[3]+1, i)
  102.           if h < #lineh then
  103.             term.write(line:sub(high[3]+1, lineh[h+1][2]-1))
  104.           else
  105.             term.write(line:sub(high[3]+1, #line))
  106.           end
  107.         end
  108.       else
  109.         term.write(line)
  110.       end
  111.     end
  112.   end
  113.   doSetColor(colors.white, colors.black)  
  114. end
  115.  
  116. local function drawBottomLineDisplay()
  117.   term.setCursorPos(1, height)
  118.   local lnstr = "L"..currentLine..", C"..currentChar
  119.   term.clearLine()
  120.   local dispstatus = status
  121.   if dispstatus:sub(1, 4) == "err:" then
  122.     dispstatus = status:sub(5, #dispstatus)
  123.     doSetColor(colors.white, colors.red, true)
  124.   end
  125.   term.write(dispstatus)
  126.   doSetColor(colors.white, colors.black)
  127.   term.setCursorPos(width-#lnstr, height)
  128.   term.write(lnstr)
  129. end
  130.  
  131. local function positionCursor()
  132.   currentChar = math.min(currentChar, #lines[currentLine]+1)
  133.   local y = currentLine-scroll
  134.   local x = currentChar
  135.   term.setCursorPos(x, y)
  136. end
  137.  
  138. local function calculateScroll()
  139.   if height+scroll < currentLine then
  140.     scroll = currentLine-height+1
  141.   elseif currentLine <= scroll then
  142.     scroll = currentLine-1
  143.   end
  144. end
  145.  
  146. local function updateHighlights()
  147.   for i = 1,#highlights do
  148.     table.remove(highlights)
  149.   end
  150.   -- will do more soon
  151. end
  152.  
  153. local function moveRight()
  154.   if currentChar <= #lines[currentLine] then
  155.     currentChar = currentChar + 1
  156.   end
  157.   updateHighlights()
  158. end
  159.  
  160. local function moveLeft()
  161.   if currentChar > 1 then
  162.     currentChar = currentChar - 1
  163.   end
  164.   updateHighlights()
  165. end
  166.  
  167. local function moveUp()
  168.   if currentLine > 1 then
  169.     currentLine = currentLine - 1
  170.   end
  171.   updateHighlights()
  172. end
  173.  
  174. local function moveDown()
  175.   if currentLine < #lines then
  176.     currentLine = currentLine + 1
  177.   end
  178.   updateHighlights()
  179. end
  180.  
  181. local function insertChar(char)
  182.   local line = lines[currentLine]
  183.   if currentChar >= #line then
  184.     line = line..char
  185.   elseif currentChar == 1 then
  186.     line = char..line
  187.   else
  188.     local first = line:sub(1,currentChar-1)
  189.     local last = line:sub(currentChar, #line)
  190.     line = first..char..last
  191.   end
  192.   lines[currentLine] = line
  193.   currentChar = currentChar + 1
  194.   edited = true
  195.   updateHighlights()
  196. end
  197.  
  198. local function insertLine()
  199.   local line = lines[currentLine]
  200.   local indent = line:gsub("^(%s*).*", "%1")
  201.   if currentChar >= #line then
  202.     table.insert(lines, currentLine+1, indent)
  203.   elseif currentChar == 1 then
  204.     table.insert(lines, currentLine, indent)
  205.   else
  206.     local first = line:sub(1, currentChar-1)
  207.     local last = line:sub(currentChar, #line)
  208.     lines[currentLine] = first
  209.     table.insert(lines, currentLine+1, indent..last)
  210.   end
  211.   currentLine = currentLine + 1
  212.   currentChar = 1+#indent
  213.   edited = true
  214.   updateHighlights()
  215. end
  216.  
  217. local function deleteBefore()
  218.   if currentChar > 1 then
  219.     local line = lines[currentLine]
  220.     local first = line:sub(1, currentChar-2)
  221.     local last = line:sub(currentChar, #line)
  222.     line = first..last
  223.     lines[currentLine] = line
  224.     currentChar = currentChar - 1
  225.   elseif currentLine > 1 then
  226.     local firstLine = lines[currentLine-1]
  227.     local secondLine = lines[currentLine]
  228.     lines[currentLine-1] = firstLine..secondLine
  229.     table.remove(lines, currentLine)
  230.     currentLine = currentLine - 1
  231.     currentChar = #firstLine + 1
  232.   end
  233.   edited = true
  234. end
  235.  
  236. local function deleteAfter()
  237.   local line = lines[currentLine]
  238.   if currentChar <= #line then
  239.     local first = line:sub(1, currentChar-1)
  240.     local last = line:sub(currentChar+1, #line)
  241.     line = first..last
  242.     lines[currentLine] = line
  243.   elseif currentLine < #lines then
  244.     local firstLine = line
  245.     local secondLine = lines[currentLine+1]
  246.     lines[currentLine] = firstLine..secondLine
  247.     table.remove(lines, currentLine+1)
  248.   end
  249.   edited = true
  250. end
  251.  
  252. local function indent()
  253.   local line = lines[currentLine]
  254.   lines[currentLine] = "  "..line
  255.   currentChar = currentChar + 2
  256. end
  257.  
  258. local function runCmd(data)
  259.   if data[1] == "quit" then
  260.     if edited then
  261.       status = "err:There are unsaved changes (type quit! to force)"
  262.       return
  263.     end
  264.     running = false
  265.     return
  266.   elseif data[1] == "quit!" then
  267.     running = false
  268.     return
  269.   elseif data[1] == "nil" or data[1] == "none" then
  270.     status = ""
  271.     return
  272.   elseif data[1] == "goto" then
  273.     local line = tonumber(data[2])
  274.     if line == nil then
  275.       status = "err:Usage: goto <line_number>"
  276.       return
  277.     end
  278.     if line < 1 or line > #lines then
  279.       status = "err:Invalid line number"
  280.       return
  281.     end
  282.     currentLine = line
  283.     addHighlight(line, 1, #lines[currentLine], colors.green)
  284.     return
  285.   elseif data[1] == "save" then
  286.     if data[2] == nil then
  287.       status = "err:Usage: save <filename>"
  288.       return
  289.     end
  290.     local path = shell.resolve(data[2])
  291.     if fs.exists(path) then
  292.       status = "err:File exists (force with save!)"
  293.       return
  294.     end
  295.     runCmd({"save!", data[2]})
  296.     return
  297.   elseif data[1] == "save!" then
  298.     local path = shell.resolve(data[2])
  299.     local dir = fs.getDir(path)
  300.     if not fs.exists(dir) then
  301.       status = "err:Directory does not exist"
  302.       return
  303.     end
  304.     if fs.isReadOnly(path) then
  305.       status = "err:Location is read-only"
  306.       return
  307.     end
  308.     local handle = fs.open(path, "w")
  309.     for l = 1, #lines do
  310.       handle.writeLine(lines[l])
  311.     end
  312.     handle.flush()
  313.     handle.close()
  314.     status = "Saved as "..path:sub(#dir+1, #path)
  315.     edited = false
  316.     return
  317.   elseif data[1] == "open" then
  318.     if edited then
  319.       status = "err:Unsaved changes (force with open!)"
  320.       return
  321.     end
  322.     runCmd({"open!", data[2]})
  323.     return
  324.   elseif data[1] == "open!" then
  325.     local path = shell.resolve(data[2])
  326.     if not fs.exists(path) then
  327.       status = "err:File does not exist"
  328.       return
  329.     end
  330.     if fs.isDir(path) then
  331.       status = "err:Cannot open directory"
  332.       return
  333.     end
  334.     local handle = fs.open(path, "r")
  335.     lines = {}
  336.     while true do
  337.       local line = handle.readLine()
  338.       if line == nil then break end
  339.       table.insert(lines, line)
  340.     end
  341.     handle.close()
  342.     currentLine = 1
  343.     currentChar = 1
  344.     status = "Opened "..data[2]
  345.     edited = false
  346.     return
  347.   end
  348.   status = "err:Unknown command \""..data[1].."\""
  349. end
  350.  
  351. local function loop()
  352.   while running do
  353.     term.setCursorBlink(true)
  354.     calculateScroll()
  355.     drawTextDisplay()
  356.     drawBottomLineDisplay()
  357.     positionCursor()
  358.     ev, a, b, c = os.pullEventRaw()
  359.     if ev == "terminate" then
  360.       running = false
  361.     elseif ev == "key" then
  362.       if insertMode then
  363.         if a == keys.f1 then
  364.           insertMode = false
  365.           status = ""
  366.         elseif a == keys.enter then
  367.           insertLine()
  368.         elseif a == keys.backspace then
  369.           deleteBefore()
  370.         elseif a == keys.delete then
  371.           deleteAfter()
  372.         elseif a == keys.tab then
  373.           indent()
  374.         end
  375.       end
  376.       if a == keys.left then
  377.         moveLeft()
  378.       elseif a == keys.right then
  379.         moveRight()
  380.       elseif a == keys.up then
  381.         moveUp()
  382.       elseif a == keys.down then
  383.         moveDown()
  384.       end
  385.     elseif ev == "char" then
  386.       if insertMode then
  387.         insertChar(a)
  388.       elseif a == "i" then
  389.         insertMode = true
  390.         status = "--INSERT--"
  391.       elseif a == ":" then
  392.         term.setCursorPos(1, height)
  393.         term.write(string.rep(' ', #status))
  394.         term.setCursorPos(1, height)
  395.         term.write(":")
  396.         local cmd = read(nil, cmdHist)
  397.         if #cmdHist == 0 or cmdHist[#cmdHist] ~= trim(cmd) then
  398.           table.insert(cmdHist, trim(cmd))
  399.         end
  400.         runCmd(splitWords(cmd))
  401.       end
  402.     end
  403.   end
  404. end
  405.  
  406. if #tArgs > 0 then
  407.   local path = shell.resolve(tArgs[1])
  408.   if fs.exists(path) then
  409.     runCmd({"open", tArgs[1]})
  410.   else
  411.     status = path.." [New File]"
  412.   end
  413. end
  414.  
  415. loop()
  416. term.clear()
  417. term.setTextColor(colors.white)
  418. term.setTextColor(colors.black)
  419. term.setCursorPos(1,1)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement