-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcalc.py
50 lines (45 loc) · 1.7 KB
/
calc.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
import json
import fileinput
import math
data = ""
totals = {}
def make(id: str,amount_per_second: float,ident: int = 0):
x = data["recipes"][id]
num_assemblers = x["time"]*amount_per_second
machine_name = "basic assembler(s)"
if "machine" in x:
num_assemblers /= data["machines"][x["machine"]]["speed"]
machine_name = data["machines"][x["machine"]]["name"]
else:
num_assemblers *= 2
for i in range(ident):
print(" ",end="")
print("{}: {:.2}/s, {} {}".format (id, amount_per_second, math.ceil(num_assemblers), machine_name))
if id not in totals:
totals[id] = 0
totals[id] += amount_per_second
for y in x:
if y != "machine" and y != "time" and y in data["recipes"]:
make(y,amount_per_second*x[y],ident+4)
with open('recipes.json') as recipes:
data = json.loads(recipes.read())
print("Input the desired output separated by +. No spaces.")
print("Example query: red_science*0.8+green_science*0.8+black_science*0.8+blue_science*0.8")
thing = input("Query:").split("+")
for item in thing:
y = item.split("*")
if y[0] not in data["recipes"]:
print(y[0], "not found.")
continue
make(y[0],float(y[1]))
print("\nTotals:")
for id in totals:
x = data["recipes"][id]
num_assemblers = x["time"]*totals[id]
machine_name = "basic assembler(s)"
if "machine" in x:
num_assemblers /= data["machines"][x["machine"]]["speed"]
machine_name = data["machines"][x["machine"]]["name"]
else:
num_assemblers *= 2
print("{}: {:.2}/s, {} {}".format (id, totals[id], math.ceil(num_assemblers), machine_name))