Advertisement
Guest User

Arena

a guest
Mar 3rd, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.19 KB | None | 0 0
  1. local function pastebin(sName, sFile) --Gets pastebin files
  2.   tPaste = http.get("http://www.pastebin.com/raw/"..sName)
  3.   if not fs.exists(sFile) then
  4.     local tInternal = fs.open(sFile,"w")
  5.     for line in tPaste.readLine do
  6.       tInternal.writeLine(line)
  7.     end
  8.     tInternal.close()
  9.   end
  10. end
  11.  
  12. if not daemon then
  13.     if not fs.exists("daemon") then
  14.         pastebin("0zvqEG6N","daemon")
  15.     end
  16.     os.loadAPI("daemon")
  17. end
  18. local daemon = daemon
  19. _G.daemon = nil
  20.  
  21. local nativefs = {}
  22. for k,v in next, fs do
  23.     nativefs[k] = v
  24. end
  25. local fs = {}
  26.  
  27. local size,file1,file2 = ...
  28. size = tonumber(size)
  29.  
  30. local remaining = size
  31.  
  32.  
  33. local timer = {}
  34. timer[file1] = 10
  35. timer[file2] = 10
  36.  
  37. local env = getfenv(1)
  38.  
  39. local fileSystem = {}
  40.  
  41. local function breakTbl(tbl)
  42.     if type(tbl)~= "table" then
  43.         return tbl
  44.     else
  45.         local output = {}
  46.         for k,v in next, tbl do
  47.             output[k] = breakTbl(v)
  48.         end
  49.         return output
  50.     end
  51. end
  52.  
  53. function fs.open(block, sType)
  54.     if fileSystem[block]=="deleted" or type(block)~="number" or (sType=="w" and fileSystem[block]) or block>size or block<1 then
  55.         error("failed")
  56.     end
  57.     if sType=="r" then
  58.         sleep(.1)
  59.         local i=0
  60.         return {
  61.             read = function()
  62.                 i = i+1
  63.                 return fileSystem[block][i]
  64.             end
  65.         }
  66.     elseif sType=="w" then
  67.         sleep(.2)
  68.         local handle = {}
  69.         return {
  70.             write = function(data)
  71.                 table.insert(handle,data)
  72.             end;
  73.             close = function()
  74.                 local func = loadstring(table.concat(handle,"\n"),"block "..tostring(block))
  75.                 setfenv(func,setmetatable({},{__index=function(t,k)
  76.                     if k=="fs" then
  77.                         return fs
  78.                     elseif k=="io" then
  79.                         return nil
  80.                     elseif _G[k] then
  81.                         return breakTbl(_G[k])
  82.                     else
  83.                         return breakTbl(env[k])
  84.                     end
  85.                 end}))
  86.                 fileSystem[block] = {daemon.add(func),handle}
  87.             end;
  88.         }
  89.     end
  90. end
  91.  
  92. function fs.check(block)
  93.     if block>size or block<1 then
  94.         error("failed")
  95.     end
  96.     sleep(.1)
  97.     return (not fileSystem[block] and 0) or (fileSystem[block]=="deleted" and -1) or 1
  98. end
  99.  
  100. function fs.delete(block)
  101.     if fileSystem[block]=="deleted" or block>size or block<1 then
  102.         error("failed")
  103.     end
  104.     sleep(.1)
  105.     if fileSystem[block] then
  106.         daemon.rem(fileSystem[block][1])
  107.         sleep(.1)
  108.     end
  109.     remaining = remaining - 1
  110.     fileSystem[block]="deleted"
  111. end
  112.  
  113. function fs.create(block)
  114.     if not (fileSystem[block]=="deleted") or block>size or block<1 then
  115.         error("failed")
  116.     end
  117.     sleep(.2)
  118.     fileSystem[block] = nil
  119. end
  120.  
  121. function fs.size()
  122.     return size
  123. end
  124.  
  125. function fs.resetTimer(str)
  126.     if timer[str] then
  127.         timer[str] = 10
  128.     end
  129. end
  130.  
  131.  
  132.  
  133.  
  134.  
  135. local player1,player2 = {},{}
  136. local file = nativefs.open(file1,"r")
  137. for line in file.readLine do
  138.     table.insert(player1,line)
  139. end
  140. file = nativefs.open(file2,"r")
  141. for line in file.readLine do
  142.     table.insert(player2,line)
  143. end
  144. local block1,block2
  145. repeat
  146.     block1,block2 = math.random(1,size),math.random(1,size)
  147. until block1~=block2
  148. local func = loadstring(table.concat(player1,"\n"),"block "..tostring(block1))
  149. setfenv(func,setmetatable({},{__index=function(t,k)
  150.     if k=="fs" then
  151.         return fs
  152.     elseif k=="io" then
  153.         return nil
  154.     elseif _G[k] then
  155.         return breakTbl(_G[k])
  156.     else
  157.         return breakTbl(env[k])
  158.     end
  159. end}))
  160. fileSystem[block1] = {daemon.add(func),player1}
  161. func = loadstring(table.concat(player2,"\n"),"block "..tostring(block2))
  162. setfenv(func,setmetatable({},{__index=function(t,k)
  163.     if k=="fs" then
  164.         return fs
  165.     elseif k=="io" then
  166.         return nil
  167.     elseif _G[k] then
  168.         return breakTbl(_G[k])
  169.     else
  170.         return breakTbl(env[k])
  171.     end
  172. end}))
  173. fileSystem[block2] = {daemon.add(func),player2}
  174.  
  175.  
  176.  
  177.  
  178.  
  179. while true do
  180.     sleep(1)
  181.     timer[file1] = timer[file1] - 1
  182.     timer[file2] = timer[file2] - 1
  183.     if timer[file1] <= 0 then
  184.         for _,routine in ipairs(daemon.getBackground()) do
  185.             daemon.rem(routine)
  186.         end
  187.         term.clear()
  188.         term.setCursorPos(1,1)
  189.         term.write("winner: "..file2)
  190.         break
  191.     elseif timer[file2] <= 0 then
  192.         for _,routine in ipairs(daemon.getBackground()) do
  193.             daemon.rem(routine)
  194.         end
  195.         term.clear()
  196.         term.setCursorPos(1,1)
  197.         term.write("winner: "..file1)
  198.         break
  199.     end
  200.     print("Remaining: "..remaining..", "..file1..": "..timer[file1]..", "..file2..": "..timer[file2])
  201. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement