82 lines
3.9 KiB
Java
82 lines
3.9 KiB
Java
package com.hypixel.hytale.builtin.teleport.commands.warp;
|
|
|
|
import com.hypixel.hytale.builtin.teleport.TeleportPlugin;
|
|
import com.hypixel.hytale.builtin.teleport.Warp;
|
|
import com.hypixel.hytale.component.AddReason;
|
|
import com.hypixel.hytale.component.Ref;
|
|
import com.hypixel.hytale.component.Store;
|
|
import com.hypixel.hytale.math.vector.Vector3d;
|
|
import com.hypixel.hytale.math.vector.Vector3f;
|
|
import com.hypixel.hytale.server.core.Message;
|
|
import com.hypixel.hytale.server.core.command.system.CommandContext;
|
|
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.modules.entity.component.HeadRotation;
|
|
import com.hypixel.hytale.server.core.modules.entity.component.TransformComponent;
|
|
import com.hypixel.hytale.server.core.permissions.HytalePermissions;
|
|
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.time.Instant;
|
|
import java.util.Map;
|
|
import javax.annotation.Nonnull;
|
|
|
|
public class WarpSetCommand extends AbstractPlayerCommand {
|
|
@Nonnull
|
|
private static final Message MESSAGE_COMMANDS_TELEPORT_WARP_NOT_LOADED = Message.translation("server.commands.teleport.warp.notLoaded");
|
|
@Nonnull
|
|
private static final Message MESSAGE_COMMANDS_TELEPORT_WARP_RESERVED_KEYWORD = Message.translation("server.commands.teleport.warp.reservedKeyword");
|
|
@Nonnull
|
|
private final RequiredArg<String> nameArg = this.withRequiredArg("name", "server.commands.warp.set.name.desc", ArgTypes.STRING);
|
|
|
|
public WarpSetCommand() {
|
|
super("set", "server.commands.warp.set.desc");
|
|
this.requirePermission(HytalePermissions.fromCommand("warp.set"));
|
|
}
|
|
|
|
@Override
|
|
protected void execute(
|
|
@Nonnull CommandContext context, @Nonnull Store<EntityStore> store, @Nonnull Ref<EntityStore> ref, @Nonnull PlayerRef playerRef, @Nonnull World world
|
|
) {
|
|
if (!TeleportPlugin.get().isWarpsLoaded()) {
|
|
context.sendMessage(MESSAGE_COMMANDS_TELEPORT_WARP_NOT_LOADED);
|
|
} else {
|
|
Map<String, Warp> warps = TeleportPlugin.get().getWarps();
|
|
String newId = this.nameArg.get(context).toLowerCase();
|
|
if (!"reload".equals(newId) && !"remove".equals(newId) && !"set".equals(newId) && !"list".equals(newId) && !"go".equals(newId)) {
|
|
TransformComponent transformComponent = store.getComponent(ref, TransformComponent.getComponentType());
|
|
|
|
assert transformComponent != null;
|
|
|
|
HeadRotation headRotationComponent = store.getComponent(ref, HeadRotation.getComponentType());
|
|
|
|
assert headRotationComponent != null;
|
|
|
|
Vector3d position = transformComponent.getPosition();
|
|
Vector3f rotation = transformComponent.getRotation();
|
|
Vector3f headRotation = headRotationComponent.getRotation();
|
|
Warp newWarp = new Warp(
|
|
position.getX(),
|
|
position.getY(),
|
|
position.getZ(),
|
|
headRotation.getYaw(),
|
|
rotation.getPitch(),
|
|
rotation.getRoll(),
|
|
newId,
|
|
world,
|
|
playerRef.getUsername(),
|
|
Instant.now()
|
|
);
|
|
warps.put(newWarp.getId().toLowerCase(), newWarp);
|
|
TeleportPlugin plugin = TeleportPlugin.get();
|
|
plugin.saveWarps();
|
|
store.addEntity(plugin.createWarp(newWarp, store), AddReason.LOAD);
|
|
context.sendMessage(Message.translation("server.commands.teleport.warp.setWarp").param("name", newWarp.getId()));
|
|
} else {
|
|
context.sendMessage(MESSAGE_COMMANDS_TELEPORT_WARP_RESERVED_KEYWORD);
|
|
}
|
|
}
|
|
}
|
|
}
|