Advertisement
Guest User

Tekkit-compatible CC1.4 editor

a guest
Nov 10th, 2012
168
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 10.60 KB | None | 0 0
  1. -- Get file to edit
  2. local tArgs = { ... }
  3. if #tArgs == 0 then
  4.     print( "Usage: edit <path>" )
  5.     return
  6. end
  7.  
  8. -- Error checking
  9. local sPath = shell.resolve( tArgs[1] )
  10. local bReadOnly = fs.isReadOnly( sPath )
  11. if fs.exists( sPath ) and fs.isDir( sPath ) then
  12.     print( "Cannot edit a directory." )
  13.     return
  14. end
  15.  
  16. local x,y = 1,1
  17. local w,h = term.getSize()
  18. local scrollX, scrollY = 0,0
  19.  
  20. local tLines = {}
  21. local bRunning = true
  22.  
  23. -- Menus
  24. local bMenu = false
  25. local nMenuItem = 1
  26. local tMenuItems = {"Save", "Exit"}
  27. local sStatus = "Press Ctrl to access menu"
  28.  
  29. local function load(_sPath)
  30.     tLines = {}
  31.     if fs.exists( _sPath ) then
  32.         local file = io.open( _sPath, "r" )
  33.         local sLine = file:read()
  34.         while sLine do
  35.             table.insert( tLines, sLine )
  36.             sLine = file:read()
  37.         end
  38.         file:close()
  39.     end
  40.    
  41.     if #tLines == 0 then
  42.         table.insert( tLines, "" )
  43.     end
  44. end
  45.  
  46. local function save( _sPath )
  47.     -- Create intervening folder
  48.     local sDir = sPath:sub(1, sPath:len() - fs.getName(sPath):len() )
  49.     if not fs.exists( sDir ) then
  50.         fs.makeDir( sDir )
  51.     end
  52.  
  53.     -- Save
  54.     local file = nil
  55.     local function innerSave()
  56.         file = fs.open( _sPath, "w" )
  57.         if file then
  58.             for n, sLine in ipairs( tLines ) do
  59.                 file.write( sLine .. "\n" )
  60.             end
  61.         else
  62.             error( "Failed to open ".._sPath )
  63.         end
  64.     end
  65.    
  66.     local ok = pcall( innerSave )
  67.     if file then
  68.         file.close()
  69.     end
  70.     return ok
  71. end
  72.  
  73. local tKeywords = {
  74.     ["and"] = true,
  75.     ["break"] = true,
  76.     ["do"] = true,
  77.     ["else"] = true,
  78.     ["elseif"] = true,
  79.     ["end"] = true,
  80.     ["false"] = true,
  81.     ["for"] = true,
  82.     ["function"] = true,
  83.     ["if"] = true,
  84.     ["in"] = true,
  85.     ["local"] = true,
  86.     ["nil"] = true,
  87.     ["not"] = true,
  88.     ["or"] = true,
  89.     ["repeat"] = true,
  90.     ["return"] = true,
  91.     ["then"] = true,
  92.     ["true"] = true,
  93.     ["until"]= true,
  94.     ["while"] = true,
  95. }
  96.  
  97. local function tryWrite( sLine, regex)
  98.     local match = string.match( sLine, regex )
  99.     if match then
  100.         term.write( match )
  101.         return string.sub( sLine, string.len(match) + 1 )
  102.     end
  103.     return nil
  104. end
  105.  
  106. local function writeHighlighted( sLine )
  107.     while string.len(sLine) > 0 do 
  108.         sLine =
  109.             tryWrite( sLine, "^%-%-%[%[.-%]%]") or
  110.             tryWrite( sLine, "^%-%-.*") or
  111.             tryWrite( sLine, "^\".-[^\\]\"") or
  112.             tryWrite( sLine, "^\'.-[^\\]\'") or
  113.             tryWrite( sLine, "^%[%[.-%]%]") or
  114.             tryWrite( sLine, "^[%w_]+") or
  115.             tryWrite( sLine, "^[^%w_]")
  116.     end
  117. end
  118.  
  119. local function redrawText()
  120.     for y=1,h-1 do
  121.         term.setCursorPos( 1 - scrollX, y )
  122.         term.clearLine()
  123.  
  124.         local sLine = tLines[ y + scrollY ]
  125.         if sLine ~= nil then
  126.             writeHighlighted( sLine )
  127.         end
  128.     end
  129.     term.setCursorPos( x - scrollX, y - scrollY )
  130. end
  131.  
  132. local function redrawLine(_nY)
  133.     local sLine = tLines[_nY]
  134.     term.setCursorPos( 1 - scrollX, _nY - scrollY )
  135.     term.clearLine()
  136.     writeHighlighted( sLine )
  137.     term.setCursorPos( x - scrollX, _nY - scrollY )
  138. end
  139.  
  140. local function setLeftStatus()
  141. end
  142.  
  143. local function redrawMenu()
  144.     term.setCursorPos( 1, h )
  145.     term.clearLine()
  146.  
  147.     local sLeft, sRight
  148.     local nLeftColour, nLeftHighlight1, nLeftHighlight2
  149.     if bMenu then
  150.         local sMenu = ""
  151.         for n,sItem in ipairs( tMenuItems ) do
  152.             if n == nMenuItem then
  153.                 nLeftHighlight1 = sMenu:len() + 1
  154.                 nLeftHighlight2 = sMenu:len() + sItem:len() + 2
  155.             end
  156.             sMenu = sMenu.." "..sItem.." "
  157.         end
  158.         sLeft = sMenu
  159.     else
  160.         sLeft = sStatus
  161.     end
  162.    
  163.     -- Left goes last so that it can overwrite the line numbers.
  164.     sRight = "Ln "..y
  165.     term.setCursorPos( w-sRight:len() + 1, h )
  166.     term.write(sRight)
  167.  
  168.     sRight = tostring(y)
  169.     term.setCursorPos( w-sRight:len() + 1, h )
  170.     term.write(sRight)
  171.  
  172.     if sLeft then
  173.         term.setCursorPos( 1, h )
  174.         term.write(sLeft)      
  175.         if nLeftHighlight1 then
  176.             term.setCursorPos( nLeftHighlight1, h )
  177.             term.write( "[" )
  178.             term.setCursorPos( nLeftHighlight2, h )
  179.             term.write( "]" )
  180.         end
  181.     end
  182.    
  183.     -- Cursor highlights selection
  184.     term.setCursorPos( x - scrollX, y - scrollY )
  185. end
  186.  
  187. local tMenuFuncs = {
  188.     Save=function()
  189.         if bReadOnly then
  190.             sStatus = "Access denied"
  191.         else
  192.             local ok, err = save( sPath )
  193.             if ok then
  194.                 sStatus="Saved to "..sPath
  195.             else
  196.                 sStatus="Error saving to "..sPath
  197.             end
  198.         end
  199.         redrawMenu()
  200.     end,
  201.     Exit=function()
  202.         bRunning = false
  203.     end
  204. }
  205.  
  206. local function doMenuItem( _n )
  207.     tMenuFuncs[tMenuItems[_n]]()
  208.     if bMenu then
  209.         bMenu = false
  210.         term.setCursorBlink( true )
  211.     end
  212.     redrawMenu()
  213. end
  214.  
  215. local function setCursor( x, y )
  216.     local screenX = x - scrollX
  217.     local screenY = y - scrollY
  218.    
  219.     local bRedraw = false
  220.     if screenX < 1 then
  221.         scrollX = x - 1
  222.         screenX = 1
  223.         bRedraw = true
  224.     elseif screenX > w then
  225.         scrollX = x - w
  226.         screenX = w
  227.         bRedraw = true
  228.     end
  229.    
  230.     if screenY < 1 then
  231.         scrollY = y - 1
  232.         screenY = 1
  233.         bRedraw = true
  234.     elseif screenY > h-1 then
  235.         scrollY = y - (h-1)
  236.         screenY = h-1
  237.         bRedraw = true
  238.     end
  239.    
  240.     if bRedraw then
  241.         redrawText()
  242.     end
  243.     term.setCursorPos( screenX, screenY )
  244.    
  245.     -- Statusbar now pertains to menu, it would probably be safe to redraw the menu on every key event.
  246.     redrawMenu()
  247. end
  248.  
  249. -- Actual program functionality begins
  250. load(sPath)
  251.  
  252. term.clear()
  253. term.setCursorPos(x,y)
  254. term.setCursorBlink( true )
  255.  
  256. redrawText()
  257. redrawMenu()
  258.  
  259. -- Handle input
  260. while bRunning do
  261.     local sEvent, param, param2, param3 = os.pullEvent()
  262.     if sEvent == "key" then
  263.         if param == keys.up then
  264.             -- Up
  265.             if not bMenu then
  266.                 if y > 1 then
  267.                     -- Move cursor up
  268.                     y = y - 1
  269.                     x = math.min( x, string.len( tLines[y] ) + 1 )
  270.                     setCursor( x, y )
  271.                 end
  272.             end
  273.         elseif param == keys.down then
  274.             -- Down
  275.             if not bMenu then
  276.                 -- Move cursor down
  277.                 if y < #tLines then
  278.                     y = y + 1
  279.                     x = math.min( x, string.len( tLines[y] ) + 1 )
  280.                     setCursor( x, y )
  281.                 end
  282.             end
  283.         elseif param == keys.tab then
  284.             -- Tab
  285.             if not bMenu then
  286.                 local sLine = tLines[y]
  287.  
  288.                 -- Indent line
  289.                 -- IN CASE OF INSERT TAB IN PLACE:
  290.                 -- tLines[y] = string.sub(sLine,1,x-1) .. "  " .. string.sub(sLine,x)
  291.                 tLines[y]="  "..tLines[y]
  292.                 x = x + 2
  293.                 setCursor( x, y )
  294.                 redrawLine(y)
  295.             end
  296.         elseif param == keys.pageUp then
  297.             -- Page Up
  298.             if not bMenu then
  299.                 -- Move up a page
  300.                 local sx,sy=term.getSize()
  301.                 y=y-sy-1
  302.                 if y<1 then y=1 end
  303.                 x = math.min( x, string.len( tLines[y] ) + 1 )
  304.                 setCursor( x, y )
  305.             end
  306.         elseif param == keys.pageDown then
  307.             -- Page Down
  308.             if not bMenu then
  309.                 -- Move down a page
  310.                 local sx,sy=term.getSize()
  311.                 if y<#tLines-sy-1 then
  312.                     y = y+sy-1
  313.                 else
  314.                     y = #tLines
  315.                 end
  316.                 x = math.min( x, string.len( tLines[y] ) + 1 )
  317.                 setCursor( x, y )
  318.             end
  319.         elseif param == keys.home then
  320.             -- Home
  321.             if not bMenu then
  322.                 -- Move cursor to the beginning
  323.                 x=1
  324.                 setCursor(x,y)
  325.             end
  326.         elseif param == keys["end"] then
  327.             -- End
  328.             if not bMenu then
  329.                 -- Move cursor to the end
  330.                 x = string.len( tLines[y] ) + 1
  331.                 setCursor(x,y)
  332.             end
  333.         elseif param == keys.left then
  334.             -- Left
  335.             if not bMenu then
  336.                 if x > 1 then
  337.                     -- Move cursor left
  338.                     x = x - 1
  339.                 elseif x==1 and y>1 then
  340.                     x = string.len( tLines[y-1] ) + 1
  341.                     y = y - 1
  342.                 end
  343.                 setCursor( x, y )
  344.             else
  345.                 -- Move menu left
  346.                 nMenuItem = nMenuItem - 1
  347.                 if nMenuItem < 1 then
  348.                     nMenuItem = #tMenuItems
  349.                 end
  350.                 redrawMenu()
  351.             end
  352.         elseif param == keys.right then
  353.             -- Right
  354.             if not bMenu then
  355.                 if x < string.len( tLines[y] ) + 1 then
  356.                     -- Move cursor right
  357.                     x = x + 1
  358.                 elseif x==string.len( tLines[y] ) + 1 and y<#tLines then
  359.                     x = 1
  360.                     y = y + 1
  361.                 end
  362.                 setCursor( x, y )
  363.             else
  364.                 -- Move menu right
  365.                 nMenuItem = nMenuItem + 1
  366.                 if nMenuItem > #tMenuItems then
  367.                     nMenuItem = 1
  368.                 end
  369.                 redrawMenu()
  370.             end
  371.         elseif param == keys.delete then
  372.             -- Delete
  373.             if not bMenu then
  374.                 if  x < string.len( tLines[y] ) + 1 then
  375.                     local sLine = tLines[y]
  376.                     tLines[y] = string.sub(sLine,1,x-1) .. string.sub(sLine,x+1)
  377.                     redrawLine(y)
  378.                 elseif y<#tLines then
  379.                     tLines[y] = tLines[y] .. tLines[y+1]
  380.                     table.remove( tLines, y+1 )
  381.                     redrawText()
  382.                     redrawMenu()
  383.                 end
  384.             end
  385.         elseif param == keys.backspace then
  386.             -- Backspace
  387.             if not bMenu then
  388.                 if x > 1 then
  389.                     -- Remove character
  390.                     local sLine = tLines[y]
  391.                     tLines[y] = string.sub(sLine,1,x-2) .. string.sub(sLine,x)
  392.                     redrawLine(y)
  393.            
  394.                     x = x - 1
  395.                     setCursor( x, y )
  396.                 elseif y > 1 then
  397.                     -- Remove newline
  398.                     local sPrevLen = string.len( tLines[y-1] )
  399.                     tLines[y-1] = tLines[y-1] .. tLines[y]
  400.                     table.remove( tLines, y )
  401.                     redrawText()
  402.                
  403.                     x = sPrevLen + 1
  404.                     y = y - 1
  405.                     setCursor( x, y )
  406.                 end
  407.             end
  408.         elseif param == keys.enter then
  409.             -- Enter
  410.             if not bMenu then
  411.                 -- Newline
  412.                 local sLine = tLines[y]
  413.                 local _,spaces=string.find(sLine,"^[ ]+")
  414.                 if not spaces then
  415.                     spaces=0
  416.                 end
  417.                 tLines[y] = string.sub(sLine,1,x-1)
  418.                 table.insert( tLines, y+1, string.rep(' ',spaces)..string.sub(sLine,x) )
  419.                 redrawText()
  420.            
  421.                 x = spaces+1
  422.                 y = y + 1
  423.                 setCursor( x, y )
  424.             else
  425.                 -- Menu selection
  426.                 doMenuItem( nMenuItem )
  427.             end
  428.         elseif param == keys.leftCtrl or param == keys.rightCtrl then
  429.             -- Menu toggle
  430.             bMenu = not bMenu
  431.             if bMenu then
  432.                 term.setCursorBlink( false )
  433.                 nMenuItem = 1
  434.             else
  435.                 term.setCursorBlink( true )
  436.             end
  437.             redrawMenu()
  438.         end
  439.        
  440.     elseif sEvent == "char" then
  441.         if not bMenu then
  442.             -- Input text
  443.             local sLine = tLines[y]
  444.             tLines[y] = string.sub(sLine,1,x-1) .. param .. string.sub(sLine,x)
  445.             redrawLine(y)
  446.        
  447.             x = x + string.len( param )
  448.             setCursor( x, y )
  449.         else
  450.             -- Select menu items
  451.             for n,sMenuItem in ipairs( tMenuItems ) do
  452.                 if string.lower(string.sub(sMenuItem,1,1)) == string.lower(param) then
  453.                     doMenuItem( n )
  454.                     break
  455.                 end
  456.             end
  457.         end
  458.        
  459.     elseif sEvent == "mouse_click" then
  460.         if not bMenu then
  461.             if param == 1 then
  462.                 -- Left click
  463.                 local cx,cy = param2, param3
  464.                 if cy < h then
  465.                     y = math.min( math.max( scrollY + cy, 1 ), #tLines )
  466.                     x = math.min( math.max( scrollX + cx, 1 ), string.len( tLines[y] ) + 1 )
  467.                     setCursor( x, y )
  468.                 end
  469.             end
  470.         end
  471.        
  472.     elseif sEvent == "mouse_scroll" then
  473.         if not bMenu then
  474.             if param == -1 then
  475.                 -- Scroll up
  476.                 if scrollY > 0 then
  477.                     -- Move cursor up
  478.                     scrollY = scrollY - 1
  479.                     redrawText()
  480.                 end
  481.            
  482.             elseif param == 1 then
  483.                 -- Scroll down
  484.                 local nMaxScroll = #tLines - (h-1)
  485.                 if scrollY < nMaxScroll then
  486.                     -- Move cursor down
  487.                     scrollY = scrollY + 1
  488.                     redrawText()
  489.                 end
  490.                
  491.             end
  492.         end
  493.     end
  494. end
  495.  
  496. -- Cleanup
  497. term.clear()
  498. term.setCursorBlink( false )
  499. term.setCursorPos( 1, 1 )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement