123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118 |
- /*
- * 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.Calendar;
- import java.util.StringTokenizer;
- import com.l2jserver.gameserver.handler.IAdminCommandHandler;
- import com.l2jserver.gameserver.instancemanager.QuestManager;
- import com.l2jserver.gameserver.instancemanager.TerritoryWarManager;
- import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
- import com.l2jserver.gameserver.model.quest.Quest;
- import com.l2jserver.gameserver.network.serverpackets.NpcHtmlMessage;
- /**
- * Admin comand handler for Territory War System
- * This class handles following admin commands:
- *
- * @author Gigiikun
- */
- public class AdminTerritoryWar implements IAdminCommandHandler
- {
- private static final String[] _adminCommands =
- {
- "admin_territory_war",
- "admin_territory_war_time",
- "admin_territory_war_start",
- "admin_territory_war_end"
- };
-
- public boolean useAdminCommand(String command, L2PcInstance activeChar)
- {
- StringTokenizer st = new StringTokenizer(command);
- command = st.nextToken();
-
- if (command.equals("admin_territory_war"))
- {
- showMainPage(activeChar);
- }
- else if (command.equalsIgnoreCase("admin_territory_war_time"))
- {
- String val = "";
- if (st.hasMoreTokens())
- {
- val = st.nextToken();
- Calendar newAdminTWDate = Calendar.getInstance();
- newAdminTWDate.setTimeInMillis(TerritoryWarManager.getInstance().getTWStartTimeInMillis());
- if (val.equalsIgnoreCase("day"))
- newAdminTWDate.set(Calendar.DAY_OF_WEEK, Integer.parseInt(st.nextToken()));
- else if (val.equalsIgnoreCase("hour"))
- newAdminTWDate.set(Calendar.HOUR_OF_DAY, Integer.parseInt(st.nextToken()));
- else if (val.equalsIgnoreCase("min"))
- newAdminTWDate.set(Calendar.MINUTE, Integer.parseInt(st.nextToken()));
-
- if (newAdminTWDate.getTimeInMillis() < Calendar.getInstance().getTimeInMillis())
- {
- activeChar.sendMessage("Unable to change TW Date!");
- }
- else if (newAdminTWDate.getTimeInMillis() != TerritoryWarManager.getInstance().getTWStartTimeInMillis())
- {
- Quest twQuest = QuestManager.getInstance().getQuest(TerritoryWarManager.qn);
- if (twQuest != null)
- twQuest.onAdvEvent("setTWDate " + newAdminTWDate.getTimeInMillis(), null, null);
- else
- activeChar.sendMessage("Missing Territory War Quest!");
- }
- }
- showSiegeTimePage(activeChar);
- }
- else if (command.equalsIgnoreCase("admin_territory_war_start"))
- {
- Quest twQuest = QuestManager.getInstance().getQuest(TerritoryWarManager.qn);
- if (twQuest != null)
- twQuest.onAdvEvent("setTWDate " + Calendar.getInstance().getTimeInMillis(), null, null);
- else
- activeChar.sendMessage("Missing Territory War Quest!");
- }
- else if (command.equalsIgnoreCase("admin_territory_war_end"))
- {
- Quest twQuest = QuestManager.getInstance().getQuest(TerritoryWarManager.qn);
- if (twQuest != null)
- twQuest.onAdvEvent("setTWDate " + (Calendar.getInstance().getTimeInMillis() - TerritoryWarManager.WARLENGTH), null, null);
- else
- activeChar.sendMessage("Missing Territory War Quest!");
- }
- return true;
- }
-
- public String[] getAdminCommandList()
- {
- return _adminCommands;
- }
-
- private void showSiegeTimePage(L2PcInstance activeChar)
- {
- NpcHtmlMessage adminReply = new NpcHtmlMessage(5);
- adminReply.setFile(activeChar.getHtmlPrefix(), "data/html/admin/territorywartime.htm");
- adminReply.replace("%time%", TerritoryWarManager.getInstance().getTWStart().getTime().toString());
- activeChar.sendPacket(adminReply);
- }
-
- private void showMainPage(L2PcInstance activeChar)
- {
- AdminHelpPage.showHelpPage(activeChar, "territorywar.htm");
- }
- }
|