Advertisement
Guest User

startup

a guest
Feb 18th, 2014
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 4.80 KB | None | 0 0
  1. --This is a router
  2. rednet.open('top')
  3. term.clear()
  4. term.setCursorPos(1,1)
  5. print('This is computer #',os.getComputerID())
  6.  
  7. local function numbersOnly(pre,limit)-- Works like read(), except only accepts numbers. Writes a desired prefix and can accept a max number length
  8.     term.setCursorBlink(true)
  9.     local x,y=term.getCursorPos()
  10.     local num=''
  11.     while true do
  12.         if pre then write(pre) end
  13.         write(num)
  14.         local event,key=os.pullEvent()
  15.         if event=='char' and tonumber(key) then
  16.             if #num<limit then
  17.                 num=num..key
  18.             end
  19.         elseif event=='key' then
  20.             if key==14 then
  21.                 num=string.sub(num, 1, -2)
  22.             elseif key==28 then
  23.                 print()
  24.                 term.setCursorBlink(false)
  25.                 return tonumber(num)
  26.             end
  27.         end
  28.         term.setCursorPos(x,y)
  29.         term.clearLine()
  30.     end
  31. end
  32.  
  33. local function checkId(id)--Checks for id in file ids, returns true if present, false if not
  34.     if fs.exists("ids") then
  35.         local f = fs.open("ids", "r")
  36.         for line in f.readLine do
  37.             if line:find(id) then
  38.                 return true
  39.             end
  40.         end
  41.         return false
  42.     end
  43. end
  44.  
  45. local function saveId(id)-- Saves an id to file id
  46.     if not checkId(id) then
  47.         local f=fs.open('ids','a')
  48.         f.writeLine(id..'')
  49.         f.close()
  50.         return true
  51.     else
  52.         return false
  53.     end
  54. end
  55.  
  56. local function receiveMessage()-- Same as rednet.receive(), but returns true if sending was successful, false if not
  57.     local id,msg,d=rednet.receive()
  58.     rednet.send(id,true)
  59.     return id,msg,d
  60. end
  61.  
  62. local function sendMessage(id,msg)-- Same as rednet.send(), but sends confirmation of received message
  63.     rednet.send(id,msg,5)
  64.     local tid,tmsg,td=rednet.receive(5)
  65.     if tid==id and tmsg then
  66.         return true
  67.     else
  68.         return false
  69.     end
  70. end
  71.  
  72. local function createFile(name)--Creates a file with filename 'name'
  73.     if not fs.exists(name) then
  74.         f=fs.open(name,'w')
  75.         f.writeLine('{}')
  76.         f.close()
  77.     end
  78. end
  79.  
  80. local function checkId(id)
  81.     if fs.exists("ids") then
  82.         local f = fs.open("ids", "r")
  83.         for line in f.readLine do
  84.             if line:find(id) then
  85.                 return true
  86.             end
  87.         end
  88.         return false
  89.     end
  90. end
  91.  
  92. local function saveId(id)
  93.     if not checkId(id) then
  94.         local f=fs.open('ids','a')
  95.         f.writeLine(id..'')
  96.         f.close()
  97.         return true
  98.     else
  99.         return false
  100.     end
  101. end
  102.  
  103. local function loadFromFile(variable,file)
  104.     local file_path=fs.open(file,'r')
  105.     local values=textutils.unserialize(file_path.readLine())
  106.     for i,v in pairs(values) do
  107.         if i==variable then
  108.             file_path.close()
  109.             return v
  110.         end
  111.     end
  112.     file_path.close()
  113.     return nil
  114. end
  115.  
  116. local function saveToFile(variable,value,file)
  117.     local file=file or 'config'
  118.     createFile(file)
  119.     local file_path=fs.open(file,'r')
  120.     local values=textutils.unserialize(file_path.readLine())
  121.     values[variable]=value
  122.     file_path.close()
  123.    
  124.     local file_path=fs.open(file,'w')
  125.     file_path.writeLine(textutils.serialize(values))
  126.     file_path.close()
  127. end
  128.  
  129. local function getParentId()
  130.     parent_id=loadFromFile('parent_id','config')
  131.     if not parent_id then
  132.         while true do
  133.             local parent_id=numbersOnly('Please give the id of the parent router: ',3)
  134.             local msg=textutils.serialize({action='registerRouter',id=os.getComputerID()})
  135.             if sendMessage(parent_id,msg) then
  136.                 saveToFile('parent_id',parent_id,'config')
  137.                 break
  138.             else
  139.                 print('The requested router could not be found. Please check its availability, or try another id.')
  140.             end
  141.             sleep(0.01)
  142.         end
  143.     end
  144.     return parent_id
  145. end
  146.  
  147. createFile('ids')
  148. createFile('config')
  149. local parent_id=getParentId()
  150. print('Parent id: '..tostring(parent_id))
  151.  
  152. while true do
  153.     local id,msg,d=receiveMessage()
  154.     print('got message')
  155.     local values=textutils.unserialize(msg)
  156.     print('unserialized')
  157.    
  158.     if values['action']=='registerComputer' then
  159.         if not checkId(values['id']) then
  160.             saveId(values['id'])
  161.             print('Adding computer ID # '..tostring(values['id'])..' to the id list')
  162.         end
  163.         local msg=textutils.serialize({id=os.getComputerID(),action='computerAdded'})
  164.         sendMessage(values['id'],msg)
  165.     elseif values['action']=='registerRouter' then
  166.         if not loadFromFile('router_ids','config') then
  167.             saveToFile('router_ids',{values['id']},'config')
  168.         else
  169.             local exists=false
  170.             for _,v in ipairs(loadFromFile('router_ids','config')) do
  171.                 if v==values['id'] then
  172.                     exists=true
  173.                 end
  174.             end
  175.             if not exists then
  176.                 local tmp=loadFromFile('router_ids','config')
  177.                 table.insert(tmp,actions['id'])
  178.                 saveToFile('router_ids',tmp,'config')
  179.             end
  180.         end
  181.     elseif values['action']=='return' then
  182.         if checkId(values['id']) then
  183.             sendMessage(values['id'],msg)
  184.         else
  185.             for _,v in ipairs(loadFromFile('router_ids','config')) do
  186.                 sendMessage(v,msg)
  187.             end
  188.         end
  189.     else
  190.         if sendMessage(parent_id,msg) then
  191.             print('Router Id: '..tostring(parent_id)..' reception of message confirmed.')
  192.         else
  193.             print('Message send to Router Id: '..tostring(parent_id)..' failed.')
  194.         end
  195.     end
  196. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement