Advertisement
TIMAS_Bro

Untitled

Feb 10th, 2024
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.72 KB | None | 0 0
  1. local function deep_copy(t, lookup)
  2. lookup = lookup or {}
  3.  
  4. -- If the value we are copying is not a table, we can just return it.
  5. if type(t) ~= "table" then
  6. return t, lookup
  7. end
  8.  
  9. -- If we have already copied this table, we can just return the copy we have
  10. -- already made.
  11. if lookup[t] then
  12. return lookup[t], lookup
  13. end
  14.  
  15. -- Create a new table to copy into.
  16. local copy = {}
  17.  
  18. -- Add the copy to the lookup table so we can handle loops.
  19. lookup[t] = copy
  20.  
  21. -- Copy the table.
  22. for k, v in pairs(t) do
  23. copy[deep_copy(k, lookup)] = deep_copy(v, lookup)
  24. end
  25.  
  26. return copy, lookup
  27. end
  28.  
  29. --- Copy the environment
  30. ---@param env table The environment to copy.
  31. ---@param g table The global environment to copy.
  32. ---@return table clone_env The clone of the environment.
  33. ---@return table clone_g The clone of the global environment, probably not needed as it will be the clone_env._G, but it's here for consistency.
  34. local function deepcopy_environment(env, g)
  35. -- We need to copy the environment and the global environment separately.
  36. -- We keep the lookup table between clones so we can handle loops.
  37. local clone_env, lookup = deep_copy(env)
  38. local clone_g = deep_copy(g, lookup)
  39.  
  40. return setmetatable(clone_env, {__index = clone_g}), clone_g
  41. end
  42.  
  43. local function deepcopy(table)
  44. local cloned_table = {}
  45. for k, v in pairs(table) do
  46. if type(v) == "table" then
  47. cloned_table[k] = copy(v)
  48. else
  49. cloned_table[k] = v
  50. end
  51. end
  52. return cloned_table
  53. end
  54.  
  55. local function getParentDirectory(path)
  56. -- Find the last occurrence of the path separator
  57. local lastIndex = path:find("/[^/]*$")
  58.  
  59. if lastIndex then
  60. -- Extract the parent directory and file name
  61. local parentDir = path:sub(1, lastIndex)
  62. local fileName = path:sub(lastIndex + 1)
  63. return parentDir, fileName
  64. else
  65. -- If no parent directory found, return nil or an empty string, as desired
  66. return nil, path
  67. end
  68. end
  69.  
  70. local function openfile(realPath)
  71. local parentDir, fileName = getParentDirectory(realPath)
  72. local modifiedPath = fs.combine(parentDir)
  73. modifiedPath = modifiedPath .. "/" .. fileName .. "_files/"
  74.  
  75. -- Copying ENV
  76.  
  77. local unmodifiedEnv, unmodifiedG = deepcopy_environment(_ENV, _G)
  78.  
  79. local fakeENV, fakeG = deepcopy_environment(_ENV, _G)
  80. print(fakeG.fs or "FakeENV fs is not found!")
  81. print("real_path: " .. realPath)
  82. print("modified_path: " .. modifiedPath)
  83. os.pullEvent("char")
  84.  
  85. -- Modyfind OS
  86.  
  87. local realos = deepcopy(unmodifiedG.os)
  88. local fakeos = realos
  89. --fakeG.os = fakeos
  90. fakeos.reboot = nil
  91. fakeos.shutdown = nil
  92. fakeos.run = nil
  93.  
  94. -- Modyfing FS
  95.  
  96. local real = deepcopy(unmodifiedG.fs)
  97. local fake = {}
  98. fakeG.fs = fake
  99.  
  100. function fake.open(path, mode)
  101. -- Adjust the path to the fake file system
  102. local cPath = modifiedPath .. path
  103. return real.open(cPath, mode)
  104. end
  105.  
  106. function fake.move(path, endPath)
  107. -- Adjust the paths to the fake file system
  108. local cPath = modifiedPath .. path
  109. local ePath = modifiedPath .. endPath
  110. return real.move(cPath, ePath)
  111. end
  112.  
  113. function fake.copy(path, endPath)
  114. -- Adjust the paths to the fake file system
  115. local cPath = modifiedPath .. path
  116. local ePath = modifiedPath .. endPath
  117. return real.copy(cPath, ePath)
  118. end
  119.  
  120. function fake.delete(path)
  121. -- Adjust the path to the fake file system
  122. local cPath = modifiedPath .. path
  123. return real.delete(cPath)
  124. end
  125.  
  126. function fake.makeDir(path)
  127. -- Adjust the path to the fake file system
  128. local cPath = modifiedPath .. path
  129. return real.makeDir(cPath)
  130. end
  131.  
  132. function fake.find(path)
  133. -- Adjust the path to the fake file system
  134. local fakePath = modifiedPath .. path
  135. return real.find(fakePath)
  136. end
  137.  
  138. function fake.list(path)
  139. -- Adjust the path to the fake file system
  140. local fakePath = modifiedPath .. path
  141. return real.list(fakePath)
  142. end
  143.  
  144. function fake.getName(path)
  145. -- Adjust the path to the fake file system
  146. local fakePath = modifiedPath .. path
  147. return real.getName(fakePath)
  148. end
  149.  
  150. function fake.getDir(path)
  151. -- Adjust the path to the fake file system
  152. local fakePath = modifiedPath .. path
  153. return real.getDir(fakePath)
  154. end
  155.  
  156. function fake.getSize(path)
  157. -- Adjust the path to the fake file system
  158. local fakePath = modifiedPath .. path
  159. return real.getSize(fakePath)
  160. end
  161.  
  162. function fake.exists(path)
  163. -- Adjust the path to the fake file system
  164. local fakePath = modifiedPath .. path
  165. return real.exists(fakePath)
  166. end
  167.  
  168. function fake.isDir(path)
  169. -- Adjust the path to the fake file system
  170. local fakePath = modifiedPath .. path
  171. return real.isDir(fakePath)
  172. end
  173.  
  174. function fake.isReadOnly(path)
  175. -- Adjust the path to the fake file system
  176. local fakePath = modifiedPath .. path
  177. return real.isReadOnly(fakePath)
  178. end
  179. lg.fillScreen(colors.red)
  180. term.setCursorPos(1, 1)
  181. print("RUNNING FILE..." .. realPath)
  182. os.pullEvent("char")
  183. local ok, errMSG = pcall(loadfile(realPath, nil, fakeENV))
  184. lg.fillScreen(colors.red)
  185. term.setCursorPos(1, 1)
  186. print(tostring(ok) .. " | ")
  187. print(errMSG or "no error")
  188. os.pullEvent("char")
  189. if ok ~= true then
  190. return {false, errMSG}
  191. else
  192. return {true}
  193. end
  194. end
  195.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement