/* * This file is part of the L2J Mobius project. * * This program 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 . */ package handlers.admincommandhandlers; import java.util.StringTokenizer; import com.l2jmobius.Config; import com.l2jmobius.gameserver.LoginServerThread; import com.l2jmobius.gameserver.handler.IAdminCommandHandler; import com.l2jmobius.gameserver.model.actor.instance.L2PcInstance; import com.l2jmobius.gameserver.network.gameserverpackets.ServerStatus; import com.l2jmobius.gameserver.network.serverpackets.NpcHtmlMessage; /** * This class handles the admin commands that acts on the login * @version $Revision: 1.2.2.1.2.4 $ $Date: 2007/07/31 10:05:56 $ */ public class AdminLogin implements IAdminCommandHandler { private static final String[] ADMIN_COMMANDS = { "admin_server_gm_only", "admin_server_all", "admin_server_max_player", "admin_server_list_type", "admin_server_list_age", "admin_server_login" }; @Override public boolean useAdminCommand(String command, L2PcInstance activeChar) { if (command.equals("admin_server_gm_only")) { gmOnly(); activeChar.sendMessage("Server is now GM only"); showMainPage(activeChar); } else if (command.equals("admin_server_all")) { allowToAll(); activeChar.sendMessage("Server is not GM only anymore"); showMainPage(activeChar); } else if (command.startsWith("admin_server_max_player")) { final StringTokenizer st = new StringTokenizer(command); if (st.countTokens() > 1) { st.nextToken(); final String number = st.nextToken(); try { LoginServerThread.getInstance().setMaxPlayer(Integer.parseInt(number)); activeChar.sendMessage("maxPlayer set to " + number); showMainPage(activeChar); } catch (NumberFormatException e) { activeChar.sendMessage("Max players must be a number."); } } else { activeChar.sendMessage("Format is server_max_player "); } } else if (command.startsWith("admin_server_list_type")) { final StringTokenizer st = new StringTokenizer(command); final int tokens = st.countTokens(); if (tokens > 1) { st.nextToken(); final String[] modes = new String[tokens - 1]; for (int i = 0; i < (tokens - 1); i++) { modes[i] = st.nextToken().trim(); } int newType = 0; try { newType = Integer.parseInt(modes[0]); } catch (NumberFormatException e) { newType = Config.getServerTypeId(modes); } if (Config.SERVER_LIST_TYPE != newType) { Config.SERVER_LIST_TYPE = newType; LoginServerThread.getInstance().sendServerType(); activeChar.sendMessage("Server Type changed to " + getServerTypeName(newType)); } else { activeChar.sendMessage("Server Type is already " + getServerTypeName(newType)); } showMainPage(activeChar); } else { activeChar.sendMessage("Format is server_list_type "); } } else if (command.startsWith("admin_server_list_age")) { final StringTokenizer st = new StringTokenizer(command); if (st.countTokens() > 1) { st.nextToken(); final String mode = st.nextToken(); int age = 0; try { age = Integer.parseInt(mode); if (Config.SERVER_LIST_AGE != age) { Config.SERVER_LIST_TYPE = age; LoginServerThread.getInstance().sendServerStatus(ServerStatus.SERVER_AGE, age); activeChar.sendMessage("Server Age changed to " + age); } else { activeChar.sendMessage("Server Age is already " + age); } showMainPage(activeChar); } catch (NumberFormatException e) { activeChar.sendMessage("Age must be a number"); } } else { activeChar.sendMessage("Format is server_list_age "); } } else if (command.equals("admin_server_login")) { showMainPage(activeChar); } return true; } /** * @param activeChar */ private void showMainPage(L2PcInstance activeChar) { final NpcHtmlMessage html = new NpcHtmlMessage(); html.setFile(activeChar.getHtmlPrefix(), "html/admin/login.htm"); html.replace("%server_name%", LoginServerThread.getInstance().getServerName()); html.replace("%status%", LoginServerThread.getInstance().getStatusString()); html.replace("%clock%", getServerTypeName(Config.SERVER_LIST_TYPE)); html.replace("%brackets%", String.valueOf(Config.SERVER_LIST_BRACKET)); html.replace("%max_players%", String.valueOf(LoginServerThread.getInstance().getMaxPlayer())); activeChar.sendPacket(html); } private String getServerTypeName(int serverType) { String nameType = ""; for (int i = 0; i < 7; i++) { final int currentType = serverType & (int) Math.pow(2, i); if (currentType > 0) { if (!nameType.isEmpty()) { nameType += "+"; } switch (currentType) { case 0x01: { nameType += "Normal"; break; } case 0x02: { nameType += "Relax"; break; } case 0x04: { nameType += "Test"; break; } case 0x08: { nameType += "NoLabel"; break; } case 0x10: { nameType += "Restricted"; break; } case 0x20: { nameType += "Event"; break; } case 0x40: { nameType += "Free"; break; } } } } return nameType; } /** * */ private void allowToAll() { LoginServerThread.getInstance().setServerStatus(ServerStatus.STATUS_AUTO); Config.SERVER_GMONLY = false; } /** * */ private void gmOnly() { LoginServerThread.getInstance().setServerStatus(ServerStatus.STATUS_GM_ONLY); Config.SERVER_GMONLY = true; } @Override public String[] getAdminCommandList() { return ADMIN_COMMANDS; } }