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
|
package lv.enes.mc.eris_alchemy;
import jakarta.annotation.Nonnull;
import jakarta.annotation.Nullable;
import lv.enes.mc.eris_alchemy.utils.ItemUtils;
import net.minecraft.core.registries.BuiltInRegistries;
import net.minecraft.core.registries.Registries;
import net.minecraft.resources.ResourceLocation;
import net.minecraft.tags.TagKey;
import net.minecraft.world.item.BlockItem;
import net.minecraft.world.item.Item;
import net.minecraft.world.item.ItemStack;
import net.minecraft.world.item.crafting.Ingredient;
import net.minecraft.world.level.Level;
import net.minecraft.world.level.block.Block;
import java.text.DecimalFormat;
import java.util.*;
import java.util.stream.Stream;
public class Emc {
private static final Map<ResourceLocation, OptionalDouble> ITEM_VALUES = new HashMap<>();
private static final Map<TagKey<Item>, OptionalDouble> ITEM_TAG_VALUES = new HashMap<>();
private static final Map<TagKey<Block>, OptionalDouble> BLOCK_TAG_VALUES = new HashMap<>();
private static final List<SimplifiedRecipe> FAKE_RECIPES = new ArrayList<>();
private static final Map<Level, Emc> instances = Collections.synchronizedMap(new WeakHashMap<>());
private static final DecimalFormat formatter = new DecimalFormat("0");
static {
formatter.setMaximumFractionDigits(1);
}
public static Emc getInstance(@Nonnull Level world) {
if (instances.containsKey(world)) {
return instances.get(world);
}
var instance = new Emc(world);
instances.put(world, instance);
return instance;
}
public static String formatEmc(double value) {
return formatter.format(value);
}
public static void reloadData(
Map<ResourceLocation, OptionalDouble> itemValues,
Map<ResourceLocation, OptionalDouble> itemTagValues,
Map<ResourceLocation, OptionalDouble> blockTagValues,
List<SimplifiedRecipe> fakeRecipes
) {
ITEM_VALUES.clear();
ITEM_VALUES.putAll(itemValues);
ITEM_TAG_VALUES.clear();
itemTagValues.forEach((id, value) -> ITEM_TAG_VALUES.put(TagKey.create(Registries.ITEM, id), value));
BLOCK_TAG_VALUES.clear();
blockTagValues.forEach((id, value) -> BLOCK_TAG_VALUES.put(TagKey.create(Registries.BLOCK, id), value));
FAKE_RECIPES.clear();
FAKE_RECIPES.addAll(fakeRecipes);
instances.clear();
}
private final Map<ResourceLocation, OptionalDouble> data;
private Emc(@Nonnull Level world) {
data = Collections.synchronizedMap(new HashMap<>(ITEM_VALUES));
ITEM_TAG_VALUES.forEach(
(tag, emcValue) -> BuiltInRegistries.ITEM
.getTagOrEmpty(tag)
.forEach(holder -> data.putIfAbsent(ItemUtils.getId(holder), emcValue))
);
BLOCK_TAG_VALUES.forEach(
(tag, emcValue) -> BuiltInRegistries.BLOCK
.getTagOrEmpty(tag)
.forEach(holder -> data.putIfAbsent(ItemUtils.getId(holder), emcValue))
);
ErisAlchemy.LOGGER.info("Calculating EMC values...");
var recipes = getRecipes(world);
var configured = new HashSet<>(data.keySet());
BuiltInRegistries.ITEM.keySet().forEach(item -> {
configEmc(recipes, configured, item);
if (!data.containsKey(item)) {
ErisAlchemy.LOGGER.warn("No EMC value for '{}' known", item);
}
});
}
public OptionalDouble get(ItemStack stack) {
if (stack.isEmpty()) {
return OptionalDouble.empty();
}
var item = stack.getItem();
var itemId = ItemUtils.getId(item);
return get(itemId)
.stream()
.map(value -> {
EmcStorage storage = null;
if (item instanceof EmcStorage emcStorage) {
storage = emcStorage;
} else if (item instanceof BlockItem blockItem) {
if (blockItem.getBlock() instanceof EmcStorage emcStorage) {
storage = emcStorage;
}
}
if (storage != null) {
return value + storage.getStoredEmc(stack);
}
return value;
})
.findFirst();
}
public OptionalDouble get(ResourceLocation itemId) {
return data.getOrDefault(itemId, OptionalDouble.empty());
}
private List<SimplifiedRecipe> getRecipes(@Nullable Level world) {
Stream<SimplifiedRecipe> recipes = FAKE_RECIPES.stream();
if (world != null) {
recipes = Stream.concat(
recipes,
world.getRecipeManager()
.getRecipes()
.stream()
.map(recipe -> new SimplifiedRecipe(recipe, world.registryAccess()))
);
}
return recipes.toList();
}
private OptionalDouble configEmc(
List<SimplifiedRecipe> recipes,
Set<ResourceLocation> configured,
ResourceLocation itemId
) {
var res = get(itemId);
if (res.isPresent() || configured.contains(itemId)) {
return res;
}
configured.add(itemId);
var item = BuiltInRegistries.ITEM.get(itemId);
res = recipes.stream()
.filter(recipe -> recipe.output().is(item))
.map(recipe -> calculateEmcForRecipe(recipes, configured, recipe))
.flatMapToDouble(OptionalDouble::stream)
.average();
res.ifPresentOrElse(
emc -> data.put(itemId, OptionalDouble.of(emc)),
() -> configured.remove(itemId)
);
return res;
}
private OptionalDouble calculateEmcForRecipe(
List<SimplifiedRecipe> recipes,
Set<ResourceLocation> configured,
SimplifiedRecipe recipe
) {
try {
if (recipe.input().isEmpty()) {
return OptionalDouble.empty();
}
var inputEmc = recipe.input()
.stream()
.map(ingredient -> calculateEmcForIngredient(recipes, configured, ingredient))
.mapToDouble(OptionalDouble::orElseThrow)
.sum();
var remainderEmc = recipe.remainder()
.stream()
.map(remainder -> configEmc(recipes, configured, ItemUtils.getId(remainder)))
.mapToDouble(OptionalDouble::orElseThrow)
.sum();
if (remainderEmc > inputEmc) {
ErisAlchemy.LOGGER.warn("Recipe generating {} creates too much EMC out of thin air!", recipe.output());
return OptionalDouble.empty();
}
var outputDivisor = (double) recipe.output().getCount();
return OptionalDouble.of((inputEmc - remainderEmc) / outputDivisor);
} catch (NoSuchElementException e) {
return OptionalDouble.empty();
}
}
private OptionalDouble calculateEmcForIngredient(
List<SimplifiedRecipe> recipes,
Set<ResourceLocation> configured,
Ingredient ingredient
) {
return Arrays.stream(ingredient.getItems())
.map(stack -> configEmc(recipes, configured, ItemUtils.getId(stack.getItem())).stream()
.map(x -> x * stack.getCount())
.findFirst())
.filter(OptionalDouble::isPresent)
.mapToDouble(OptionalDouble::getAsDouble)
.filter(x -> x > 0)
.average();
}
}
|