Advertisement
anonimo182

[CC] WordPad

Apr 14th, 2013
372
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 30.11 KB | None | 0 0
  1. local tArgs = {...}
  2. local w, h = term.getSize()
  3. local oldEvent = os.pullEvent
  4. os.pullEvent = os.pullEventRaw
  5.  
  6. local tFile = {}
  7. local tPos = {}
  8. local tEvent
  9. local nCurrent = 1
  10. local theme = {line = colors.gray, code = colors.lightGray, high = colors.black, opt = colors.lightGray, optSel = colors.blue, opt2 = colors.gray, opt2high = colors.lightGray, boxBack = colors.gray, boxTop = colors.blue, text = {bgColour = colours.black, textColour = colours.white, highlightColour = colours.yellow, keywordColour = colours.yellow, commentColour = colours.lime, stringColour = colours.red}}
  11. local options = {File = {["New..."] = new, ["Open..."] = checkOpen, ["Save..."] = save, ["Save as..."] = saveAs, ["Save all"] = saveAll, ["Close"] = close, ["Exit"] = exit}, Edit = {}, Options = {}}
  12. local config = {tab = 3}
  13. local nLimit = 7
  14.  
  15. term.setBackgroundColor(colors.black)
  16. term.clear()
  17. term.setCursorPos(1, 1)
  18.  
  19. local function init()
  20.   update()
  21.   if fs.exists(".WordPad") then
  22.     local file = fs.open(".WordPad", "r")
  23.     file.readLine()
  24.     local sPos = file.readLine()
  25.     nCur = tonumber(file.readLine())
  26.     file.close()
  27.     local tRec = textutils.unserialize(sPos)
  28.     for k, v in pairs(tRec) do
  29.       if not v["new"] and fs.exists(v["name"]) then
  30.         open(v["name"])
  31.       else
  32.         new()
  33.       end
  34.     end
  35.     tPos = tRec
  36.     nCurrent = nCur
  37.   end
  38. end
  39.  
  40. local function checkError(event)
  41.   if event == "terminate" then
  42.     os.pullEvent = oldEvent
  43.     term.setBackgroundColor(colors.black)
  44.     term.setTextColor(colors.white)
  45.     term.clear()
  46.     writeCentered("Thanks for using WordPad", 1)
  47.     writeCentered("By Anonimo182", 2)
  48.     term.setCursorPos(1, 3)
  49.     error()
  50.   end
  51. end
  52.  
  53. function writeCentered(str, y)
  54.   term.setCursorPos(w/2-#str/2, y)
  55.   write(str)
  56. end
  57.  
  58. local function drawBox(header, minX, maxX, minY, maxY)
  59.     local nCur = 1
  60.     paintutils.drawLine(minX, minY, maxX, minY, theme.boxTop)
  61.     repeat
  62.       paintutils.drawLine(minX, minY+nCur, maxX, minY+nCur, theme.boxBack)
  63.       nCur = nCur+1
  64.     until minY+nCur == maxY
  65.     term.setBackgroundColor(theme.boxTop)
  66.     term.setTextColor(colors.white)
  67.     writeCentered(header, minY)
  68. end
  69.  
  70. local function drawConfirmation(header, tText) --Draws a box and checks for answer
  71.     local nMin = w/2
  72.     drawBox(header, nMin/2, nMin+nMin/2, h/2-#tText/2-1, h/2+#tText/2+1)
  73.     local nRep = 0
  74.     term.setBackgroundColor(theme.boxBack)
  75.     for i = 1, #tText do
  76.       writeCentered(tText[i], h/2-#tText/2+i-1)
  77.     end
  78.     writeCentered("[YES] [NO] [CANCEL]", h/2+#tText/2)
  79.     while true do
  80.       local event, p1, p2, p3 = os.pullEvent()
  81.       checkError(event)
  82.       if event == "mouse_click" and p1 == 1 and p3 == math.floor(h/2+#tText/2) then
  83.         if p2 >= 16 and p2 <= 21 then
  84.           return 1
  85.         elseif p2 > 22 and p2 <= 26 then
  86.           return 2
  87.         elseif p2 > 27 and p2 <= 35 then
  88.           return 3
  89.       end
  90.     end
  91.     end
  92. end
  93.  
  94. local function drawRead(header, tText)
  95.     local nMin = w/2
  96.     drawBox(header, nMin/2, nMin+nMin/2, h/2-#tText/2-1, h/2+#tText/2+2)
  97.     local nRep = 0
  98.     term.setBackgroundColor(theme.boxBack)
  99.     term.setTextColor(colors.white)
  100.     for i = 1, #tText do
  101.       writeCentered(tText[i], h/2-#tText/2+i-1)
  102.     end
  103.     local sLast = ""
  104.     writeCentered("[YES] [NO] [CANCEL]", h/2+#tText/2+1)
  105.     term.setBackgroundColor(colors.lightGray)
  106.     term.setTextColor(colors.black)
  107.     writeCentered(string.rep(" ", 10), h/2+#tText/2)
  108.     while true do
  109.       local event, p1, p2, p3 = os.pullEvent()
  110.       checkError(event)
  111.       if event == "mouse_click" and p1 == 1 then
  112.       if p3 == math.floor(h/2+#tText/2+1) then
  113.           if p2 >= 16 and p2 <= 21 then
  114.             return 1, sLast
  115.           elseif p2 > 22 and p2 <= 26 then
  116.             return 2
  117.           elseif p2 > 27 and p2 <= 35 then
  118.             return 3
  119.          end
  120.       elseif p3 == math.floor(h/2+#tText/2) and p2 >= 20 and p2 < 30 then
  121.         term.setCursorPos(20, math.floor(h/2+#tText/2))
  122.         sLast = modRead(nil, sLast, 29)
  123.       end
  124.     end
  125.     end
  126. end
  127.  
  128. local function drawOk(header, tText)
  129.     local nMin = w/2
  130.     drawBox(header, nMin/2, nMin+nMin/2, h/2-#tText/2-1, h/2+#tText/2+1)
  131.     local nRep = 0
  132.     term.setBackgroundColor(theme.boxBack)
  133.     for i = 1, #tText do
  134.       writeCentered(tText[i], h/2-#tText/2+i-1)
  135.     end
  136.     writeCentered("[OK]", h/2+#tText/2)
  137.     while true do
  138.       local event, p1, p2, p3 = os.pullEvent()
  139.       checkError(event)
  140.       if event == "mouse_click" and p1 == 1 and p3 == math.floor(h/2+#tText/2) then
  141.         if p2 >= 23 and p2 < 27 then
  142.           return
  143.       end
  144.     end
  145.     end
  146. end
  147.  
  148. function update()
  149.   print("Collecting data for update")
  150.   if not http then return end
  151.   if not ((fs.open(shell.getRunningProgram(), "r")).readAll() == (http.get("http://pastebin.com/raw/tJq8DiQT")).readAll()) then
  152.     write("Update avaible!")
  153.     local nSel = drawConfirmation("Update", {"There is a new", "update avaible.", "You want", "to download it?"})
  154.     if nSel == 1 then
  155.       (fs.open(shell.getRunningProgram(), "w")).writeLine(http.get("http:/pastebin.com/tJq8DiQT").readAll())
  156.       error()
  157.     else
  158.       return
  159.     end
  160.   end
  161.   print("Launching WordPad")
  162. end
  163.  
  164. function modRead(_sReplaceChar, sLine, maxX)
  165.   term.setCursorBlink( true )
  166.  
  167.     local sLine = sLine or ""
  168.   local nPos = 0
  169.     if _sReplaceChar then
  170.     _sReplaceChar = string.sub( _sReplaceChar, 1, 1 )
  171.   end
  172.  
  173.   local w, h = maxX, 1
  174.   local sx, sy = term.getCursorPos()  
  175.  
  176.   local function redraw( _sCustomReplaceChar )
  177.     local nScroll = 0
  178.     if sx + nPos >= w then
  179.       nScroll = (sx + nPos) - w
  180.     end
  181.      
  182.     term.setCursorPos( sx, sy )
  183.     local sReplace = _sCustomReplaceChar or _sReplaceChar
  184.     if sReplace then
  185.       term.write( string.rep(sReplace, string.len(sLine) - nScroll) )
  186.     else
  187.       term.write( string.sub( sLine, nScroll + 1 ) )
  188.     end
  189.     term.setCursorPos( sx + nPos - nScroll, sy )
  190.   end
  191.  
  192.   while true do
  193.     local sEvent, param = os.pullEvent()
  194.     checkError(event)
  195.     if sEvent == "char" then
  196.       sLine = string.sub( sLine, 1, nPos ) .. param .. string.sub( sLine, nPos + 1 )
  197.       nPos = nPos + 1
  198.       redraw()
  199.      
  200.     elseif sEvent == "key" then
  201.         if param == keys.enter then
  202.         -- Enter
  203.         break
  204.        
  205.       elseif param == keys.left then
  206.         -- Left
  207.         if nPos > 0 then
  208.           nPos = nPos - 1
  209.           redraw()
  210.         end
  211.        
  212.       elseif param == keys.right then
  213.         -- Right        
  214.         if nPos < string.len(sLine) then
  215.           nPos = nPos + 1
  216.           redraw()
  217.         end
  218.       elseif param == keys.backspace then
  219.         -- Backspace
  220.         if nPos > 0 then
  221.           redraw(" ");
  222.           sLine = string.sub( sLine, 1, nPos - 1 ) .. string.sub( sLine, nPos + 1 )
  223.           nPos = nPos - 1        
  224.           redraw()
  225.         end
  226.       elseif param == keys.home then
  227.         -- Home
  228.         nPos = 0
  229.         redraw()    
  230.       elseif param == keys.delete then
  231.         if nPos < string.len(sLine) then
  232.           redraw(" ");
  233.           sLine = string.sub( sLine, 1, nPos ) .. string.sub( sLine, nPos + 2 )      
  234.           redraw()
  235.         end
  236.       elseif param == keys["end"] then
  237.         -- End
  238.         nPos = string.len(sLine)
  239.         redraw()
  240.       end
  241.     end
  242.   end
  243.  
  244.   term.setCursorBlink( false )
  245.   term.setCursorPos( w + 1, sy )
  246.   print()
  247.  
  248.   return sLine
  249. end
  250.  
  251. function new()
  252.   if #tFile == nLimit then return end
  253.   nCurrent = #tFile+1
  254.   tPos[nCurrent] = {}
  255.   tPos[nCurrent]["pos"] = 1
  256.   tPos[nCurrent]["init"] = 1
  257.   tPos[nCurrent]["height"] = 1
  258.   tPos[nCurrent]["name"] = "new-"..nCurrent
  259.   tPos[nCurrent]["save"] = false
  260.   tPos[nCurrent]["new"] = true
  261.   tFile[nCurrent] = {""}
  262. end
  263.  
  264. function open(sFile)
  265.   if fs.exists(sFile) and not (#tFile == nLimit) then
  266.     local file = fs.open(sFile, "r")
  267.     local sPos = #tFile+1
  268.     local sLine = file.readLine()
  269.     tFile[sPos] = {}
  270.     tPos[sPos] = {}
  271.     repeat
  272.       table.insert(tFile[sPos], sLine)
  273.       sLine = file.readLine()
  274.     until sLine == nil
  275.     file.close()
  276.     tPos[sPos]["pos"] = 1
  277.     tPos[sPos]["init"] = 1
  278.     tPos[sPos]["height"] = 1
  279.     tPos[sPos]["name"] = sFile
  280.     tPos[sPos]["save"] = true
  281.   end
  282. end
  283.  
  284. local function close()
  285.   if #tFile == 1 then return end
  286.   if not tPos[nCurrent]["save"] then
  287.     local nSel = drawConfirmation("Closing", {"Are you sure you want", "to close the document?", "There are unsaved changes", "You want to save", "those changes?"})
  288.     if nSel == 1 then
  289.       save()
  290.     elseif nSel == 3 then
  291.       return
  292.     end
  293.   end
  294.   table.remove(tFile, nCurrent)
  295.   table.remove(tPos, nCurrent)
  296.   nCurrent = 1
  297. end
  298.  
  299. local function openCheck()
  300.   local tText = {"Open a document", "Hint: Remember that", "if the document", "is a folder, ", "it will open the folder!"}
  301.   local nSel, sRes = drawRead("Open", tText)
  302.   if nSel == 1 then
  303.     open(sRes)
  304.   elseif nSel == 2 or nSel == 3 then
  305.     return
  306.   end
  307. end
  308.  
  309. function save()
  310.   if tPos[nCurrent]["new"] then saveAs() return end
  311.   local nClock = os.clock()
  312.   local file = fs.open(tPos[nCurrent]["name"], "w")
  313.   for k, v in pairs(tFile[nCurrent]) do
  314.       file.writeLine(v)
  315.   end
  316.   file.close()
  317.   tPos[nCurrent]["save"] = true
  318. end
  319.  
  320. function saveAs()
  321.   local nSel, sRes = drawRead("Save as", {"Save the document", "as:"})
  322.   if nSel == 1 then
  323.     tPos[nCurrent]["name"] = sRes
  324.     tPos[nCurrent]["new"] = false
  325.     save()
  326.   elseif nSel == 2 or nSel == 3 then
  327.     return
  328.   end
  329. end
  330.  
  331. local function saveAll()
  332.   oldCurrent = nCurrent
  333.   for k, v in pairs(tFile) do
  334.     nCurrent = k
  335.     save()
  336.   end
  337.   nCurrent = oldCurrent
  338. end
  339.  
  340. local function exit()
  341.   local tUns = {"The following files", "have not been", "saved:"}
  342.   local bCheck = false
  343.   for i = 1, #tPos do
  344.     if not tPos[i]["save"] then
  345.       table.insert(tUns, tPos[i]["name"])
  346.       bCheck = true
  347.     end
  348.   end
  349.   os.pullEvent = oldEvent
  350.   if bCheck then
  351.     table.insert(tUns, "You want to save them?")
  352.     local nSel = drawConfirmation("Exiting", tUns)
  353.     local file = fs.open(".WordPad", "w")
  354.     file.writeLine("WordPad config file-Please don't change anything unless you know what are you doing!")
  355.     file.writeLine(textutils.serialize(tPos))
  356.     file.writeLine(tostring(nCurrent))
  357.     file.close()
  358.     if nSel == 1 then
  359.       saveAll()
  360.     elseif nSel == 2 then
  361.       term.setBackgroundColor(colors.black)
  362.       term.clear()
  363.       term.setCursorPos(1, 1)
  364.       error()
  365.     elseif nSel == 3 then
  366.       return
  367.     end
  368.   end
  369.   term.setBackgroundColor(colors.black)
  370.   term.clear()
  371.   term.setCursorPos(1, 1)
  372.   error()
  373. end
  374.  
  375. sClipboard = ""
  376.  
  377. local function copy()
  378.   sClipboard = tFile[nCurrent][tPos[nCurrent]["height"]+tPos[nCurrent]["init"]-1]
  379. end
  380.  
  381. local function cut()
  382.   sClipboard = tFile[nCurrent][tPos[nCurrent]["height"]+tPos[nCurrent]["init"]-1]
  383.   table.remove(tFile[nCurrent], tPos[nCurrent]["height"]+tPos[nCurrent]["init"]-1)
  384. end
  385.  
  386. local function paste()
  387.   table.insert(tFile[nCurrent], tPos[nCurrent]["height"]+tPos[nCurrent]["init"]-1, sClipboard)
  388. end
  389.  
  390. function goto(nAns)
  391.   local sAns, nSel
  392.   if not nAns then
  393.     nSel, sAns = drawRead("Go to", {"Go to line:"})
  394.     if nSel == 1 then
  395.       local nAns = tonumber(sAns)
  396.     elseif nSel == 2 or nSel == 3 then
  397.       return
  398.     end
  399.   end
  400.   nAns = tonumber(sAns)
  401.   if nAns then
  402.   tPos[nCurrent]["pos"] = 1
  403.   tPos[nCurrent]["height"] = 1
  404.   tPos[nCurrent]["init"] = nAns
  405.   end
  406. end
  407.  
  408. local function find()
  409.   nSel, sAns = drawRead("Find", {"Find the word:"})
  410.   if nSel == 1 then
  411.     tFinds = {"Found word:", "'"..sAns.."'", "in lines:"}
  412.     for k, v in pairs(tFile[nCurrent]) do
  413.       if string.find(v, sAns, 1, true) then
  414.         table.insert(tFinds, tostring(k))
  415.       end
  416.     end
  417.     drawOk("Find", tFinds)
  418.   elseif nSel == 2 or nSel == 3 then
  419.     return
  420.   end
  421. end
  422.  
  423. local function run(...)
  424.   local sRun = ""
  425.   local tArgs = {...}
  426.   for k, v in pairs(tFile[nCurrent]) do
  427.     sRun = sRun..v
  428.   end
  429.   local fRun = loadstring(sRun, tPos[nCurrent]["name"])
  430.   term.setBackgroundColor(colors.black)
  431.   term.setTextColor(colors.white)
  432.   term.clear()
  433.   term.setCursorPos(1, 1)
  434.   os.pullEvent = oldEvent
  435.   local ok, err = pcall(function() fRun(unpack(tArgs)) end)
  436.   os.pullEvent = os.pullEventRaw
  437.   if ok or not err then
  438.     term.setTextColor(colors.white)
  439.     writeCentered(string.rep("-", w/2-4).."(Sucess)"..string.rep("-", w/2-4), h-1)
  440.     writeCentered("Press key or click to continue...", h)
  441.   elseif err then
  442.     term.setTextColor(colors.red)
  443.     local tErr = {}
  444.     local nPos1 = string.find(err, ":")
  445.     local nPos2 = string.find(err, ":", nPos1+1)
  446.     table.insert(tErr, string.sub(err, nPos1+1, nPos2-1))
  447.     table.insert(tErr, string.sub(err, nPos2+1))
  448.     writeCentered(string.rep("-", w/2-3).."(Fail)"..string.rep("-", w/2-3), h-3)
  449.     goto(tErr[1])
  450.     writeCentered("On line: "..tErr[1], h-2)
  451.     writeCentered("With error: "..tErr[2], h-1)
  452.     writeCentered("Press key or click to continue...", h)
  453.   end
  454.   repeat
  455.     local event = os.pullEvent()
  456.     checkError(event)
  457.   until event == "mouse_click" or event == "key"
  458. end
  459.  
  460. local function runArgs()
  461.   local nSel, sRes = drawRead("Run with Args", {"Enter the args", "to run:"})
  462.     if nSel == 1 then
  463.       run(sRes)
  464.     elseif nSel == 2 or nSel == 3 then
  465.       return
  466.     end
  467. end
  468.  
  469. local function about()
  470.   drawOk("About", {"WordPad", "", "By Anonimo182"})
  471. end
  472.  
  473. local options = {File = {"New...", "Open...", "Save...", "Save as", "Save All", "Close", "Exit"}, Edit = {"Copy", "Cut", "Paste", "Go To...", "Find", ["Copy"] = copy, ["Cut"] = cut, ["Paste"] = paste, ["Go To..."] = goto, ["Find"] = find}, Options = {"Run", "Run with Args", "About", ["Run"] = run, ["Run with Args"] = runArgs, ["About"] = about}}
  474. options["File"]["New..."] = new
  475. options["File"]["Open..."] = openCheck
  476. options["File"]["Save..."] = save
  477. options["File"]["Save as"] = saveAs
  478. options["File"]["Save All"] = saveAll
  479. options["File"]["Close"] = close
  480. options["File"]["Exit"] = exit
  481.  
  482. local function checkOptions(sOption, nOption)
  483.   local nOption = nOption or 1
  484.   local sOption = sOption or "File"
  485.   local nFar
  486.   term.setCursorBlink(false)
  487.   while true do
  488.     term.setCursorPos(1, 1)
  489.     local nLast = 1
  490.     redraw()
  491.     for k, v in pairs(options) do
  492.       if k == sOption then
  493.         term.setBackgroundColor(theme.optSel)
  494.         term.setTextColor(colors.white)
  495.       else
  496.         term.setBackgroundColor(theme.opt)
  497.         term.setTextColor(colors.black)
  498.       end
  499.       term.setCursorPos(nLast, 1)
  500.       nRep = nLast
  501.       nLast = #k+1+nLast
  502.       write(k)
  503.       term.setTextColor(colors.black)
  504.       term.setBackgroundColor(theme.opt)
  505.       write("|")
  506.       if k == sOption then
  507.       nStart = nRep
  508.       nFar = 1
  509.       for a, s in ipairs(v) do if #s > nFar then nFar = #s end end
  510.       for a, s in ipairs(v) do
  511.         if a == nOption then
  512.           term.setBackgroundColor(theme.optSel)
  513.           term.setTextColor(colors.white)
  514.         else
  515.           term.setBackgroundColor(theme.opt)
  516.           term.setTextColor(colors.black)
  517.         end
  518.         term.setCursorPos(nRep, a+1)
  519.         write(s..string.rep(" ", nFar-#s))
  520.       end
  521.       end
  522.     end
  523.   local event, p1, p2, p3 = os.pullEvent()
  524.   checkError(event)
  525.   if event == "mouse_click" and p1 == 1 then
  526.     if p2 >= nStart and p2 < nStart+nRep-3 and p3 > 1 and p3 < #options[sOption]+2 then
  527.       local nSel = p3 - 1
  528.       options[sOption][options[sOption][nSel]]()
  529.       term.setCursorBlink(true)
  530.       return
  531.     elseif p3 == 1 then
  532.       if p2 >= 1 and p2 < 5 then
  533.         sOption = "File"
  534.       elseif p2 > 5 and p2 < 10 then
  535.         sOption = "Edit"      
  536.       elseif p2 > 10 and p2 < 18 then
  537.         sOption = "Options"
  538.       end
  539.     else
  540.       term.setCursorBlink(true)
  541.       return
  542.     end
  543.   elseif event == "key" then
  544.     if p1 == 205 then --Right key
  545.       if sOption == "File" then
  546.         sOption = "Edit"
  547.         nOption = 1
  548.       elseif sOption == "Edit" then
  549.         sOption = "Options"
  550.         nOption = 1
  551.       elseif sOption == "Options" then
  552.         sOption = "File"
  553.         nOption = 1
  554.       end
  555.     elseif p1 == 203 then
  556.       if sOption == "Edit" then
  557.         sOption = "File"
  558.         nOption = 1
  559.       elseif sOption == "Options" then
  560.         sOption = "Edit"
  561.         nOption = 1
  562.       elseif sOption == "File" then
  563.         sOption = "Options"
  564.         nOption = 1
  565.       end
  566.     elseif p1 == 200 then
  567.       if nOption > 1 then nOption = nOption-1 else nOption = #options[sOption] end
  568.     elseif p1 == 208 then
  569.       if nOption < #options[sOption] then nOption = nOption+1 else nOption = 1 end
  570.     elseif p1 == 28 then
  571.       options[sOption][options[sOption][nOption]]()
  572.       term.setCursorBlink(true)
  573.       return
  574.     end
  575.   end
  576.   if os.clock()-nClock >= 0.75 then
  577.     os.startTimer(0.8)
  578.     nClock = os.clock()
  579.   end
  580. end
  581. end
  582.  
  583. local tKeywords = {
  584.   ["and"] = true,
  585.   ["break"] = true,
  586.   ["do"] = true,
  587.   ["else"] = true,
  588.   ["elseif"] = true,
  589.   ["end"] = true,
  590.   ["false"] = true,
  591.   ["for"] = true,
  592.   ["function"] = true,
  593.   ["if"] = true,
  594.   ["in"] = true,
  595.   ["local"] = true,
  596.   ["nil"] = true,
  597.   ["not"] = true,
  598.   ["or"] = true,
  599.   ["repeat"] = true,
  600.   ["return"] = true,
  601.   ["then"] = true,
  602.   ["true"] = true,
  603.   ["until"]= true,
  604.   ["while"] = true,
  605. }
  606.  
  607. local function tryWrite( sLine, regex, colour ) --Complementary for syntax highlighting
  608.   local match = string.match( sLine, regex )
  609.   if match then
  610.     if type(colour) == "number" then
  611.       term.setTextColour( colour )
  612.     else
  613.       term.setTextColour( colour(match) )
  614.     end
  615.     term.write( match )
  616.     term.setTextColour( theme.text.textColour )
  617.     return string.sub( sLine, string.len(match) + 1 )
  618.   end
  619.   return nil
  620. end
  621.  
  622. local function writeHighlighted( sLine ) --Syntax Highlighting (Thanks edit program!)
  623.   while string.len(sLine) > 0 do  
  624.     sLine =
  625.       tryWrite( sLine, "^%-%-%[%[.-%]%]", theme.text.commentColour ) or
  626.       tryWrite( sLine, "^%-%-.*", theme.text.commentColour ) or
  627.       tryWrite( sLine, "^\".-[^\\]\"", theme.text.stringColour ) or
  628.       tryWrite( sLine, "^\'.-[^\\]\'", theme.text.stringColour ) or
  629.       tryWrite( sLine, "^%[%[.-%]%]", theme.text.stringColour ) or
  630.       tryWrite( sLine, "^[%w_]+", function( match )
  631.         if tKeywords[ match ] then
  632.           return theme.text.keywordColour
  633.         end
  634.         return theme.text.textColour
  635.       end ) or
  636.       tryWrite( sLine, "^[^%w_]", theme.text.textColour )
  637.   end
  638. end
  639.  
  640. function redraw()
  641.   term.setBackgroundColor(theme.code)
  642.   term.clear()
  643.   local nLines = #tFile[nCurrent]
  644.   local i = 1
  645.   local nRep = tostring(nLines)
  646.   term.setCursorPos(1, 1)
  647.   term.setBackgroundColor(theme.opt)
  648.   term.setTextColor(colors.black)
  649.   for k, v in pairs(options) do write(k.."|") end
  650.   local sTime = textutils.formatTime(os.time(), false)
  651.   term.setCursorPos(w-#sTime+1, 1)
  652.   write(sTime)
  653.   term.setCursorPos(1, 2)
  654.   local nTabs = math.floor((w-1)/#tFile)
  655.   for k, v in pairs(tFile) do
  656.     if k == nCurrent then
  657.       term.setBackgroundColor(theme.opt2high)
  658.       if not tPos[k]["save"] then
  659.         term.setTextColor(colors.red)
  660.       else
  661.         term.setTextColor(colors.white)
  662.       end
  663.       term.write(string.sub(tPos[k]["name"], 1, nTabs-2)..string.rep(" ", nTabs-#tPos[k]["name"]-1).."|")
  664.     else
  665.       term.setBackgroundColor(theme.opt2)
  666.       if not tPos[k]["save"] then
  667.         term.setTextColor(colors.red)
  668.       else
  669.         term.setTextColor(colors.black)
  670.       end
  671.       term.write(string.sub(tPos[k]["name"], 1, nTabs-2)..string.rep(" ", nTabs-#tPos[k]["name"]-1).."|")
  672.     end
  673.   end
  674.   term.setBackgroundColor(theme.opt2)
  675.   term.setTextColor(colors.black)
  676.   term.setCursorPos(w, 2)
  677.   write("+")
  678.   if tPos[nCurrent]["pos"] >= w-#nRep then
  679.     nStart = tPos[nCurrent]["pos"]-w+#nRep+1
  680.   else
  681.     nStart = 1
  682.   end
  683.   repeat
  684.     term.setCursorPos(1, i+2)
  685.     term.setBackgroundColor(theme.line)
  686.     term.setTextColor(colors.white)
  687.     write(tostring(tPos[nCurrent]["init"]+i-1))
  688.     if #tostring(tPos[nCurrent]["init"]+i-1) < #nRep then write(string.rep(" ", #nRep-#tostring(tPos[nCurrent]["init"]+i-1))) end
  689.     term.setCursorPos(#nRep+1, i+2)
  690.     if i == tPos[nCurrent]["height"] then term.setBackgroundColor (theme.high) else term.setBackgroundColor(theme.code) end
  691.     writeHighlighted(string.sub(tFile[nCurrent][tPos[nCurrent]["init"]+i-1], nStart))
  692.     term.write(string.rep(" ", w))
  693.     i = i+1
  694.   until i > h-2 or i > #tFile[nCurrent]
  695.   term.setCursorPos(tPos[nCurrent]["pos"]+#nRep-nStart+1, tPos[nCurrent]["height"]+2)
  696. end
  697.  
  698.  
  699. print("Loaded functions")
  700. init()
  701.  
  702. if tArgs[1] then open(tArgs[1]) elseif #tFile == 0 then new() end
  703. term.setCursorBlink(true)
  704. nClock = os.clock()
  705. os.startTimer(0.8)
  706.  
  707. while true do
  708.   redraw()
  709.   event, p1, p2, p3 = os.pullEvent()
  710.   checkError(event)
  711.   if event == "key" or event == "mouse_scroll" then
  712.     if p1 == 208 or p1 == -1 then --Down Key or down scroll
  713.       if tPos[nCurrent]["height"]+tPos[nCurrent]["init"] <= #tFile[nCurrent] then
  714.         tPos[nCurrent]["height"] = tPos[nCurrent]["height"]+1
  715.       end
  716.       if tPos[nCurrent]["height"] > h-2 and (tPos[nCurrent]["init"]+tPos[nCurrent]["height"] < #tFile[nCurrent]+2) then --Check for outbounds
  717.         tPos[nCurrent]["height"] = tPos[nCurrent]["height"]-1
  718.         tPos[nCurrent]["init"] = tPos[nCurrent]["init"]+1
  719.       end
  720.       if #tFile[nCurrent][(tPos[nCurrent]["height"]+tPos[nCurrent]["init"]-1)] < tPos[nCurrent]["pos"] then --Check for correct cursor pos
  721.           tPos[nCurrent]["pos"] = #tFile[nCurrent][(tPos[nCurrent]["height"]+tPos[nCurrent]["init"]-1)]+1
  722.       end
  723.     elseif p1 == 200 or p1 == 1 then --Up key or up scroll
  724.       if tPos[nCurrent]["init"] > 1 or tPos[nCurrent]["height"] > 1 then
  725.         tPos[nCurrent]["height"] = tPos[nCurrent]["height"]-1
  726.       end
  727.       if tPos[nCurrent]["height"] < 1 and (tPos[nCurrent]["init"] > 1) then --Check for outbounds
  728.         tPos[nCurrent]["height"] = tPos[nCurrent]["height"]+1
  729.         tPos[nCurrent]["init"] = tPos[nCurrent]["init"]-1
  730.       end
  731.       if #tFile[nCurrent][tPos[nCurrent]["height"]+tPos[nCurrent]["init"]-1] < tPos[nCurrent]["pos"] then --Check for correct cursor pos
  732.           tPos[nCurrent]["pos"] = #tFile[nCurrent][(tPos[nCurrent]["height"]+tPos[nCurrent]["init"]-1)]+1
  733.       end
  734.     elseif p1 == 205 then --Right key
  735.       if #tFile[nCurrent][tPos[nCurrent]["height"]+tPos[nCurrent]["init"]-1]+1 > tPos[nCurrent]["pos"] then --Checks if to move right or down
  736.         tPos[nCurrent]["pos"] = tPos[nCurrent]["pos"]+1
  737.       elseif not (tPos[nCurrent]["height"]+tPos[nCurrent]["init"]-1 == #tFile[nCurrent]) then
  738.         tPos[nCurrent]["height"] = tPos[nCurrent]["height"]+1
  739.         tPos[nCurrent]["pos"] = 1
  740.         if tPos[nCurrent]["height"] > h-2 and (tPos[nCurrent]["init"]+tPos[nCurrent]["height"] < #tFile[nCurrent]+2) then --Check for outbounds
  741.           tPos[nCurrent]["height"] = tPos[nCurrent]["height"]-1
  742.           tPos[nCurrent]["init"] = tPos[nCurrent]["init"]+1
  743.         end
  744.       end
  745.     elseif p1 == 203 then --Left key
  746.       if tPos[nCurrent]["pos"] > 1 then --Checks to go left or up
  747.         tPos[nCurrent]["pos"] = tPos[nCurrent]["pos"]-1
  748.       elseif not (tPos[nCurrent]["init"] == 1 and tPos[nCurrent]["height"] == 1) then
  749.         tPos[nCurrent]["height"] = tPos[nCurrent]["height"]-1
  750.         tPos[nCurrent]["pos"] = #tFile[nCurrent][tPos[nCurrent]["height"]+tPos[nCurrent]["init"]-1]+1
  751.         if tPos[nCurrent]["height"] < 1 and (tPos[nCurrent]["init"] > 1) then --Check for outbounds
  752.           tPos[nCurrent]["height"] = tPos[nCurrent]["height"]+1
  753.           tPos[nCurrent]["init"] = tPos[nCurrent]["init"]-1
  754.         end
  755.       end
  756.     elseif p1 == 28 then --Enter
  757.       tPos[nCurrent]["save"] = false
  758.       table.insert(tFile[nCurrent], tPos[nCurrent]["height"]+tPos[nCurrent]["init"], string.sub(tFile[nCurrent][tPos[nCurrent]["height"]+tPos[nCurrent]["init"]-1], tPos[nCurrent]["pos"]).."")
  759.       tFile[nCurrent][tPos[nCurrent]["height"]+tPos[nCurrent]["init"]-1] = string.sub(tFile[nCurrent][tPos[nCurrent]["height"]+tPos[nCurrent]["init"]-1], 1, tPos[nCurrent]["pos"]-1)
  760.       tPos[nCurrent]["pos"] = 1
  761.       tPos[nCurrent]["height"] = tPos[nCurrent]["height"]+1
  762.       if tPos[nCurrent]["height"] > h-2 and (tPos[nCurrent]["init"]+tPos[nCurrent]["height"] < #tFile[nCurrent]+2) then --Check for outbounds
  763.         tPos[nCurrent]["height"] = tPos[nCurrent]["height"]-1
  764.         tPos[nCurrent]["init"] = tPos[nCurrent]["init"]+1
  765.       end
  766.       if string.find(tFile[nCurrent][tPos[nCurrent]["height"]+tPos[nCurrent]["init"]-2], string.rep(" ", config.tab)) then
  767.         local nMul = 1
  768.         local bFind = true
  769.         repeat
  770.           if string.find(tFile[nCurrent][tPos[nCurrent]["height"]+tPos[nCurrent]["init"]-2], string.rep(" ", config.tab), config.tab*nMul) then
  771.             nMul = nMul+1
  772.           else
  773.             bFind = false
  774.           end
  775.         until not bFind
  776.         tFile[nCurrent][tPos[nCurrent]["height"]+tPos[nCurrent]["init"]-1] = string.rep(" ", (config.tab*nMul))..tFile[nCurrent][tPos[nCurrent]["height"]+tPos[nCurrent]["init"]-1]
  777.         tPos[nCurrent]["pos"] = config.tab*nMul+1
  778.       end
  779.     elseif p1 == 14 then --Backspace
  780.       tPos[nCurrent]["save"] = false
  781.       if tPos[nCurrent]["pos"] > 1 then
  782.         tFile[nCurrent][tPos[nCurrent]["height"]+tPos[nCurrent]["init"]-1] = string.sub(tFile[nCurrent][tPos[nCurrent]["height"]+tPos[nCurrent]["init"]-1], 1, tPos[nCurrent]["pos"]-2)..string.sub(tFile[nCurrent][tPos[nCurrent]["height"]+tPos[nCurrent]["init"]-1], tPos[nCurrent]["pos"])
  783.         tPos[nCurrent]["pos"] = tPos[nCurrent]["pos"]-1
  784.       elseif not (tPos[nCurrent]["init"] == 1 and tPos[nCurrent]["height"] == 1) then
  785.         tPos[nCurrent]["pos"] = #tFile[nCurrent][tPos[nCurrent]["height"]+tPos[nCurrent]["init"]-2]+1
  786.         tFile[nCurrent][tPos[nCurrent]["height"]+tPos[nCurrent]["init"]-2] = tFile[nCurrent][tPos[nCurrent]["height"]+tPos[nCurrent]["init"]-2]..tFile[nCurrent][tPos[nCurrent]["height"]+tPos[nCurrent]["init"]-1]
  787.         table.remove(tFile[nCurrent], tPos[nCurrent]["height"]+tPos[nCurrent]["init"]-1)
  788.         tPos[nCurrent]["height"] = tPos[nCurrent]["height"]-1
  789.         if tPos[nCurrent]["height"] < 1 and (tPos[nCurrent]["init"] > 1) then --Check for outbounds
  790.           tPos[nCurrent]["height"] = tPos[nCurrent]["height"]+1
  791.           tPos[nCurrent]["init"] = tPos[nCurrent]["init"]-1
  792.         end
  793.       end
  794.     elseif p1 == 211 then --Delete
  795.       tPos[nCurrent]["save"] = false
  796.       if tPos[nCurrent]["pos"] < #tFile[nCurrent][tPos[nCurrent]["height"]+tPos[nCurrent]["init"]-1]+1 then
  797.         tFile[nCurrent][tPos[nCurrent]["height"]+tPos[nCurrent]["init"]-1] = string.sub(tFile[nCurrent][tPos[nCurrent]["height"]+tPos[nCurrent]["init"]-1], 1, tPos[nCurrent]["pos"]-1)..string.sub(tFile[nCurrent][tPos[nCurrent]["height"]+tPos[nCurrent]["init"]-1], tPos[nCurrent]["pos"]+1)
  798.         tPos[nCurrent]["pos"] = tPos[nCurrent]["pos"]
  799.       elseif not (tPos[nCurrent]["init"]+tPos[nCurrent]["height"] >= #tFile[nCurrent]) then
  800.         tFile[nCurrent][tPos[nCurrent]["height"]+tPos[nCurrent]["init"]-1] = tFile[nCurrent][tPos[nCurrent]["height"]+tPos[nCurrent]["init"]-1]..tFile[nCurrent][tPos[nCurrent]["height"]+tPos[nCurrent]["init"]]
  801.         table.remove(tFile[nCurrent], tPos[nCurrent]["height"]+tPos[nCurrent]["init"])
  802.       end
  803.     elseif p1 == 199 then --Home
  804.       tPos[nCurrent]["pos"] = 1
  805.     elseif p1 == 207 then --End
  806.       tPos[nCurrent]["pos"] = #tFile[nCurrent][tPos[nCurrent]["height"]+tPos[nCurrent]["init"]-1]+1
  807.     elseif p1 == 201 then --Page Down
  808.       if tPos[nCurrent]["height"] > 1 then
  809.         tPos[nCurrent]["height"] = 1
  810.       elseif not (tPos[nCurrent]["init"]-h+2 < 1) then
  811.         tPos[nCurrent]["init"] = tPos[nCurrent]["init"]-h+2
  812.       end
  813.     elseif p1 == 209 then --Page Up
  814.       if tPos[nCurrent]["height"] < h-2 and not (h-2 > #tFile[nCurrent]) then
  815.         tPos[nCurrent]["height"] = h-2
  816.       elseif not (tPos[nCurrent]["init"]+h+h-4 >= #tFile[nCurrent]) then
  817.         tPos[nCurrent]["init"] = tPos[nCurrent]["init"]+h-2
  818.       end
  819.     elseif p1 == 15 then --Tab
  820.       tPos[nCurrent]["save"] = false
  821.       tFile[nCurrent][tPos[nCurrent]["height"]+tPos[nCurrent]["init"]-1] = string.rep(" ", config.tab)..tFile[nCurrent][tPos[nCurrent]["height"]+tPos[nCurrent]["init"]-1]
  822.       tPos[nCurrent]["pos"] = tPos[nCurrent]["pos"]+3
  823.     elseif p1 == 29 then
  824.       checkOptions("File")
  825.     end
  826.   end
  827.   if event == "char" then
  828.     tPos[nCurrent]["save"] = false
  829.     if #tFile[nCurrent][tPos[nCurrent]["height"]+tPos[nCurrent]["init"]-1] > 0 then
  830.     tFile[nCurrent][tPos[nCurrent]["height"]+tPos[nCurrent]["init"]-1] = string.sub(tFile[nCurrent][tPos[nCurrent]["height"]+tPos[nCurrent]["init"]-1], 1, tPos[nCurrent]["pos"]-1)..p1..string.sub(tFile[nCurrent][tPos[nCurrent]["height"]+tPos[nCurrent]["init"]-1], tPos[nCurrent]["pos"])
  831.     else
  832.     tFile[nCurrent][tPos[nCurrent]["height"]+tPos[nCurrent]["init"]-1] = p1
  833.     end
  834.     tPos[nCurrent]["pos"] = tPos[nCurrent]["pos"]+1
  835.   end
  836.   if event == "mouse_click" then
  837.     local nLines = #tFile[nCurrent]
  838.     local nRep = tostring(nLines)
  839.     if p3 > 2 and p1 == 1 and p3 < h and p2 > #nRep and p3-2 <= #tFile[nCurrent] then
  840.       local nFile = #tFile[nCurrent]
  841.       local nFile = tostring(nFile)
  842.       tPos[nCurrent]["pos"] = p2 - #nFile
  843.       tPos[nCurrent]["height"] = p3 - 2
  844.       if tFile[nCurrent][tPos[nCurrent]["height"]+tPos[nCurrent]["init"]-1] then
  845.         if #tFile[nCurrent][tPos[nCurrent]["height"]+tPos[nCurrent]["init"]-1] < tPos[nCurrent]["pos"] then --Check for correct cursor pos
  846.           tPos[nCurrent]["pos"] = #tFile[nCurrent][(tPos[nCurrent]["height"]+tPos[nCurrent]["init"]-1)]+1
  847.         end
  848.       end
  849.     elseif p1 == 1 and p3 == 2 then
  850.       if p2 < w then
  851.         local nTabs = math.floor((w-1)/#tFile)
  852.         nCurrent = math.floor(p2/nTabs)+1
  853.       else
  854.         new()
  855.       end
  856.     elseif p1 == 1 and p3 == 1 then
  857.       if p2 >= 1 and p2 < 5 then
  858.         checkOptions("File")
  859.       elseif p2 > 5 and p2 < 10 then
  860.         checkOptions("Edit")
  861.       elseif p2 > 10 and p2 < 18 then
  862.         checkOptions("Options")
  863.       end
  864.     end
  865.   end
  866.   if os.clock()-nClock >= 0.75 then
  867.     os.startTimer(0.8)
  868.     nClock = os.clock()
  869.   end
  870. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement