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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
|
import thefuzz.process
import thefuzz.fuzz
import itertools
import graphlib
import zipfile
import json
import sys
import os
def ask_from_list(prompt, mapping):
keys = list(mapping.keys())
keys.sort()
max_len = len(str(len(keys)))
print(prompt)
for i, x in enumerate(keys):
print(" " * (max_len - len(str(i + 1))) + f' ({i + 1}) {x}')
response = input('> ')
try:
i = int(response)
if i >= 1 and i <= len(mapping):
return mapping[keys[i - 1]]
except ValueError:
pass
return ask_from_list(prompt, mapping)
def join_with_and(list):
if len(list) == 1:
return list[0]
if len(list) == 2:
return list[0] + ' and ' + list[1]
return ', '.join(list[:-1]) + ', and ' + list[-1]
def guess_minecraft_directory():
if sys.platform.startswith('linux'):
return os.path.join(os.path.expanduser('~'), '.minecraft')
if sys.platform in ['win32', 'cygwin']:
return os.path.join(os.getenv('APPDATA'), '.minecraft')
return '.'
if not os.path.exists('from-jar'):
versions_dir = os.path.join(guess_minecraft_directory(), 'versions')
while not os.path.exists(versions_dir):
print('please enter the path to the .minecraft directory:')
versions_dir = os.path.join(input('> '), 'versions')
versions = {}
for dir in os.walk(versions_dir):
for file in dir[2]:
if file.endswith('.jar'):
versions[file.removesuffix('.jar')] = os.path.join(dir[0], file)
jar_path = ask_from_list('which version should we extract?', versions)
with zipfile.ZipFile(jar_path, 'r') as jar:
print('extracting files from jar...')
interesting_dirs = [
os.path.join('data', 'minecraft', 'recipes'),
os.path.join('data', 'minecraft', 'tags', 'items'),
os.path.join('assets', 'minecraft', 'lang')
]
for file in jar.namelist():
for dir in interesting_dirs:
if file.startswith(dir):
jar.extract(file, 'from-jar')
print('loading data...')
id_to_name_table = {}
name_to_id_table = {}
tag_lists = {}
# recipe is (method, [(input, count)], output, count)
recipe_lists = {}
with open(os.path.join('from-jar', 'assets', 'minecraft', 'lang', 'en_us.json')) as file:
data = json.load(file)
for key in data:
id = None
if key.startswith('block.minecraft.'):
id = 'minecraft:' + key.removeprefix('block.minecraft.')
if '.' in id:
continue
elif key.startswith('item.minecraft.'):
id = 'minecraft:' + key.removeprefix('item.minecraft.')
if '.' in id:
continue
else:
continue
name = data[key].lower()
name_to_id_table[name] = id
id_to_name_table[id] = name
def to_display_name(id):
return id_to_name_table[id] if id in id_to_name_table else '<' + id + '>'
tags_dir = os.path.join('from-jar', 'data', 'minecraft', 'tags', 'items')
for fname in os.listdir(tags_dir):
with open(os.path.join(tags_dir, fname)) as file:
data = json.load(file)
tag_lists['minecraft:' + fname.removesuffix('.json')] = data['values']
def add_recipe(recipe):
output = recipe[2]
if output in recipe_lists:
if recipe not in recipe_lists[output]:
recipe_lists[output].append(recipe)
else:
recipe_lists[output] = [recipe]
def recursive_tag_lookup(tag):
list = []
for id in tag_lists[tag]:
if id[0] == '#':
list += recursive_tag_lookup(id[1:])
else:
list.append(id)
return list
def ilist_product(ilist):
ilist_new = []
for il in ilist:
il_new = []
if not isinstance(il, list):
il = [il]
for i in il:
if 'tag' in i:
il_new.append('#' + i['tag'])
else:
il_new.append(i['item'])
ilist_new.append(il_new)
return itertools.product(*ilist_new)
def add_shaped_recipe(recipe):
output = recipe['result']['item']
count = recipe['result']['count'] if 'count' in recipe['result'] else 1
the_keys = list(recipe['key'].keys())
for choice in ilist_product([recipe['key'][key] for key in the_keys]):
map = {}
for i in range(len(the_keys)):
map[the_keys[i]] = choice[i]
counts = {}
for p in ''.join(recipe['pattern']):
if p != ' ':
item = map[p]
if item in counts:
counts[item] += 1
else:
counts[item] = 1
items = list(counts.keys())
items.sort()
add_recipe(('craft', [(item, counts[item]) for item in items], output, count))
def add_shapeless_recipe(recipe):
output = recipe['result']['item']
count = recipe['result']['count'] if 'count' in recipe['result'] else 1
for choice in ilist_product(recipe['ingredients']):
counts = {}
for item in choice:
if item in counts:
counts[item] += 1
else:
counts[item] = 1
items = list(counts.keys())
items.sort()
add_recipe(('craft', [(item, counts[item]) for item in items], output, count))
def add_stonecut_recipe(recipe):
output = recipe['result']
count = recipe['count']
for choice in ilist_product([recipe['ingredient']]):
add_recipe(('stonecut', [(choice[0], 1)], output, count))
def add_smelt_recipe(recipe):
output = recipe['result']
count = 1
for choice in ilist_product([recipe['ingredient']]):
add_recipe(('smelt', [(choice[0], 1)], output, count))
smelting_methods = ['minecraft:smelting', 'minecraft:campfire_cooking', 'minecraft:smoking', 'minecraft:blasting']
recipes_dir = os.path.join('from-jar', 'data', 'minecraft', 'recipes')
for fname in os.listdir(recipes_dir):
with open(os.path.join(recipes_dir, fname)) as file:
data = json.load(file)
if data['type'] == 'minecraft:crafting_shaped':
add_shaped_recipe(data)
elif data['type'] == 'minecraft:crafting_shapeless':
add_shapeless_recipe(data)
elif data['type'] == 'minecraft:stonecutting':
add_stonecut_recipe(data)
elif data['type'] in smelting_methods:
add_smelt_recipe(data)
elif data['type'].startswith('minecraft:crafting_special_') or data['type'] in ['minecraft:smithing_trim', 'minecraft:crafting_decorated_pot', 'minecraft:smithing_transform']:
pass
else:
print('unrecognized type ' + data['type'])
exit(1)
chosen_tags = {}
chosen_recipes = {}
def choose_recipe_for_item(dest_item):
if dest_item in chosen_recipes:
return chosen_recipes[dest_item]
if dest_item not in recipe_lists:
return None
recipes = recipe_lists[dest_item]
choices = {'gather': (None, {})}
for recipe in recipes:
tags = []
for item, _ in recipe[1]:
if item[0] == '#':
if item[1:] not in chosen_tags:
tags.append(item[1:])
for tag_choice in itertools.product(*[recursive_tag_lookup(tag) for tag in tags]):
tag_map = {}
for i in range(len(tags)):
tag_map[tags[i]] = tag_choice[i]
ingredients = []
for item, count in recipe[1]:
if item[0] != '#':
ingredients.append((item, count))
else:
tag = item[1:]
if tag in chosen_tags:
ingredients.append((chosen_tags[tag], count))
else:
ingredients.append((tag_map[tag], count))
ingredients.sort()
source = join_with_and([f'{count} {to_display_name(item)}' for item, count in ingredients])
desc = f'{recipe[0]} {source} into {recipe[3]} {to_display_name(recipe[2])}'
choices[desc] = (recipe, tag_map)
recipe, tag_map = ask_from_list('how would you like to obtain ' + to_display_name(dest_item) + '?', choices)
chosen_recipes[dest_item] = recipe
for tag in tag_map:
chosen_tags[tag] = tag_map[tag]
return recipe
# dependees
item_deps_added = []
# dependency -> dependee
item_deps = {}
items_needed = {}
def add_item_deps(item):
if item not in item_deps_added:
item_deps_added.append(item)
if item not in item_deps:
item_deps[item] = []
recipe = choose_recipe_for_item(item)
if recipe is not None:
for dep, _ in recipe[1]:
if dep[0] == '#':
dep = chosen_tags[dep[1:]]
if dep in item_deps:
item_deps[dep].append(item)
else:
item_deps[dep] = [item]
add_item_deps(dep)
def add_needed_item(item, count):
if item in items_needed:
items_needed[item] += count
else:
items_needed[item] = count
def item_ratio(x, y):
ratio = thefuzz.fuzz.ratio(x, y)
partial_ratio = thefuzz.fuzz.partial_ratio(x, y)
return (ratio + partial_ratio) // 2
while True:
print('what item would you like to obtain? (press enter to stop)')
the_input = input('> ')
if the_input == '':
break
good = thefuzz.process.extract(the_input, id_to_name_table, scorer=item_ratio, limit=8)
item = None
if good[0][1] != 100:
print('there is no item with that name')
mapping = {'(none of these)': None}
cutoff = good[0][1] - 10
for name, ratio, id in good:
if ratio >= cutoff:
mapping[name] = id
if len(mapping) == 1:
continue
item = ask_from_list('do you mean one of these?', mapping)
if item is None:
continue
else:
item = good[0][2]
while True:
print('how many ' + to_display_name(item) + '?')
s = input('> ')
try:
i = int(s)
if i > 0:
add_needed_item(item, i)
except ValueError:
continue
break
while True:
for item in items_needed:
add_item_deps(item)
original_needed = items_needed.copy()
steps = []
gather_steps = []
ts = graphlib.TopologicalSorter(item_deps)
try:
for item in ts.static_order():
if item in items_needed:
needed = items_needed[item]
if needed == 0:
continue
recipe = choose_recipe_for_item(item)
if recipe is None:
gather_steps.append(f'gather {needed} {to_display_name(item)}')
add_needed_item(item, -needed)
else:
count = (needed - 1) // recipe[3] + 1
ingredients = []
for ingredient, c in recipe[1]:
if ingredient[0] == '#':
ingredients.append((chosen_tags[ingredient[1:]], c))
else:
ingredients.append((ingredient, c))
source = join_with_and([f'{c * count} {to_display_name(i)}' for i, c in ingredients])
steps.append(f'{recipe[0]} {source} into {recipe[3] * count} {to_display_name(recipe[2])}')
for i, c in ingredients:
add_needed_item(i, c * count)
add_needed_item(item, -recipe[3] * count)
except graphlib.CycleError as ex:
print('cycle detected: ' + ' from '.join(to_display_name(id) for id in ex.args[1]))
mapping = {}
for id in ex.args[1][1:]:
mapping[to_display_name(id)] = id
id = ask_from_list('change recipe for which item?', mapping)
chosen_recipes.pop(id)
choose_recipe_for_item(id)
items_needed = original_needed
item_deps_added = []
item_deps = {}
continue
break
steps.reverse()
print('steps:')
for step in gather_steps:
print(' ' + step)
for step in steps:
print(' ' + step)
requested = list(original_needed.keys())
requested.sort()
print('you should now have the requested items:')
for item in requested:
print(f' {original_needed[item]} {to_display_name(item)}')
extra = {}
for item in items_needed:
if items_needed[item] != 0:
extra[item] = -items_needed[item]
if len(extra) != 0:
items = list(extra.keys())
items.sort()
print('plus these extras:')
for i in items:
print(f' {extra[i]} {to_display_name(i)}')
|