EmoteCommand.java
package com.hypixel.hytale.server.core.cosmetics.commands;
import com.hypixel.hytale.common.util.StringUtil;
import com.hypixel.hytale.component.Ref;
import com.hypixel.hytale.component.Store;
import com.hypixel.hytale.protocol.AnimationSlot;
import com.hypixel.hytale.protocol.GameMode;
import com.hypixel.hytale.server.core.Message;
import com.hypixel.hytale.server.core.command.system.CommandContext;
import com.hypixel.hytale.server.core.command.system.CommandUtil;
import com.hypixel.hytale.server.core.command.system.arguments.system.RequiredArg;
import com.hypixel.hytale.server.core.command.system.arguments.types.ArgTypes;
import com.hypixel.hytale.server.core.command.system.basecommands.AbstractPlayerCommand;
import com.hypixel.hytale.server.core.cosmetics.CosmeticRegistry;
import com.hypixel.hytale.server.core.cosmetics.CosmeticsModule;
import com.hypixel.hytale.server.core.cosmetics.Emote;
import com.hypixel.hytale.server.core.entity.AnimationUtils;
import com.hypixel.hytale.server.core.universe.PlayerRef;
import com.hypixel.hytale.server.core.universe.world.World;
import com.hypixel.hytale.server.core.universe.world.storage.EntityStore;
import java.util.Map;
import javax.annotation.Nonnull;
public class EmoteCommand extends AbstractPlayerCommand {
@Nonnull
private final RequiredArg<String> emoteArg;
public EmoteCommand() {
super("emote", "server.commands.emote.desc");
this.emoteArg = this.withRequiredArg("emote", "server.commands.emote.emote.desc", ArgTypes.STRING);
this.setPermissionGroup(GameMode.Adventure);
}
protected void execute(@Nonnull CommandContext context, @Nonnull Store<EntityStore> store, @Nonnull Ref<EntityStore> ref, @Nonnull PlayerRef playerRef, @Nonnull World world) {
CosmeticRegistry cosmeticsRegistry = CosmeticsModule.get().getRegistry();
Map<String, Emote> emotes = cosmeticsRegistry.getEmotes();
String emoteId = (String)this.emoteArg.get(context);
Emote emote = (Emote)emotes.get(emoteId);
if (emote == null) {
context.sendMessage(Message.translation("server.commands.emote.emoteNotFound").param("id", emoteId));
context.sendMessage(Message.translation("server.general.failed.didYouMean").param("choices", StringUtil.sortByFuzzyDistance(emoteId, emotes.keySet(), CommandUtil.RECOMMEND_COUNT).toString()));
} else {
AnimationUtils.playAnimation(ref, AnimationSlot.Emote, (String)null, emote.getId(), true, store);
}
}
}