123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475 |
- /*
- * 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 <http://www.gnu.org/licenses/>.
- */
- package handlers.admincommandhandlers;
- import java.util.StringTokenizer;
- import java.util.logging.Logger;
- import javolution.text.TextBuilder;
- import com.l2jserver.Config;
- import com.l2jserver.gameserver.GmListTable;
- import com.l2jserver.gameserver.cache.HtmCache;
- import com.l2jserver.gameserver.datatables.AccessLevels;
- import com.l2jserver.gameserver.datatables.AdminCommandAccessRights;
- import com.l2jserver.gameserver.datatables.DoorTable;
- import com.l2jserver.gameserver.datatables.ItemTable;
- import com.l2jserver.gameserver.datatables.MultiSell;
- import com.l2jserver.gameserver.datatables.NpcTable;
- import com.l2jserver.gameserver.datatables.NpcWalkerRoutesTable;
- import com.l2jserver.gameserver.datatables.SkillTable;
- import com.l2jserver.gameserver.datatables.SpawnTable;
- import com.l2jserver.gameserver.datatables.TeleportLocationTable;
- import com.l2jserver.gameserver.handler.IAdminCommandHandler;
- import com.l2jserver.gameserver.instancemanager.Manager;
- import com.l2jserver.gameserver.instancemanager.QuestManager;
- import com.l2jserver.gameserver.model.L2Spawn;
- import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
- import com.l2jserver.gameserver.model.olympiad.Olympiad;
- import com.l2jserver.gameserver.network.SystemMessageId;
- import com.l2jserver.gameserver.network.serverpackets.NpcHtmlMessage;
- import com.l2jserver.gameserver.network.serverpackets.SystemMessage;
- /**
- * This class handles following admin commands:
- * - admin|admin1/admin2/admin3/admin4/admin5 = slots for the 5 starting admin menus
- * - gmliston/gmlistoff = includes/excludes active character from /gmlist results
- * - silence = toggles private messages acceptance mode
- * - diet = toggles weight penalty mode
- * - tradeoff = toggles trade acceptance mode
- * - reload = reloads specified component from multisell|skill|npc|htm|item|instancemanager
- * - set/set_menu/set_mod = alters specified server setting
- * - saveolymp = saves olympiad state manually
- * - manualhero = cycles olympiad and calculate new heroes.
- * @version $Revision: 1.3.2.1.2.4 $ $Date: 2007/07/28 10:06:06 $
- */
- public class AdminAdmin implements IAdminCommandHandler
- {
- private static Logger _log = Logger.getLogger(AdminAdmin.class.getName());
-
- private static final String[] ADMIN_COMMANDS =
- {
- "admin_admin",
- "admin_admin1",
- "admin_admin2",
- "admin_admin3",
- "admin_admin4",
- "admin_admin5",
- "admin_admin6",
- "admin_admin7",
- "admin_admin8",
- "admin_gmliston",
- "admin_gmlistoff",
- "admin_silence",
- "admin_diet",
- "admin_tradeoff",
- "admin_reload",
- "admin_set",
- "admin_set_mod",
- "admin_saveolymp",
- "admin_manualhero",
- "admin_sethero",
- "admin_endolympiad",
- "admin_setconfig",
- "admin_config_server",
- "admin_gmon"
- };
-
- @Override
- public boolean useAdminCommand(String command, L2PcInstance activeChar)
- {
-
- if (command.startsWith("admin_admin"))
- {
- showMainPage(activeChar, command);
- }
- else if (command.equals("admin_config_server"))
- {
- showConfigPage(activeChar);
- }
- else if (command.startsWith("admin_gmliston"))
- {
- GmListTable.getInstance().showGm(activeChar);
- activeChar.sendMessage("Registered into gm list");
- AdminHelpPage.showHelpPage(activeChar,"gm_menu.htm");
- }
- else if (command.startsWith("admin_gmlistoff"))
- {
- GmListTable.getInstance().hideGm(activeChar);
- activeChar.sendMessage("Removed from gm list");
- AdminHelpPage.showHelpPage(activeChar,"gm_menu.htm");
- }
- else if (command.startsWith("admin_silence"))
- {
- if (activeChar.isSilenceMode()) // already in message refusal mode
- {
- activeChar.setSilenceMode(false);
- activeChar.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.MESSAGE_ACCEPTANCE_MODE));
- }
- else
- {
- activeChar.setSilenceMode(true);
- activeChar.sendPacket(SystemMessage.getSystemMessage(SystemMessageId.MESSAGE_REFUSAL_MODE));
- }
- AdminHelpPage.showHelpPage(activeChar,"gm_menu.htm");
- }
- else if (command.startsWith("admin_saveolymp"))
- {
- Olympiad.getInstance().saveOlympiadStatus();
- activeChar.sendMessage("olympiad system saved.");
- }
- else if (command.startsWith("admin_endolympiad"))
- {
- try
- {
- Olympiad.getInstance().manualSelectHeroes();
- }
- catch (Exception e)
- {
- _log.warning("An error occured while ending olympiad: " + e);
- }
- activeChar.sendMessage("Heroes formed");
- }
- else if (command.startsWith("admin_manualhero") || command.startsWith("admin_sethero"))
- {
- L2PcInstance target = null;
-
- if (activeChar.getTarget() instanceof L2PcInstance)
- {
- target = (L2PcInstance) activeChar.getTarget();
- target.setHero(target.isHero() ? false : true);
- }
- else
- {
- target = activeChar;
- target.setHero(target.isHero() ? false : true);
- }
- target.broadcastUserInfo();
- }
- else if (command.startsWith("admin_diet"))
- {
- try
- {
- StringTokenizer st = new StringTokenizer(command);
- st.nextToken();
- if (st.nextToken().equalsIgnoreCase("on"))
- {
- activeChar.setDietMode(true);
- activeChar.sendMessage("Diet mode on");
- }
- else if (st.nextToken().equalsIgnoreCase("off"))
- {
- activeChar.setDietMode(false);
- activeChar.sendMessage("Diet mode off");
- }
- }
- catch (Exception ex)
- {
- if (activeChar.getDietMode())
- {
- activeChar.setDietMode(false);
- activeChar.sendMessage("Diet mode off");
- }
- else
- {
- activeChar.setDietMode(true);
- activeChar.sendMessage("Diet mode on");
- }
- }
- finally
- {
- activeChar.refreshOverloaded();
- }
- AdminHelpPage.showHelpPage(activeChar,"gm_menu.htm");
- }
- else if (command.startsWith("admin_tradeoff"))
- {
- try
- {
- String mode = command.substring(15);
- if (mode.equalsIgnoreCase("on"))
- {
- activeChar.setTradeRefusal(true);
- activeChar.sendMessage("Trade refusal enabled");
- }
- else if (mode.equalsIgnoreCase("off"))
- {
- activeChar.setTradeRefusal(false);
- activeChar.sendMessage("Trade refusal disabled");
- }
- }
- catch (Exception ex)
- {
- if (activeChar.getTradeRefusal())
- {
- activeChar.setTradeRefusal(false);
- activeChar.sendMessage("Trade refusal disabled");
- }
- else
- {
- activeChar.setTradeRefusal(true);
- activeChar.sendMessage("Trade refusal enabled");
- }
- }
- AdminHelpPage.showHelpPage(activeChar,"gm_menu.htm");
- }
- else if (command.startsWith("admin_reload"))
- {
- StringTokenizer st = new StringTokenizer(command);
- st.nextToken();
- String type = "";
- try
- {
- type = st.nextToken();
- if (type.equals("multisell"))
- {
- MultiSell.getInstance().reload();
- activeChar.sendMessage("All Multisells have been reloaded");
- }
- else if (type.startsWith("teleport"))
- {
- TeleportLocationTable.getInstance().reloadAll();
- activeChar.sendMessage("Teleport Locations have been reloaded");
- }
- else if (type.startsWith("skill"))
- {
- SkillTable.getInstance().reload();
- activeChar.sendMessage("All Skills have been reloaded");
- }
- else if (type.startsWith("npcId"))
- {
- Integer npcId = Integer.parseInt(st.nextToken());
- if (npcId != null)
- {
- NpcTable.getInstance().reloadNpc(npcId);
- for (L2Spawn spawn : SpawnTable.getInstance().getSpawnTable())
- if (spawn != null && spawn.getNpcid() == npcId)
- spawn.respawnNpc(spawn.getLastSpawn());
-
- activeChar.sendMessage("NPC " + npcId + " have been reloaded");
- }
- }
- else if (type.equals("npc"))
- {
- NpcTable.getInstance().reloadAllNpc();
- QuestManager.getInstance().reloadAllQuests();
- activeChar.sendMessage("All NPCs have been reloaded");
- }
- else if (type.startsWith("htm"))
- {
- HtmCache.getInstance().reload();
- activeChar.sendMessage("Cache[HTML]: " + HtmCache.getInstance().getMemoryUsage() + " megabytes on " + HtmCache.getInstance().getLoadedFiles() + " files loaded");
- }
- else if (type.startsWith("item"))
- {
- ItemTable.getInstance().reload();
- activeChar.sendMessage("Item Templates have been reloaded");
- }
- else if (type.startsWith("config"))
- {
- Config.load();
- activeChar.sendMessage("All Config Settings have been reloaded");
- }
- else if (type.startsWith("instancemanager"))
- {
- Manager.reloadAll();
- activeChar.sendMessage("All Instance Manager has been reloaded");
- }
- else if (type.startsWith("npcwalkers"))
- {
- NpcWalkerRoutesTable.getInstance().load();
- activeChar.sendMessage("NPC Walker Routes have been reloaded");
- }
- else if (type.startsWith("access"))
- {
- AccessLevels.getInstance().reloadAccessLevels();
- AdminCommandAccessRights.getInstance().reloadAdminCommandAccessRights();
- activeChar.sendMessage("Access Rights have been reloaded");
- }
- else if (type.startsWith("quests"))
- {
- QuestManager.getInstance().reloadAllQuests();
- activeChar.sendMessage("All Quests have been reloaded");
- }
- else if (type.startsWith("door"))
- {
- DoorTable.getInstance().reloadAll();
- activeChar.sendMessage("All Doors have been reloaded");
- }
- activeChar.sendMessage("WARNING: There are several known issues regarding this feature. Reloading server data during runtime is STRONGLY NOT RECOMMENDED for live servers, just for developing environments.");
- }
- catch (Exception e)
- {
- activeChar.sendMessage("An error occured while reloading " + type + " !");
- activeChar.sendMessage("Usage: //reload <multisell|teleport|skill|npc|htm|item|config|instancemanager|npcwalkers|access|quests>");
- _log.warning("An error occured while reloading " + type + ": " + e); //do not mask an exception here
- }
- }
- else if (command.startsWith("admin_setconfig"))
- {
- StringTokenizer st = new StringTokenizer(command);
- st.nextToken();
- try
- {
- String pName = st.nextToken();
- String pValue = st.nextToken();
- if (Config.setParameterValue(pName, pValue))
- activeChar.sendMessage("Config parameter " + pName + " set to " + pValue);
- else
- activeChar.sendMessage("Invalid parameter!");
- }
- catch (Exception e)
- {
- activeChar.sendMessage("Usage: //setconfig <parameter> <value>");
- }
- finally
- {
- showConfigPage(activeChar);
- }
- }
- else if (command.startsWith("admin_set"))
- {
- StringTokenizer st = new StringTokenizer(command);
- String[] cmd = st.nextToken().split("_");
- try
- {
- String[] parameter = st.nextToken().split("=");
- String pName = parameter[0].trim();
- String pValue = parameter[1].trim();
- if (Config.setParameterValue(pName, pValue))
- activeChar.sendMessage("parameter " + pName + " succesfully set to " + pValue);
- else
- activeChar.sendMessage("Invalid parameter!");
- }
- catch (Exception e)
- {
- if (cmd.length == 2)
- activeChar.sendMessage("Usage: //set parameter=value");
- }
- finally
- {
- if (cmd.length == 3)
- {
- if (cmd[2].equalsIgnoreCase("mod"))
- AdminHelpPage.showHelpPage(activeChar, "mods_menu.htm");
- }
- }
- }
- else if (command.startsWith("admin_gmon"))
- {
- // nothing
- }
- return true;
- }
-
- @Override
- public String[] getAdminCommandList()
- {
- return ADMIN_COMMANDS;
- }
-
- private void showMainPage(L2PcInstance activeChar, String command)
- {
- int mode = 0;
- String filename = null;
- try
- {
- mode = Integer.parseInt(command.substring(11));
- }
- catch (Exception e)
- {
- }
- switch (mode)
- {
- case 1:
- filename = "main";
- break;
- case 2:
- filename = "game";
- break;
- case 3:
- filename = "effects";
- break;
- case 4:
- filename = "server";
- break;
- case 5:
- filename = "mods";
- break;
- case 6:
- filename = "char";
- break;
- case 7:
- filename = "gm";
- break;
- case 8:
- filename = "old";
- break;
- default:
- if (Config.GM_ADMIN_MENU_STYLE.equals("modern"))
- filename = "main";
- else
- filename = "classic";
- break;
- }
- AdminHelpPage.showHelpPage(activeChar, filename + "_menu.htm");
- }
-
- public void showConfigPage(L2PcInstance activeChar)
- {
- NpcHtmlMessage adminReply = new NpcHtmlMessage(5);
- TextBuilder replyMSG = new TextBuilder("<html><title>L2J :: Config</title><body>");
- replyMSG.append("<center><table width=270><tr><td width=60><button value=\"Main\" action=\"bypass -h admin_admin\" width=60 height=25 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\"></td><td width=150>Config Server Panel</td><td width=60><button value=\"Back\" action=\"bypass -h admin_admin4\" width=60 height=25 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\"></td></tr></table></center><br>");
- replyMSG.append("<center><table width=260><tr><td width=140></td><td width=40></td><td width=40></td></tr>");
- replyMSG.append("<tr><td><font color=\"00AA00\">Drop:</font></td><td></td><td></td></tr>");
- replyMSG.append("<tr><td><font color=\"LEVEL\">Rate EXP</font> = "
- + Config.RATE_XP
- + "</td><td><edit var=\"param1\" width=40 height=15></td><td><button value=\"Set\" action=\"bypass -h admin_setconfig RateXp $param1\" width=40 height=25 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\"></td></tr>");
- replyMSG.append("<tr><td><font color=\"LEVEL\">Rate SP</font> = "
- + Config.RATE_SP
- + "</td><td><edit var=\"param2\" width=40 height=15></td><td><button value=\"Set\" action=\"bypass -h admin_setconfig RateSp $param2\" width=40 height=25 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\"></td></tr>");
- replyMSG.append("<tr><td><font color=\"LEVEL\">Rate Drop Spoil</font> = "
- + Config.RATE_DROP_SPOIL
- + "</td><td><edit var=\"param4\" width=40 height=15></td><td><button value=\"Set\" action=\"bypass -h admin_setconfig RateDropSpoil $param4\" width=40 height=25 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\"></td></tr>");
- replyMSG.append("<tr><td width=140></td><td width=40></td><td width=40></td></tr>");
- replyMSG.append("<tr><td><font color=\"00AA00\">Enchant:</font></td><td></td><td></td></tr>");
- replyMSG.append("<tr><td><font color=\"LEVEL\">Enchant Weapon</font> = "
- + Config.ENCHANT_CHANCE_WEAPON
- + "</td><td><edit var=\"param5\" width=40 height=15></td><td><button value=\"Set\" action=\"bypass -h admin_setconfig EnchantChanceWeapon $param5\" width=40 height=25 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\"></td></tr>");
- replyMSG.append("<tr><td><font color=\"LEVEL\">Enchant Armor</font> = "
- + Config.ENCHANT_CHANCE_ARMOR
- + "</td><td><edit var=\"param6\" width=40 height=15></td><td><button value=\"Set\" action=\"bypass -h admin_setconfig EnchantChanceArmor $param6\" width=40 height=25 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\"></td></tr>");
- replyMSG.append("<tr><td><font color=\"LEVEL\">Enchant Jewelry</font> = "
- + Config.ENCHANT_CHANCE_JEWELRY
- + "</td><td><edit var=\"param7\" width=40 height=15></td><td><button value=\"Set\" action=\"bypass -h admin_setconfig EnchantChanceJewelry $param7\" width=40 height=25 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\"></td></tr>");
- replyMSG.append("<tr><td><font color=\"LEVEL\">Enchant Element Stone</font> = "
- + Config.ENCHANT_CHANCE_ELEMENT_STONE
- + "</td><td><edit var=\"param8\" width=40 height=15></td><td><button value=\"Set\" action=\"bypass -h admin_setconfig EnchantChanceElementStone $param8\" width=40 height=25 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\"></td></tr>");
- replyMSG.append("<tr><td><font color=\"LEVEL\">Enchant Element Crystal</font> = "
- + Config.ENCHANT_CHANCE_ELEMENT_CRYSTAL
- + "</td><td><edit var=\"param9\" width=40 height=15></td><td><button value=\"Set\" action=\"bypass -h admin_setconfig EnchantChanceElementCrystal $param9\" width=40 height=25 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\"></td></tr>");
- replyMSG.append("<tr><td><font color=\"LEVEL\">Enchant Element Jewel</font> = "
- + Config.ENCHANT_CHANCE_ELEMENT_JEWEL
- + "</td><td><edit var=\"param10\" width=40 height=15></td><td><button value=\"Set\" action=\"bypass -h admin_setconfig EnchantChanceElementJewel $param10\" width=40 height=25 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\"></td></tr>");
- replyMSG.append("<tr><td><font color=\"LEVEL\">Enchant Element Energy</font> = "
- + Config.ENCHANT_CHANCE_ELEMENT_ENERGY
- + "</td><td><edit var=\"param11\" width=40 height=15></td><td><button value=\"Set\" action=\"bypass -h admin_setconfig EnchantChanceElementEnergy $param11\" width=40 height=25 back=\"L2UI_ct1.button_df\" fore=\"L2UI_ct1.button_df\"></td></tr>");
-
- replyMSG.append("</table></body></html>");
- adminReply.setHtml(replyMSG.toString());
- activeChar.sendPacket(adminReply);
- }
- }
|