Compare commits

..

8 commits

Author SHA1 Message Date
James Mitchell
0a83fbec10
Merge 3dbc624aeb into 09c6b9895c 2024-11-04 02:17:18 +00:00
James Mitchell
3dbc624aeb
Merge branch '1.21.1' into optimize-load 2024-11-04 11:17:15 +09:00
rlnt
09c6b9895c bump version
Some checks failed
Build / redirect (push) Has been cancelled
2024-10-23 20:42:48 +00:00
rlnt
ba06760073
fix crash on empty recipe JSONs 2024-10-23 22:36:50 +02:00
rlnt
0d41ce5184 bump version
Some checks failed
Build / redirect (push) Has been cancelled
2024-10-22 12:58:37 +00:00
rlnt
d8b4afd57f
add skipping for recipes with invalid recipe type
fixes #100
2024-10-22 14:52:29 +02:00
rlnt
54529f60b1
add logging for recipes with invalid recipe type 2024-10-22 14:39:06 +02:00
rlnt
1f33027062
fix recipe type parsing not handling invalid cases 2024-10-22 14:33:03 +02:00
6 changed files with 40 additions and 10 deletions

View file

@ -3,8 +3,17 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
## Unreleased ## Unreleased
- /
- added better logging for cases where items are assigned to multiple unification tags ## [1.2.2] - 2024-10-23
- fixed crash on empty recipe JSONs
## [1.2.1] - 2024-10-22
- added logging for cases where items are assigned to multiple unification tags
- added logging for cases where the recipe type can't be found
- added skipping logic for recipes with invalid recipe types
- added Turkish translation ([#102](https://github.com/AlmostReliable/almostunified/pull/102)) - added Turkish translation ([#102](https://github.com/AlmostReliable/almostunified/pull/102))
- fixed crash when runtime isn't loaded ([#101](https://github.com/AlmostReliable/almostunified/issues/101)) - fixed crash when runtime isn't loaded ([#101](https://github.com/AlmostReliable/almostunified/issues/101))
- fixed newly created custom tags not being considered for unification - fixed newly created custom tags not being considered for unification
@ -35,6 +44,8 @@ All notable changes to this project will be documented in this file.
Initial 1.21.1 port. Initial 1.21.1 port.
<!-- Versions --> <!-- Versions -->
[1.2.2]: https://github.com/AlmostReliable/almostunified/releases/tag/v1.21.1-1.2.2
[1.2.1]: https://github.com/AlmostReliable/almostunified/releases/tag/v1.21.1-1.2.1
[1.2.0]: https://github.com/AlmostReliable/almostunified/releases/tag/v1.21.1-1.2.0 [1.2.0]: https://github.com/AlmostReliable/almostunified/releases/tag/v1.21.1-1.2.0
[1.1.0]: https://github.com/AlmostReliable/almostunified/releases/tag/v1.21.1-1.1.0 [1.1.0]: https://github.com/AlmostReliable/almostunified/releases/tag/v1.21.1-1.1.0
[1.0.0]: https://github.com/AlmostReliable/almostunified/releases/tag/v1.21.1-1.0.0 [1.0.0]: https://github.com/AlmostReliable/almostunified/releases/tag/v1.21.1-1.0.0

View file

@ -28,7 +28,7 @@ public class RecipeJsonImpl implements RecipeJson {
try { try {
return ResourceLocation.parse(json.get("type").getAsString()); return ResourceLocation.parse(json.get("type").getAsString());
} catch (Exception e) { } catch (Exception e) {
throw new IllegalArgumentException("could not detect recipe type"); throw new IllegalArgumentException("could not detect recipe type for recipe " + id);
} }
} }

View file

@ -2,6 +2,7 @@ package com.almostreliable.unified.unification.recipe;
import net.minecraft.resources.ResourceLocation; import net.minecraft.resources.ResourceLocation;
import com.almostreliable.unified.AlmostUnifiedCommon;
import com.almostreliable.unified.api.unification.recipe.RecipeData; import com.almostreliable.unified.api.unification.recipe.RecipeData;
import com.almostreliable.unified.utils.JsonCompare; import com.almostreliable.unified.utils.JsonCompare;
@ -17,7 +18,7 @@ import java.util.Map;
import java.util.Set; import java.util.Set;
import java.util.stream.Collectors; import java.util.stream.Collectors;
public class RecipeLink implements RecipeData { public final class RecipeLink implements RecipeData {
/** /**
* This cache is an optimization to avoid creating many ResourceLocations for just a few different types. * This cache is an optimization to avoid creating many ResourceLocations for just a few different types.
* Having fewer ResourceLocation instances can greatly speed up equality checking when these are used as map keys. * Having fewer ResourceLocation instances can greatly speed up equality checking when these are used as map keys.
@ -30,15 +31,30 @@ public class RecipeLink implements RecipeData {
@Nullable private DuplicateLink duplicateLink; @Nullable private DuplicateLink duplicateLink;
@Nullable private JsonObject unifiedRecipe; @Nullable private JsonObject unifiedRecipe;
public RecipeLink(ResourceLocation id, JsonObject originalRecipe) { private RecipeLink(ResourceLocation id, JsonObject originalRecipe, ResourceLocation type) {
this.id = id; this.id = id;
this.originalRecipe = originalRecipe; this.originalRecipe = originalRecipe;
this.type = type;
}
@Nullable
public static RecipeLink of(ResourceLocation id, JsonObject originalRecipe) {
try {
ResourceLocation type = ResourceLocation.parse(originalRecipe.get("type").getAsString());
return new RecipeLink(id, originalRecipe, type);
} catch (Exception e) {
AlmostUnifiedCommon.LOGGER.warn("Could not detect recipe type for recipe '{}', skipping.", id);
return null;
}
}
public static RecipeLink ofOrThrow(ResourceLocation id, JsonObject originalRecipe) {
try { try {
String typeString = originalRecipe.get("type").getAsString(); String typeString = originalRecipe.get("type").getAsString();
this.type = PARSED_TYPE_CACHE.computeIfAbsent(typeString, ResourceLocation::parse); ResourceLocation type = PARSED_TYPE_CACHE.computeIfAbsent(typeString, ResourceLocation::parse);
return new RecipeLink(id, originalRecipe, type);
} catch (Exception e) { } catch (Exception e) {
throw new IllegalArgumentException("could not detect recipe type"); throw new IllegalArgumentException("could not detect recipe type for recipe " + id);
} }
} }

View file

@ -31,6 +31,7 @@ import java.util.HashSet;
import java.util.LinkedHashSet; import java.util.LinkedHashSet;
import java.util.List; import java.util.List;
import java.util.Map; import java.util.Map;
import java.util.Objects;
import java.util.Set; import java.util.Set;
import java.util.function.Consumer; import java.util.function.Consumer;
import java.util.stream.Collectors; import java.util.stream.Collectors;
@ -111,7 +112,9 @@ public class RecipeTransformer {
return recipes return recipes
.entrySet() .entrySet()
.stream() .stream()
.map(entry -> new RecipeLink(entry.getKey(), entry.getValue().getAsJsonObject())) .filter(entry -> entry.getValue() instanceof JsonObject jsonObject && !jsonObject.isEmpty())
.map(entry -> RecipeLink.of(entry.getKey(), entry.getValue().getAsJsonObject()))
.filter(Objects::nonNull)
.sorted(Comparator.comparing(entry -> entry.getId().toString())) .sorted(Comparator.comparing(entry -> entry.getId().toString()))
.collect(Collectors.groupingByConcurrent(RecipeLink::getType)); .collect(Collectors.groupingByConcurrent(RecipeLink::getType));
} }

View file

@ -83,11 +83,11 @@ public class TestUtils {
public static RecipeLink recipe(String jsonStr) { public static RecipeLink recipe(String jsonStr) {
var json = json(jsonStr); var json = json(jsonStr);
return new RecipeLink(ResourceLocation.parse("test"), json); return RecipeLink.ofOrThrow(ResourceLocation.parse("test"), json);
} }
public static RecipeLink recipe(JsonObject json) { public static RecipeLink recipe(JsonObject json) {
return new RecipeLink(ResourceLocation.parse("test"), json); return RecipeLink.ofOrThrow(ResourceLocation.parse("test"), json);
} }
public static JsonObject json(String json) { public static JsonObject json(String json) {

View file

@ -8,7 +8,7 @@ enableAccessWidener = false
minecraftVersion = 1.21.1 minecraftVersion = 1.21.1
# Mod # Mod
modVersion = 1.2.0 modVersion = 1.2.2
modPackage = com.almostreliable.unified modPackage = com.almostreliable.unified
modId = almostunified modId = almostunified
modName = AlmostUnified modName = AlmostUnified