Mirror von
https://github.com/ViaVersion/ViaVersion.git
synchronisiert 2024-11-03 14:50:30 +01:00
added 1.12 -> 1.11.1 achievement message translation
Dieser Commit ist enthalten in:
Ursprung
6060954f87
Commit
dfc4652da7
@ -81,12 +81,9 @@ public class Protocol1_12To1_11_1 extends Protocol<ClientboundPackets1_9_3, Clie
|
|||||||
if (!Via.getConfig().is1_12NBTArrayFix()) return;
|
if (!Via.getConfig().is1_12NBTArrayFix()) return;
|
||||||
try {
|
try {
|
||||||
JsonElement obj = Protocol1_9To1_8.FIX_JSON.transform(null, wrapper.passthrough(Type.COMPONENT).toString());
|
JsonElement obj = Protocol1_9To1_8.FIX_JSON.transform(null, wrapper.passthrough(Type.COMPONENT).toString());
|
||||||
if (!TranslateRewriter.toClient(obj, wrapper.user())) {
|
TranslateRewriter.toClient(obj, wrapper.user());
|
||||||
wrapper.cancel();
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
ChatItemRewriter.toClient(obj, wrapper.user());
|
ChatItemRewriter.toClient(obj, wrapper.user());
|
||||||
|
wrapper.set(Type.COMPONENT, 0, obj);
|
||||||
} catch (Exception e) {
|
} catch (Exception e) {
|
||||||
e.printStackTrace();
|
e.printStackTrace();
|
||||||
}
|
}
|
||||||
|
@ -1,19 +1,88 @@
|
|||||||
package us.myles.ViaVersion.protocols.protocol1_12to1_11_1;
|
package us.myles.ViaVersion.protocols.protocol1_12to1_11_1;
|
||||||
|
|
||||||
|
import com.google.gson.JsonArray;
|
||||||
import com.google.gson.JsonElement;
|
import com.google.gson.JsonElement;
|
||||||
import com.google.gson.JsonObject;
|
import com.google.gson.JsonObject;
|
||||||
|
import us.myles.ViaVersion.api.Via;
|
||||||
import us.myles.ViaVersion.api.data.UserConnection;
|
import us.myles.ViaVersion.api.data.UserConnection;
|
||||||
|
import us.myles.ViaVersion.api.rewriters.ComponentRewriter;
|
||||||
|
import us.myles.ViaVersion.protocols.protocol1_12to1_11_1.data.AchievementTranslationMapping;
|
||||||
|
|
||||||
public class TranslateRewriter {
|
public class TranslateRewriter {
|
||||||
|
|
||||||
public static boolean toClient(JsonElement element, UserConnection user) {
|
private final static ComponentRewriter achievementTextRewriter = new ComponentRewriter() {
|
||||||
|
@Override
|
||||||
|
protected void handleTranslate(JsonObject object, String translate) {
|
||||||
|
String text = AchievementTranslationMapping.get(translate);
|
||||||
|
if (text != null) {
|
||||||
|
object.addProperty("translate", text);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void handleHoverEvent(JsonObject hoverEvent) {
|
||||||
|
String action = hoverEvent.getAsJsonPrimitive("action").getAsString();
|
||||||
|
if (action.equals("show_achievement")) {
|
||||||
|
String value = hoverEvent.getAsJsonPrimitive("value").getAsString();
|
||||||
|
if (AchievementTranslationMapping.get(value) != null) {
|
||||||
|
try {
|
||||||
|
JsonObject newLine = new JsonObject();
|
||||||
|
newLine.addProperty("text", "\n");
|
||||||
|
JsonArray baseArray = new JsonArray();
|
||||||
|
baseArray.add("");
|
||||||
|
JsonObject namePart = new JsonObject();
|
||||||
|
JsonObject typePart = new JsonObject();
|
||||||
|
baseArray.add(namePart);
|
||||||
|
baseArray.add(newLine);
|
||||||
|
baseArray.add(typePart);
|
||||||
|
if (value.startsWith("achievement")) {
|
||||||
|
namePart.addProperty("translate", value);
|
||||||
|
namePart.addProperty("color", AchievementTranslationMapping.isSpecial(value) ? "dark_purple" : "green");
|
||||||
|
typePart.addProperty("translate", "stats.tooltip.type.achievement");
|
||||||
|
JsonObject description = new JsonObject();
|
||||||
|
typePart.addProperty("italic", true);
|
||||||
|
description.addProperty("translate", value + ".desc");
|
||||||
|
baseArray.add(newLine);
|
||||||
|
baseArray.add(description);
|
||||||
|
} else if (value.startsWith("stat")) {
|
||||||
|
namePart.addProperty("translate", value);
|
||||||
|
namePart.addProperty("color", "gray");
|
||||||
|
typePart.addProperty("translate", "stats.tooltip.type.statistic");
|
||||||
|
typePart.addProperty("italic", true);
|
||||||
|
}
|
||||||
|
hoverEvent.addProperty("action", "show_text");
|
||||||
|
hoverEvent.add("value", baseArray);
|
||||||
|
} catch (Exception e) {
|
||||||
|
Via.getPlatform().getLogger().warning("Error rewriting show_achievement: " + hoverEvent);
|
||||||
|
e.printStackTrace();
|
||||||
|
JsonObject invalidText = new JsonObject();
|
||||||
|
invalidText.addProperty("text", "Invalid statistic/achievement!");
|
||||||
|
invalidText.addProperty("color", "red");
|
||||||
|
hoverEvent.addProperty("action", "show_text");
|
||||||
|
hoverEvent.add("value", invalidText);
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
JsonObject invalidText = new JsonObject();
|
||||||
|
invalidText.addProperty("text", "Invalid statistic/achievement!");
|
||||||
|
invalidText.addProperty("color", "red");
|
||||||
|
hoverEvent.addProperty("action", "show_text");
|
||||||
|
hoverEvent.add("value", invalidText);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
super.handleHoverEvent(hoverEvent);
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
public static void toClient(JsonElement element, UserConnection user) {
|
||||||
if (element instanceof JsonObject) {
|
if (element instanceof JsonObject) {
|
||||||
JsonObject obj = (JsonObject) element;
|
JsonObject obj = (JsonObject) element;
|
||||||
JsonElement translate = obj.get("translate");
|
JsonElement translate = obj.get("translate");
|
||||||
if (translate != null) {
|
if (translate != null) {
|
||||||
return !translate.getAsString().equals("chat.type.achievement");
|
if (translate.getAsString().startsWith("chat.type.achievement")) {
|
||||||
|
achievementTextRewriter.processText(obj);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
return true;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -0,0 +1,181 @@
|
|||||||
|
package us.myles.ViaVersion.protocols.protocol1_12to1_11_1.data;
|
||||||
|
|
||||||
|
import it.unimi.dsi.fastutil.objects.Object2ObjectOpenHashMap;
|
||||||
|
import it.unimi.dsi.fastutil.objects.ObjectArrayList;
|
||||||
|
|
||||||
|
public class AchievementTranslationMapping {
|
||||||
|
|
||||||
|
private static final Object2ObjectOpenHashMap<String, String> ACHIEVEMENTS = new Object2ObjectOpenHashMap<>(150, 1.0f);
|
||||||
|
private static final ObjectArrayList<String> SPECIAL_ACHIEVEMENTS = new ObjectArrayList<>(10);
|
||||||
|
|
||||||
|
static {
|
||||||
|
add("chat.type.achievement", "%s has just earned the achievement %s");
|
||||||
|
add("chat.type.achievement.taken", "%s has lost the achievement %s");
|
||||||
|
add("stats.tooltip.type.achievement", "Achievement");
|
||||||
|
add("stats.tooltip.type.statistic", "Statistic");
|
||||||
|
add("stat.generalButton", "General");
|
||||||
|
add("stat.blocksButton", "Blocks");
|
||||||
|
add("stat.itemsButton", "Items");
|
||||||
|
add("stat.mobsButton", "Mobs");
|
||||||
|
add("stat.used", "Times Used");
|
||||||
|
add("stat.mined", "Times Mined");
|
||||||
|
add("stat.depleted", "Times Depleted");
|
||||||
|
add("stat.crafted", "Times Crafted");
|
||||||
|
add("stat.entityKills", "You killed %s %s");
|
||||||
|
add("stat.entityKilledBy", "%s killed you %s time(s)");
|
||||||
|
add("stat.entityKills.none", "You have never killed %s");
|
||||||
|
add("stat.entityKilledBy.none", "You have never been killed by %s");
|
||||||
|
add("stat.startGame", "Times Played");
|
||||||
|
add("stat.createWorld", "Worlds Created");
|
||||||
|
add("stat.loadWorld", "Saves Loaded");
|
||||||
|
add("stat.joinMultiplayer", "Multiplayer Joins");
|
||||||
|
add("stat.leaveGame", "Games Quit");
|
||||||
|
add("stat.playOneMinute", "Minutes Played");
|
||||||
|
add("stat.timeSinceDeath", "Since Last Death");
|
||||||
|
add("stat.sneakTime", "Sneak Time");
|
||||||
|
add("stat.walkOneCm", "Distance Walked");
|
||||||
|
add("stat.crouchOneCm", "Distance Crouched");
|
||||||
|
add("stat.sprintOneCm", "Distance Sprinted");
|
||||||
|
add("stat.fallOneCm", "Distance Fallen");
|
||||||
|
add("stat.swimOneCm", "Distance Swum");
|
||||||
|
add("stat.flyOneCm", "Distance Flown");
|
||||||
|
add("stat.climbOneCm", "Distance Climbed");
|
||||||
|
add("stat.diveOneCm", "Distance Dove");
|
||||||
|
add("stat.minecartOneCm", "Distance by Minecart");
|
||||||
|
add("stat.boatOneCm", "Distance by Boat");
|
||||||
|
add("stat.pigOneCm", "Distance by Pig");
|
||||||
|
add("stat.horseOneCm", "Distance by Horse");
|
||||||
|
add("stat.aviateOneCm", "Distance by Elytra");
|
||||||
|
add("stat.jump", "Jumps");
|
||||||
|
add("stat.drop", "Items Dropped");
|
||||||
|
add("stat.dropped", "Dropped");
|
||||||
|
add("stat.pickup", "Picked Up");
|
||||||
|
add("stat.damageDealt", "Damage Dealt");
|
||||||
|
add("stat.damageTaken", "Damage Taken");
|
||||||
|
add("stat.deaths", "Number of Deaths");
|
||||||
|
add("stat.mobKills", "Mob Kills");
|
||||||
|
add("stat.animalsBred", "Animals Bred");
|
||||||
|
add("stat.playerKills", "Player Kills");
|
||||||
|
add("stat.fishCaught", "Fish Caught");
|
||||||
|
add("stat.treasureFished", "Treasure Fished");
|
||||||
|
add("stat.junkFished", "Junk Fished");
|
||||||
|
add("stat.talkedToVillager", "Talked to Villagers");
|
||||||
|
add("stat.tradedWithVillager", "Traded with Villagers");
|
||||||
|
add("stat.cakeSlicesEaten", "Cake Slices Eaten");
|
||||||
|
add("stat.cauldronFilled", "Cauldrons Filled");
|
||||||
|
add("stat.cauldronUsed", "Water Taken from Cauldron");
|
||||||
|
add("stat.armorCleaned", "Armor Pieces Cleaned");
|
||||||
|
add("stat.bannerCleaned", "Banners Cleaned");
|
||||||
|
add("stat.brewingstandInteraction", "Interactions with Brewing Stand");
|
||||||
|
add("stat.beaconInteraction", "Interactions with Beacon");
|
||||||
|
add("stat.dropperInspected", "Droppers Searched");
|
||||||
|
add("stat.hopperInspected", "Hoppers Searched");
|
||||||
|
add("stat.dispenserInspected", "Dispensers Searched");
|
||||||
|
add("stat.noteblockPlayed", "Note Blocks Played");
|
||||||
|
add("stat.noteblockTuned", "Note Blocks Tuned");
|
||||||
|
add("stat.flowerPotted", "Plants Potted");
|
||||||
|
add("stat.trappedChestTriggered", "Trapped Chests Triggered");
|
||||||
|
add("stat.enderchestOpened", "Ender Chests Opened");
|
||||||
|
add("stat.itemEnchanted", "Items Enchanted");
|
||||||
|
add("stat.recordPlayed", "Records Played");
|
||||||
|
add("stat.furnaceInteraction", "Interactions with Furnace");
|
||||||
|
add("stat.workbenchInteraction", "Interactions with Crafting Table");
|
||||||
|
add("stat.chestOpened", "Chests Opened");
|
||||||
|
add("stat.shulkerBoxOpened", "Shulker Boxes Opened");
|
||||||
|
add("stat.sleepInBed", "Times Slept in a Bed");
|
||||||
|
add("stat.mineBlock", "%1$s Mined");
|
||||||
|
add("stat.craftItem", "%1$s Crafted");
|
||||||
|
add("stat.useItem", "%1$s Used");
|
||||||
|
add("stat.breakItem", "%1$s Depleted");
|
||||||
|
add("achievement.get", "Achievement get!");
|
||||||
|
add("achievement.taken", "Taken!");
|
||||||
|
add("achievement.unknown", "???");
|
||||||
|
add("achievement.requires", "Requires '%1$s'");
|
||||||
|
add("achievement.openInventory", "Taking Inventory");
|
||||||
|
add("achievement.openInventory.desc", "Press 'E' to open your inventory");
|
||||||
|
add("achievement.mineWood", "Getting Wood");
|
||||||
|
add("achievement.mineWood.desc", "Attack a tree until a block of wood pops out");
|
||||||
|
add("achievement.buildWorkBench", "Benchmarking");
|
||||||
|
add("achievement.buildWorkBench.desc", "Craft a workbench with four blocks of planks");
|
||||||
|
add("achievement.buildPickaxe", "Time to Mine!");
|
||||||
|
add("achievement.buildPickaxe.desc", "Use planks and sticks to make a pickaxe");
|
||||||
|
add("achievement.buildFurnace", "Hot Topic");
|
||||||
|
add("achievement.buildFurnace.desc", "Construct a furnace out of eight cobblestone blocks");
|
||||||
|
add("achievement.acquireIron", "Acquire Hardware");
|
||||||
|
add("achievement.acquireIron.desc", "Smelt an iron ingot");
|
||||||
|
add("achievement.buildHoe", "Time to Farm!");
|
||||||
|
add("achievement.buildHoe.desc", "Use planks and sticks to make a hoe");
|
||||||
|
add("achievement.makeBread", "Bake Bread");
|
||||||
|
add("achievement.makeBread.desc", "Turn wheat into bread");
|
||||||
|
add("achievement.bakeCake", "The Lie");
|
||||||
|
add("achievement.bakeCake.desc", "Wheat, sugar, milk and eggs!");
|
||||||
|
add("achievement.buildBetterPickaxe", "Getting an Upgrade");
|
||||||
|
add("achievement.buildBetterPickaxe.desc", "Construct a better pickaxe");
|
||||||
|
add("achievement.overpowered", "Overpowered", true);
|
||||||
|
add("achievement.overpowered.desc", "Eat a Notch apple");
|
||||||
|
add("achievement.cookFish", "Delicious Fish");
|
||||||
|
add("achievement.cookFish.desc", "Catch and cook fish!");
|
||||||
|
add("achievement.onARail", "On A Rail", true);
|
||||||
|
add("achievement.onARail.desc", "Travel by minecart at least 1 km from where you started");
|
||||||
|
add("achievement.buildSword", "Time to Strike!");
|
||||||
|
add("achievement.buildSword.desc", "Use planks and sticks to make a sword");
|
||||||
|
add("achievement.killEnemy", "Monster Hunter");
|
||||||
|
add("achievement.killEnemy.desc", "Attack and destroy a monster");
|
||||||
|
add("achievement.killCow", "Cow Tipper");
|
||||||
|
add("achievement.killCow.desc", "Harvest some leather");
|
||||||
|
add("achievement.breedCow", "Repopulation");
|
||||||
|
add("achievement.breedCow.desc", "Breed two cows with wheat");
|
||||||
|
add("achievement.flyPig", "When Pigs Fly", true);
|
||||||
|
add("achievement.flyPig.desc", "Fly a pig off a cliff");
|
||||||
|
add("achievement.snipeSkeleton", "Sniper Duel", true);
|
||||||
|
add("achievement.snipeSkeleton.desc", "Kill a skeleton with an arrow from more than 50 meters");
|
||||||
|
add("achievement.diamonds", "DIAMONDS!");
|
||||||
|
add("achievement.diamonds.desc", "Acquire diamonds with your iron tools");
|
||||||
|
add("achievement.diamondsToYou", "Diamonds to you!");
|
||||||
|
add("achievement.diamondsToYou.desc", "Throw diamonds at another player");
|
||||||
|
add("achievement.portal", "We Need to Go Deeper");
|
||||||
|
add("achievement.portal.desc", "Build a portal to the Nether");
|
||||||
|
add("achievement.ghast", "Return to Sender", true);
|
||||||
|
add("achievement.ghast.desc", "Destroy a Ghast with a fireball");
|
||||||
|
add("achievement.blazeRod", "Into Fire");
|
||||||
|
add("achievement.blazeRod.desc", "Relieve a Blaze of its rod");
|
||||||
|
add("achievement.potion", "Local Brewery");
|
||||||
|
add("achievement.potion.desc", "Brew a potion");
|
||||||
|
add("achievement.theEnd", "The End?", true);
|
||||||
|
add("achievement.theEnd.desc", "Locate the End");
|
||||||
|
add("achievement.theEnd2", "The End.", true);
|
||||||
|
add("achievement.theEnd2.desc", "Defeat the Ender Dragon");
|
||||||
|
add("achievement.spawnWither", "The Beginning?");
|
||||||
|
add("achievement.spawnWither.desc", "Spawn the Wither");
|
||||||
|
add("achievement.killWither", "The Beginning.");
|
||||||
|
add("achievement.killWither.desc", "Kill the Wither");
|
||||||
|
add("achievement.fullBeacon", "Beaconator", true);
|
||||||
|
add("achievement.fullBeacon.desc", "Create a full beacon");
|
||||||
|
add("achievement.exploreAllBiomes", "Adventuring Time", true);
|
||||||
|
add("achievement.exploreAllBiomes.desc", "Discover all biomes");
|
||||||
|
add("achievement.enchantments", "Enchanter");
|
||||||
|
add("achievement.enchantments.desc", "Use a book, obsidian and diamonds to construct an enchantment table");
|
||||||
|
add("achievement.overkill", "Overkill", true);
|
||||||
|
add("achievement.overkill.desc", "Deal nine hearts of damage in a single hit");
|
||||||
|
add("achievement.bookcase", "Librarian");
|
||||||
|
add("achievement.bookcase.desc", "Build some bookshelves to improve your enchantment table");
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void add(String key, String value) {
|
||||||
|
ACHIEVEMENTS.put(key, value);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static void add(String key, String value, boolean special) {
|
||||||
|
add(key, value);
|
||||||
|
SPECIAL_ACHIEVEMENTS.add(key);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static String get(String key) {
|
||||||
|
return ACHIEVEMENTS.get(key);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static boolean isSpecial(String key) {
|
||||||
|
return SPECIAL_ACHIEVEMENTS.contains(key);
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Laden…
In neuem Issue referenzieren
Einen Benutzer sperren