Only deliver reasonable clients
This commit is contained in:
parent
1c5f23d624
commit
f31e6e74c8
11
reborn.py
11
reborn.py
|
@ -272,11 +272,12 @@ try:
|
|||
for c in Client.near(Warehouse.get(0).pos):
|
||||
if d < Drone.len():
|
||||
pack = c.pack()
|
||||
for i in pack:
|
||||
Drone.get(d).addTask('load', Warehouse.get(0), Product.get(i), 1)
|
||||
for i in pack:
|
||||
Drone.get(d).addTask('deliver', c, Product.get(i), 1)
|
||||
d += 1
|
||||
if len(pack) == len(c.needs):
|
||||
for i in pack:
|
||||
Drone.get(d).addTask('load', Warehouse.get(0), Product.get(i), 1)
|
||||
for i in pack:
|
||||
Drone.get(d).addTask('deliver', c, Product.get(i), 1)
|
||||
d += 1
|
||||
while turn < SIMULATION:
|
||||
newTurn()
|
||||
|
||||
|
|
Reference in a new issue