-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmodel.py
183 lines (150 loc) · 5.17 KB
/
model.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
import json
import settings as conf
class Element:
"""Base class for all elements containing subelements"""
subelem_name = ""
def __init__(self, subelems):
self.subelems = subelems
def find(self, str):
"""Return all lowest level elements containing str"""
result = []
for subelem in self.subelems:
result += subelem.find(str)
return result
def asdict(self):
subelems = []
for subelem in self.subelems:
subelems.append(subelem.asdict())
return {self.subelem_name: subelems}
class Organizer(Element):
"""Organizer, contains boxes"""
subelem_name = "boxes"
def __init__(self, boxes, width, height):
super().__init__(boxes)
self.w = width
self.h = height
def save(self):
"""Save the organizer and its content to disk"""
with open(conf.ORGANIZER_JSON, "w") as f:
json.dump(self.asdict(), f, indent=conf.ORGANIZER_JSON_INDENT)
def asdict(self):
dct = {"width": self.w, "height": self.h}
dct.update(super().asdict())
return dct
@classmethod
def fromdict(cls, dct):
boxes = []
for box in dct[cls.subelem_name]:
boxes.append(Box.fromdict(box))
return Organizer(boxes, dct["width"], dct["height"])
@classmethod
def load(cls):
"""Load the organizer and its content from disk"""
try:
with open(conf.ORGANIZER_JSON) as f:
dct = json.load(f)
organizer = Organizer.fromdict(dct)
except FileNotFoundError:
organizer = cls.__parse_config()
return organizer
@classmethod
def __parse_config(cls):
"""Parse the organizer structure from config file"""
boxes = []
w = 0
h = 0
symbols = {}
layout = []
# read conf file
with open(conf.ORGANIZER_CONF) as conf_file:
lines = conf_file.read().splitlines()
# parse drawer count and box layout to symbol dict and layout array
for line in lines:
if len(line) > 2 and line[0] != "#":
if ":" in line:
s = line.split(":")
symbols[s[0]] = s[1]
else:
layout.append(line.split(" "))
w = max(w, len(layout[-1]))
h += 1
# create boxes from layout
org_w = len(layout[0])
org_h = len(layout)
for i, line in enumerate(layout):
j = 0
while j < org_w:
s = c = line[j]
if c == "":
j += 1
else:
w = 0
h = 0
x = j
# create correct amount of drawers depending on symbol
drawers = []
for k in range(int(symbols[s])):
drawers.append(Drawer([]))
# determine box width
while c == s and j < org_w:
j += 1
w += 1
if j < org_w:
c = line[j]
# determine box height and flag array entries to be ignored
c = s
while c == s and i + h < org_h:
for k in range(w):
layout[i + h][x + k] = ""
h += 1
if i + h < org_h:
c = layout[i + h][x]
boxes.append(Box(drawers, x, org_h - i - h, w, h))
return Organizer(boxes, org_w, org_h)
class Box(Element):
"""Box, contains drawers"""
subelem_name = "drawers"
def __init__(self, drawers, x, y, w, h):
super().__init__(drawers)
self.x = x
self.y = y
self.w = w
self.h = h
def asdict(self):
dct = {"x": self.x, "y": self.y, "w": self.w, "h": self.h}
dct.update(super().asdict())
return dct
@classmethod
def fromdict(cls, dct):
drawers = []
for drawer in dct[cls.subelem_name]:
drawers.append(Drawer.fromdict(drawer))
return Box(drawers, dct["x"], dct["y"], dct["w"], dct["h"])
class Drawer(Element):
"""Drawer, can countain multiple Items"""
subelem_name = "items"
def __init__(self, items=[]):
super().__init__(items)
@classmethod
def fromdict(cls, dct):
items = []
for item in dct[cls.subelem_name]:
items.append(Item.fromdict(item))
return Drawer(items)
class Item:
"""Item, has a name and can have an amount"""
def __init__(self, name, amount=None):
self.name = name
self.amount = amount
self.lower = self.name.lower()
def find(self, str):
"""Return [self] if all elems of str is contained in name, else []"""
for s in str:
if s not in self.lower:
return []
return [self]
def asdict(self):
return {"name": self.name, "amount": self.amount}
@classmethod
def fromdict(cls, dct):
return Item(dct["name"], dct["amount"])