geforkt von Mirrors/Paper
Cleanup reputation API + back with an EnumMap instead of array (#8258)
Resolves: #7142
Dieser Commit ist enthalten in:
Ursprung
da071ba78f
Commit
af85b6071c
@ -13,6 +13,8 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
|||||||
+package com.destroystokyo.paper.entity.villager;
|
+package com.destroystokyo.paper.entity.villager;
|
||||||
+
|
+
|
||||||
+import com.google.common.base.Preconditions;
|
+import com.google.common.base.Preconditions;
|
||||||
|
+
|
||||||
|
+import java.util.EnumMap;
|
||||||
+import java.util.Map;
|
+import java.util.Map;
|
||||||
+import org.jetbrains.annotations.NotNull;
|
+import org.jetbrains.annotations.NotNull;
|
||||||
+
|
+
|
||||||
@ -20,26 +22,17 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
|||||||
+ * A reputation score for a player on a villager.
|
+ * A reputation score for a player on a villager.
|
||||||
+ */
|
+ */
|
||||||
+public final class Reputation {
|
+public final class Reputation {
|
||||||
+ private static final ReputationType[] REPUTATION_TYPES = ReputationType.values(); // Avoid allocation
|
+
|
||||||
+ @NotNull
|
+ @NotNull
|
||||||
+ private final int[] reputation;
|
+ private final Map<ReputationType, Integer> reputation;
|
||||||
+
|
+
|
||||||
+ public Reputation() {
|
+ public Reputation() {
|
||||||
+ this(new int[REPUTATION_TYPES.length]);
|
+ this(new EnumMap<>(ReputationType.class));
|
||||||
+ }
|
+ }
|
||||||
+
|
+
|
||||||
+ // Package level to avoid plugins creating reputations with "magic values".
|
+ public Reputation(@NotNull Map<ReputationType, Integer> reputation) {
|
||||||
+ Reputation(@NotNull int[] reputation) {
|
|
||||||
+ this.reputation = reputation;
|
|
||||||
+ }
|
|
||||||
+
|
|
||||||
+ public Reputation(@NotNull final Map<ReputationType, Integer> reputation) {
|
|
||||||
+ this();
|
|
||||||
+ Preconditions.checkNotNull(reputation, "reputation cannot be null");
|
+ Preconditions.checkNotNull(reputation, "reputation cannot be null");
|
||||||
+
|
+ this.reputation = reputation;
|
||||||
+ for (Map.Entry<ReputationType, Integer> entry : reputation.entrySet()) {
|
|
||||||
+ setReputation(entry.getKey(), entry.getValue());
|
|
||||||
+ }
|
|
||||||
+ }
|
+ }
|
||||||
+
|
+
|
||||||
+ /**
|
+ /**
|
||||||
@ -50,7 +43,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
|||||||
+ */
|
+ */
|
||||||
+ public int getReputation(@NotNull ReputationType type) {
|
+ public int getReputation(@NotNull ReputationType type) {
|
||||||
+ Preconditions.checkNotNull(type, "the reputation type cannot be null");
|
+ Preconditions.checkNotNull(type, "the reputation type cannot be null");
|
||||||
+ return reputation[type.ordinal()];
|
+ return this.reputation.getOrDefault(type, 0);
|
||||||
+ }
|
+ }
|
||||||
+
|
+
|
||||||
+ /**
|
+ /**
|
||||||
@ -61,7 +54,17 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
|||||||
+ */
|
+ */
|
||||||
+ public void setReputation(@NotNull ReputationType type, int value) {
|
+ public void setReputation(@NotNull ReputationType type, int value) {
|
||||||
+ Preconditions.checkNotNull(type, "the reputation type cannot be null");
|
+ Preconditions.checkNotNull(type, "the reputation type cannot be null");
|
||||||
+ reputation[type.ordinal()] = value;
|
+ this.reputation.put(type, value);
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ /**
|
||||||
|
+ * Gets if a reputation value is currently set for a specific {@link ReputationType}.
|
||||||
|
+ *
|
||||||
|
+ * @param type The {@link ReputationType type} to check
|
||||||
|
+ * @return If there is a value for this {@link ReputationType type} set.
|
||||||
|
+ */
|
||||||
|
+ public boolean hasReputationSet(@NotNull ReputationType type) {
|
||||||
|
+ return this.reputation.containsKey(type);
|
||||||
+ }
|
+ }
|
||||||
+}
|
+}
|
||||||
diff --git a/src/main/java/com/destroystokyo/paper/entity/villager/ReputationType.java b/src/main/java/com/destroystokyo/paper/entity/villager/ReputationType.java
|
diff --git a/src/main/java/com/destroystokyo/paper/entity/villager/ReputationType.java b/src/main/java/com/destroystokyo/paper/entity/villager/ReputationType.java
|
||||||
|
@ -4,21 +4,6 @@ Date: Wed, 22 Apr 2020 23:29:20 +0200
|
|||||||
Subject: [PATCH] Add villager reputation API
|
Subject: [PATCH] Add villager reputation API
|
||||||
|
|
||||||
|
|
||||||
diff --git a/src/main/java/com/destroystokyo/paper/entity/villager/ReputationConstructor.java b/src/main/java/com/destroystokyo/paper/entity/villager/ReputationConstructor.java
|
|
||||||
new file mode 100644
|
|
||||||
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000
|
|
||||||
--- /dev/null
|
|
||||||
+++ b/src/main/java/com/destroystokyo/paper/entity/villager/ReputationConstructor.java
|
|
||||||
@@ -0,0 +0,0 @@
|
|
||||||
+package com.destroystokyo.paper.entity.villager;
|
|
||||||
+// Must have own package due to package-level constructor.
|
|
||||||
+
|
|
||||||
+public final class ReputationConstructor {
|
|
||||||
+ // Abuse the package-level constructor.
|
|
||||||
+ public static Reputation construct(int[] values) {
|
|
||||||
+ return new Reputation(values);
|
|
||||||
+ }
|
|
||||||
+}
|
|
||||||
diff --git a/src/main/java/net/minecraft/world/entity/ai/gossip/GossipContainer.java b/src/main/java/net/minecraft/world/entity/ai/gossip/GossipContainer.java
|
diff --git a/src/main/java/net/minecraft/world/entity/ai/gossip/GossipContainer.java b/src/main/java/net/minecraft/world/entity/ai/gossip/GossipContainer.java
|
||||||
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
|
||||||
--- a/src/main/java/net/minecraft/world/entity/ai/gossip/GossipContainer.java
|
--- a/src/main/java/net/minecraft/world/entity/ai/gossip/GossipContainer.java
|
||||||
@ -38,24 +23,39 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
|||||||
}
|
}
|
||||||
+
|
+
|
||||||
+ // Paper start - Add villager reputation API
|
+ // Paper start - Add villager reputation API
|
||||||
+ private static final com.destroystokyo.paper.entity.villager.ReputationType[] REPUTATION_TYPES = com.destroystokyo.paper.entity.villager.ReputationType.values();
|
+ private static final GossipType[] TYPES = GossipType.values();
|
||||||
+ public com.destroystokyo.paper.entity.villager.Reputation getPaperReputation() {
|
+ public com.destroystokyo.paper.entity.villager.Reputation getPaperReputation() {
|
||||||
+ int[] reputation = new int[REPUTATION_TYPES.length];
|
+ Map<com.destroystokyo.paper.entity.villager.ReputationType, Integer> map = new java.util.EnumMap<>(com.destroystokyo.paper.entity.villager.ReputationType.class);
|
||||||
+ reputation[com.destroystokyo.paper.entity.villager.ReputationType.MAJOR_NEGATIVE.ordinal()] = entries.getOrDefault(GossipType.MAJOR_NEGATIVE, 0);
|
+ for (Object2IntMap.Entry<GossipType> type : this.entries.object2IntEntrySet()) {
|
||||||
+ reputation[com.destroystokyo.paper.entity.villager.ReputationType.MAJOR_POSITIVE.ordinal()] = entries.getOrDefault(GossipType.MAJOR_POSITIVE, 0);
|
+ map.put(toApi(type.getKey()), type.getIntValue());
|
||||||
+ reputation[com.destroystokyo.paper.entity.villager.ReputationType.MINOR_NEGATIVE.ordinal()] = entries.getOrDefault(GossipType.MINOR_NEGATIVE, 0);
|
+ }
|
||||||
+ reputation[com.destroystokyo.paper.entity.villager.ReputationType.MINOR_POSITIVE.ordinal()] = entries.getOrDefault(GossipType.MINOR_POSITIVE, 0);
|
+
|
||||||
+ reputation[com.destroystokyo.paper.entity.villager.ReputationType.TRADING.ordinal()] = entries.getOrDefault(GossipType.TRADING, 0);
|
+ return new com.destroystokyo.paper.entity.villager.Reputation(map);
|
||||||
+ return com.destroystokyo.paper.entity.villager.ReputationConstructor.construct(reputation);
|
|
||||||
+ }
|
+ }
|
||||||
+
|
+
|
||||||
+ public void assignFromPaperReputation(com.destroystokyo.paper.entity.villager.Reputation rep) {
|
+ public void assignFromPaperReputation(com.destroystokyo.paper.entity.villager.Reputation rep) {
|
||||||
+ int val;
|
+ for (GossipType type : TYPES) {
|
||||||
+ if ((val = rep.getReputation(com.destroystokyo.paper.entity.villager.ReputationType.MAJOR_NEGATIVE)) != 0) this.entries.put(GossipType.MAJOR_NEGATIVE, val);
|
+ com.destroystokyo.paper.entity.villager.ReputationType api = toApi(type);
|
||||||
+ if ((val = rep.getReputation(com.destroystokyo.paper.entity.villager.ReputationType.MAJOR_POSITIVE)) != 0) this.entries.put(GossipType.MAJOR_POSITIVE, val);
|
+
|
||||||
+ if ((val = rep.getReputation(com.destroystokyo.paper.entity.villager.ReputationType.MINOR_NEGATIVE)) != 0) this.entries.put(GossipType.MINOR_NEGATIVE, val);
|
+ if (rep.hasReputationSet(api)) {
|
||||||
+ if ((val = rep.getReputation(com.destroystokyo.paper.entity.villager.ReputationType.MINOR_POSITIVE)) != 0) this.entries.put(GossipType.MINOR_POSITIVE, val);
|
+ int reputation = rep.getReputation(api);
|
||||||
+ if ((val = rep.getReputation(com.destroystokyo.paper.entity.villager.ReputationType.TRADING)) != 0) this.entries.put(GossipType.TRADING, val);
|
+ if (reputation == 0) {
|
||||||
|
+ this.entries.removeInt(type);
|
||||||
|
+ } else {
|
||||||
|
+ this.entries.put(type, reputation);
|
||||||
|
+ }
|
||||||
|
+ }
|
||||||
|
+ }
|
||||||
|
+ }
|
||||||
|
+
|
||||||
|
+ private static com.destroystokyo.paper.entity.villager.ReputationType toApi(GossipType type) {
|
||||||
|
+ return switch (type) {
|
||||||
|
+ case MAJOR_NEGATIVE -> com.destroystokyo.paper.entity.villager.ReputationType.MAJOR_NEGATIVE;
|
||||||
|
+ case MINOR_NEGATIVE -> com.destroystokyo.paper.entity.villager.ReputationType.MINOR_NEGATIVE;
|
||||||
|
+ case MINOR_POSITIVE -> com.destroystokyo.paper.entity.villager.ReputationType.MINOR_POSITIVE;
|
||||||
|
+ case MAJOR_POSITIVE -> com.destroystokyo.paper.entity.villager.ReputationType.MAJOR_POSITIVE;
|
||||||
|
+ case TRADING -> com.destroystokyo.paper.entity.villager.ReputationType.TRADING;
|
||||||
|
+ };
|
||||||
+ }
|
+ }
|
||||||
+ // Paper end
|
+ // Paper end
|
||||||
}
|
}
|
||||||
@ -89,7 +89,7 @@ index 0000000000000000000000000000000000000000..00000000000000000000000000000000
|
|||||||
+ public Reputation getReputation(UUID uniqueId) {
|
+ public Reputation getReputation(UUID uniqueId) {
|
||||||
+ net.minecraft.world.entity.ai.gossip.GossipContainer.EntityGossips rep = getHandle().getGossips().getReputations().get(uniqueId);
|
+ net.minecraft.world.entity.ai.gossip.GossipContainer.EntityGossips rep = getHandle().getGossips().getReputations().get(uniqueId);
|
||||||
+ if (rep == null) {
|
+ if (rep == null) {
|
||||||
+ return new Reputation(Maps.newHashMap());
|
+ return new Reputation(new java.util.EnumMap<>(com.destroystokyo.paper.entity.villager.ReputationType.class));
|
||||||
+ }
|
+ }
|
||||||
+
|
+
|
||||||
+ return rep.getPaperReputation();
|
+ return rep.getPaperReputation();
|
||||||
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren