// 
// Decompiled by Procyon v0.6.0
// 

package com.hypixel.hytale.builtin.instances.command;

import com.hypixel.hytale.server.core.entity.entities.Player;
import com.hypixel.hytale.server.core.command.system.arguments.types.ArgumentType;
import com.hypixel.hytale.server.core.command.system.arguments.types.ArgTypes;
import com.hypixel.hytale.server.core.command.system.arguments.system.RequiredArg;
import com.hypixel.hytale.server.core.command.system.basecommands.CommandBase;
import com.hypixel.hytale.component.ComponentAccessor;
import com.hypixel.hytale.builtin.instances.InstancesPlugin;
import com.hypixel.hytale.server.core.universe.world.World;
import com.hypixel.hytale.server.core.universe.PlayerRef;
import com.hypixel.hytale.component.Ref;
import com.hypixel.hytale.server.core.universe.world.storage.EntityStore;
import com.hypixel.hytale.component.Store;
import com.hypixel.hytale.server.core.command.system.CommandContext;
import com.hypixel.hytale.server.core.command.system.AbstractCommand;
import javax.annotation.Nonnull;
import com.hypixel.hytale.server.core.Message;
import com.hypixel.hytale.server.core.command.system.basecommands.AbstractPlayerCommand;

public class InstanceExitCommand extends AbstractPlayerCommand
{
    @Nonnull
    private static final Message MESSAGE_COMMANDS_INSTANCES_EXIT_FAIL;
    @Nonnull
    private static final Message MESSAGE_COMMANDS_INSTANCES_EXIT_SUCCESS_SELF;
    
    public InstanceExitCommand() {
        super("exit", "server.commands.instances.exit.desc");
        this.addAliases("leave");
        this.addUsageVariant(new InstanceExitOtherCommand());
    }
    
    @Override
    protected void execute(@Nonnull final CommandContext context, @Nonnull final Store<EntityStore> store, @Nonnull final Ref<EntityStore> ref, @Nonnull final PlayerRef playerRef, @Nonnull final World world) {
        try {
            InstancesPlugin.exitInstance(ref, store);
            context.sendMessage(InstanceExitCommand.MESSAGE_COMMANDS_INSTANCES_EXIT_SUCCESS_SELF);
        }
        catch (final IllegalArgumentException e) {
            context.sendMessage(InstanceExitCommand.MESSAGE_COMMANDS_INSTANCES_EXIT_FAIL);
        }
    }
    
    static {
        MESSAGE_COMMANDS_INSTANCES_EXIT_FAIL = Message.translation("server.commands.instances.exit.fail");
        MESSAGE_COMMANDS_INSTANCES_EXIT_SUCCESS_SELF = Message.translation("server.commands.instances.exit.success.self");
    }
    
    private static class InstanceExitOtherCommand extends CommandBase
    {
        @Nonnull
        private static final Message MESSAGE_COMMANDS_ERRORS_PLAYER_NOT_IN_WORLD;
        @Nonnull
        private static final Message MESSAGE_COMMANDS_INSTANCES_EXIT_FAIL;
        @Nonnull
        private final RequiredArg<PlayerRef> playerArg;
        
        InstanceExitOtherCommand() {
            super("server.commands.instances.exit.other.desc");
            this.playerArg = this.withRequiredArg("player", "server.commands.argtype.player.desc", ArgTypes.PLAYER_REF);
        }
        
        @Override
        protected void executeSync(@Nonnull final CommandContext context) {
            final PlayerRef playerRef = this.playerArg.get(context);
            final Ref<EntityStore> ref = playerRef.getReference();
            if (ref == null || !ref.isValid()) {
                context.sendMessage(InstanceExitOtherCommand.MESSAGE_COMMANDS_ERRORS_PLAYER_NOT_IN_WORLD);
                return;
            }
            final Store<EntityStore> store = ref.getStore();
            final World world = store.getExternalData().getWorld();
            world.execute(() -> {
                final Player playerComponent = store.getComponent(ref, Player.getComponentType());
                if (playerComponent == null) {
                    context.sendMessage(InstanceExitOtherCommand.MESSAGE_COMMANDS_ERRORS_PLAYER_NOT_IN_WORLD);
                }
                else {
                    try {
                        InstancesPlugin.exitInstance(ref, store);
                        context.sendMessage(Message.translation("server.commands.instances.exit.success.other").param("username", playerRef.getUsername()));
                    }
                    catch (final IllegalArgumentException e) {
                        context.sendMessage(InstanceExitOtherCommand.MESSAGE_COMMANDS_INSTANCES_EXIT_FAIL);
                    }
                }
            });
        }
        
        static {
            MESSAGE_COMMANDS_ERRORS_PLAYER_NOT_IN_WORLD = Message.translation("server.commands.errors.playerNotInWorld");
            MESSAGE_COMMANDS_INSTANCES_EXIT_FAIL = Message.translation("server.commands.instances.exit.fail");
        }
    }
}
