Advertisement
Hannesaronsson

Storage server

Jan 9th, 2014
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 5.14 KB | None | 0 0
  1. sId = 923
  2. rednet.open("bottom")
  3. busy = false
  4.  
  5. function saldo(id, content, block)
  6.    rednet.send(id, content)
  7.    ids, msg = rednet.receive(10)
  8.    if ids == id then
  9.     term.setCursorPos(1,1)
  10.     term.clear()
  11.     local amount = tonumber(msg) / 64
  12.     if amount < 10 then
  13.     amount = amount * 64
  14.      print("There is ".. amount.. " units of ".. block)
  15.      string = "There is ".. amount.. " units of ".. block
  16.     else
  17.      print("There is ".. amount.. " stacks of ".. block)
  18.      string = "There is ".. amount.. " stacks of ".. block
  19.     end
  20.     sleep(2)
  21.    return(tostring(string))
  22.    else
  23.    end
  24. end
  25.  
  26. function saveBlock(block, x, y, z, id, idAmount)
  27.  if fs.exists(block) then
  28.   term.setCursorPos(1,1)
  29.   term.clear()
  30.   print("Block already exists")
  31.   sleep(2)
  32.   return
  33.  end
  34.  local blockCord = {x, y, z, id, idAmount}
  35.  local file = fs.open(block, "w")
  36.  file.write(textutils.serialize(blockCord))
  37.  file.close()
  38.  term.setCursorPos(1,1)
  39.  term.clear()
  40.  print("Saved ".. block.. "At ".. x.. " "..y.. " "..z.." with ID ".. id..":"..idAmount)
  41. end
  42.  
  43. function loadBlock(block)
  44.  local file = fs.open(block, "r")
  45.  content = file.readAll()
  46.  file.close()
  47.  return(content)
  48.  
  49.  
  50. end
  51. tQueue = {}
  52. function commandQueue(block,units)
  53.   table.insert(tQueue, {
  54.     ["block"] = block,
  55.     ["units"] = units
  56.   })
  57. end
  58. function send() -- Sends to storage drone
  59.  if #tQueue <= 0 then --checks queue
  60.     return -- if noting in queue, cancels
  61.   end
  62.   local block = tQueue[1]["block"]
  63.   local units = tQueue[1]["units"]
  64.   local content = loadBlock(block)
  65.   blockId = textutils.unserialize(content)
  66.   blockId[6] = units
  67.   blockId = textutils.serialize(blockId)
  68.   rednet.send(sId, blockId)
  69.   table.remove(tQueue,1) --removes queued order from table
  70. end
  71.  
  72. function ui()
  73.  while true do
  74.  term.setCursorPos(1,1)
  75.  term.clear()
  76.  print("1. Add block\n2. Remove block\n3. Request block\n4. Block info\n5. In stock")
  77.  local event, key = os.pullEvent("char")
  78.  
  79.  if key == "1" then
  80.   term.setCursorPos(1,1)
  81.   term.clear()
  82.   print("1. Add block in row\n2. Add spec block")
  83.   local event, key = os.pullEvent("char")
  84.  
  85.   if key == "1" then
  86.    term.setCursorPos(1,1)
  87.    term.clear()
  88.    print("Row nr?")
  89.    rowNr = read()
  90.    print("Block nr=")
  91.    blockNr = read()
  92.    print("Block Name?")
  93.    local block = read()
  94.     z = 232 - rowNr
  95.     x = 2459 - blockNr
  96.     y = 88
  97.    print("Block Id?")
  98.    local blockId = read()
  99.    print("Id-amount")
  100.    local idAmount = read()
  101.    saveBlock(block, x, y, z, blockId, idAmount)
  102.  
  103.    elseif key == "2" then
  104.     term.setCursorPos(1,1)
  105.     term.clear()
  106.     print("Block name\n")
  107.     local block = read()
  108.     print("X-cord\n")
  109.     local x = read()
  110.     print("Y-cord\n")
  111.     local y = read()
  112.     print("Z-cord\n")
  113.     local z = read()
  114.     saveBlock(block, x, y, z)
  115.   end
  116.  
  117.   elseif key ==  "2" then
  118.   term.setCursorPos(1,1)
  119.   term.clear()
  120.   print("Block name?\n")
  121.   local block = read()
  122.   if fs.exists(block) then
  123.    fs.delete(block)
  124.    term.setCursorPos(1,1)
  125.    term.clear()
  126.    print("DELETED "..block)
  127.    sleep(2)
  128.   else
  129.    term.setCursorPos(1,1)
  130.    term.clear()
  131.    print("Block does not exist")
  132.    sleep(2)
  133.   end
  134.  
  135.  elseif key ==  "3" then
  136.   term.setCursorPos(1,1)
  137.   term.clear()
  138.   print("Block name?\n")
  139.   local block = read()
  140.   if fs.exists(block) then
  141.    print("How many stacks?")
  142.    local units = read()
  143.    if tonumber(units) >= 15 then
  144.     print("15 is max! automatically 15 stacks")
  145.     sleep(2)
  146.     units = 15
  147.    end
  148.    commandQueue(block,units)
  149.   else
  150.    term.setCursorPos(1,1)
  151.    term.clear()
  152.    print("Block does not exist.")
  153.    sleep(2)
  154.   end
  155.  
  156.  elseif key == "4" then
  157.   term.setCursorPos(1,1)
  158.   term.clear()
  159.   print("Block name")
  160.   block = read()
  161.   if fs.exists(block) then
  162.    local content = loadBlock(block)
  163.    local content = textutils.unserialize(content)
  164.    print("X = ".. content[1].. "\nY = ".. content[2].. "\nZ = ".. content[3])
  165.    local row =  232 - content[3]
  166.    local blockNr = 2459 - content[1]
  167.    print("\nRow = ".. row.. "\nBlock number = ".. blockNr)  
  168.    print("\nBlock ID = " ..content[4].. ":".. content[5])
  169.    sleep(5)
  170.   else
  171.    print("That block does not exist")
  172.    sleep(2)
  173.   end
  174.  elseif key == "5" then
  175.   term.setCursorPos(1,1)
  176.   term.clear()
  177.   print("Block name?")
  178.   local block = read()
  179.   if fs.exists(block) then
  180.    local content = loadBlock(block)
  181.    saldo(925, content, block)
  182.     term.setCursorPos(1,1)
  183.     term.clear()
  184.    end
  185.   else
  186.    print("Block does not exist")
  187.    sleep(2)
  188.   end
  189.   end
  190.  end
  191.  
  192.  
  193.  
  194. function listen()
  195.  while true do
  196.   id, msg = rednet.receive()
  197.   if id == sId and msg == "working" then
  198.    busy = true
  199.   elseif id == sId and msg == "done" then
  200.    send()
  201.   elseif id == 936 then
  202.   msg = textutils.unserialize(msg)
  203.     if fs.exists(msg[2]) then
  204.      if msg[1] == "request" then
  205.       rednet.send(id, "Order inc")
  206.       commandQueue(msg[2],msg[3])
  207.      else
  208.       local content = loadBlock(msg[2])
  209.       local amount = saldo(925, content, msg[2])
  210.       rednet.send(id, amount)
  211.       print(amount)
  212.      end
  213.    else
  214.     rednet.send(id, "Block does not exist.")
  215.    end
  216.    end
  217.   end
  218.  end
  219.  
  220.  
  221.  
  222. parallel.waitForAll(listen, ui)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement