You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

80 lines
2.6 KiB
Python

import sys
import subprocess
import itertools
import shutil
from util import xmlfiletodict, dicttoxmlfile, get_pallet, get_articles, get_packlist_dict
from arrange_spread2 import arrange_in_layer, spread_articles, find_articles
import cPickle
from binascii import b2a_base64
def get_layers(bins, pallet, rot_article=False, rot_pallet=False):
for abin in bins:
bins[abin] = sorted(bins[abin], key=lambda article: article['Article']['Length']*article['Article']['Width'], reverse=True)
plength, pwidth = (pallet['Dimensions']['Length'], pallet['Dimensions']['Width'])
root, layer, rest = arrange_in_layer(bins[abin], plength, pwidth, rot_article=rot_article)
while layer:
spread_articles(root)
occupied_area = 0
for article in layer:
length, width = article['Article']['Length'], article['Article']['Width']
occupied_area += length*width
# print "layer occupation:", occupied_area/float(plength*pwidth)
if occupied_area/float(plength*pwidth) <= 0.7:
rot_article, rot_pallet = (yield None, layer)
else:
rot_article, rot_pallet = (yield layer, None)
root, layer, rest = arrange_in_layer(rest, plength, pwidth, rot_article=rot_article)
def main():
if len(sys.argv) != 3:
print "usage:", sys.argv[0], "order.xml packlist.xml"
exit(1)
orderline = xmlfiletodict(sys.argv[1])
pallet = get_pallet(orderline)
articles = get_articles(orderline)
bins = dict()
for article in articles:
abin = bins.get(article['Article']['Height'])
if abin:
abin.append(article)
else:
bins[article['Article']['Height']] = [article]
scores = list()
stuff1 = list()
#for order in itertools.product([True, False], repeat=12):
for order in [[True]*12,]:
rests = list()
layers = list()
it = get_layers(bins, pallet, order[0], False)
layer, rest = it.next()
if layer:
layers.append(layer)
if rest:
rests.append(rest)
fail = True
for rot_article in order[1:]:
try:
layer, rest = it.send((rot_article, False))
if layer:
layers.append(layer)
if rest:
rests.append(rest)
except StopIteration:
fail = False
break
if fail:
raise Exception("finished early")
print b2a_base64(cPickle.dumps((layers, rests, pallet))),
if __name__ == "__main__":
main()