Advertisement
TitoOn

MiningBoss

May 12th, 2015
117
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.18 KB | None | 0 0
  1. --# Auteur      : Tristan Seuret
  2. --# Date        : 12.05.15
  3. --# Description : Algorithme de minage optimisé(Boss side)
  4. --#             : Permet de controler les turtles en tant qu'unité centrale
  5.  
  6. long = ...
  7. long = tonumber(long)
  8.  
  9.  
  10. rednet.open("top")
  11. PosX,PosY,PosZ = gps.locate()
  12. PosX = PosX + 1
  13. lastX = PosX + long
  14. lastZ = PosZ + long
  15.  
  16. PROTOCOL = "MiningNetwork"
  17. list_position = {}
  18. x = PosX
  19. y = PosY
  20. z = PosZ
  21. table.insert(list_position, {x,y,z})
  22.  
  23. --# Calculate every position needed to cover all the area
  24. while z <= lastZ do
  25.    
  26.     x = x + 5
  27.     while x <= lastX do
  28.         table.insert(list_position, {x,y,z})
  29.         x = x + 5
  30.     end
  31.     x = x - 5
  32.     deltaLongX = lastX - x    
  33.     z = z + 1
  34.    
  35.     if z >= lastZ then
  36.         break
  37.     end
  38.    
  39.    
  40.     if deltaLongX >= 3 and x + 3 <= lastX then
  41.         x = x + 3
  42.         table.insert(list_position, {x,y,z})
  43.     else
  44.         x = x - 2
  45.         table.insert(list_position, {x,y,z})
  46.     end
  47.  
  48.     x = x - 5
  49.     while x >= PosX do
  50.         table.insert(list_position, {x,y,z})
  51.         x = x - 5
  52.     end
  53.     x = x + 5
  54.     deltaLongX = PosX - x  
  55.     z= z + 1
  56.     if deltaLongX <= -2 then
  57.         x = x - 2
  58.         table.insert(list_position, {x,y,z})
  59.     elseif x <= lastX then
  60.         x = x + 3
  61.         table.insert(list_position, {x,y,z})
  62.     end
  63. end    
  64.  
  65.  
  66. while #list_position > 0 do
  67.  
  68.         --# Get world coordinate
  69.         tempTable = list_position[#list_position]
  70.         tempTable[4] = "go to"
  71.         print("Count : "..#list_position)
  72.         print("X : "..tempTable[1])
  73.         print("Z : "..tempTable[3])
  74.  
  75.         --# Broadcast x and z world coordinates
  76.         rednet.broadcast(tempTable,PROTOCOL)
  77.  
  78.         --# Receive a message asking for authorization
  79.         senderID,message = rednet.receive(PROTOCOL, 5)
  80.  
  81.         if type(message) == "table" and message[1] == tempTable[1] and message[3] == tempTable[3] and message[4] =="will go" then
  82.                 rednet.send(senderID, "Ok", PROTOCOL)
  83.                 table.remove(list_position)
  84.         end
  85.        
  86.         sleep(1)  -- Will discard the messages from non-accepted turtles who asked for authorisation for this list position.
  87. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement