Geyser/bootstrap/fabric/src/main/java/org/geysermc/geyser/platform/fabric/command/FabricCommandSender.java

79 lines
2.9 KiB
Java
Raw Normal View History

2020-10-06 22:43:02 +00:00
/*
* Copyright (c) 2019-2022 GeyserMC. http://geysermc.org
2020-10-06 22:43:02 +00:00
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*
* @author GeyserMC
* @link https://github.com/GeyserMC/Geyser
*/
package org.geysermc.geyser.platform.fabric.command;
2020-10-06 22:43:02 +00:00
2022-10-18 16:06:18 +00:00
import net.minecraft.commands.CommandSourceStack;
import net.minecraft.network.chat.Component;
import net.minecraft.server.level.ServerPlayer;
2021-12-02 16:08:25 +00:00
import org.geysermc.geyser.GeyserImpl;
2022-09-22 23:49:35 +00:00
import org.geysermc.geyser.command.GeyserCommandSource;
import org.geysermc.geyser.platform.fabric.GeyserFabricMod;
2021-12-02 16:08:25 +00:00
import org.geysermc.geyser.text.ChatColor;
2020-10-06 22:43:02 +00:00
2022-10-18 16:06:18 +00:00
import javax.annotation.Nonnull;
2022-09-22 23:49:35 +00:00
public class FabricCommandSender implements GeyserCommandSource {
2020-10-06 22:43:02 +00:00
2022-10-18 16:06:18 +00:00
private final CommandSourceStack source;
2020-10-06 22:43:02 +00:00
2022-10-18 16:06:18 +00:00
public FabricCommandSender(CommandSourceStack source) {
2020-10-06 22:43:02 +00:00
this.source = source;
}
@Override
2021-12-02 16:08:25 +00:00
public String name() {
2022-10-18 16:06:18 +00:00
return source.getTextName();
2020-10-06 22:43:02 +00:00
}
@Override
2022-10-18 16:06:18 +00:00
public void sendMessage(@Nonnull String message) {
if (source.getEntity() instanceof ServerPlayer) {
((ServerPlayer) source.getEntity()).displayClientMessage(Component.literal(message), false);
2021-01-21 19:57:06 +00:00
} else {
2021-12-02 16:08:25 +00:00
GeyserImpl.getInstance().getLogger().info(ChatColor.toANSI(message + ChatColor.RESET));
2020-10-06 22:43:02 +00:00
}
}
@Override
public boolean isConsole() {
2022-10-18 16:06:18 +00:00
return !(source.getEntity() instanceof ServerPlayer);
2020-10-06 22:43:02 +00:00
}
@Override
public boolean hasPermission(String s) {
// Mostly copied from fabric's world manager since the method there takes a GeyserSession
// Workaround for our commands because fabric doesn't have native permissions
for (GeyserFabricCommandExecutor executor : GeyserFabricMod.getInstance().getCommandExecutors()) {
2022-09-22 23:49:35 +00:00
if (executor.getCommand().permission().equals(s)) {
return executor.canRun(source);
}
}
return false;
}
2020-10-06 22:43:02 +00:00
}