All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.nukkit.command.function.Function Maven / Gradle / Ivy

There is a newer version: 1.20.40-r1
Show newest version
package cn.nukkit.command.function;

import cn.nukkit.Server;
import cn.nukkit.api.PowerNukkitXOnly;
import cn.nukkit.api.Since;
import cn.nukkit.command.CommandSender;
import lombok.Getter;

import java.io.IOException;
import java.nio.file.Files;
import java.nio.file.Path;
import java.util.List;

@PowerNukkitXOnly
@Since("1.6.0.0-PNX")
@Getter
public class Function {

    private Path fullPath;
    private List commands;

    private Function(FunctionManager manager,Path fullPath){
        this.fullPath = fullPath;
        try {
            commands = Files.readAllLines(fullPath);
            commands = commands.stream().map(s -> s.split("#")[0]).toList();
        } catch (IOException e) {
            e.printStackTrace();
        }
    }

    public static Function fromPath(FunctionManager manager,Path path){
        return new Function(manager,path);
    }

    public boolean dispatch(CommandSender sender){
        boolean success = true;
        for (String command : commands) {
            if (!Server.getInstance().dispatchCommand(sender, command))
                success = false;
        }
        return success;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy