123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238 |
- /*
- * 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 net.sf.l2j.gameserver.clientpackets;
- import java.util.StringTokenizer;
- import java.util.logging.Level;
- import java.util.logging.Logger;
- import net.sf.l2j.Config;
- import net.sf.l2j.gameserver.ai.CtrlIntention;
- import net.sf.l2j.gameserver.communitybbs.CommunityBoard;
- import net.sf.l2j.gameserver.datatables.AdminCommandAccessRights;
- import net.sf.l2j.gameserver.handler.AdminCommandHandler;
- import net.sf.l2j.gameserver.handler.IAdminCommandHandler;
- import net.sf.l2j.gameserver.model.GMAudit;
- import net.sf.l2j.gameserver.model.L2CharPosition;
- import net.sf.l2j.gameserver.model.L2Object;
- import net.sf.l2j.gameserver.model.L2World;
- import net.sf.l2j.gameserver.model.actor.instance.L2NpcInstance;
- import net.sf.l2j.gameserver.model.actor.instance.L2PcInstance;
- import net.sf.l2j.gameserver.model.entity.L2Event;
- import net.sf.l2j.gameserver.serverpackets.ActionFailed;
- import net.sf.l2j.gameserver.serverpackets.NpcHtmlMessage;
- /**
- * This class ...
- *
- * @version $Revision: 1.12.4.5 $ $Date: 2005/04/11 10:06:11 $
- */
- public final class RequestBypassToServer extends L2GameClientPacket
- {
- private static final String _C__21_REQUESTBYPASSTOSERVER = "[C] 21 RequestBypassToServer";
- private static Logger _log = Logger.getLogger(RequestBypassToServer.class.getName());
- // S
- private String _command;
- /**
- * @param decrypt
- */
- @Override
- protected void readImpl()
- {
- _command = readS();
- }
- @Override
- protected void runImpl()
- {
- L2PcInstance activeChar = getClient().getActiveChar();
- if (activeChar == null)
- return;
- try {
- if (_command.startsWith("admin_")) //&& activeChar.getAccessLevel() >= Config.GM_ACCESSLEVEL)
- {
- String command = _command.split(" ")[0];
- IAdminCommandHandler ach = AdminCommandHandler.getInstance().getAdminCommandHandler(command);
-
- if (ach == null)
- {
- if ( activeChar.isGM() )
- activeChar.sendMessage("The command " + command.split("_")[0] + " does not exists!");
- _log.warning("No handler registered for admin command '" + command + "'");
- return;
- }
- if (!AdminCommandAccessRights.getInstance().hasAccess(command, activeChar.getAccessLevel()))
- {
- activeChar.sendMessage("You don't have the access right to use this command!");
- _log.warning("Character " + activeChar.getName() + " tryed to use admin command " + command + ", but have no access to it!");
- return;
- }
- if (Config.GMAUDIT)
- GMAudit.auditGMAction(activeChar.getName(), _command, (activeChar.getTarget() != null?activeChar.getTarget().getName():"no-target"));
- ach.useAdminCommand(_command, activeChar);
- }
- else if (_command.equals("come_here") && ( activeChar.isGM()))
- {
- comeHere(activeChar);
- }
- else if (_command.startsWith("player_help "))
- {
- playerHelp(activeChar, _command.substring(12));
- }
- else if (_command.startsWith("npc_"))
- {
- if(!activeChar.validateBypass(_command))
- return;
- int endOfId = _command.indexOf('_', 5);
- String id;
- if (endOfId > 0)
- id = _command.substring(4, endOfId);
- else
- id = _command.substring(4);
- try
- {
- L2Object object = L2World.getInstance().findObject(Integer.parseInt(id));
- if (_command.substring(endOfId+1).startsWith("event_participate")) L2Event.inscribePlayer(activeChar);
- else if (object instanceof L2NpcInstance && endOfId > 0 && activeChar.isInsideRadius(object, L2NpcInstance.INTERACTION_DISTANCE, false, false))
- {
- ((L2NpcInstance)object).onBypassFeedback(activeChar, _command.substring(endOfId+1));
- }
- activeChar.sendPacket(ActionFailed.STATIC_PACKET);
- }
- catch (NumberFormatException nfe) {}
- }
- // Draw a Symbol
- else if (_command.equals("menu_select?ask=-16&reply=1"))
- {
- L2Object object = activeChar.getTarget();
- if (object instanceof L2NpcInstance)
- {
- ((L2NpcInstance) object).onBypassFeedback(activeChar, _command);
- }
- }
- else if (_command.equals("menu_select?ask=-16&reply=2"))
- {
- L2Object object = activeChar.getTarget();
- if (object instanceof L2NpcInstance)
- {
- ((L2NpcInstance) object).onBypassFeedback(activeChar, _command);
- }
- }
- // Navigate through Manor windows
- else if (_command.startsWith("manor_menu_select?"))
- {
- L2Object object = activeChar.getTarget();
- if (object instanceof L2NpcInstance)
- {
- ((L2NpcInstance) object).onBypassFeedback(activeChar, _command);
- }
- }
- else if (_command.startsWith("bbs_"))
- {
- CommunityBoard.getInstance().handleCommands(getClient(), _command);
- }
- else if (_command.startsWith("_bbs"))
- {
- CommunityBoard.getInstance().handleCommands(getClient(), _command);
- }
- else if (_command.startsWith("Quest "))
- {
- if(!activeChar.validateBypass(_command))
- return;
- L2PcInstance player = getClient().getActiveChar();
- if (player == null) return;
- String p = _command.substring(6).trim();
- int idx = p.indexOf(' ');
- if (idx < 0)
- player.processQuestEvent(p, "");
- else
- player.processQuestEvent(p.substring(0, idx), p.substring(idx).trim());
- }
- }
- catch (Exception e)
- {
- _log.log(Level.WARNING, "Bad RequestBypassToServer: ", e);
- }
- // finally
- // {
- // activeChar.clearBypass();
- // }
- }
- /**
- * @param client
- */
- private void comeHere(L2PcInstance activeChar)
- {
- L2Object obj = activeChar.getTarget();
- if (obj == null) return;
- if (obj instanceof L2NpcInstance)
- {
- L2NpcInstance temp = (L2NpcInstance) obj;
- temp.setTarget(activeChar);
- temp.getAI().setIntention(CtrlIntention.AI_INTENTION_MOVE_TO,
- new L2CharPosition(activeChar.getX(),activeChar.getY(), activeChar.getZ(), 0 ));
- // temp.moveTo(player.getX(),player.getY(), player.getZ(), 0 );
- }
- }
- private void playerHelp(L2PcInstance activeChar, String path)
- {
- if (path.indexOf("..") != -1)
- return;
-
- StringTokenizer st = new StringTokenizer(path);
- String[] cmd = st.nextToken().split("#");
-
- if (cmd.length > 1)
- {
- int itemId = 0;
- itemId = Integer.parseInt(cmd[1]);
- String filename = "data/html/help/"+cmd[0];
- NpcHtmlMessage html = new NpcHtmlMessage(1,itemId);
- html.setFile(filename);
- activeChar.sendPacket(html);
- }
- else
- {
- String filename = "data/html/help/"+path;
- NpcHtmlMessage html = new NpcHtmlMessage(1);
- html.setFile(filename);
- activeChar.sendPacket(html);
- }
- }
- /* (non-Javadoc)
- * @see net.sf.l2j.gameserver.clientpackets.ClientBasePacket#getType()
- */
- @Override
- public String getType()
- {
- return _C__21_REQUESTBYPASSTOSERVER;
- }
- }
|