me.mayo.telnetkek.player.PlayerCommandEntry.java Source code

Java tutorial

Introduction

Here is the source code for me.mayo.telnetkek.player.PlayerCommandEntry.java

Source

/* 
 * Copyright (C) 2012-2017 Steven Lawson
 *
 * This file is part of FreedomTelnetClient.
 *
 * FreedomTelnetClient is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */
package me.mayo.telnetkek.player;

import me.mayo.telnetkek.config.ConfigEntry;
import me.mayo.telnetkek.config.ConfigEntryList;
import java.util.ArrayList;
import javax.swing.JOptionPane;
import me.mayo.telnetkek.parameter.ParameterGetter;
import me.mayo.telnetkek.parameter.ParameterSetter;
import org.apache.commons.lang3.StringUtils;

public class PlayerCommandEntry extends ConfigEntry {

    private String name;
    private String format;

    public PlayerCommandEntry() {
    }

    @ParameterGetter(name = "format")
    public String getFormat() {
        return format;
    }

    @ParameterSetter(name = "format")
    public void setFormat(String format) {
        this.format = format;
    }

    @ParameterGetter(name = "name")
    public String getName() {
        return name;
    }

    @ParameterSetter(name = "name")
    public void setName(String name) {
        this.name = name;
    }

    public String buildOutput(PlayerInfo player, boolean useReasonPrompt) {
        String output = StringUtils.replaceEach(getFormat(),
                new String[] { "$TARGET_NAME", "$TARGET_IP", "$TARGET_UUID", },
                new String[] { player.getName(), player.getIp(), player.getUuid() });

        if (useReasonPrompt && output.contains("$REASON")) {
            final String reason = StringUtils.trimToEmpty(JOptionPane.showInputDialog(null,
                    "Input reason:\n" + output, "Input Reason", JOptionPane.PLAIN_MESSAGE));
            output = StringUtils.replace(output, "$REASON", reason);
        }

        return StringUtils.trimToEmpty(output);
    }

    public static class PlayerCommandEntryList extends ConfigEntryList<PlayerCommandEntry> {

        public PlayerCommandEntryList() {
            super(new ArrayList<>(), PlayerCommandEntry.class);
        }

        @Override
        public String getParentElementName() {
            return "playerCommands";
        }

        @Override
        public String getItemElementName() {
            return "playerCommand";
        }
    }

    @Override
    public String getElementName() {
        return "playerCommand";
    }
}