Advertisement
awsumben13

Nova Edit Installer

Mar 28th, 2014
52
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 100.16 KB | None | 0 0
  1. local outfile = "NovaEdit"
  2. local infile = "NovaEditInstall"
  3. local outfile = outfile or infile
  4. --PackageStart
  5. local files = {
  6.     ["main.lua"] = "\
  7. local w, h = term.getSize( )\
  8. \
  9. local interface = New.Interface( )\
  10. \
  11. local code = interface:NewChild( Resources.Programs.Code )\
  12. code:Move( 1, 2 )\
  13. code:Resize( w, h - 1 )\
  14. code:UseLuaSyntax( )\
  15. code.backgroundColour = New.Colour \"white\"\
  16. code.lineColour = New.Colour \"white\"\
  17. code.textColour = New.Colour \"black\"\
  18. \
  19. code:SetActive( false )\
  20. \
  21. local topBar = interface:NewChild( Resources.Programs.Tabs )\
  22. topBar:Move( 2, 1 )\
  23. topBar:Resize( w - 3, 1 )\
  24. topBar.backgroundColour = New.Colour \"lightBlue\"\
  25. topBar.tabColour = New.Colour \"cyan\"\
  26. topBar.textColour = New.Colour \"white\"\
  27. \
  28. local topBarLeft, topBarRight = interface:NewChild( New.GUIButton( 1, 1, 1, 1, \"<\" ) ), interface:NewChild( New.GUIButton( w-3, 1, 1, 1, \">\" ) )\
  29. topBarLeft.backgroundColour, topBarRight.backgroundColour = New.Colour \"blue\", New.Colour \"blue\"\
  30. topBarLeft.textColour, topBarRight.textColour = New.Colour \"white\", New.Colour \"white\"\
  31. topBarLeft:SetCallback( \"OnClick\", function( )\
  32.     topBar:Scroll( -1 )\
  33. end )\
  34. topBarRight:SetCallback( \"OnClick\", function( )\
  35.     topBar:Scroll( 1 )\
  36. end )\
  37. \
  38. topBarClose = interface:NewChild( New.GUIButton( w, 1, 1, 1, \"x\" ) )\
  39. topBarClose.backgroundColour = New.Colour \"red\"\
  40. topBarClose.textColour = New.Colour \"white\"\
  41. topBarClose:SetCallback( \"OnClick\", function( )\
  42.     local prog = Resources.Programs.GetProgram( )\
  43.     if prog then\
  44.         Resources.Programs.RemoveProgram( prog.id )\
  45.     end\
  46. end )\
  47. \
  48. topBarAdd = interface:NewChild( New.GUIButton( w - 1, 1, 1, 1, \"+\" ) )\
  49. topBarAdd.backgroundColour = New.Colour \"blue\"\
  50. topBarAdd.textColour = New.Colour \"white\"\
  51. topBarAdd:SetCallback( \"OnClick\", function( )\
  52.     Resources.Window.OpenFile( interface, function( path )\
  53.         Resources.Programs.AddProgram( path )\
  54.     end )\
  55. end )\
  56. \
  57. topBarSave = interface:NewChild( New.GUIButton( w - 2, 1, 1, 1, \"s\" ) )\
  58. topBarSave.backgroundColour = New.Colour \"blue\"\
  59. topBarSave.textColour = New.Colour \"white\"\
  60. topBarSave:SetCallback( \"OnClick\", function( )\
  61.     local prog = Resources.Programs.GetProgram( )\
  62.     if prog then\
  63.         Resources.Programs.SelectProgram( prog.id )\
  64.         local h = rootfs.open( prog.path, \"w\" )\
  65.         if h then\
  66.             h.write( prog.content )\
  67.             h.close( )\
  68.         end\
  69.     end\
  70. end )\
  71. \
  72. interface:Run( function( ) return true end )",
  73.     run = " \
  74. local path = \"NovaEdit\"\
  75. local args = { ... }\
  76. \
  77. local f, err = loadfile( \"Nova/.launcher/Utils.lua\" )\
  78. if not f then\
  79.     error( err, 0 )\
  80. end\
  81. setfenv( f, getfenv( ) )\
  82. local utils = f( fs )\
  83. assert( utils.isValidPath( path ), \"Incorrect package\" )\
  84. \
  85. local config = utils.loadConfig( path..\"/main.conf\" )\
  86. local classpath = tostring( config.classpath or \"class\" )\
  87. local respath = tostring( config.resources or \"res\" )\
  88. \
  89. assert( fs.isDir( path..\"/\"..classpath ), \"Incorrect package: Class folder not found.\" )\
  90. assert( fs.exists( path..\"/\"..classpath..\"/FilesystemRedirect.class\" ), \"Incorrect package: FilesystemRedirect class not found.\" )\
  91. \
  92. local New, Class, classes = utils.loadClasses( path..\"/class.lua\", path..\"/\"..classpath )\
  93. local env, filesystem = utils.formatEnvironment( path, classes, Class )\
  94. \
  95. if fs.isDir( path..\"/\"..respath ) then\
  96.     utils.loadResources( path..\"/\"..respath, env )\
  97. end\
  98. \
  99. local needUpdating = fs.list( path..\"/uclass\" )\
  100. for k, v in pairs( needUpdating ) do\
  101.     classes[v] = Class.Load( v, path..\"/\"..classpath, env )\
  102. end\
  103. \
  104. utils.run( path, env, config, filesystem, args )",
  105.     res =   {
  106.         ["Programs.lua"] = "\
  107. local active = 0\
  108. local programs = { }\
  109. local programsF = { }\
  110. local current = 0\
  111. local id = 1\
  112. Code = New.GUICode( 1, 1, 1, 1 )\
  113. Tabs = New.GUITabs( 1, 1, 1, 1, programsF )\
  114. \
  115. AddProgram = function( path )\
  116.     local name = fs.getName( path )\
  117.     local content = \"\"\
  118.     local h = rootfs.open( path, \"r\" )\
  119.     if h then\
  120.         content = h.readAll( )\
  121.         h.close( )\
  122.     end\
  123.     programs[id] = { id = id, name = name, content = content, path = path }\
  124.     table.insert( programsF, id )\
  125.     active = active + 1\
  126.     SelectProgram( id )\
  127.     id = id + 1\
  128.     return id - 1\
  129. end\
  130. \
  131. SelectProgram = function( id )\
  132.     if programs[current] then\
  133.         programs[current].content = Code:GetText( )\
  134.     end\
  135.     if programs[id] and id ~= current then\
  136.         Code:SetText( programs[id].content )\
  137.         Code:SetActive( true )\
  138.     elseif not programs[id] then\
  139.         Code:SetLines( { \"\" } )\
  140.         Code:SetActive( false )\
  141.     end\
  142.     current = id\
  143. end\
  144. \
  145. RemoveProgram = function( id )\
  146.     active = active - 1\
  147.     if active <= 0 then\
  148.         Code:SetActive( false )\
  149.         active = 0\
  150.     end\
  151.     for i = #programsF, 1, -1 do\
  152.         if programsF[i] == id then\
  153.             table.remove( programsF, i )\
  154.         end\
  155.     end\
  156.     programs[id] = nil\
  157.     SelectProgram( next( programs ) )\
  158. end\
  159. \
  160. GetProgram = function( id )\
  161.     return programs[id or current]\
  162. end\
  163. \
  164. Tabs:SetCallback( \"FormatOption\", function( self, tab, n )\
  165.     local prog = programs[tab]\
  166.     if prog then\
  167.         return prog.name\
  168.     else\
  169.         return \"IDK\"\
  170.     end\
  171. end )\
  172. Tabs:SetCallback( \"OnSelect\", function( self, tab, button, n )\
  173.     SelectProgram( tab )\
  174. end )",
  175.         ["Window.lua"] = "\
  176. local w, h = term.getSize( )\
  177. \
  178. OpenFile = function( frame, onConfirm, needsToExist )\
  179.     local backField = frame:NewChild( New.GUIField( 1, 1, frame.width, frame.height ) )\
  180.     backField:SetVisible( false )\
  181.     local x, y = math.floor( w / 2 - 11 ), math.floor( h / 2 - 3.5 )\
  182.     local popup = frame:NewChild( New.GUIFrame( x, y, 24, 7 ) )\
  183.     local field = popup:NewChild( New.GUIField( 1, 1, 24, 7, New.Colour \"lightBlue\" ) )\
  184.     local title = popup:NewChild( New.GUIText( 2, 2, 22, 1, \"Open file:\" ) )\
  185.     title.backgroundColour = New.Colour \"cyan\"\
  186.     local path = popup:NewChild( New.GUIInput( 2, 4, 22, 1 ) )\
  187.     path.backgroundColour = New.Colour \"lightGrey\"\
  188.     path.focussedBackgroundColour = New.Colour \"white\"\
  189.     path.emptyText = \"Path to file\"\
  190.     local yes, no = popup:NewChild( New.GUIButton( 2, 6, 11, 1, \"Confirm\" ) ), popup:NewChild( New.GUIButton( 14, 6, 10, 1, \"Cancel\" ) )\
  191.     yes.backgroundColour, no.backgroundColour = New.Colour \"blue\", New.Colour \"blue\"\
  192.     yes.textColour, no.textColour = New.Colour \"white\", New.Colour \"white\"\
  193.     yes:SetCallback( \"OnClick\", function( )\
  194.         local p = path.text\
  195.         if not rootfs.isDir( p ) and ( not needsToExist or rootfs.exists( p ) ) then\
  196.             popup:Remove( )\
  197.             backField:Remove( )\
  198.             onConfirm( p )\
  199.         end\
  200.     end )\
  201.     no:SetCallback( \"OnClick\", function( )\
  202.         popup:Remove( )\
  203.         backField:Remove( )\
  204.     end )\
  205. end",
  206.     },
  207.     class =     {
  208.         ["GUIText.class"] = "\
  209. local function linewrap( str, w, mode )\
  210.     for i = 1,w + 1 do\
  211.         if str:sub( i, i ) == \"\\n\" then\
  212.             return str:sub( 1, i-1 ), str:sub( i + 1 )\
  213.         end\
  214.     end\
  215.     if #str <= w then return str end\
  216.     if mode == \"none\" then\
  217.         for i = 1,#str do\
  218.             if str:sub( i, i ) == \"\\n\" then\
  219.                 return str:sub( 1, i - 1 ), str:sub( i + 1 )\
  220.             end\
  221.         end\
  222.         return str\
  223.     end\
  224.     local mode = mode or \"hard\"\
  225.     local function isSpacer( char ) return char == \" \" or char == \"\\n\" end\
  226.     local s = isSpacer( str:sub( w + 1, w + 1 ) )\
  227.     if not s then\
  228.         for i = w, 1, -1 do\
  229.             if str:sub( i, i ) == \"\\n\" then\
  230.                 return str:sub( 1, i - 1 ), str:sub( i + 1 )\
  231.             elseif isSpacer( str:sub( i, i ) ) then\
  232.                 return str:sub( 1, i ), str:sub( i + 1 )\
  233.             end\
  234.         end\
  235.     end\
  236.     if mode == \"soft\" then\
  237.         local line, str = str:sub( 1, w ), str:sub( w + 1 )\
  238.         while isSpacer( str:sub( 1, 1 ) ) do\
  239.             if str:sub( 1, 1 ) == \"\\n\" then\
  240.                 return line, str:sub( 2 )\
  241.             end\
  242.             line = line..str:sub( 1, 1 )\
  243.             str = str:sub( 2 )\
  244.         end\
  245.         return line, str\
  246.     end\
  247.     return str:sub( 1, w ), str:sub( w + 1 )\
  248. end\
  249. \
  250. local function wordwrap( str, w, h, mode )\
  251.     local lines = { }\
  252.     while str do\
  253.         lines[#lines+1], str = linewrap( str, w, mode )\
  254.     end\
  255.     if h then while #lines > h do table.remove( lines, #lines ) end end\
  256.     return lines\
  257. end\
  258. \
  259. GUIText:Extends( \"GUIBase\" )\
  260. \
  261. GUIText:AddPrivateVariable( \"lines\", { }, \"table\" )\
  262. \
  263. GUIText:AddVariable( \"backgroundColour\", New.Colour( \"white\" ), \"Colour\" )\
  264. GUIText:AddVariable( \"textColour\", New.Colour( \"black\" ), \"Colour\" )\
  265. GUIText:AddVariable( \"text\", \"\", \"string\", \"function\", \"number\", \"boolean\", \"String\" )\
  266. GUIText:AddVariable( \"alignment\", \"left\", \"string\", \"String\" )\
  267. GUIText:AddVariable( \"wrapmode\", \"soft\", \"string\", \"String\" )\
  268. \
  269. GUIText:AddMethod( \"GetText\", function( self, var )\
  270.     local text = var( \"get\", \"public\", \"text\" )\
  271.     if type( text ) == \"function\" then\
  272.         return tostring( text( ) )\
  273.     end\
  274.     return tostring( text )\
  275. end )\
  276. GUIText:AddMethod( \"GetLines\", function( self, var )\
  277.     return var( \"get\", \"private\", \"lines\" )\
  278. end )\
  279. GUIText:AddMethod( \"UpdateLines\", function( self, var )\
  280.     return var( \"set\", \"private\", \"lines\", wordwrap( self:GetText( ), self.width, self.height, tostring( self.wrapmode ) ) )\
  281. end )\
  282. \
  283. GUIText:AddMethod( \"GetLineOffset\", function( self, var, line )\
  284.     if tostring( self.alignment ) == \"centre\" or tostring( self.alignment ) == \"vcentre\" then\
  285.         return math.floor( self.width / 2 - #line / 2 )\
  286.     elseif tostring( self.alignment ) == \"right\" then\
  287.         return self.width - #line\
  288.     end\
  289.     return 0\
  290. end )\
  291. GUIText:AddMethod( \"GetYOffset\", function( self, var )\
  292.     if tostring( self.alignment ) == \"vcentre\" then\
  293.         return math.floor( self.height / 2 - #var( \"get\", \"private\", \"lines\" ) / 2 )\
  294.     end\
  295.     return 0\
  296. end )\
  297. \
  298. GUIText:AddPrivateMethod( \"GetClickPosition\", function( self, var, x, y )\
  299.     local yoffset = self:GetYOffset( )\
  300.     local y = y - yoffset\
  301.     local lines = var( \"get\", \"private\", \"lines\" )\
  302.     local width = self.width\
  303.     local char = 0\
  304.     for i = 1,y-1 do\
  305.         if lines[i] then\
  306.             char = char + #lines[i]\
  307.         end\
  308.     end\
  309.     if lines[y] then\
  310.         local xoffset = self:GetLineOffset( lines[y] )\
  311.         local x = x - xoffset\
  312.         local n, after = \"\", false\
  313.         if x > #lines[y] then\
  314.             after = true\
  315.             n = char + #lines[y] + 1\
  316.         else\
  317.             n = char + x\
  318.         end\
  319.         return n, after\
  320.     else\
  321.         return char + 1\
  322.     end\
  323. end )\
  324. GUIText:AddPrivateMethod( \"GetCursorPosition\", function( self, var, char )\
  325.     local lines = var( \"get\", \"private\", \"lines\" )\
  326.     local y = 0\
  327.     local csf = 0\
  328.     for i = 1,#lines do\
  329.         y = y + 1\
  330.         if csf + #lines[y] >= char then\
  331.             local spacing = self:GetLineOffset( y )\
  332.             return char - csf + spacing, y + self:GetYOffset( )\
  333.         end\
  334.         csf = csf + #lines[i]\
  335.     end\
  336.     return #lines[y] + 1, y + self:GetYOffset( )\
  337. end )\
  338. \
  339. GUIText:AddStaticVariable( \"Render\", function( self, x, y )\
  340.     local width = self.width\
  341.     local height = self.height\
  342.     local lines = self:GetLines( )\
  343.     term.setBackgroundColour( self.backgroundColour:Get( ) )\
  344.     term.setTextColour( self.textColour:Get( ) )\
  345.     local yoffset = self:GetYOffset( )\
  346.     for i = 1,height do\
  347.         local line = string.rep( \" \", self:GetLineOffset( lines[i-yoffset] or \"\" ) )..( lines[i-yoffset] or \"\" )\
  348.         term.setCursorPos( x, y + i - 1 )\
  349.         term.write( line:sub( 1, width ) )\
  350.         if #line < width then\
  351.             term.write( string.rep( \" \", width - #line ) )\
  352.         end\
  353.     end\
  354. end )\
  355. \
  356. GUIText:AddStaticVariable( \"Update\", function( self )\
  357.     self:UpdateLines( )\
  358. end )\
  359. \
  360. function GUIText:Describe( )\
  361.     return \"GUI Text object\"\
  362. end\
  363. \
  364. function GUIText:Init( var, args )\
  365.     if Class.CheckTypeOf( args[5], \"string\", \"String\" ) then\
  366.         self.text = args[5]\
  367.     end\
  368.     var( \"set\", \"public\", \"backgroundColour\", New.Colour( \"white\" ) )\
  369.     var( \"set\", \"public\", \"textColour\", New.Colour( \"black\" ) )\
  370. end",
  371.         ["GUIFrame.class"] = "\
  372. GUIFrame:Extends( \"GUIBase\" )\
  373. \
  374. GUIFrame:AddPrivateVariable( \"children\", { }, \"table\" )\
  375. \
  376. GUIFrame:AddMethod( \"GetChildren\", function( self, var )\
  377.     local t = { }\
  378.     local children = var( \"get\", \"private\", \"children\" )\
  379.     for i = 1,#children do\
  380.         t[i] = children[i]\
  381.     end\
  382.     return t\
  383. end )\
  384. GUIFrame:AddMethod( \"NewChild\", function( self, var, child )\
  385.     if Class.CheckTypeOf( child, \"GUIBase\" ) then\
  386.         child.parent = self\
  387.         local children = var( \"get\", \"private\", \"children\" )\
  388.         table.insert( children, child )\
  389.         return child\
  390.     end\
  391.     return false\
  392. end )\
  393. GUIFrame:AddMethod( \"RemoveChild\", function( self, var, child )\
  394.     if Class.CheckTypeOf( child, \"GUIBase\" ) then\
  395.         local children = var( \"get\", \"private\", \"children\" )\
  396.         for i = #children, 1, -1 do\
  397.             if children[i] == child then\
  398.                 table.remove( children, i )\
  399.             end\
  400.         end\
  401.         child.parent = nil\
  402.         return child\
  403.     end\
  404.     return false\
  405. end )\
  406. GUIFrame:AddMethod( \"Focus\", function( self, var, child )\
  407.     local children = self:GetChildren( )\
  408.     for i = 1,#children do\
  409.         if children[i] == child then\
  410.             table.remove( children, i )\
  411.             table.insert( children, child )\
  412.             break\
  413.         end\
  414.     end\
  415.     var( \"set\", \"private\", \"children\", children )\
  416. end )\
  417. \
  418. GUIFrame:AddStaticVariable( \"Update\", function( self, ... )\
  419.     if not self.active then return end\
  420.     local data = { ... }\
  421.     local children = self:GetChildren( )\
  422.     for i = 1,#children do\
  423.         if children[i].active then\
  424.             children[i]:Update( unpack( data ) )\
  425.         end\
  426.     end\
  427. end, \"function\" )\
  428. GUIFrame:AddStaticVariable( \"Render\", function( self, x, y, ... )\
  429.     if not self.visible then return end\
  430.     local data = { ... }\
  431.     local children = self:GetChildren( )\
  432.     for i = 1,#children do\
  433.         if children[i].visible then\
  434.             local xx, yy = x + children[i].x - 1, y + children[i].y - 1\
  435.             children[i]:Render( xx, yy, unpack( data ) )\
  436.         end\
  437.     end\
  438. end, \"function\" )\
  439. GUIFrame:AddStaticVariable( \"MouseEvent\", function( self, x, y, ... )\
  440.     if not self.active then return end\
  441.     local ev = { ... }\
  442.     local children = self:GetChildren( )\
  443.     for i = 1,#children do\
  444.         if children[i].active then\
  445.             xx = x - children[i].x + 1\
  446.             yy = y - children[i].y + 1\
  447.             children[i]:MouseEvent( xx, yy, unpack( ev ) )\
  448.         end\
  449.     end\
  450. end, \"function\" )\
  451. GUIFrame:AddStaticVariable( \"Event\", function( self, ... )\
  452.     if not self.active then return end\
  453.     local ev = { ... }\
  454.     local children = self:GetChildren( )\
  455.     for i = 1,#children do\
  456.         if children[i].active then\
  457.             children[i]:Event( unpack( ev ) )\
  458.         end\
  459.     end\
  460. end, \"function\" )\
  461. \
  462. GUIFrame:AddMethod( \"FindMouseTarget\", function( self, var, x, y )\
  463.     if type( x ) == \"number\" and type( y ) == \"number\" then\
  464.         local callback\
  465.         callback = function( parent, x, y )\
  466.             local children = parent:GetChildren( )\
  467.             for i = #children, 1, -1 do\
  468.                 local child = children[i]\
  469.                 if child.active and x >= child.x and x < child.x + child.width and y >= child.y and y < child.y + child.height then\
  470.                     if child:TypeOf( \"GUIFrame\" ) then\
  471.                         local result = callback( child, x - child.x + 1, y - child.y + 1 )\
  472.                         if result then\
  473.                             return result\
  474.                         end\
  475.                     else\
  476.                         return child\
  477.                     end\
  478.                 end\
  479.             end\
  480.         end\
  481.         return callback( self, x, y )\
  482.     else\
  483.         error( \"Expected number, number, got \"..type( x )..\", \"..type( y ), 2 )\
  484.     end\
  485. end )\
  486. GUIFrame:AddMethod( \"FindKeyboardTarget\", function( self, var )\
  487.     local callback\
  488.     callback = function( parent )\
  489.         local children = parent:GetChildren( )\
  490.         for i = #children, 1, -1 do\
  491.             if children[i].active and children[i].handlesKeyboard == true or ( type( children[i].handlesKeyboard ) == \"function\" and children[i]:handlesKeyboard( ) ) then\
  492.                 return children[i]\
  493.             end\
  494.             if children[i].active and children[i]:TypeOf( \"GUIFrame\" ) then\
  495.                 local result = callback( children[i] )\
  496.                 if result then\
  497.                     return result\
  498.                 end\
  499.             end\
  500.         end\
  501.         return false\
  502.     end\
  503.     return callback( self )\
  504. end )\
  505. \
  506. function GUIFrame:Describe( )\
  507.     return \"GUI Frame object\"\
  508. end\
  509. \
  510. function GUIFrame:Init( var, args )\
  511.     var( \"set\", \"private\", \"children\", { } )\
  512.     if type( args[5] ) == \"table\" then\
  513.         for i = 1,#args[5] do\
  514.             local child = args[5][i]\
  515.             if Class.CheckTypeOf( child, \"GUIBase\" ) then\
  516.                 self:NewChild( child )\
  517.             end\
  518.         end\
  519.     end\
  520. end",
  521.         ["Interface.class"] = "\
  522. Interface:AddVariable( \"frame\", New.GUIFrame( 1, 1, term.getSize( ) ), \"GUIBase.GUIFrame\" )\
  523. Interface:AddVariable( \"backgroundColour\", New.Colour \"black\", \"Colour\" )\
  524. Interface:AddPrivateVariable( \"lastMouse\", false, \"table\" )\
  525. \
  526. Interface:AddMethod( \"Update\", function( self, var )\
  527.     self.frame:Update( )\
  528. end )\
  529. Interface:AddMethod( \"Render\", function( self, var )\
  530.     self.frame:Render( 1, 1 )\
  531.     local x, y, c = self.frame:GetCursorData( )\
  532.     self.frame:ResetCursorData( )\
  533.     if x then\
  534.         term.setTextColour( c )\
  535.         term.setCursorPos( x, y )\
  536.         term.setCursorBlink( true )\
  537.     else\
  538.         term.setCursorBlink( false )\
  539.     end\
  540. end )\
  541. Interface:AddMethod( \"Event\", function( self, var, ... )\
  542.     local ev = { ... }\
  543.     if #ev == 1 and type( ev[1] ) == \"table\" then\
  544.         ev = ev[1]\
  545.     end\
  546. \
  547.     if ev[1]:sub( 1, 6 ) == \"mouse_\" then\
  548.         local mev = { }\
  549.         mev.type = ev[1] == \"mouse_click\" and \"Click\" or ev[1] == \"mouse_drag\" and \"Drag\" or ev[1] == \"mouse_scroll\" and \"Scroll\" or ev[1]\
  550.         mev.button = ev[2]\
  551.         mev.x = ev[3]\
  552.         mev.y = ev[4]\
  553.         local data = var( \"get\", \"private\", \"lastMouse\" )\
  554.         if mev.type == \"Drag\" and data then\
  555.             mev.target = data.target\
  556.             mev.xchange = ev[3] - data.x\
  557.             mev.ychange = ev[4] - data.y\
  558.         else\
  559.             mev.target = self.frame:FindMouseTarget( ev[3], ev[4] )\
  560.         end\
  561.         self.frame:MouseEvent( ev[3], ev[4], mev )\
  562.         if mev.type == \"Drag\" or mev.type == \"Click\" then\
  563.             var( \"set\", \"private\", \"lastMouse\", mev )\
  564.         end\
  565.         return\
  566.     end\
  567.     local mev = { }\
  568.     for k, v in pairs( ev ) do\
  569.         mev[k] = v\
  570.     end\
  571.     if ev[1] == \"key\" or ev[1] == \"char\" then\
  572.         mev = { }\
  573.         mev[1] = \"Keyboard\"\
  574.         mev[2] = ev[1] == \"char\"\
  575.         if ev[1] == \"key\" then\
  576.             mev[3] = keys.getName( ev[2] )\
  577.             mev[4] = ev[2]\
  578.         else\
  579.             mev[3] = ev[2]\
  580.             mev[4] = keys[ev[2]]\
  581.         end\
  582.         mev[5] = self.frame:FindKeyboardTarget( )\
  583.     end\
  584.     self.frame:Event( mev )\
  585. end )\
  586. Interface:AddMethod( \"NewChild\", function( self, var, child )\
  587.     return self.frame:NewChild( child )\
  588. end )\
  589. Interface:AddMethod( \"GetChildren\", function( self, var )\
  590.     return self.frame:GetChildren( )\
  591. end )\
  592. Interface:AddMethod( \"Run\", function( self, var, onTerminate, running, noClear )\
  593.     term.setBackgroundColour( 32768 )\
  594.     term.clear( )\
  595.     local timer, time = os.startTimer( 0 ), os.clock( )\
  596.     while type( running ) ~= \"function\" or running( ) do\
  597.         local ev = { coroutine.yield( ) }\
  598.         if ev[1] == \"terminate\" and type( onTerminate ) == \"function\" then\
  599.             if onTerminate( ) then\
  600.                 break\
  601.             end\
  602.         end\
  603.         if ev[1] ~= \"timer\" or ev[2] ~= timer and ev[1] ~= \"terminate\" then\
  604.             self:Event( unpack( ev ) )\
  605.         end\
  606.         if ( ev[1] == \"timer\" and ev[2] == timer ) or time + 0.1 < os.clock( ) then\
  607.             if not noClear then\
  608.                 term.setBackgroundColour( self.backgroundColour:Get( ) )\
  609.                 term.clear( )\
  610.             end\
  611.             self:Update( )\
  612.             self:Render( )\
  613. \
  614.             timer = os.startTimer( 0.05 )\
  615.             time = os.clock( )\
  616.         end\
  617.     end\
  618. end )\
  619. \
  620. function Interface:Init( var, args )\
  621.     if type( args[1] ) == \"table\" and args[1].typeOf and args[1]:typeOf( \"GUIFrame\" ) then\
  622.         self.frame = args[1]\
  623.     end\
  624.     var( \"set\", \"private\", \"lastMouse\", { } )\
  625.     var( \"set\", \"public\", \"backgroundColour\", New.Colour \"black\" )\
  626. end",
  627.         ["GUIBase.class"] = "\
  628. GUIBase:AddStaticVariable( \"x\", 0, \"number\" )\
  629. GUIBase:AddStaticVariable( \"y\", 0, \"number\" )\
  630. GUIBase:AddStaticVariable( \"width\", 0, \"number\" )\
  631. GUIBase:AddStaticVariable( \"height\", 0, \"number\" )\
  632. \
  633. GUIBase:AddStaticVariable( \"visible\", true, \"boolean\" )\
  634. GUIBase:AddStaticVariable( \"active\", true, \"boolean\" )\
  635. GUIBase:AddStaticVariable( \"handlesKeyboard\", false, \"boolean\" )\
  636. \
  637. GUIBase:AddStaticVariable( \"Update\", function( ) end, \"function\" )\
  638. GUIBase:AddStaticVariable( \"Render\", function( ) end, \"function\" )\
  639. GUIBase:AddStaticVariable( \"MouseEvent\", function( ) end, \"function\" )\
  640. GUIBase:AddStaticVariable( \"Event\", function( ) end, \"function\" )\
  641. \
  642. GUIBase:AddPrivateVariable( \"callbacks\", { }, \"table\" )\
  643. GUIBase:AddPrivateVariable( \"cursor\", { }, \"table\" )\
  644. GUIBase:AddVariable( \"parent\", false, \"GUIBase.GUIFrame\", \"nil\" )\
  645. \
  646. GUIBase:AddMethod( \"SetX\", function( self, var, x )\
  647.     if type( x ) == \"number\" then\
  648.         var( \"set\", \"static\", \"x\", math.floor( x ) )\
  649.     else\
  650.         error( \"Expected number, got \"..type( x ), 2 )\
  651.     end\
  652. end )\
  653. GUIBase:AddMethod( \"SetY\", function( self, var, y )\
  654.     if type( y ) == \"number\" then\
  655.         var( \"set\", \"static\", \"y\", math.floor( y ) )\
  656.     else\
  657.         error( \"Expected number, got \"..type( y ), 2 )\
  658.     end\
  659. end )\
  660. GUIBase:AddMethod( \"Move\", function( self, var, x, y, mode )\
  661.     if ( type( x ) == \"number\" and type( y ) == \"number\" ) or mode == \"add\" then\
  662.         if mode == \"add\" then\
  663.             x = ( x or 0 ) + self.x\
  664.             y = ( y or 0 ) + self.y\
  665.         end\
  666.         var( \"set\", \"static\", \"x\", math.floor( x ) )\
  667.         var( \"set\", \"static\", \"y\", math.floor( y ) )\
  668.     elseif type( x ) == \"table\" and x.x and x.y then\
  669.         local mode = y\
  670.         x, y = x.x, x.y\
  671.         if mode == \"add\" then\
  672.             x = x + self.x\
  673.             y = y + self.y\
  674.         end\
  675.         var( \"set\", \"static\", \"x\", math.floor( x ) )\
  676.         var( \"set\", \"static\", \"y\", math.floor( y ) )\
  677.     else\
  678.         error( \"Expected number, number, got \"..type( x )..\", \"..type( y ), 2 )\
  679.     end\
  680. end )\
  681. \
  682. GUIBase:AddMethod( \"SetWidth\", function( self, var, w )\
  683.     if type( w ) == \"number\" then\
  684.         var( \"set\", \"static\", \"width\", math.floor( w ) )\
  685.     else\
  686.         error( \"Expected number, got \"..type( w ), 2 )\
  687.     end\
  688. end )\
  689. GUIBase:AddMethod( \"SetHeight\", function( self, var, h )\
  690.     if type( h ) == \"number\" then\
  691.         var( \"set\", \"static\", \"height\", math.floor( h ) )\
  692.     else\
  693.         error( \"Expected number, got \"..type( h ), 2 )\
  694.     end\
  695. end )\
  696. GUIBase:AddMethod( \"Resize\", function( self, var, w, h, mode )\
  697.     if ( type( w ) == \"number\" and type( h ) == \"number\" ) or mode == \"add\" then\
  698.         if mode == \"add\" then\
  699.             w = ( w or 0 ) + self.width\
  700.             h = ( h or 0 ) + self.height\
  701.         end\
  702.         var( \"set\", \"static\", \"width\", math.floor( w ) )\
  703.         var( \"set\", \"static\", \"height\", math.floor( h ) )\
  704.     elseif type( w ) == \"table\" and w.x and w.y then\
  705.         local mode = h\
  706.         w, h = w.x, w.y\
  707.         if mode == \"add\" then\
  708.             w = w + self.w\
  709.             h = h + self.h\
  710.         end\
  711.         var( \"set\", \"static\", \"w\", math.floor( w ) )\
  712.         var( \"set\", \"static\", \"h\", math.floor( h ) )\
  713.     else\
  714.         error( \"Expected number, number, got \"..type( w )..\", \"..type( h ), 2 )\
  715.     end\
  716. end )\
  717. \
  718. GUIBase:AddMethod( \"SetVisible\", function( self, var, bool )\
  719.     var( \"set\", \"static\", \"visible\", not not bool )\
  720. end )\
  721. GUIBase:AddMethod( \"ToggleVisible\", function( self, var )\
  722.     var( \"set\", \"static\", \"visible\", not var( \"get\", \"private\", \"visible\" ) )\
  723. end )\
  724. \
  725. GUIBase:AddMethod( \"SetActive\", function( self, var, bool )\
  726.     var( \"set\", \"static\", \"active\", not not bool )\
  727. end )\
  728. GUIBase:AddMethod( \"ToggleActive\", function( self, var )\
  729.     var( \"set\", \"static\", \"active\", not var( \"get\", \"private\", \"active\" ) )\
  730. end )\
  731. \
  732. GUIBase:AddMethod( \"SetCallback\", function( self, var, name, func )\
  733.     if Class.CheckTypeOf( name, \"string\", \"String\" ) and type( func ) == \"function\" then\
  734.         local callbacks = var( \"get\", \"private\", \"callbacks\" )\
  735.         callbacks[tostring( name )] = func\
  736.         return true\
  737.     end\
  738.     return false\
  739. end )\
  740. GUIBase:AddMethod( \"GetCallback\", function( self, var, name )\
  741.     if Class.CheckTypeOf( name, \"string\", \"String\" ) then\
  742.         local callbacks = var( \"get\", \"private\", \"callbacks\" )\
  743.         return callbacks[tostring( name )]\
  744.     end\
  745.     return false\
  746. end )\
  747. \
  748. GUIBase:AddMethod( \"Remove\", function( self, var )\
  749.     local parent = var( \"get\", \"public\", \"parent\" )\
  750.     if parent then\
  751.         parent:RemoveChild( self )\
  752.     end\
  753. end )\
  754. GUIBase:AddMethod( \"FocusOn\", function( self, var )\
  755.     local parent = var( \"get\", \"public\", \"parent\" )\
  756.     if parent then\
  757.         parent:Focus( self )\
  758.     end\
  759. end )\
  760. \
  761. GUIBase:AddMethod( \"RequestCursorBlink\", function( self, var, x, y, colour )\
  762.     var( \"set\", \"private\", \"cursor\", { x = x, y = y, colour = colour } )\
  763.     local parent = var( \"get\", \"public\", \"parent\" )\
  764.     if parent then\
  765.         parent:RequestCursorBlink( x, y, colour )\
  766.     end\
  767. end )\
  768. GUIBase:AddMethod( \"GetCursorData\", function( self, var )\
  769.     local t = var( \"get\", \"private\", \"cursor\" )\
  770.     return t.x, t.y, t.colour\
  771. end )\
  772. GUIBase:AddMethod( \"ResetCursorData\", function( self, var, x, y, colour )\
  773.     var( \"set\", \"private\", \"cursor\", { { } } )\
  774.     local parent = var( \"get\", \"public\", \"parent\" )\
  775.     if parent then\
  776.         parent:ResetCursorData( x, y, colour )\
  777.     end\
  778. end )\
  779. \
  780. function GUIBase:Describe( )\
  781.     return \"GUI Base object\"\
  782. end\
  783. \
  784. function GUIBase:Init( var, args )\
  785.     var( \"set\", \"private\", \"callbacks\", { } )\
  786.     var( \"set\", \"private\", \"cursor\", { } )\
  787.     if type( args[1] ) == \"number\" and type( args[2] ) == \"number\" then\
  788.         self:Move( args[1], args[2] )\
  789.     end\
  790.     if type( args[3] ) == \"number\" and type( args[4] ) == \"number\" then\
  791.         self:Resize( args[3], args[4] )\
  792.     end\
  793. end",
  794.         ["GUIInput.class"] = "\
  795. GUIInput:Extends( \"GUIBase\" )\
  796. \
  797. GUIInput:AddVariable( \"mask\", false, \"string\", \"String\", \"boolean\" )\
  798. GUIInput:AddVariable( \"text\", \"\", \"string\", \"String\" )\
  799. GUIInput:AddVariable( \"emptyText\", \"\", \"string\", \"String\" )\
  800. GUIInput:AddVariable( \"canScroll\", false, \"boolean\" )\
  801. \
  802. GUIInput:AddVariable( \"backgroundColour\", New.Colour( \"white\" ), \"Colour\" )\
  803. GUIInput:AddVariable( \"textColour\", New.Colour( \"black\" ), \"Colour\" )\
  804. GUIInput:AddVariable( \"focussedBackgroundColour\", New.Colour( \"white\" ), \"Colour\" )\
  805. GUIInput:AddVariable( \"focussedTextColour\", New.Colour( \"black\" ), \"Colour\" )\
  806. \
  807. GUIInput:AddPrivateVariable( \"scroll\", 0, \"number\" )\
  808. GUIInput:AddPrivateVariable( \"cursor\", 1, \"number\" )\
  809. GUIInput:AddPrivateVariable( \"focussed\", false, \"boolean\" )\
  810. \
  811. GUIInput:AddMethod( \"SetHeight\", function( self, var, h )\
  812.     if type( h ) == \"number\" then\
  813.         var( \"set\", \"static\", \"height\", 1 )\
  814.     else\
  815.         error( \"Expected number, got \"..type( h ), 2 )\
  816.     end\
  817. end )\
  818. GUIInput:AddMethod( \"Resize\", function( self, var, w, h, mode )\
  819.     if ( type( w ) == \"number\" and type( h ) == \"number\" ) or mode == \"add\" then\
  820.         if mode == \"add\" then\
  821.             w = ( w or 0 ) + self.width\
  822.         end\
  823.         var( \"set\", \"static\", \"width\", math.floor( w ) )\
  824.         var( \"set\", \"static\", \"height\", 1 )\
  825.     elseif type( w ) == \"table\" and w.x and w.y then\
  826.         local mode = h\
  827.         w, h = w.x, w.y\
  828.         if mode == \"add\" then\
  829.             w = w + self.w\
  830.         end\
  831.         var( \"set\", \"static\", \"w\", math.floor( w ) )\
  832.         var( \"set\", \"static\", \"h\", 1 )\
  833.     else\
  834.         error( \"Expected number, number, got \"..type( w )..\", \"..type( h ), 2 )\
  835.     end\
  836. end )\
  837. \
  838. GUIInput:AddMethod( \"handlesKeyboard\", function( self, var )\
  839.     return var( \"get\", \"private\", \"focussed\" )\
  840. end )\
  841. \
  842. GUIInput:AddMethod( \"SetCursorPos\", function( self, var, x )\
  843.     local c, s = var( \"get\", \"private\", \"cursor\" ), var( \"get\", \"private\", \"scroll\" )\
  844.     var( \"set\", \"private\", \"cursor\", math.max( math.min( x, #tostring( self.text ) + 1 ), 1 ) )\
  845.     local x = var( \"get\", \"private\", \"cursor\" )\
  846.     local p = var( \"get\", \"private\", \"scroll\" )\
  847.     if x - p <= 1 then\
  848.         var( \"set\", \"private\", \"scroll\", math.max( x - 2, 0 ) )\
  849.     elseif x - p > self.width then\
  850.         var( \"set\", \"private\", \"scroll\", math.max( x - self.width, 0 ) )\
  851.     end\
  852. end )\
  853. \
  854. GUIInput:AddMethod( \"MouseEvent\", function( self, var, x, y, ev )\
  855.     if ev.target == self then\
  856.         var( \"set\", \"private\", \"focussed\", true )\
  857.         var( \"set\", \"private\", \"cursor\", math.min( var( \"get\", \"private\", \"scroll\" ) + x, #tostring( self.text ) + 1 ) )\
  858.     else\
  859.         var( \"set\", \"private\", \"focussed\", false )\
  860.     end\
  861. end )\
  862. \
  863. GUIInput:AddMethod( \"Event\", function( self, var, ev )\
  864.     if ev[1] == \"Keyboard\" and ev[5] == self and var( \"get\", \"private\", \"focussed\" ) then\
  865.         local text = tostring( self.text )\
  866.         local len = #text\
  867.         local pos = var( \"get\", \"private\", \"cursor\" )\
  868.         if ev[3] == \"enter\" then\
  869.             local callback = self:GetCallback( \"KeyPressEnter\" )\
  870.             if callback then\
  871.                 callback( self )\
  872.             else\
  873.                 var( \"set\", \"private\", \"focussed\", false )\
  874.             end\
  875.         elseif ev[3] == \"tab\" then\
  876.             local callback = self:GetCallback( \"KeyPressTab\" )\
  877.             if callback then\
  878.                 callback( self )\
  879.             else\
  880.                 var( \"set\", \"private\", \"focussed\", false )\
  881.             end\
  882.         elseif ev[3] == \"backspace\" and pos > 1 then\
  883.             self.text = text:sub( 1, pos - 2 )..text:sub( pos )\
  884.             self:SetCursorPos( pos - 1 )\
  885.         elseif ev[3] == \"delete\" then\
  886.             self.text = text:sub( 1, pos - 1 )..text:sub( pos + 1 )\
  887.         elseif ev[2] and len < self.width or self.canScroll then\
  888.             self.text = text:sub( 1, pos - 1 )..ev[3]..text:sub( pos )\
  889.             self:SetCursorPos( pos + 1 )\
  890.         elseif ev[3] == \"left\" then\
  891.             self:SetCursorPos( pos - 1 )\
  892.         elseif ev[3] == \"right\" then\
  893.             self:SetCursorPos( pos + 1 )\
  894.         end\
  895.     end\
  896. end )\
  897. \
  898. GUIInput:AddMethod( \"Render\", function( self, var, x, y )\
  899.     local text = self.text\
  900.     if self.mask then\
  901.         if self.mask == true then\
  902.             text = string.rep( \"*\", #tostring( self.text ) )\
  903.         else\
  904.             text = string.rep( tostring( self.mask ):sub( 1, 1 ), #tostring( self.text ) )\
  905.         end\
  906.     end\
  907.     if #text == 0 then\
  908.         text = tostring( self.emptyText )\
  909.     end\
  910.     term.setCursorPos( x, y )\
  911.     if var( \"get\", \"private\", \"focussed\" ) then\
  912.         term.setBackgroundColour( self.focussedBackgroundColour:Get( ) )\
  913.         term.setTextColour( self.focussedTextColour:Get( ) )\
  914.     else\
  915.         term.setBackgroundColour( self.backgroundColour:Get( ) )\
  916.         term.setTextColour( self.textColour:Get( ) )\
  917.     end\
  918.     local s = var( \"get\", \"private\", \"scroll\" )\
  919.     local str = text:sub( s + 1, s + self.width )\
  920.     term.write( str..string.rep( \" \", self.width - #str ) )\
  921.     if self.active and var( \"get\", \"private\", \"focussed\" ) then\
  922.         self:RequestCursorBlink( x + ( var( \"get\", \"private\", \"cursor\" ) - s ) - 1, y, self.textColour:Get( ) )\
  923.     end\
  924. end )\
  925. \
  926. function GUIInput:Init( var, args )\
  927.     if Class.CheckTypeOf( args[5], \"string\", \"String\" ) then\
  928.         self.text = args[5]\
  929.     end\
  930.     var( \"set\", \"public\", \"backgroundColour\", New.Colour( \"white\" ) )\
  931.     var( \"set\", \"public\", \"textColour\", New.Colour( \"black\" ) )\
  932. end",
  933.         ["Colour.class"] = "\
  934. local findColour = function( t, n )\
  935.     for k, v in pairs( t ) do\
  936.         if v == n then\
  937.             return k\
  938.         end\
  939.     end\
  940.     return \"white\"\
  941. end\
  942. \
  943. Colour:AddVariable( \"colour\", 1, \"string\", \"number\", \"Colour\", \"String\" )\
  944. Colour:AddMethod( \"Get\", function( self, var )\
  945.     if Class.CheckTypeOf( self.colour, \"string\", \"String\" ) then\
  946.         return colours[tostring( self.colour )]\
  947.     elseif type( self.colour ) == \"number\" then\
  948.         return self.colour\
  949.     else\
  950.         return self.colour:Get( )\
  951.     end\
  952. end )\
  953. Colour:AddMethod( \"GetName\", function( self, var )\
  954.     if Class.CheckTypeOf( self.colour, \"string\", \"String\" ) then\
  955.         return tostring( self.colour )\
  956.     elseif type( self.colour ) == \"number\" then\
  957.         return findColour( colours, self.colour )\
  958.     else\
  959.         return self.colour:GetName( )\
  960.     end\
  961. end )\
  962. Colour:AddMethod( \"Set\", function( self, var, col )\
  963.     if type( col ) == \"number\" then\
  964.         col = findColour( colours, col )\
  965.     elseif Class.CheckType( col, \"Colour\" ) then\
  966.         col = col:GetName( )\
  967.     end\
  968.     if Class.CheckTypeOf( col, \"string\", \"String\" ) then\
  969.         self.colour = colours[tostring( col )] or self.colour\
  970.     end\
  971. end )\
  972. \
  973. function Colour:Describe( )\
  974.     return self:GetName( )\
  975. end\
  976. \
  977. function Colour:Init( var, args )\
  978.     if type( args[1] ) ~= \"nil\" then\
  979.         self:Set( args[1] )\
  980.     end\
  981. end",
  982.         ["GUITabs.class"] = "\
  983. GUITabs:Extends( \"GUIBase\" )\
  984. \
  985. GUITabs:AddVariable( \"tabs\", { }, \"table\" )\
  986. GUITabs:AddVariable( \"backgroundColour\", \"\", \"Colour\" )\
  987. GUITabs:AddVariable( \"tabColour\", \"\", \"Colour\" )\
  988. GUITabs:AddVariable( \"textColour\", \"\", \"Colour\" )\
  989. \
  990. GUITabs:AddPrivateVariable( \"tabOffset\", 0, \"number\" )\
  991. \
  992. GUITabs:AddMethod( \"Scroll\", function( self, var, n )\
  993.     local p = math.floor( var( \"get\", \"private\", \"tabOffset\" ) + n )\
  994.     local m = 0\
  995.     for i = 1,#self.tabs do\
  996.         m = m + #tostring( self.tabs[i] ) + 1\
  997.     end\
  998.     if p > m - self.width - 1 then p = m - self.width - 1 end\
  999.     if p < 0 then p = 0 end\
  1000.     var( \"set\", \"private\", \"tabOffset\", p )\
  1001. end )\
  1002. \
  1003. GUITabs:AddMethod( \"SetHeight\", function( self, var, h )\
  1004.     if type( h ) == \"number\" then\
  1005.         var( \"set\", \"static\", \"height\", 1 )\
  1006.     else\
  1007.         error( \"Expected number, got \"..type( h ), 2 )\
  1008.     end\
  1009. end )\
  1010. GUITabs:AddMethod( \"Resize\", function( self, var, w, h, mode )\
  1011.     if ( type( w ) == \"number\" and type( h ) == \"number\" ) or mode == \"add\" then\
  1012.         if mode == \"add\" then\
  1013.             w = ( w or 0 ) + self.width\
  1014.         end\
  1015.         var( \"set\", \"static\", \"width\", math.floor( w ) )\
  1016.         var( \"set\", \"static\", \"height\", 1 )\
  1017.     elseif type( w ) == \"table\" and w.x and w.y then\
  1018.         local mode = h\
  1019.         w, h = w.x, w.y\
  1020.         if mode == \"add\" then\
  1021.             w = w + self.w\
  1022.         end\
  1023.         var( \"set\", \"static\", \"w\", math.floor( w ) )\
  1024.         var( \"set\", \"static\", \"h\", 1 )\
  1025.     else\
  1026.         error( \"Expected number, number, got \"..type( w )..\", \"..type( h ), 2 )\
  1027.     end\
  1028. end )\
  1029. \
  1030. GUITabs:AddMethod( \"Render\", function( self, var, x, y )\
  1031.     term.setBackgroundColour( self.backgroundColour:Get( ) )\
  1032.     term.setCursorPos( x, y )\
  1033.     term.write( string.rep( \" \", self.width ) )\
  1034.     local tabs = { }\
  1035.     local pos = -var( \"get\", \"private\", \"tabOffset\" ) + 1\
  1036.     for i = 1,#self.tabs do\
  1037.         local str\
  1038.         local callback = self:GetCallback( \"FormatOption\" )\
  1039.         if callback then\
  1040.             str = tostring( callback( self, self.tabs[i], i ) )\
  1041.         else\
  1042.             str = tostring( self.tabs[i] )\
  1043.         end\
  1044.         local t = { pos = pos, str = str, len = #str }\
  1045.         tabs[i] = t\
  1046.         pos = pos + tabs[i].len + 1\
  1047.     end\
  1048.     term.setBackgroundColour( self.tabColour:Get( ) )\
  1049.     term.setTextColour( self.textColour:Get( ) )\
  1050.     for i = 1,#tabs do\
  1051.         term.setCursorPos( x + tabs[i].pos - 1, y )\
  1052.         local str = tabs[i].str\
  1053.         if tabs[i].pos < 1 then\
  1054.             str = str:sub( math.abs( tabs[i].pos ) + 2 )\
  1055.             term.setCursorPos( x, y )\
  1056.         end\
  1057.         if tabs[i].pos + tabs[i].len > self.width then\
  1058.             str = str:sub( 1, #tabs[i].str + ( self.width - ( tabs[i].len + tabs[i].pos ) ) + 1 )\
  1059.         end\
  1060.         if tabs[i].pos > self.width then\
  1061.             str = \"\"\
  1062.         end\
  1063.         term.write( str )\
  1064.     end\
  1065. end )\
  1066. \
  1067. GUITabs:AddMethod( \"MouseEvent\", function( self, var, x, y, ev )\
  1068.     if ev.target == self and ev.type == \"Click\" then\
  1069.         local pos = x + var( \"get\", \"private\", \"tabOffset\" )\
  1070.         local m = 0\
  1071.         for i = 1,#self.tabs do\
  1072.             local str\
  1073.             local callback = self:GetCallback( \"FormatOption\" )\
  1074.             if callback then\
  1075.                 str = tostring( callback( self, self.tabs[i], i ) )\
  1076.             else\
  1077.                 str = tostring( self.tabs[i] )\
  1078.             end\
  1079.             if m + #str + 1 > pos then\
  1080.                 if m ~= pos then\
  1081.                     local callback = self:GetCallback( \"OnSelect\" )\
  1082.                     if callback then\
  1083.                         callback( self, self.tabs[i], ev.button, i )\
  1084.                     end\
  1085.                 end\
  1086.                 break\
  1087.             end\
  1088.             m = m + #str + 1\
  1089.         end\
  1090.     end\
  1091. end )\
  1092. \
  1093. function GUITabs:Init( var, args )\
  1094.     var( \"set\", \"public\", \"backgroundColour\", New.Colour \"lightBlue\" )\
  1095.     var( \"set\", \"public\", \"tabColour\", New.Colour \"white\" )\
  1096.     var( \"set\", \"public\", \"textColour\", New.Colour \"black\" )\
  1097.     if type( args[5] ) == \"table\" then\
  1098.         self.tabs = args[5]\
  1099.     end\
  1100. end",
  1101.         ["GUIButton.class"] = "\
  1102. GUIButton:Extends( \"GUIText\" )\
  1103. \
  1104. GUIButton:AddVariable( \"alignment\", \"vcentre\", \"string\" )\
  1105. GUIButton:AddStaticVariable( \"MouseEvent\", function( self, x, y, ev )\
  1106.     if ev.target == self and ev.type == \"Click\" then\
  1107.         local callback = self:GetCallback( \"OnClick\" )\
  1108.         if callback then\
  1109.             callback( self, x, y, ev.button )\
  1110.         end\
  1111.     end\
  1112. end )\
  1113. \
  1114. function GUIButton:Describe( )\
  1115.     return \"GUI Button object\"\
  1116. end\
  1117. \
  1118. function GUIButton:Init( var, args )\
  1119.     if Class.CheckTypeOf( args[5], \"string\", \"String\" ) then\
  1120.         self.text = args[5]\
  1121.     end\
  1122. end",
  1123.         ["list.txt"] = "Colour\
  1124. FilesystemRedirect\
  1125. Filesystem\
  1126. GUIBase\
  1127. GUIFrame\
  1128. GUIText\
  1129. GUITextbox\
  1130. GUIInput\
  1131. GUIButton\
  1132. GUIField\
  1133. GUITabs\
  1134. GUICode\
  1135. Interface",
  1136.         ["Filesystem.class"] = "\
  1137. local readDir\
  1138. readDir = function( path )\
  1139.     local t = { }\
  1140.     local files = fs.list( path )\
  1141.     for i = 1,#files do\
  1142.         local data\
  1143.         if fs.isDir( path..\"/\"..files[i] ) then\
  1144.             data = readDir( path..\"/\"..files[i] )\
  1145.         else\
  1146.             local f = fs.open( path..\"/\"..files[i], \"r\" )\
  1147.             if f then\
  1148.                 data = f.readAll( )\
  1149.                 f.close( )\
  1150.             end\
  1151.         end\
  1152.         t[files[i]] = data\
  1153.     end\
  1154.     return t\
  1155. end\
  1156. \
  1157. local saveDir\
  1158. saveDir = function( path, t )\
  1159.     if not fs.isDir( path ) then\
  1160.         fs.makeDir( path )\
  1161.     end\
  1162.     for k, v in pairs( t ) do\
  1163.         if type( v ) == \"table\" then\
  1164.             saveDir( path..\"/\"..k, v )\
  1165.         else\
  1166.             local f = fs.open( path..\"/\"..k, \"w\" )\
  1167.             if f then\
  1168.                 f.write( v )\
  1169.                 f.close( )\
  1170.             end\
  1171.         end\
  1172.     end\
  1173. end\
  1174. \
  1175. local function readPath( path )\
  1176.     local folders = { }\
  1177.     local start, fin = path:find( \"%w+/\" )\
  1178.     local finish = 0\
  1179.     while start do\
  1180.         finish = fin\
  1181.         table.insert( folders, path:sub( start, fin - 1 ) )\
  1182.         start, fin = path:find( \"%w+/\", fin + 1 )\
  1183.     end\
  1184.     local name = path:sub( ( finish ) + 1 )\
  1185.     return name, folders\
  1186. end\
  1187. \
  1188. Filesystem:AddPrivateVariable( \"files\", { }, \"table\" )\
  1189. Filesystem:AddPrivateVariable( \"changed\", false, \"boolean\" )\
  1190. \
  1191. Filesystem:AddMethod( \"HasChanged\", function( self, var )\
  1192.     return var( \"get\", \"private\", \"changed\" )\
  1193. end )\
  1194. \
  1195. Filesystem:AddMethod( \"Open\", function( self, var, path, mode )\
  1196.     if not Class.CheckTypeOf( path, \"string\", \"String\" ) or not Class.CheckTypeOf( mode, \"string\", \"String\" ) then\
  1197.         error( \"Expected string, string, got \"..type( path )..\", \"..type( mode ), 2 )\
  1198.     end\
  1199.     local name, folders = readPath( tostring( path ) )\
  1200.     local f = var( \"get\", \"private\", \"files\" )\
  1201.     for i = 1,#folders do\
  1202.         f[folders[i]] = f[folders[i]] or { }\
  1203.         f = f[folders[i]]\
  1204.     end\
  1205.     local open = true\
  1206.     local handle = { }\
  1207.     if tostring( mode ) == \"r\" then\
  1208.         if not f[name] then return end\
  1209.         local line = 0\
  1210.         local lines = { }\
  1211.         local start, fin = f[name]:find( \"\\n\" )\
  1212.         local finish = 0\
  1213.         while start do\
  1214.             table.insert( lines, f[name]:sub( finish, start - 1 ) )\
  1215.             finish = fin + 1\
  1216.             start, fin = f[name]:find( \"\\n\", fin + 1 )\
  1217.         end\
  1218.         table.insert( lines, f[name]:sub( finish + 1 ) )\
  1219.         handle.readLine = function( )\
  1220.             if not open then return end\
  1221.             line = line + 1\
  1222.             return lines[line]\
  1223.         end\
  1224.         handle.readAll = function( )\
  1225.             return open and f[name] or nil\
  1226.         end\
  1227.         handle.close = function( )\
  1228.             handle = { }\
  1229.             open = false\
  1230.         end\
  1231.     end\
  1232.     if tostring( mode ) == \"w\" then\
  1233.         local str = \"\"\
  1234.         handle.write = function( s )\
  1235.             if type( s ) ~= \"number\" and type( s ) ~= \"string\" then error( \"String expected, got \"..type( s ), 2 ) end\
  1236.             str = str .. s\
  1237.         end\
  1238.         handle.writeLine = function( s )\
  1239.             if type( s ) ~= \"number\" and type( s ) ~= \"string\" then error( \"String expected, got \"..type( s ), 2 ) end\
  1240.             str = str .. s .. \"\\n\"\
  1241.         end\
  1242.         handle.flush = function( )\
  1243.             var( \"set\", \"private\", \"changed\", true )\
  1244.             f[name] = str\
  1245.         end\
  1246.         handle.close = function( )\
  1247.             handle.flush( )\
  1248.             handle = { }\
  1249.             open = false\
  1250.         end\
  1251.     end\
  1252.     if tostring( mode ) == \"a\" then\
  1253.         local str = f[name]\
  1254.         handle.write = function( s )\
  1255.             if type( s ) ~= \"number\" and type( s ) ~= \"string\" then error( \"String expected, got \"..type( s ), 2 ) end\
  1256.             str = str .. s\
  1257.         end\
  1258.         handle.writeLine = function( s )\
  1259.             if type( s ) ~= \"number\" and type( s ) ~= \"string\" then error( \"String expected, got \"..type( s ), 2 ) end\
  1260.             str = str .. s .. \"\\n\"\
  1261.         end\
  1262.         handle.flush = function( )\
  1263.             var( \"set\", \"private\", \"changed\", true )\
  1264.             f[name] = str\
  1265.         end\
  1266.         handle.close = function( )\
  1267.             handle.flush( )\
  1268.             handle = { }\
  1269.             open = false\
  1270.         end\
  1271.     end\
  1272.     return handle\
  1273. end )\
  1274. \
  1275. Filesystem:AddMethod( \"NewDirectory\", function( self, var, path )\
  1276.     if not Class.CheckTypeOf( path, \"string\", \"String\" ) then\
  1277.         error( \"Expected string, got \"..type( path ), 2 )\
  1278.     end\
  1279.     local name, folders = readPath( tostring( path ) )\
  1280.     local f = var( \"get\", \"private\", \"files\" )\
  1281.     for i = 1,#folders do\
  1282.         f[folders[i]] = f[folders[i]] or { }\
  1283.         f = f[folders[i]]\
  1284.     end\
  1285.     if type( f[name] ) == \"string\" then\
  1286.         error( \"File exists\", 2 )\
  1287.     end\
  1288.     var( \"set\", \"private\", \"changed\", true )\
  1289.     f[name] = f[name] or { }\
  1290. end )\
  1291. Filesystem:AddMethod( \"IsDirectory\", function( self, var, path )\
  1292.     if not Class.CheckTypeOf( path, \"string\", \"String\" ) then\
  1293.         error( \"Expected string, got \"..type( path ), 2 )\
  1294.     end\
  1295.     local name, folders = readPath( tostring( path ) )\
  1296.     local f = var( \"get\", \"private\", \"files\" )\
  1297.     for i = 1,#folders do\
  1298.         if type( f[folders[i]] ) ~= \"table\" then\
  1299.             return false\
  1300.         end\
  1301.         f = f[folders[i]]\
  1302.     end\
  1303.     return type( f[name] ) == \"table\"\
  1304. end )\
  1305. Filesystem:AddMethod( \"Exists\", function( self, var, path )\
  1306.     if not Class.CheckTypeOf( path, \"string\", \"String\" ) then\
  1307.         error( \"Expected string, got \"..type( path ), 2 )\
  1308.     end\
  1309.     local name, folders = readPath( tostring( path ) )\
  1310.     local f = var( \"get\", \"private\", \"files\" )\
  1311.     for i = 1,#folders do\
  1312.         if type( f[folders[i]] ) ~= \"table\" then\
  1313.             return false\
  1314.         end\
  1315.         f = f[folders[i]]\
  1316.     end\
  1317.     return not not f[name]\
  1318. end )\
  1319. Filesystem:AddMethod( \"List\", function( self, var, path )\
  1320.     if not Class.CheckTypeOf( path, \"string\", \"String\" ) then\
  1321.         error( \"Expected string, got \"..type( path ), 2 )\
  1322.     end\
  1323.     local name, folders = readPath( tostring( path ) )\
  1324.     local f = var( \"get\", \"private\", \"files\" )\
  1325.     for i = 1,#folders do\
  1326.         if type( f[folders[i]] ) ~= \"table\" then\
  1327.             error( \"Not a directory\", 2 )\
  1328.         end\
  1329.         f = f[folders[i]]\
  1330.     end\
  1331.     if type( f[name] ) ~= \"table\" then\
  1332.         error( \"Not a directory\", 2 )\
  1333.     end\
  1334.     f = f[name]\
  1335.     local t = { }\
  1336.     for k, v in pairs( f ) do\
  1337.         table.insert( t, k )\
  1338.     end\
  1339.     return t\
  1340. end )\
  1341. \
  1342. Filesystem:AddMethod( \"Delete\", function( self, var, path )\
  1343.     if not Class.CheckTypeOf( path, \"string\", \"String\" ) then\
  1344.         error( \"Expected string, got \"..type( path ), 2 )\
  1345.     end\
  1346.     local name, folders = readPath( tostring( path ) )\
  1347.     local f = var( \"get\", \"private\", \"files\" )\
  1348.     for i = 1,#folders do\
  1349.         if type( f[folders[i]] ) ~= \"table\" then\
  1350.             return\
  1351.         end\
  1352.         f = f[folders[i]]\
  1353.     end\
  1354.     var( \"set\", \"private\", \"changed\", true )\
  1355.     f[name] = nil\
  1356. end )\
  1357. Filesystem:AddMethod( \"Copy\", function( self, var, path1, path2 )\
  1358.     if not Class.CheckTypeOf( path1, \"string\", \"String\" ) or not Class.CheckTypeOf( path2, \"string\", \"String\" ) then\
  1359.         error( \"Expected string, string, got \"..type( path1 )..\", \"..type( path2 ), 2 )\
  1360.     end\
  1361.     if self:Exists( path2 ) then\
  1362.         error( \"File exists\", 2 )\
  1363.     end\
  1364.     local name, folders = readPath( tostring( path1 ) )\
  1365.     local str = \"\"\
  1366.     local f = var( \"get\", \"private\", \"files\" )\
  1367.     for i = 1,#folders do\
  1368.         if type( f[folders[i]] ) ~= \"table\" then\
  1369.             return false\
  1370.         end\
  1371.         f = f[folders[i]]\
  1372.     end\
  1373.     var( \"set\", \"private\", \"changed\", true )\
  1374.     local str = f[name]\
  1375.     local name, folders = readPath( tostring( path2 ) )\
  1376.     local f = var( \"get\", \"private\", \"files\" )\
  1377.     for i = 1,#folders do\
  1378.         f[folders[i]] = f[folders[i]] or { }\
  1379.         f = f[folders[i]]\
  1380.     end\
  1381.     var( \"set\", \"private\", \"changed\", true )\
  1382.     f[name] = str\
  1383. end )\
  1384. Filesystem:AddMethod( \"Move\", function( self, var, path1, path2 )\
  1385.     if not Class.CheckTypeOf( path1, \"string\", \"String\" ) or not Class.CheckTypeOf( path2, \"string\", \"String\" ) then\
  1386.         error( \"Expected string, string, got \"..type( path1 )..\", \"..type( path2 ), 2 )\
  1387.     end\
  1388.     self:copy( path1, path2 )\
  1389.     self:delete( path1 )\
  1390. end )\
  1391. \
  1392. Filesystem:AddMethod( \"Combine\", function( self, var, ... )\
  1393.     return fs.combine( ... )\
  1394. end )\
  1395. Filesystem:AddMethod( \"GetFreeSpace\", function( )\
  1396.     return math.huge\
  1397. end )\
  1398. Filesystem:AddMethod( \"GetDrive\", function( )\
  1399.     return \"vhd\"\
  1400. end )\
  1401. Filesystem:AddMethod( \"GetName\", function( self, var, path )\
  1402.     if not Class.CheckTypeOf( path, \"string\", \"String\" ) then\
  1403.         error( \"Expected string, got \"..type( path ), 2 )\
  1404.     end\
  1405.     local name = readPath( tostring( path ) )\
  1406.     return name\
  1407. end )\
  1408. Filesystem:AddMethod( \"IsReadOnly\", function( self, var, path )\
  1409.     if not Class.CheckTypeOf( path, \"string\", \"String\" ) then\
  1410.         error( \"Expected string, got \"..type( path ), 2 )\
  1411.     end\
  1412.     return false\
  1413. end )\
  1414. Filesystem:AddMethod( \"GetSize\", function( self, var, path )\
  1415.     if not Class.CheckTypeOf( path, \"string\", \"String\" ) then\
  1416.         error( \"Expected string, got \"..type( path ), 2 )\
  1417.     end\
  1418.     return 0\
  1419. end )\
  1420. \
  1421. Filesystem:AddMethod( \"Redirect\", function( self, var )\
  1422.     local t = { }\
  1423.     for k, v in pairs( fs ) do\
  1424.         local method = k:sub( 1, 1 ):upper( )..k:sub( 2 )\
  1425.         t[k] = function( ... )\
  1426.             return self[method]( self, ... )\
  1427.         end\
  1428.     end\
  1429.     t.open = function( path, mode )\
  1430.         return self:Open( path, mode )\
  1431.     end\
  1432.     t.isDir = function( ... )\
  1433.         return self:IsDirectory( ... )\
  1434.     end\
  1435.     t.makeDir = function( ... )\
  1436.         return self:NewDirectory( ... )\
  1437.     end\
  1438.     t.find = function( ) end\
  1439.     return t\
  1440. end )\
  1441. \
  1442. Filesystem:AddMethod( \"Load\", function( self, var, path )\
  1443.     if not Class.CheckTypeOf( path, \"string\", \"String\" ) then\
  1444.         error( \"Expected string, got \"..type( path ), 2 )\
  1445.     end\
  1446.     if not fs.isDir( tostring( path ) ) then\
  1447.         error( \"Not a directory\", 2 )\
  1448.     end\
  1449.     var( \"set\", \"private\", \"files\", readDir( tostring( path ) ) )\
  1450.     var( \"set\", \"private\", \"changed\", true )\
  1451. end )\
  1452. Filesystem:AddMethod( \"Save\", function( self, var, path, overwrite )\
  1453.     if not Class.CheckTypeOf( path, \"string\", \"String\" ) then\
  1454.         error( \"Expected string, got \"..type( path ), 2 )\
  1455.     end\
  1456.     if fs.exists( tostring( path ) ) and not overwrite then\
  1457.         error( \"File exists\", 2 )\
  1458.     end\
  1459.     saveDir( tostring( path ), var( \"get\", \"private\", \"files\" ) )\
  1460.     var( \"set\", \"private\", \"changed\", false )\
  1461. end )\
  1462. Filesystem:AddMethod( \"GetFiles\", function( self, var )\
  1463.     local clone\
  1464.     clone = function( t )\
  1465.         local tt = { }\
  1466.         for k, v in pairs( t ) do\
  1467.             if type( v ) == \"table\" then\
  1468.                 tt[k] = clone( v )\
  1469.             else\
  1470.                 tt[k] = v\
  1471.             end\
  1472.         end\
  1473.         return tt\
  1474.     end\
  1475.     return clone( var( \"get\", \"private\", \"files\" ) )\
  1476. end )\
  1477. \
  1478. function Filesystem:Init( var, args )\
  1479.     var( \"set\", \"private\", \"files\", { } )\
  1480.     if Class.CheckTypeOf( args[1], \"string\", \"String\" ) and fs.isDir( tostring( args[1] ) ) then\
  1481.         self:Load( tostring( args[1] ) )\
  1482.     elseif Class.CheckTypeOf( args[1], \"Package\" ) then\
  1483.         local files = args[1]:GetFiles( )\
  1484.         local ok, err = pcall( var, \"set\", \"private\", \"files\", files )\
  1485.         if not ok then\
  1486.             error( err, 2 )\
  1487.         end\
  1488.         var( \"set\", \"private\", \"loaded\", true )\
  1489.     end\
  1490.     var( \"set\", \"private\", \"changed\", false )\
  1491. end",
  1492.         ["GUICode.class"] = "\
  1493. local tabLength = 4\
  1494. local split = function( str, pat )\
  1495.     if type( str ) ~= \"string\" then error( \"Failed to split \"..type( str )..\" with \"..pat, 2 ) end\
  1496.     local parts = { }\
  1497.     local last = 1\
  1498.     for i = 1,str:len( ) do\
  1499.         if str:sub( i, i + #pat - 1 ) == pat then\
  1500.             table.insert( parts, str:sub( last, i-1 ) )\
  1501.             last = i + 1\
  1502.         end\
  1503.     end\
  1504.     if last <= #str then\
  1505.         table.insert( parts, str:sub( last, #str ) )\
  1506.     end\
  1507.     return parts\
  1508. end\
  1509. \
  1510. local function formatLine( line, syntax, bc, tc )\
  1511.     local line = string.gsub( line, \"  \", string.rep( \" \", tabLength ) )\
  1512.     local fline = { }\
  1513.     for i = 1,#line do\
  1514.         fline[i] = { char = line:sub( i, i ), bc = bc, tc = tc }\
  1515.     end\
  1516.     for k, v in pairs( syntax.words ) do\
  1517.         for ii = 1,#v do\
  1518.             local last = 1\
  1519.             local start, fin = string.find( line, v[ii].condition )\
  1520.             while start and fin do\
  1521.                 local s, f = string.find( line:sub( start, fin ), k )\
  1522.                 if s and f then\
  1523.                     for i = s + start - 1, f + start - 1 do\
  1524.                         if line:sub( i, i ) ~= \"(\" and line:sub( i, i ) ~= \")\" then\
  1525.                             fline[i] = { char = line:sub( i, i ), bc = bc, tc = v[ii].colour:Get( ) }\
  1526.                         end\
  1527.                     end\
  1528.                 end\
  1529.                 start, fin = string.find( line, k, fin + 1 )\
  1530.             end\
  1531.         end\
  1532.     end\
  1533.     local stringstarted = false\
  1534.     local startpos = 0\
  1535.     for i = 1,#line do\
  1536.         if ( line:sub( i, i ) == \"\\\"\" or line:sub( i, i ) == \"'\" ) and line:sub( i-1, i-1 ) ~= \"\\\\\" then\
  1537.             if stringstarted then\
  1538.                 if line:sub( i, i ) == stringstarted then\
  1539.                     for ind = startpos, i do\
  1540.                         fline[ind] = { char = line:sub( ind, ind ), bc = bc, tc = syntax.stringColour:Get( ) }\
  1541.                     end\
  1542.                     stringstarted = false\
  1543.                 end\
  1544.             else\
  1545.                 stringstarted = line:sub( i, i )\
  1546.                 startpos = i\
  1547.             end\
  1548.         end\
  1549.     end\
  1550.     for i = 1,#line do\
  1551.         if line:sub( i, i + 1 ) == \"--\" then\
  1552.             for ind = i, #line do\
  1553.                 fline[ind] = { char = line:sub( ind, ind ), bc = bc, tc = syntax.commentColour:Get( ) }\
  1554.             end\
  1555.         end\
  1556.     end\
  1557.     return fline\
  1558. end\
  1559. \
  1560. local function renderLine( f, x, y, w, xoffset )\
  1561.     for i = 1,xoffset do\
  1562.         table.remove( f, 1 )\
  1563.     end\
  1564.     for i = -1, xoffset, -1 do\
  1565.         table.insert( f, 1, { char = \" \", bc = 32768, tc = 1 } )\
  1566.     end\
  1567.     local start = 1\
  1568.     if not f[1] then return 0 end\
  1569.     local text = f[1].char\
  1570.     local bc = f[1].bc\
  1571.     local tc = f[1].tc\
  1572.     for i = 2, #f do\
  1573.         if start > w then return end\
  1574.         if f[i].bc == bc and f[i].tc == tc then\
  1575.             text = text..f[i].char\
  1576.         else\
  1577.             if start + x - 1 < 1 then\
  1578.                 if start + #text > 1 then\
  1579.                     text = text:sub( - (start + x - 1) )\
  1580.                     start = 1\
  1581.                 end\
  1582.             end\
  1583.             if start + x - 1 >= 1 then\
  1584.                 term.setCursorPos( start + x - 1, y )\
  1585.                 term.setBackgroundColour( bc )\
  1586.                 term.setTextColour( tc )\
  1587.                 if start + #text > w then\
  1588.                     term.write( text:sub( 1, w - start + 1 ) )\
  1589.                     return w\
  1590.                 end\
  1591.                 term.write( text )\
  1592.             end\
  1593.             text = f[i].char\
  1594.             bc = f[i].bc\
  1595.             tc = f[i].tc\
  1596.             start = i\
  1597.         end\
  1598.     end\
  1599.     if start + #text > w then\
  1600.         text = text:sub( 1, w - start + 1 )\
  1601.     end\
  1602.     term.setCursorPos( x + start - 1, y )\
  1603.     term.setBackgroundColour( bc )\
  1604.     term.setTextColour( tc )\
  1605.     term.write( text )\
  1606.     return #f\
  1607. end\
  1608. \
  1609. GUICode:Extends( \"GUIBase\" )\
  1610. GUICode:AddVariable( \"cursorX\", 1, \"number\" )\
  1611. GUICode:AddVariable( \"cursorY\", 1, \"number\" )\
  1612. GUICode:AddVariable( \"backgroundColour\", \"\", \"Colour\" )\
  1613. GUICode:AddVariable( \"lineColour\", \"\", \"Colour\" )\
  1614. GUICode:AddVariable( \"textColour\", \"\", \"Colour\" )\
  1615. \
  1616. GUICode:AddPrivateVariable( \"scrollX\", 0, \"number\" )\
  1617. GUICode:AddPrivateVariable( \"scrollY\", 0, \"number\" )\
  1618. GUICode:AddPrivateVariable( \"syntax\", { }, \"table\" )\
  1619. GUICode:AddPrivateVariable( \"lines\", { }, \"table\" )\
  1620. GUICode:AddPrivateVariable( \"focussed\", false, \"boolean\" )\
  1621. \
  1622. GUICode:AddMethod( \"SetCommentColour\", function( self, var, col )\
  1623.     if Class.CheckTypeOf( col, \"Colour\" ) then\
  1624.         var( \"get\", \"private\", \"syntax\" ).commentColour = col\
  1625.         return\
  1626.     end\
  1627.     error( \"Expected Colour, got \"..type( col ), 2 )\
  1628. end )\
  1629. GUICode:AddMethod( \"GetCommentColour\", function( self, var )\
  1630.     return var( \"get\", \"private\", \"syntax\" ).commentColour\
  1631. end )\
  1632. \
  1633. GUICode:AddMethod( \"SetStringColour\", function( self, var, col )\
  1634.     if Class.CheckTypeOf( col, \"Colour\" ) then\
  1635.         var( \"get\", \"private\", \"syntax\" ).stringColour = col\
  1636.         return\
  1637.     end\
  1638.     error( \"Expected Colour, got \"..type( col ), 2 )\
  1639. end )\
  1640. GUICode:AddMethod( \"GetStringColour\", function( self, var )\
  1641.     return var( \"get\", \"private\", \"syntax\" ).stringColour\
  1642. end )\
  1643. \
  1644. GUICode:AddMethod( \"SetWordColour\", function( self, var, word, col, condition )\
  1645.     if Class.CheckTypeOf( col, \"Colour\" ) then\
  1646.         condition = condition or word\
  1647.         local s = var( \"get\", \"private\", \"syntax\" )\
  1648.         s.words[word] = s.words[word] or { }\
  1649.         table.insert( s.words[word], { condition = condition, colour = col } )\
  1650.         return\
  1651.     end\
  1652.     error( \"Expected Colour, got \"..type( col ), 2 )\
  1653. end )\
  1654. \
  1655. GUICode:AddMethod( \"SetLines\", function( self, var, lines )\
  1656.     if type( lines ) == \"table\" then\
  1657.         local l = { }\
  1658.         for i = 1,#lines do\
  1659.             l[i] = tostring( lines[i] )\
  1660.         end\
  1661.         var( \"set\", \"private\", \"lines\", l )\
  1662.         return\
  1663.     end\
  1664.     error( \"Expected table, got \"..type( lines ), 2 )\
  1665. end )\
  1666. GUICode:AddMethod( \"GetLines\", function( self, var )\
  1667.     return var( \"get\", \"private\", \"lines\" )\
  1668. end )\
  1669. \
  1670. GUICode:AddMethod( \"SetText\", function( self, var, str )\
  1671.     if Class.CheckTypeOf( str, \"string\", \"String\" ) then\
  1672.         return self:SetLines( split( tostring( str ), \"\\n\" ) )\
  1673.     end\
  1674.     error( \"Expected string, got \"..type( str ), 2 )\
  1675. end )\
  1676. GUICode:AddMethod( \"GetText\", function( self, var )\
  1677.     return table.concat( var( \"get\", \"private\", \"lines\" ), \"\\n\" )\
  1678. end )\
  1679. \
  1680. GUICode:AddMethod( \"GetDisplayedLineNumber\", function( self, var, y )\
  1681.     return y + var( \"get\", \"private\", \"scrollY\" )\
  1682. end )\
  1683. \
  1684. GUICode:AddMethod( \"UseLuaSyntax\", function( self, var )\
  1685.         local keywords = {\
  1686.             \"while\";\
  1687.             \"for\";\
  1688.             \"true\";\
  1689.             \"false\";\
  1690.             \"do\";\
  1691.             \"if\";\
  1692.             \"else\";\
  1693.             \"elseif\";\
  1694.             \"then\";\
  1695.             \"end\";\
  1696.             \"not\";\
  1697.             \"local\";\
  1698.             \"break\";\
  1699.             \"function\"\
  1700.         }\
  1701.         local kcol = New.Colour \"blue\"\
  1702.         for i = 1,#keywords do\
  1703.             self:SetWordColour( \"%s\"..keywords[i]..\"%s\", kcol )\
  1704.             self:SetWordColour( \"%s\"..keywords[i]..\"$\", kcol )\
  1705.             self:SetWordColour( \"^\"..keywords[i]..\"%s\", kcol )\
  1706.             self:SetWordColour( \"^\"..keywords[i]..\"$\", kcol )\
  1707.         end\
  1708. \
  1709.         local functions = {\
  1710.             \"tostring\";\
  1711.             \"tonumber\";\
  1712.             \"pairs\";\
  1713.             \"ipairs\";\
  1714.             \"print\";\
  1715.             \"write\";\
  1716.             \"setmetatable\";\
  1717.             \"getmetatable\";\
  1718.             \"setfenv\";\
  1719.             \"getfenv\";\
  1720.         }\
  1721.         local fcol = New.Colour \"cyan\"\
  1722.         for i = 1,#functions do\
  1723.             self:SetWordColour( functions[i], fcol, \"%s\"..functions[i]..\"%s*%(.*%)\" )\
  1724.             self:SetWordColour( functions[i], fcol, \"^\"..functions[i]..\"%s*%(.*%)\" )\
  1725.         end\
  1726. \
  1727.         local tables = {\
  1728.             \"string\";\
  1729.             \"table\";\
  1730.             \"math\";\
  1731.         }\
  1732.         local tcol = New.Colour \"purple\"\
  1733.         for i = 1,#tables do\
  1734.             self:SetWordColour( \"%s\"..tables[i]..\"%.%w+\", tcol )\
  1735.             self:SetWordColour( \"%s\"..tables[i]..\"%.\", tcol )\
  1736.             self:SetWordColour( \"^\"..tables[i]..\"%.%w+\", tcol )\
  1737.             self:SetWordColour( \"^\"..tables[i]..\"%.\", tcol )\
  1738.         end\
  1739. \
  1740.         local words = {\
  1741.             [\"{\"] = New.Colour \"lightBlue\";\
  1742.             [\"}\"] = New.Colour \"lightBlue\";\
  1743.             [\"%[\"] = New.Colour \"lightBlue\";\
  1744.             [\"%]\"] = New.Colour \"lightBlue\";\
  1745.             [\"%d\"] = New.Colour \"orange\";\
  1746.             [\"easter egg\"] = New.Colour \"lime\";\
  1747.         }\
  1748.         for k, v in pairs( words ) do\
  1749.             self:SetWordColour( k, v )\
  1750.         end\
  1751.         self:SetWordColour( \"error\", New.Colour \"red\", \"error%s*%(.*%)\" )\
  1752.         self:SetWordColour( \"#%w+\", New.Colour \"lightBlue\", \"#%w+\" )\
  1753. end )\
  1754. \
  1755. GUICode:AddMethod( \"SetCursorPos\", function( self, var, x, y, scroll )\
  1756.     local lines = var( \"get\", \"private\", \"lines\" )\
  1757.     if lines[y] then\
  1758.         var( \"set\", \"public\", \"cursorX\", math.max( math.min( x, #lines[y] + 1 ), 1 ) )\
  1759.         var( \"set\", \"public\", \"cursorY\", y )\
  1760.     else\
  1761.         if y < 1 then\
  1762.             var( \"set\", \"public\", \"cursorX\", 1 )\
  1763.             var( \"set\", \"public\", \"cursorY\", 1 )\
  1764.         else\
  1765.             var( \"set\", \"public\", \"cursorX\", #( lines[#lines] or { } ) + 1 )\
  1766.             var( \"set\", \"public\", \"cursorY\", math.max( #lines, 1 ) )\
  1767.         end\
  1768.     end\
  1769.     if scroll then\
  1770.         local dist = 0\
  1771.         local x, y = var( \"get\", \"public\", \"cursorX\" ), var( \"get\", \"public\", \"cursorY\" )\
  1772.         local xs, ys = var( \"get\", \"private\", \"scrollX\" ), var( \"get\", \"private\", \"scrollY\" )\
  1773.         for i = 1,x-1 do\
  1774.             dist = dist + ( lines[y]:sub( i, i ) == \"  \" and tabLength or 1 )\
  1775.         end\
  1776.         if dist < xs + 1 then\
  1777.             var( \"set\", \"private\", \"scrollX\", math.max( dist - 1, 0 ) )\
  1778.         elseif dist + 1 > xs + self.width then\
  1779.             var( \"set\", \"private\", \"scrollX\", dist + 1 - self.width )\
  1780.         end\
  1781.         if y <= ys then\
  1782.             var( \"set\", \"private\", \"scrollY\", y - 1 )\
  1783.         elseif y > ys + self.height then\
  1784.             var( \"set\", \"private\", \"scrollY\", y - self.height )\
  1785.         end\
  1786.     end\
  1787. end )\
  1788. \
  1789. GUICode:AddMethod( \"Render\", function( self, var, x, y )\
  1790.     local lines = var( \"get\", \"private\", \"lines\" )\
  1791.     for i = 1,self.height do\
  1792.         local line = i + var( \"get\", \"private\", \"scrollY\" )\
  1793.         if lines[line] then\
  1794.             local bc = ( line == var( \"get\", \"public\", \"cursorY\" ) and var( \"get\", \"private\", \"focussed\" ) ) and var( \"get\", \"public\", \"lineColour\" ):Get( ) or var( \"get\", \"public\", \"backgroundColour\" ):Get( )\
  1795.             \
  1796.             local fline = formatLine( lines[line], var( \"get\", \"private\", \"syntax\" ), bc, var( \"get\", \"public\", \"textColour\" ):Get( ) )\
  1797.             local length = renderLine( fline, x, y + i - 1, self.width, var( \"get\", \"private\", \"scrollX\" ) )\
  1798.             if length < self.width then\
  1799.                 term.setCursorPos( x + length, y + i - 1 )\
  1800.                 term.setBackgroundColour( bc )\
  1801.                 term.write( string.rep( \" \", self.width - length ) )\
  1802.             end\
  1803.         else\
  1804.             term.setCursorPos( x, y + i - 1 )\
  1805.             term.setBackgroundColour( var( \"get\", \"public\", \"backgroundColour\" ):Get( ) )\
  1806.             term.write( string.rep( \" \", self.width ) )\
  1807.         end\
  1808.     end\
  1809.     if self.active and var( \"get\", \"private\", \"focussed\" ) then\
  1810.         local xx, yy = var( \"get\", \"public\", \"cursorX\" ), var( \"get\", \"public\", \"cursorY\" )\
  1811.         local line = lines[yy]\
  1812.         local pos = 0\
  1813.         for i = 1,xx - 1 do\
  1814.             if line:sub( i, i ) == \"   \" then\
  1815.                 pos = pos + tabLength\
  1816.             else\
  1817.                 pos = pos + 1\
  1818.             end\
  1819.         end\
  1820.         self:RequestCursorBlink( x + ( pos + 1 - var( \"get\", \"private\", \"scrollX\" ) ) - 1, y + ( yy - var( \"get\", \"private\", \"scrollY\" ) ) - 1, var( \"get\", \"public\", \"textColour\" ):Get( ) )\
  1821.     end\
  1822. end )\
  1823. \
  1824. GUICode:AddMethod( \"MouseEvent\", function( self, var, x, y, ev )\
  1825.     if ev.target == self then\
  1826.         self:FocusOn( )\
  1827.         if ev.type == \"Click\" then\
  1828.             var( \"set\", \"private\", \"focussed\", true )\
  1829.             local lines = var( \"get\", \"private\", \"lines\" )\
  1830.             local line = tostring( lines[y+var( \"get\", \"private\", \"scrollY\" )] )\
  1831.             local max = #string.gsub( line, \"  \", string.rep( \" \", tabLength ) )\
  1832.             if x + var( \"get\", \"private\", \"scrollX\" ) > max then\
  1833.                 self:SetCursorPos( max + 1, y + var( \"get\", \"private\", \"scrollY\", true ) )\
  1834.                 return\
  1835.             end\
  1836.             local pos = -var( \"get\", \"private\", \"scrollX\" )\
  1837.             local rpos = 0\
  1838.             for i = 1,#line do\
  1839.                 pos = pos + ( line:sub( i, i ) == \"    \" and tabLength or 1 )\
  1840.                 rpos = rpos + 1\
  1841.                 if pos >= x then\
  1842.                     break\
  1843.                 end\
  1844.             end\
  1845.             self:SetCursorPos( rpos, y + var( \"get\", \"private\", \"scrollY\" ), true )\
  1846.         elseif ev.type == \"Scroll\" then\
  1847.             local s = var( \"get\", \"private\", \"scrollY\" )\
  1848.             var( \"set\", \"private\", \"scrollY\", math.max( math.min( s - ev.button, #var( \"get\", \"private\", \"lines\" ) - self.height ), 0 ) )\
  1849.         end\
  1850.     else\
  1851.         var( \"set\", \"private\", \"focussed\", false )\
  1852.     end\
  1853. end )\
  1854. \
  1855. GUICode:AddMethod( \"handlesKeyboard\", function( self, var )\
  1856.     return var( \"get\", \"private\", \"focussed\" )\
  1857. end )\
  1858. \
  1859. GUICode:AddMethod( \"Event\", function( self, var, ev )\
  1860.     if ev[1] == \"Keyboard\" and ev[5] == self and var( \"get\", \"private\", \"focussed\" ) then\
  1861.         local x, y = var( \"get\", \"public\", \"cursorX\" ), var( \"get\", \"public\", \"cursorY\" )\
  1862.         local lines = var( \"get\", \"private\", \"lines\" )\
  1863.         local xs, ys = var( \"get\", \"private\", \"scrollX\" ), var( \"get\", \"private\", \"scrollY\" )\
  1864.         if ev[3] == \"up\" then\
  1865.             self:SetCursorPos( x, y - 1, true )\
  1866.         elseif ev[3] == \"down\" then\
  1867.             self:SetCursorPos( x, y + 1, true )\
  1868.         elseif ev[3] == \"left\" then\
  1869.             self:SetCursorPos( x - 1, y, true )\
  1870.         elseif ev[3] == \"right\" then\
  1871.             self:SetCursorPos( x + 1, y, true )\
  1872.         elseif ev[3] == \"tab\" then\
  1873.             lines[y] = lines[y]:sub( 1, x - 1 )..\" \"..lines[y]:sub( x )\
  1874.             self:SetCursorPos( x + 1, y, true )\
  1875.         elseif ev[3] == \"backspace\" then\
  1876.             if x == 1 then\
  1877.                 if y > 1 then\
  1878.                     self:SetCursorPos( #lines[y-1]+1, y-1, true )\
  1879.                     lines[y-1] = lines[y-1]..lines[y]\
  1880.                     table.remove( lines, y )\
  1881.                 end\
  1882.             else\
  1883.                 lines[y] = lines[y]:sub( 1, x-2 )..lines[y]:sub( x )\
  1884.                 self:SetCursorPos( x - 1, y, true )\
  1885.             end\
  1886.         elseif ev[3] == \"enter\" then\
  1887.             table.insert( lines, y + 1, lines[y]:sub( x ) )\
  1888.             lines[y] = lines[y]:sub( 1, x - 1 )\
  1889.             if #lines[y+1] ~= 0 then\
  1890.                 self:SetCursorPos( 1, y + 1, true )\
  1891.                 return \
  1892.             end\
  1893.             local tabcount = 0\
  1894.             for i = 1,#lines[y] do\
  1895.                 if lines[y]:sub( i, i ) == \"   \" then\
  1896.                     tabcount = tabcount + 1\
  1897.                 else\
  1898.                     break\
  1899.                 end\
  1900.             end\
  1901.             lines[y+1] = string.rep( \" \", tabcount )..lines[y+1]\
  1902.             self:SetCursorPos( tabcount + 1, y + 1, true )\
  1903.         elseif ev[3] == \"delete\" then\
  1904.             if x == #lines[y] + 1 then\
  1905.                 lines[y] = lines[y]..( lines[y+1] or \"\" )\
  1906.                 table.remove( lines, y + 1 )\
  1907.             else\
  1908.                 lines[y] = lines[y]:sub( 1, x - 1 )..lines[y]:sub( x + 1 )\
  1909.             end\
  1910.         elseif ev[2] then\
  1911.             lines[y] = ( lines[y] or \"\" ):sub( 1, x - 1 )..ev[3]..( lines[y] or \"\" ):sub( x )\
  1912.             self:SetCursorPos( x + 1, y, true )\
  1913.         end\
  1914.     end\
  1915. end )\
  1916. \
  1917. function GUICode:Init( var, args )\
  1918.     var( \"set\", \"private\", \"syntax\", {\
  1919.         words = { };\
  1920.         stringColour = New.Colour \"lightGrey\";\
  1921.         commentColour = New.Colour \"green\";\
  1922.     } )\
  1923.     var( \"set\", \"private\", \"lines\", { } )\
  1924.     var( \"set\", \"public\", \"lineColour\", New.Colour \"black\" )\
  1925.     var( \"set\", \"public\", \"backgroundColour\", New.Colour \"black\" )\
  1926.     var( \"set\", \"public\", \"textColour\", New.Colour \"white\" )\
  1927.     if type( args[5] ) == \"table\" then\
  1928.         self:SetLines( args[5] )\
  1929.     elseif Class.CheckTypeOf( args[5], \"string\", \"String\" ) then\
  1930.         self:SetText( tostring( args[5] ) )\
  1931.     end\
  1932. end",
  1933.         ["FilesystemRedirect.class"] = "\
  1934. FilesystemRedirect:AddPrivateVariable( \"path\", \"\", \"string\", \"String\" )\
  1935. FilesystemRedirect:AddPrivateVariable( \"allowRomAccess\", false, \"boolean\" )\
  1936. \
  1937. FilesystemRedirect:AddMethod( \"SetRomAccess\", function( self, var, value )\
  1938.     var( \"set\", \"private\", \"allowRomAccess\", not not value )\
  1939. end )\
  1940. \
  1941. FilesystemRedirect:AddMethod( \"GetPath\", function( self, var, path )\
  1942.     if path and path:find( \"^rom/\" ) then\
  1943.         return \"\"\
  1944.     end\
  1945.     return var( \"get\", \"private\", \"path\" )\
  1946. end )\
  1947. FilesystemRedirect:AddMethod( \"SetPath\", function( self, var, path )\
  1948.     if not Class.CheckTypeOf( path, \"string\", \"String\" ) then\
  1949.         error( \"Expected string, got \"..type( path ), 2 )\
  1950.     end\
  1951.     var( \"set\", \"private\", \"path\", path )\
  1952. end )\
  1953. \
  1954. FilesystemRedirect:AddPrivateMethod( \"GetPath\", function( self, var, path )\
  1955.     if path and path:find( \"^rom/\" ) then\
  1956.         return \"\"\
  1957.     end\
  1958.     return tostring( var( \"get\", \"private\", \"path\" ) )\
  1959. end )\
  1960. FilesystemRedirect:AddPrivateMethod( \"FormatPath\", function( self, var, path )\
  1961.     return fs.combine( var( \"call\", \"pmethod\", \"GetPath\", path ), path )\
  1962. end )\
  1963. \
  1964. FilesystemRedirect:AddMethod( \"Open\", function( self, var, path, mode )\
  1965.     if not Class.CheckTypeOf( path, \"string\", \"String\" ) or not Class.CheckTypeOf( mode, \"string\", \"String\" ) then\
  1966.         error( \"Expected string, string, got \"..type( path )..\", \"..type( mode ), 2 )\
  1967.     end\
  1968.     return fs.open( var( \"call\", \"pmethod\", \"FormatPath\", path ), mode )\
  1969. end )\
  1970. \
  1971. FilesystemRedirect:AddMethod( \"NewDirectory\", function( self, var, path )\
  1972.     if not Class.CheckTypeOf( path, \"string\", \"String\" ) then\
  1973.         error( \"Expected string, got \"..type( path ), 2 )\
  1974.     end\
  1975.     return fs.makeDir( var( \"call\", \"pmethod\", \"FormatPath\", path ) )\
  1976. end )\
  1977. FilesystemRedirect:AddMethod( \"IsDirectory\", function( self, var, path )\
  1978.     if not Class.CheckTypeOf( path, \"string\", \"String\" ) then\
  1979.         error( \"Expected string, got \"..type( path ), 2 )\
  1980.     end\
  1981.     return fs.isDir( var( \"call\", \"pmethod\", \"FormatPath\", path ) )\
  1982. end )\
  1983. FilesystemRedirect:AddMethod( \"Exists\", function( self, var, path )\
  1984.     if not Class.CheckTypeOf( path, \"string\", \"String\" ) then\
  1985.         error( \"Expected string, got \"..type( path ), 2 )\
  1986.     end\
  1987.     return fs.exists( var( \"call\", \"pmethod\", \"FormatPath\", path ) )\
  1988. end )\
  1989. FilesystemRedirect:AddMethod( \"List\", function( self, var, path )\
  1990.     if not Class.CheckTypeOf( path, \"string\", \"String\" ) then\
  1991.         error( \"Expected string, got \"..type( path ), 2 )\
  1992.     end\
  1993.     return fs.list( var( \"call\", \"pmethod\", \"FormatPath\", path ) )\
  1994. end )\
  1995. \
  1996. FilesystemRedirect:AddMethod( \"Delete\", function( self, var, path )\
  1997.     if not Class.CheckTypeOf( path, \"string\", \"String\" ) then\
  1998.         error( \"Expected string, got \"..type( path ), 2 )\
  1999.     end\
  2000.     return fs.delete( var( \"call\", \"pmethod\", \"FormatPath\", path ) )\
  2001. end )\
  2002. FilesystemRedirect:AddMethod( \"Copy\", function( self, var, path1, path2 )\
  2003.     if not Class.CheckTypeOf( path1, \"string\", \"String\" ) or not Class.CheckTypeOf( path2, \"string\", \"String\" ) then\
  2004.         error( \"Expected string, string, got \"..type( path1 )..\", \"..type( path2 ), 2 )\
  2005.     end\
  2006.     return fs.copy( var( \"call\", \"pmethod\", \"FormatPath\", path1 ), var( \"call\", \"pmethod\", \"FormatPath\", path2 ) )\
  2007. end )\
  2008. FilesystemRedirect:AddMethod( \"Move\", function( self, var, path1, path2 )\
  2009.     if not Class.CheckTypeOf( path1, \"string\", \"String\" ) or not Class.CheckTypeOf( path2, \"string\", \"String\" ) then\
  2010.         error( \"Expected string, string, got \"..type( path1 )..\", \"..type( path2 ), 2 )\
  2011.     end\
  2012.     return fs.copy( var( \"call\", \"pmethod\", \"FormatPath\", path1 ), var( \"call\", \"pmethod\", \"FormatPath\", path2 ) )\
  2013. end )\
  2014. \
  2015. FilesystemRedirect:AddMethod( \"Combine\", function( self, var, ... )\
  2016.     return fs.combine( ... )\
  2017. end )\
  2018. FilesystemRedirect:AddMethod( \"GetFreeSpace\", function( self, var, path )\
  2019.     if not Class.CheckTypeOf( path, \"string\", \"String\" ) then\
  2020.         error( \"Expected string, got \"..type( path ), 2 )\
  2021.     end\
  2022.     return fs.getFreeSpace( var( \"call\", \"pmethod\", \"FormatPath\", path ) )\
  2023. end )\
  2024. FilesystemRedirect:AddMethod( \"GetDrive\", function( self, var, path )\
  2025.     if not Class.CheckTypeOf( path, \"string\", \"String\" ) then\
  2026.         error( \"Expected string, got \"..type( path ), 2 )\
  2027.     end\
  2028.     return fs.getDrive( var( \"call\", \"pmethod\", \"FormatPath\", path ) )\
  2029. end )\
  2030. FilesystemRedirect:AddMethod( \"GetName\", function( self, var, path )\
  2031.     if not Class.CheckTypeOf( path, \"string\", \"String\" ) then\
  2032.         error( \"Expected string, got \"..type( path ), 2 )\
  2033.     end\
  2034.     return fs.getName( path )\
  2035. end )\
  2036. FilesystemRedirect:AddMethod( \"IsReadOnly\", function( self, var, path )\
  2037.     if not Class.CheckTypeOf( path, \"string\", \"String\" ) then\
  2038.         error( \"Expected string, got \"..type( path ), 2 )\
  2039.     end\
  2040.     return fs.isReadOnly( var( \"call\", \"pmethod\", \"FormatPath\", path ) )\
  2041. end )\
  2042. FilesystemRedirect:AddMethod( \"GetSize\", function( self, var, path )\
  2043.     if not Class.CheckTypeOf( path, \"string\", \"String\" ) then\
  2044.         error( \"Expected string, got \"..type( path ), 2 )\
  2045.     end\
  2046.     return fs.getSize( var( \"call\", \"pmethod\", \"FormatPath\", path ) )\
  2047. end )\
  2048. FilesystemRedirect:AddMethod( \"Find\", function( self, var, path )\
  2049.     if not Class.CheckTypeOf( path, \"string\", \"String\" ) then\
  2050.         error( \"Expected string, got \"..type( path ), 2 )\
  2051.     end\
  2052.     return fs.find( var( \"call\", \"pmethod\", \"FormatPath\", path ) )\
  2053. end )\
  2054. \
  2055. FilesystemRedirect:AddMethod( \"Redirect\", function( self, var )\
  2056.     local t = { }\
  2057.     for k, v in pairs( fs ) do\
  2058.         local method = k:sub( 1, 1 ):upper( )..k:sub( 2 )\
  2059.         t[k] = function( ... )\
  2060.             return self[method]( self, ... )\
  2061.         end\
  2062.     end\
  2063.     t.open = function( path, mode )\
  2064.         return self:Open( path, mode )\
  2065.     end\
  2066.     t.isDir = function( ... )\
  2067.         return self:IsDirectory( ... )\
  2068.     end\
  2069.     t.makeDir = function( ... )\
  2070.         return self:NewDirectory( ... )\
  2071.     end\
  2072.     return t\
  2073. end )\
  2074. \
  2075. FilesystemRedirect:AddMethod( \"Load\", function( self, var, path )\
  2076.     if not Class.CheckTypeOf( path, \"string\", \"String\" ) then\
  2077.         error( \"Expected string, got \"..type( path ), 2 )\
  2078.     end\
  2079.     if not fs.isDir( tostring( path ) ) then\
  2080.         error( \"Not a directory\", 2 )\
  2081.     end\
  2082.     var( \"set\", \"private\", \"files\", readDir( tostring( path ) ) )\
  2083.     var( \"set\", \"private\", \"changed\", true )\
  2084. end )\
  2085. FilesystemRedirect:AddMethod( \"Save\", function( self, var, path, overwrite )\
  2086.     if not Class.CheckTypeOf( path, \"string\", \"String\" ) then\
  2087.         error( \"Expected string, got \"..type( path ), 2 )\
  2088.     end\
  2089.     if fs.exists( tostring( path ) ) and not overwrite then\
  2090.         error( \"File exists\", 2 )\
  2091.     end\
  2092.     saveDir( tostring( path ), var( \"get\", \"private\", \"files\" ) )\
  2093.     var( \"set\", \"private\", \"changed\", false )\
  2094. end )\
  2095. FilesystemRedirect:AddMethod( \"GetFiles\", function( self, var )\
  2096.     local clone\
  2097.     clone = function( t )\
  2098.         local tt = { }\
  2099.         for k, v in pairs( t ) do\
  2100.             if type( v ) == \"table\" then\
  2101.                 tt[k] = clone( v )\
  2102.             else\
  2103.                 tt[k] = v\
  2104.             end\
  2105.         end\
  2106.         return tt\
  2107.     end\
  2108.     return clone( var( \"get\", \"private\", \"files\" ) )\
  2109. end )\
  2110. \
  2111. function FilesystemRedirect:Describe( var )\
  2112.     local path = var( \"get\", \"private\", \"path\" )\
  2113.     if path then\
  2114.         return \"Filesystem: \"..tostring( path )\
  2115.     else\
  2116.         return \"Filesystem Redirect\"\
  2117.     end\
  2118. end\
  2119. \
  2120. function FilesystemRedirect:Init( var, args )\
  2121.     if Class.CheckTypeOf( args[1], \"string\", \"String\" ) and fs.isDir( tostring( args[1] ) ) then\
  2122.         var( \"set\", \"private\", \"path\", args[1] )\
  2123.     end\
  2124. end",
  2125.         ["GUITextbox.class"] = "\
  2126. GUITextbox:Extends( \"GUIText\" )\
  2127. \
  2128. GUITextbox:AddVariable( \"focussedBackgroundColour\", New.Colour( \"white\" ), \"Colour\" )\
  2129. GUITextbox:AddVariable( \"focussedTextColour\", New.Colour( \"black\" ), \"Colour\" )\
  2130. GUITextbox:AddVariable( \"highlightBackgroundColour\", New.Colour( \"blue\" ), \"Colour\" )\
  2131. GUITextbox:AddVariable( \"highlightTextColour\", New.Colour( \"black\" ), \"Colour\" )\
  2132. GUITextbox:AddVariable( \"inputmode\", \"set\", \"string\", \"String\" )\
  2133. GUITextbox:AddVariable( \"canHighlight\", true, \"boolean\" )\
  2134. \
  2135. GUITextbox:AddStaticVariable( \"cursorPos\", 1, \"number\" )\
  2136. GUITextbox:AddPrivateVariable( \"focussed\", false, \"boolean\" )\
  2137. GUITextbox:AddPrivateVariable( \"highlight\", { }, \"table\" )\
  2138. \
  2139. GUITextbox:AddMethod( \"GetHighlightedText\", function( self, var )\
  2140.     local highlight = var( \"get\", \"private\", \"highlight\" )\
  2141.     if highlight.current then\
  2142.         local hpos1, hpos2 = math.min( var( \"get\", \"private\", \"highlight\" ).pos, self.cursorPos ), math.max( var( \"get\", \"private\", \"highlight\" ).pos, self.cursorPos )\
  2143.         return table.concat( self:GetLines( ), \"\" ):sub( hpos1, hpos2 + 1 )\
  2144.     end\
  2145.     return false\
  2146. end )\
  2147. \
  2148. GUITextbox:AddMethod( \"handlesKeyboard\", function( self, var )\
  2149.     return var( \"get\", \"private\", \"focussed\" )\
  2150. end )\
  2151. \
  2152. GUITextbox:AddMethod( \"MouseEvent\", function( self, var, x, y, ev )\
  2153.     if ev.target == self and ev.type == \"Click\" then\
  2154.         local callback = self:GetCallback( \"OnFocus\" )\
  2155.         if callback then\
  2156.             callback( self, x, y, ev.button )\
  2157.         end\
  2158.         local pos = var( \"call\", \"pmethod\", \"GetClickPosition\", x, y )\
  2159.         var( \"set\", \"static\", \"cursorPos\", pos )\
  2160.         var( \"set\", \"private\", \"focussed\", true )\
  2161.         var( \"set\", \"private\", \"highlight\", { current = false, pos = 1 } )\
  2162.         self:FocusOn( )\
  2163.     elseif ev.target == self and ev.type == \"Drag\" and self.canHighlight then\
  2164.         local pos = var( \"call\", \"pmethod\", \"GetClickPosition\", math.min( math.max( x, 1 ), self.width ), math.min( math.max( y, 1 ), self.height ) )\
  2165.         var( \"set\", \"private\", \"highlight\", { current = true, pos = pos } )\
  2166.         self:FocusOn( )\
  2167.     elseif ev.type == \"Click\" then\
  2168.         var( \"set\", \"private\", \"focussed\", false )\
  2169.     end\
  2170. end )\
  2171. GUITextbox:AddMethod( \"Event\", function( self, var, ev )\
  2172.     if ev[1] == \"Keyboard\" and ev[5] == self and var( \"get\", \"private\", \"focussed\" ) then\
  2173.         local oldtext = self:GetText( )\
  2174.         local oldpos = self.cursorPos\
  2175.         if self.inputmode == \"add\" then\
  2176.             var( \"set\", \"static\", \"cursorPos\", #oldtext + 1 )\
  2177.         end\
  2178.         if ev[2] then -- it was a char press\
  2179.             self.text = oldtext:sub( 1, oldpos - 1 )..ev[3]..oldtext:sub( oldpos )\
  2180.             var( \"set\", \"static\", \"cursorPos\", self.cursorPos + 1 )\
  2181.         else\
  2182.             if ev[3] == \"enter\" then\
  2183.                 local callback = self:GetCallback( \"KeyPressEnter\" )\
  2184.                 if callback then\
  2185.                     callback( self )\
  2186.                 else\
  2187.                     var( \"set\", \"private\", \"focussed\", false )\
  2188.                 end\
  2189.             elseif ev[3] == \"tab\" then\
  2190.                 local callback = self:GetCallback( \"KeyPressTab\" )\
  2191.                 if callback then\
  2192.                     callback( self )\
  2193.                 else\
  2194.                     var( \"set\", \"private\", \"focussed\", false )\
  2195.                 end\
  2196.             elseif ev[3] == \"backspace\" then\
  2197.                 local callback = self:GetCallback( \"KeyPressBackspace\" )\
  2198.                 if callback then\
  2199.                     callback( self )\
  2200.                 elseif self.cursorPos > 1 then\
  2201.                     self.text = oldtext:sub( 1, oldpos - 2 )..oldtext:sub( oldpos )\
  2202.                     var( \"set\", \"static\", \"cursorPos\", math.max( self.cursorPos - 1, 1 ) )\
  2203.                 end\
  2204.             elseif ev[3] == \"left\" then\
  2205.                 local callback = self:GetCallback( \"KeyPressLeft\" )\
  2206.                 if callback then\
  2207.                     callback( self )\
  2208.                 else\
  2209.                     var( \"set\", \"static\", \"cursorPos\", math.max( 1, self.cursorPos - 1 ) )\
  2210.                 end\
  2211.             elseif ev[3] == \"right\" then\
  2212.                 local callback = self:GetCallback( \"KeyPressRight\" )\
  2213.                 if callback then\
  2214.                     callback( self )\
  2215.                 else\
  2216.                     var( \"set\", \"static\", \"cursorPos\", math.min( #oldtext + 1, self.cursorPos + 1 ) )\
  2217.                 end\
  2218.             elseif ev[3] == \"delete\" then\
  2219.                 local callback = self:GetCallback( \"KeyPressDelete\" )\
  2220.                 if callback then\
  2221.                     callback( self )\
  2222.                 else\
  2223.                     self.text = oldtext:sub( 1, oldpos - 1 )..oldtext:sub( oldpos + 1 )\
  2224.                 end\
  2225.             end\
  2226.         end\
  2227.         self:UpdateLines( )\
  2228.         local lines = var( \"get\", \"private\", \"lines\" )\
  2229.         local l = self.height\
  2230.         if #lines > l or ( lines[l] and #lines[l] == self.width ) then\
  2231.             self.text = oldtext\
  2232.             var( \"set\", \"static\", \"cursorPos\", oldpos )\
  2233.         end\
  2234.     end\
  2235. end )\
  2236. \
  2237. GUITextbox:AddMethod( \"Render\", function( self, var, x, y )\
  2238.     local width = self.width\
  2239.     local height = self.height\
  2240.     local lines = self:GetLines( )\
  2241.     local hx1, hx2, hy1, hy2\
  2242.     if var( \"get\", \"private\", \"highlight\" ).current then\
  2243.         local hpos1, hpos2 = math.min( var( \"get\", \"private\", \"highlight\" ).pos, self.cursorPos ), math.max( var( \"get\", \"private\", \"highlight\" ).pos, self.cursorPos )\
  2244.         hx1, hy1 = var( \"call\", \"pmethod\", \"GetCursorPosition\", hpos1 )\
  2245.         hx2, hy2 = var( \"call\", \"pmethod\", \"GetCursorPosition\", hpos2 )\
  2246.     end\
  2247.     if var( \"get\", \"private\", \"focussed\" ) then\
  2248.         term.setBackgroundColour( self.focussedBackgroundColour:Get( ) )\
  2249.         term.setTextColour( self.focussedTextColour:Get( ) )\
  2250.     else\
  2251.         term.setBackgroundColour( self.backgroundColour:Get( ) )\
  2252.         term.setTextColour( self.textColour:Get( ) )\
  2253.     end\
  2254.     local yoffset = self:GetYOffset( )\
  2255.     for i = 1,height do\
  2256.         local offset = self:GetLineOffset( lines[i-yoffset] or \"\" )\
  2257.         if i == hy1 then\
  2258.             if i == hy2 then\
  2259.                 local l = ( lines[i-yoffset] or \"\" ):sub( 1, self.width )\
  2260.                 local part1, part2, part3 = l:sub( 1, hx1 - 1 ), l:sub( hx1, hx2 ), l:sub( hx2 + 1 )\
  2261.                 local o = string.rep( \" \", offset )\
  2262.                 local line = o..( lines[i-yoffset] or \"\" )\
  2263.                 term.setCursorPos( x, y + i - 1 )\
  2264.                 term.write( o..part1 )\
  2265.                 term.setBackgroundColour( self.highlightBackgroundColour:Get( ) )\
  2266.                 term.setTextColour( self.highlightTextColour:Get( ) )\
  2267.                 term.write( part2 )\
  2268.                 term.setBackgroundColour( self.backgroundColour:Get( ) )\
  2269.                 term.setTextColour( self.textColour:Get( ) )\
  2270.                 term.write( part3 )\
  2271.                 if #line < self.width then\
  2272.                     term.write( string.rep( \" \", self.width - #line ) )\
  2273.                 end\
  2274.             else\
  2275.                 local l = ( lines[i-yoffset] or \"\" ):sub( 1, self.width )\
  2276.                 local part1, part2 = l:sub( 1, hx1 - 1 ), l:sub( hx1 )\
  2277.                 local o = string.rep( \" \", offset )\
  2278.                 local line = o..( lines[i-yoffset] or \"\" )\
  2279.                 term.setCursorPos( x, y + i - 1 )\
  2280.                 term.write( o..part1 )\
  2281.                 term.setBackgroundColour( self.highlightBackgroundColour:Get( ) )\
  2282.                 term.setTextColour( self.highlightTextColour:Get( ) )\
  2283.                 term.write( part2 )\
  2284.                 if #line < self.width then\
  2285.                     term.write( string.rep( \" \", self.width - #line ) )\
  2286.                 end\
  2287.                 term.setBackgroundColour( self.backgroundColour:Get( ) )\
  2288.                 term.setTextColour( self.textColour:Get( ) )\
  2289.             end\
  2290.         elseif i == hy2 then\
  2291.             local l = ( lines[i-yoffset] or \"\" ):sub( 1, self.width )\
  2292.             local part1, part2 = l:sub( 1, hx2 ), l:sub( hx2 + 1 )\
  2293.             local o = string.rep( \" \", offset )\
  2294.             local line = o..( lines[i-yoffset] or \"\" )\
  2295.             term.setCursorPos( x, y + i - 1 )\
  2296.             term.setBackgroundColour( self.highlightBackgroundColour:Get( ) )\
  2297.             term.setTextColour( self.highlightTextColour:Get( ) )\
  2298.             term.write( o..part1 )\
  2299.             term.setBackgroundColour( self.backgroundColour:Get( ) )\
  2300.             term.setTextColour( self.textColour:Get( ) )\
  2301.             term.write( part2 )\
  2302.             if #line < self.width then\
  2303.                 term.write( string.rep( \" \", self.width - #line ) )\
  2304.             end\
  2305.         else\
  2306.             local line = string.rep( \" \", offset )..( lines[i-yoffset] or \"\" )\
  2307.             term.setCursorPos( x, y + i - 1 )\
  2308.             term.write( line:sub( 1, self.width ) )\
  2309.             if #line < self.width then\
  2310.                 term.write( string.rep( \" \", self.width - #line ) )\
  2311.             end\
  2312.         end\
  2313.     end\
  2314.     if self.active and var( \"get\", \"private\", \"focussed\" ) then\
  2315.         local xx, yy = var( \"call\", \"pmethod\", \"GetCursorPosition\", self.cursorPos )\
  2316.         self:RequestCursorBlink( x + xx - 1, y + yy - 1, self.focussedBackgroundColour:Get( ) == 1 and 32768 or 1 )\
  2317.     end\
  2318. end )\
  2319. \
  2320. function GUITextbox:Init( var, args )\
  2321.     var( \"set\", \"public\", \"focussedBackgroundColour\", New.Colour( \"white\" ) )\
  2322.     var( \"set\", \"public\", \"focussedTextColour\", New.Colour( \"black\" ) )\
  2323.     var( \"set\", \"public\", \"highlightBackgroundColour\", New.Colour( \"blue\" ) )\
  2324.     var( \"set\", \"public\", \"highlightTextColour\", New.Colour( \"white\" ) )\
  2325.     var( \"set\", \"private\", \"highlight\", {\
  2326.         pos = 1;\
  2327.         current = false;\
  2328.     } )\
  2329. end",
  2330.         ["GUIField.class"] = "\
  2331. GUIField:Extends( \"GUIBase\" )\
  2332. \
  2333. GUIField:AddVariable( \"colour\", New.Colour \"white\", \"Colour\" )\
  2334. \
  2335. GUIField:AddMethod( \"Render\", function( self, var, x, y )\
  2336.     term.setBackgroundColour( self.colour:Get( ) )\
  2337.     for i = 1, self.height do\
  2338.         term.setCursorPos( x, y + i - 1 )\
  2339.         term.write( string.rep( \" \", self.width ) )\
  2340.     end\
  2341. end )\
  2342. \
  2343. function GUIField:Describe( )\
  2344.     return \"GUI Field object\"\
  2345. end\
  2346. \
  2347. function GUIField:Init( var, args )\
  2348.     if Class.CheckType( args[5], \"Colour\" ) then\
  2349.         self.colour:Set( args[5]:Get( ) )\
  2350.     elseif type( args[5] ) == \"string\" or type( args[5] ) == \"number\" then\
  2351.         self.colour:Set( args[5] )\
  2352.     end\
  2353. end",
  2354.     },
  2355.     uclass =    {
  2356.         Package = "",
  2357.         Filesystem = "",
  2358.         FilesystemRedirect = "",
  2359.     },
  2360.     ["NovaProgram.txt"] = "This program was made with Nova Utilities!\
  2361. Credits to awsumben13 for writing Nova Utilities.\
  2362. You can find Nova on the forums at: (coming soon).\
  2363. \
  2364. Please do not delete this file.",
  2365.     ["main.conf"] = "",
  2366.     ["class.lua"] = "\
  2367. --[[\
  2368.     #====# Awsumben13s Class System #====#\
  2369.     #====# Creator: Benedict Allen  #====#\
  2370.     \
  2371.         Feel free to use and modify this software with the following conditions:\
  2372.             1) Keep this section at the top of the code, completely unmodified.\
  2373.             2) If you make any modifications, make it clear\
  2374.                 a) That you are not using the original software.\
  2375.                 b) What you have changed.\
  2376.             3) Include credits to the author where necessary.\
  2377.             4) Do not use this to make malicious software.\
  2378.             \
  2379.         Thank you for using this.\
  2380. ]]\
  2381. \
  2382. local classes = { }\
  2383. \
  2384. local Class = { }\
  2385. Class.New = function( name, data )\
  2386.     if type( name ) ~= \"string\" then return error( \"Name expected as first argument, got \"..type( name ), 2 ) end\
  2387.     local cls = { }\
  2388.     cls.name = name\
  2389.     cls.parent = false\
  2390.     cls.privateVariables = { }\
  2391.     cls.privateMethods = { }\
  2392.     cls.staticVariables = { }\
  2393.     cls.methods = { }\
  2394.     cls.publicVariables = { }\
  2395.     \
  2396.     if data then\
  2397.         cls.privateMethods = data.privateMethods or { }\
  2398.         cls.privateVariables = data.privateVariables or { }\
  2399.         cls.staticVariables = data.staticVariables or { }\
  2400.         cls.methods = data.methods or { }\
  2401.         cls.publicVariables = data.publicVariables or { }\
  2402.     end\
  2403.     \
  2404.     function cls:Extends( class )\
  2405.         if type( class ) == \"string\" then\
  2406.             class = classes[class]\
  2407.         end\
  2408.         if type( class ) == \"table\" then\
  2409.             self.parent = class\
  2410.             setmetatable( self.privateVariables, { __index = class.privateVariables } )\
  2411.             setmetatable( self.privateMethods, { __index = class.privateMethods } )\
  2412.             setmetatable( self.staticVariables, { __index = class.staticVariables } )\
  2413.             setmetatable( self.methods, { __index = class.methods } )\
  2414.             setmetatable( self.publicVariables, { __index = class.publicVariables } )\
  2415.         end\
  2416.     end\
  2417.     function cls:AddVariable( name, default, ... )\
  2418.         local types = { ... }\
  2419.         if #types == 0 then\
  2420.             types = false\
  2421.         end\
  2422.         if types then\
  2423.             for i = 1,#types do\
  2424.                 types[types[i]] = true\
  2425.                 types[i] = nil\
  2426.             end\
  2427.         end\
  2428.         self.publicVariables[name] = { value = default, types = types }\
  2429.     end\
  2430.     function cls:AddStaticVariable( name, default, ... )\
  2431.         local types = { ... }\
  2432.         if #types == 0 then\
  2433.             types = false\
  2434.         end\
  2435.         if types then\
  2436.             for i = 1,#types do\
  2437.                 types[types[i]] = true\
  2438.                 types[i] = nil\
  2439.             end\
  2440.         end\
  2441.         self.staticVariables[name] = { value = default, types = types }\
  2442.     end\
  2443.     function cls:AddPrivateVariable( name, default, ... )\
  2444.         local types = { ... }\
  2445.         if #types == 0 then\
  2446.             types = false\
  2447.         end\
  2448.         if types then\
  2449.             for i = 1,#types do\
  2450.                 types[types[i]] = true\
  2451.                 types[i] = nil\
  2452.             end\
  2453.         end\
  2454.         self.privateVariables[name] = { value = default, types = types }\
  2455.     end\
  2456.     function cls:AddPrivateMethod( name, method )\
  2457.         self.privateMethods[name] = method\
  2458.     end\
  2459.     function cls:AddMethod( name, method )\
  2460.         self.methods[name] = method\
  2461.     end\
  2462.     function cls:New( ... )\
  2463.         local args = { ... }\
  2464.         local ob = { }\
  2465.         local data = {\
  2466.             privateVariables = { };\
  2467.             privateMethods = { };\
  2468.             staticVariables = { };\
  2469.             methods = { };\
  2470.             publicVariables = { };\
  2471.         }\
  2472.         setmetatable( data.privateVariables, { __index = self.privateVariables } )\
  2473.         setmetatable( data.privateMethods, { __index = self.privateMethods } )\
  2474.         setmetatable( data.staticVariables, { __index = self.staticVariables } )\
  2475.         setmetatable( data.methods, { __index = self.methods } )\
  2476.         setmetatable( data.publicVariables, { __index = self.publicVariables } )\
  2477.         local meta = { }\
  2478.         local parents = { }\
  2479.         local c = self.parent\
  2480.         while c do\
  2481.             table.insert( parents, 1, c )\
  2482.             c = c.parent\
  2483.         end\
  2484.         \
  2485.         local variable\
  2486.         variable = function( mode, _type, name, ... )\
  2487.             local args = { ... }\
  2488.             local t = { }\
  2489.             if _type == \"private\" then\
  2490.                 t = data.privateVariables\
  2491.             elseif _type == \"static\" then\
  2492.                 t = data.staticVariables\
  2493.             elseif _type == \"public\" then\
  2494.                 t = data.publicVariables\
  2495.             elseif _type == \"pmethod\" then\
  2496.                 t = data.privateMethods\
  2497.             elseif _type == \"method\" then\
  2498.                 t = data.methods\
  2499.             end\
  2500.             if t[name] then\
  2501.                 if mode == \"set\" then\
  2502.                     if not t[name].types then\
  2503.                         t[name] = { value = args[1], types = false }\
  2504.                         return true\
  2505.                     end\
  2506.                     local _type_ = type( args[1] )\
  2507.                     if t[name].types[_type_] then\
  2508.                         t[name] = { value = args[1], types = t[name].types }\
  2509.                         return true\
  2510.                     end\
  2511.                     if _type_ == \"table\" and type( args[1].Type ) == \"function\" then\
  2512.                         local ftype = args[1]:Type( true )\
  2513.                         for i = 1,#ftype do\
  2514.                             if t[name].types[ftype:sub( 1, i )] then\
  2515.                                 t[name] = { value = args[1], types = t[name].types }\
  2516.                                 return true\
  2517.                             end\
  2518.                         end\
  2519.                     end\
  2520.                     return false, \"Invalid variable type (\".._type_..\")\"\
  2521.                 elseif mode == \"get\" then\
  2522.                     return t[name].value\
  2523.                 elseif mode == \"call\" and ( _type == \"method\" or _type == \"pmethod\" ) then\
  2524.                     return t[name]( ob, variable, unpack( args ) )\
  2525.                 end\
  2526.             else\
  2527.                 error( \"Could not access variable \\\"\"..tostring( name )..\"\\\"\", 2 )\
  2528.             end\
  2529.         end\
  2530.         \
  2531.         meta.__index = function( meta, key )\
  2532.             if data.methods[key] then\
  2533.                 return function( object, ... )\
  2534.                     if object == ob then\
  2535.                         return variable( \"call\", \"method\", key, ... )\
  2536.                     end\
  2537.                     error( \"Use the : operator to call object methods.\", 2 )\
  2538.                 end\
  2539.             elseif data.publicVariables[key] then\
  2540.                 return variable( \"get\", \"public\", key )\
  2541.             elseif data.staticVariables[key] then\
  2542.                 return variable( \"get\", \"static\", key )\
  2543.             end\
  2544.         end\
  2545.         meta.__newindex = function( meta, key, value )\
  2546.             if data.publicVariables[key] then\
  2547.                 local ok, err = variable( \"set\", \"public\", key, value )\
  2548.                 if ok ~= true then\
  2549.                     error( err, 2 )\
  2550.                 end\
  2551.             else\
  2552.                 error( \"Attempt to change protected variable or method\", 2 )\
  2553.             end\
  2554.         end\
  2555.         meta.__tostring = function( )\
  2556.             if self.Describe then\
  2557.                 return self.Describe( ob, variable )\
  2558.             else\
  2559.                 for i = #parents, 1, -1 do\
  2560.                     if parents[i].Describe then\
  2561.                         return parents[i].Describe( ob, variable )\
  2562.                     end\
  2563.                 end\
  2564.                 return \"Object of class \\\"\"..self.name..\"\\\"\"\
  2565.             end\
  2566.         end\
  2567.         \
  2568.         function ob.Class( )\
  2569.             return self\
  2570.         end\
  2571.         function ob:Type( full )\
  2572.             local cls = self:Class( )\
  2573.             if not full then\
  2574.                 return cls.name\
  2575.             end\
  2576.             local parents = { }\
  2577.             while cls do\
  2578.                 table.insert( parents, 1, cls )\
  2579.                 cls = cls.parent\
  2580.             end\
  2581.             local str = \"\"\
  2582.             for i = 1,#parents-1 do\
  2583.                 str = str..parents[i].name..\".\"\
  2584.             end\
  2585.             return str..self:Class( ).name\
  2586.         end\
  2587.         function ob:TypeOf( _type )\
  2588.             local cls = self:Class( )\
  2589.             while cls do\
  2590.                 if cls.name == _type then\
  2591.                     return true\
  2592.                 end\
  2593.                 cls = cls.parent\
  2594.             end\
  2595.             return false\
  2596.         end\
  2597.         function ob:GetExpectedVariableTypes( name )\
  2598.             if data.publicVariables[name] then\
  2599.                 if not data.publicVariables[name].types then\
  2600.                     return true, \"No expected types\"\
  2601.                 end\
  2602.                 local t = { }\
  2603.                 for k, v in pairs( data.publicVariables[name].types ) do\
  2604.                     table.insert( t, k )\
  2605.                 end\
  2606.                 return true, t\
  2607.             else\
  2608.                 return false, \"No such variable\"\
  2609.             end\
  2610.         end\
  2611.         \
  2612.         setmetatable( ob, meta )\
  2613.         \
  2614.         for i = 1,#parents do\
  2615.             if parents[i].Init then\
  2616.                 local ok, data = pcall( parents[i].Init, ob, variable, args )\
  2617.                 if not ok then\
  2618.                     error( data, 2 )\
  2619.                 elseif data == false then\
  2620.                     return false\
  2621.                 end\
  2622.             end\
  2623.         end\
  2624.         if self.Init then\
  2625.             local ok, data = pcall( self.Init, ob, variable, args )\
  2626.             if not ok then\
  2627.                 error( data, 2 )\
  2628.             elseif data == false then\
  2629.                 return false\
  2630.             end\
  2631.         end\
  2632. \
  2633.         return ob\
  2634.     end\
  2635.     setmetatable( cls, { __tostring = function( self ) return \"Class \"..self.name end, __call = cls.New } )\
  2636.     classes[name] = cls\
  2637.     return cls\
  2638. end\
  2639. Class.Type = function( value )\
  2640.     local _type = type( value )\
  2641.     if _type == \"table\" then\
  2642.         if type( value.Type ) == \"function\" then\
  2643.             return value:Type( )\
  2644.         end\
  2645.     end\
  2646.     return _type\
  2647. end\
  2648. Class.TypeOf = function( value, _type_ )\
  2649.     if type( value ) == \"table\" and type( value.TypeOf ) == \"function\" then\
  2650.         return value:TypeOf( _type_ )\
  2651.     end\
  2652.     return false\
  2653. end\
  2654. Class.CheckType = function( object, ... )\
  2655.     local values = { ... }\
  2656.     local _type = type( object )\
  2657.     for i = 1,#values do\
  2658.         if _type == values[i] then\
  2659.             return true, values[i]\
  2660.         end\
  2661.     end\
  2662.     if _type == \"table\" and type( object.Type ) == \"function\" then\
  2663.         local _type = object:Type( true )\
  2664.         for i = 1,#values do\
  2665.             if _type == values[i] then\
  2666.                 return true, values[i]\
  2667.             end\
  2668.         end\
  2669.     end\
  2670.     return false\
  2671. end\
  2672. Class.CheckTypeOf = function( object, ... )\
  2673.     local values = { ... }\
  2674.     local _type = type( object )\
  2675.     for i = 1,#values do\
  2676.         if _type == values[i] then\
  2677.             return true, values[i]\
  2678.         end\
  2679.     end\
  2680.     if _type == \"table\" and type( object.TypeOf ) == \"function\" then\
  2681.         for i = 1,#values do\
  2682.             if object:TypeOf( values[i] ) then\
  2683.                 return true, values[i]\
  2684.             end\
  2685.         end\
  2686.     end\
  2687.     return false\
  2688. end\
  2689. \
  2690. Class.Load = function( name, classPath, _env )\
  2691.     local check = {\
  2692.         \".class\";\
  2693.         \".lua\";\
  2694.         \"\";\
  2695.     }\
  2696.     for i = 1,#check do\
  2697.         if fs.exists( classPath..\"/\"..name..check[i] ) then\
  2698.             local h = fs.open( classPath..\"/\"..name..check[i], \"r\" )\
  2699.             local f, err = loadstring( h.readAll( ), \"Class \"..name )\
  2700.             h.close( )\
  2701.             if not f then\
  2702.                 error( err, 0 )\
  2703.             end\
  2704.             local env = { }\
  2705.             setmetatable( env, { __index = _env } )\
  2706.             env[name] = Class.New( name )\
  2707.             env.Class = Class\
  2708.             setfenv( f, env )\
  2709.             local ok, err = pcall( f )\
  2710.             if not ok then\
  2711.                 error( err, 0 )\
  2712.             end\
  2713.             return env[name], name..check[i]\
  2714.         end\
  2715.     end\
  2716. end\
  2717. \
  2718. setmetatable( Class, { __call = function( self, ... ) return Class.New( ... ) end } )\
  2719. \
  2720. local New = { }\
  2721. setmetatable( New, {\
  2722.     __index = function( _, key )\
  2723.         if classes[key] then\
  2724.             return function( ... )\
  2725.                 return classes[key]:New( ... )\
  2726.             end\
  2727.         else\
  2728.             error( \"Class not found (\"..key..\")\", 2 )\
  2729.         end\
  2730.     end;\
  2731.     __newindex = function( ) end;\
  2732. } )\
  2733. \
  2734. getfenv( ).New = New\
  2735. getfenv( ).Class = Class",
  2736.     ["Utils.lua"] = "\
  2737. local fs = ...\
  2738. local _version\
  2739. if fs.exists( \"Nova/.version\" ) then\
  2740.     local h = fs.open( \"Nova/.version\", \"r\" )\
  2741.     _version = h.readAll( )\
  2742.     h.close( )\
  2743. else\
  2744.     _version = \"1.24\"\
  2745. end\
  2746. \
  2747. local utils = { }\
  2748. utils.loadClasses = function( path, class, env )\
  2749.     local cenv = { }\
  2750.     setmetatable( cenv, { __index = getfenv( ) } )\
  2751.     if not env then\
  2752.         env = { }\
  2753.         setmetatable( env, { __index = getfenv( ) } )\
  2754.     end\
  2755.     local f, err = loadfile( path )\
  2756.     if not f then\
  2757.         error( err, 2 )\
  2758.     end\
  2759.     setfenv( f, cenv )\
  2760.     local ok, err = pcall( f )\
  2761.     if not ok then \
  2762.         error( err, 2 )\
  2763.     end\
  2764.     for k, v in pairs( cenv ) do\
  2765.         env[k] = v\
  2766.     end\
  2767.     local donefiles = { }\
  2768.     local classes = { }\
  2769.     local h = fs.open( class..\"/list.txt\", \"r\" )\
  2770.     if h then\
  2771.         local files = { }\
  2772.         local line = h.readLine( )\
  2773.         while line do\
  2774.             table.insert( files, line )\
  2775.             line = h.readLine( )\
  2776.         end\
  2777.         h.close( )\
  2778.         local p\
  2779.         for i = 1,#files do\
  2780.             classes[files[i]], p = cenv.Class.Load( files[i], class, env )\
  2781.             if p then\
  2782.                 donefiles[p] = true\
  2783.             end\
  2784.         end\
  2785.     end\
  2786.     local files = fs.list( class )\
  2787.     for i = 1,#files do\
  2788.         local name, count = files[i]:gsub( \".class$\", \"\" )\
  2789.         if count > 0 and files[i] ~= \"list.txt\" and not donefiles[files[i]] then\
  2790.             classes[name], p = env.Class.Load( name, class, env )\
  2791.             if p then\
  2792.                 donefiles[p] = true\
  2793.             end\
  2794.         end\
  2795.     end\
  2796.     return env.New, env.Class, classes\
  2797. end\
  2798. utils.loadConfig = function( path )\
  2799.     local h = fs.open( path, \"r\" )\
  2800.     if h then\
  2801.         local lines = { }\
  2802.         local line = h.readLine( )\
  2803.         while line do\
  2804.             table.insert( lines, line )\
  2805.             line = h.readLine( )\
  2806.         end\
  2807.         h.close( )\
  2808.         local config = { }\
  2809.         for i = 1,#lines do\
  2810.             local eq = lines[i]:find( \"::\" )\
  2811.             if eq then\
  2812.                 local name = lines[i]:sub( 1, eq - 1 )\
  2813.                 local data = lines[i]:sub( eq + 2 )\
  2814.                 if tonumber( data ) then\
  2815.                     config[name] = tonumber( data )\
  2816.                 elseif data == \"true\" or data == \"false\" then\
  2817.                     config[name] = data == \"true\"\
  2818.                 else\
  2819.                     config[name] = data\
  2820.                 end\
  2821.             end\
  2822.         end\
  2823.         return config\
  2824.     end\
  2825.     return { }\
  2826. end\
  2827. utils.loadResources = function( path, env )\
  2828.     env.Resources = { }\
  2829.     local load\
  2830.     load = function( path )\
  2831.         if fs.isDir( path ) then\
  2832.             local data = { }\
  2833.             local files = fs.list( path )\
  2834.             for i = 1,#files do\
  2835.                 local name = files[i]:gsub( \".%w+$\", \"\" )\
  2836.                 data[name] = load( path..\"/\"..files[i] )\
  2837.             end\
  2838.             return data\
  2839.         else\
  2840.             local f, err = loadfile( path )\
  2841.             if f then\
  2842.                 local e = { }\
  2843.                 setmetatable( e, { __index = env } )\
  2844.                 setfenv( f, e )\
  2845.                 local ok, data = pcall( f )\
  2846.                 if not ok then\
  2847.                     error( data, 2 )\
  2848.                 end\
  2849.                 local t = { }\
  2850.                 for k, v in pairs( e ) do\
  2851.                     t[k] = v\
  2852.                 end\
  2853.                 return t\
  2854.             else\
  2855.                 error( err, 2 )\
  2856.             end\
  2857.         end\
  2858.     end\
  2859.     local t = load( path )\
  2860.     for k, v in pairs( t ) do\
  2861.         env.Resources[k] = v\
  2862.     end\
  2863.     return env.Resources\
  2864. end\
  2865. utils.formatEnvironment = function( path, classes, class )\
  2866.     local filesystem = classes.FilesystemRedirect:New( path )\
  2867. \
  2868.     local env = { }\
  2869.     env.Classes = classes\
  2870.     env.Class = class\
  2871. \
  2872.     env.New = { }\
  2873.     setmetatable( env.New, {\
  2874.         __index = function( _, key )\
  2875.             if classes[key] then\
  2876.                 return function( ... )\
  2877.                     return classes[key]:New( ... )\
  2878.                 end\
  2879.             else\
  2880.                 error( \"Class not found (\"..key..\")\", 2 )\
  2881.             end\
  2882.         end;\
  2883.         __newindex = function( ) end;\
  2884.     } )\
  2885. \
  2886.     env.Nova = { }\
  2887.     env.Nova.name = \"Nova Utilities\"\
  2888.     env.Nova.version = _version\
  2889.     env.Nova.author = \"awsumben13\"\
  2890.     env.Nova.installed = fs.isDir( \"Nova\" )\
  2891.     env.Nova.programPath = path\
  2892.     if env.Nova.installed then\
  2893.         env.Nova.fs = classes.FilesystemRedirect:New( \"Nova\" )\
  2894.     end\
  2895.     \
  2896.     env.coroutine = coroutine\
  2897.     env.math = math\
  2898.     env.string = string\
  2899.     env.table = table\
  2900.     env.tostring = tostring\
  2901.     env.tonumber = tonumber\
  2902.     env.pairs = pairs\
  2903.     env.ipairs = ipairs\
  2904.     env.next = next\
  2905.     env.select = select\
  2906.     env.setfenv = setfenv\
  2907.     env.getfenv = getfenv\
  2908.     env.assert = assert\
  2909.     env.pcall = pcall\
  2910.     env.xpcall = xpcall\
  2911.     env.error = error\
  2912.     env.type = type\
  2913.     env.unpack = unpack\
  2914.     env.setmetatable = setmetatable\
  2915.     env.getmetatable = getmetatable\
  2916.     env.rawset = rawset\
  2917.     env.rawget = rawget\
  2918.     env.rawequal = rawequal\
  2919.     env.print = print\
  2920.     env._VERSION = _VERSION\
  2921.     \
  2922.     env.write = write\
  2923.     env.read = read\
  2924.     \
  2925.     env.rootfs = fs\
  2926.     env.fs = filesystem:Redirect( )\
  2927.     env.io = io\
  2928.     env.loadstring = function( str, name )\
  2929.         local ok, f, err = pcall( loadstring, str, name )\
  2930.         if not ok then\
  2931.             error( f, 2 )\
  2932.         elseif not f then\
  2933.             error( err, 2 )\
  2934.         end\
  2935.         setfenv( f, env )\
  2936.         return f\
  2937.     end\
  2938.     env.loadfile = function( _sFile )\
  2939.         local file = env.fs.open( _sFile, \"r\" )\
  2940.         if file then\
  2941.             local func, err = env.loadstring( file.readAll( ), tostring( env.fs.getName( _sFile ) ) )\
  2942.             file.close( )\
  2943.             return func, err\
  2944.         end\
  2945.         return nil, \"File not found\"\
  2946.     end\
  2947.     env.dofile = function( _sFile )\
  2948.         local fnFile, e = env.loadfile( _sFile )\
  2949.         if fnFile then\
  2950.             return fnFile( )\
  2951.         else\
  2952.             error( e, 2 )\
  2953.         end\
  2954.     end\
  2955.     \
  2956.     env.os = { }\
  2957.     setmetatable( env.os, { __index = os } )\
  2958.     local tAPIsLoading = {}\
  2959.     function env.os.loadAPI( _sPath )\
  2960.         local sName = fs.getName( _sPath )\
  2961.         if tAPIsLoading[sName] == true then\
  2962.             printError( \"API \"..sName..\" is already being loaded\" )\
  2963.             return false\
  2964.         end\
  2965.         tAPIsLoading[sName] = true\
  2966.             \
  2967.         local tEnv = {}\
  2968.         setmetatable( tEnv, { __index = env } )\
  2969.         local fnAPI, err = env.loadfile( _sPath )\
  2970.         if fnAPI then\
  2971.             setfenv( fnAPI, tEnv )\
  2972.             fnAPI()\
  2973.         else\
  2974.             printError( err )\
  2975.             tAPIsLoading[sName] = nil\
  2976.             return false\
  2977.         end\
  2978.         \
  2979.         local tAPI = {}\
  2980.         for k,v in pairs( tEnv ) do\
  2981.             tAPI[k] =  v\
  2982.         end\
  2983.         \
  2984.         env[sName] = tAPI\
  2985.         tAPIsLoading[sName] = nil\
  2986.         return true\
  2987.     end\
  2988.     function env.os.unloadAPI( _sName )\
  2989.         if _sName ~= \"_G\" and type(env[_sName]) == \"table\" then\
  2990.             env[_sName] = nil\
  2991.         end\
  2992.     end\
  2993.     function env.os.run( _tEnv, _sPath, ... ) -- copied from bios.lua\
  2994.         local tArgs = { ... }\
  2995.         local fnFile, err = loadfile( _sPath )\
  2996.         if fnFile then\
  2997.             local tEnv = _tEnv\
  2998.             setmetatable( tEnv, { __index = env } )\
  2999.             setfenv( fnFile, tEnv )\
  3000.             local ok, err = pcall( function()\
  3001.                 fnFile( unpack( tArgs ) )\
  3002.             end )\
  3003.             if not ok then\
  3004.                 if err and err ~= \"\" then\
  3005.                     printError( err )\
  3006.                 end\
  3007.                 return false\
  3008.             end\
  3009.             return true\
  3010.         end\
  3011.         if err and err ~= \"\" then\
  3012.             printError( err )\
  3013.         end\
  3014.         return false\
  3015.     end\
  3016.     \
  3017.     env.term = term\
  3018.     env.textutils = textutils\
  3019.     env.keys = keys\
  3020.     env.printError = printError\
  3021.     env.colours = colours\
  3022.     env.colors = colors\
  3023.     env.sleep = sleep\
  3024.     env.redstone = redstone\
  3025.     env.peripheral = peripheral\
  3026.     env.rs = rs\
  3027.     env.rednet = rednet\
  3028.     env.http = http\
  3029.     env.vector = vector\
  3030.     env.parallel = parallel\
  3031.     env.window = window\
  3032.     env.help = help\
  3033.     env.gps = gps\
  3034.     env.bit = bit\
  3035.     env.disk = disk\
  3036.     env.paintutils = paintutils\
  3037.     env.__inext = __inext\
  3038.     \
  3039.     local programStack = { }\
  3040.     env.shell = { }\
  3041.     for k, v in pairs( shell ) do\
  3042.         env.shell[k] = v\
  3043.     end\
  3044.     env.shell.run = function( program, ... ) -- copied from shell and removed the multishell stuff (an fs.redirect function really needs to be added to cc)\
  3045.         if type( program ) == \"string\" then\
  3046.             local path = filesystem:GetPath( program )\
  3047.             local p =  fs.combine( path, program )\
  3048.             local sPath = shell.resolveProgram( p )\
  3049.             if sPath ~= nil then\
  3050.                 programStack[#programStack + 1] = sPath\
  3051.                 local result = env.os.run( env, sPath, ... )\
  3052.                 programStack[#programStack] = nil\
  3053.                 return result\
  3054.             else\
  3055.                 printError( \"No such program\" )\
  3056.                 return false\
  3057.             end\
  3058.         else\
  3059.             error( \"String expected, got \"..type( program ), 2 )\
  3060.         end\
  3061.     end\
  3062.     env.shell.getRunningProgram = function( )\
  3063.         return programStack[#programStack]\
  3064.     end\
  3065.     env.shell.exit = function( )\
  3066.         error( \"Exited\", 0 )\
  3067.     end\
  3068.     env._G = env\
  3069.     \
  3070.     local f, err = loadfile( \"rom/apis/io\" )\
  3071.     if f then\
  3072.         local e = { }\
  3073.         setmetatable( e, { __index = env } )\
  3074.         setfenv( f, e )\
  3075.         local ok, err = pcall( f )\
  3076.         if not ok then\
  3077.             error( err )\
  3078.         end\
  3079.         env.io = { }\
  3080.         for k, v in pairs( e ) do\
  3081.             env.io[k] = v\
  3082.         end\
  3083.     else\
  3084.         error( err, 0 )\
  3085.     end\
  3086.     \
  3087.     return env, filesystem\
  3088. end\
  3089. \
  3090. utils.isValidPath = function( path )\
  3091.     local ok = type( path ) == \"string\"\
  3092.     ok = ok and fs.isDir( path )\
  3093.     ok = ok and fs.exists( path..\"/main.lua\" )\
  3094.     ok = ok and fs.exists( path..\"/main.conf\" )\
  3095.     return ok\
  3096. end\
  3097. \
  3098. utils.checkForUpdates = function( )\
  3099.     if http then\
  3100.         local response = http.get( \"http://pastebin.com/raw.php?i=ijWMGfJ6\" )\
  3101.         if response then\
  3102.             local version = tonumber( response.readAll( ) )\
  3103.             response.close( )\
  3104.             if tonumber( _version ) < version then\
  3105.                 return true, tostring( version )\
  3106.             end\
  3107.             return false, \"No update required.\"\
  3108.         else\
  3109.             return false, \"Could not connect to pastebin.\"\
  3110.         end\
  3111.     else\
  3112.         return false, \"Http not found.\"\
  3113.     end\
  3114. end\
  3115. utils.update = function( )\
  3116.     if http then\
  3117.         local response = http.get( \"http://pastebin.com/raw.php?i=dUcPAapV\" )\
  3118.         if response then\
  3119.             local update = response.readAll( )\
  3120.             response.close( )\
  3121.             local tempPath = \"NovaPacked\"\
  3122.             fs.delete( tempPath )\
  3123.             local h = fs.open( tempPath, \"w\" )\
  3124.             if h then\
  3125.                 h.write( update )\
  3126.                 h.close( )\
  3127.                 local f, err = loadfile( tempPath )\
  3128.                 if not f then\
  3129.                     error( err, 0 )\
  3130.                 end\
  3131.                 f( )\
  3132.             else\
  3133.                 return false, \"Could not open file.\"\
  3134.             end\
  3135.         else\
  3136.             return false, \"Could not connect to pastebin.\"\
  3137.         end\
  3138.     else\
  3139.         return false, \"Http not found.\"\
  3140.     end\
  3141. end\
  3142. \
  3143. utils.run = function( path, env, config, filesystem, args )\
  3144.     local f, err = loadfile( path..\"/main.lua\" )\
  3145.     if not f then\
  3146.         error( err, 0 )\
  3147.     end\
  3148.     setfenv( f, env )\
  3149.     local co = coroutine.create( f )\
  3150.     local ok, err = coroutine.resume( co, unpack( args ) )\
  3151.     if not ok then\
  3152.         error( err, 0 )\
  3153.     end\
  3154.     while coroutine.status( co ) ~= \"dead\" do\
  3155.         local ok, err = coroutine.resume( co, coroutine.yield( ) )\
  3156.         if not ok then\
  3157.             error( err, 0 )\
  3158.         end\
  3159.         if coroutine.status( co ) == \"dead\" and config[\"Keep Running\"] then\
  3160.             co = coroutine.create( f )\
  3161.         end\
  3162.     end\
  3163. end\
  3164. \
  3165. return utils",
  3166. }
  3167. --PackageEnd
  3168. local saveDir
  3169. saveDir = function( path, t )
  3170.     if not fs.isDir( path ) then
  3171.         fs.makeDir( path )
  3172.     end
  3173.     for k, v in pairs( t ) do
  3174.         if type( v ) == "table" then
  3175.             saveDir( path.."/"..k, v )
  3176.         else
  3177.             local f = fs.open( path.."/"..k, "w" )
  3178.             if f then
  3179.                 f.write( v )
  3180.                 f.close( )
  3181.             end
  3182.         end
  3183.     end
  3184. end
  3185. fs.delete( outfile )
  3186. saveDir( outfile, files )
  3187. if outfile ~= infile then
  3188.     fs.delete( infile )
  3189. end
  3190. if fs.exists( outfile.."/install.lua" ) then
  3191.     shell.run( outfile.."/install.lua" )
  3192. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement