/* * 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.actionhandlers; import com.l2jserver.gameserver.ai.CtrlIntention; import com.l2jserver.gameserver.cache.HtmCache; import com.l2jserver.gameserver.handler.IActionHandler; import com.l2jserver.gameserver.model.L2Object; import com.l2jserver.gameserver.model.L2Object.InstanceType; import com.l2jserver.gameserver.model.actor.L2Npc; import com.l2jserver.gameserver.model.actor.instance.L2PcInstance; import com.l2jserver.gameserver.model.actor.instance.L2StaticObjectInstance; import com.l2jserver.gameserver.network.serverpackets.MyTargetSelected; import com.l2jserver.gameserver.network.serverpackets.NpcHtmlMessage; public class L2StaticObjectInstanceAction implements IActionHandler { @Override public boolean action(final L2PcInstance activeChar, final L2Object target, final boolean interact) { final L2StaticObjectInstance staticObject = (L2StaticObjectInstance) target; if (staticObject.getType() < 0) { _log.info("L2StaticObjectInstance: StaticObject with invalid type! StaticObjectId: " + staticObject.getStaticObjectId()); } // Check if the L2PcInstance already target the L2NpcInstance if (activeChar.getTarget() != staticObject) { // Set the target of the L2PcInstance activeChar activeChar.setTarget(staticObject); activeChar.sendPacket(new MyTargetSelected(staticObject.getObjectId(), 0)); } else if (interact) { activeChar.sendPacket(new MyTargetSelected(staticObject.getObjectId(), 0)); // Calculate the distance between the L2PcInstance and the L2NpcInstance if (!activeChar.isInsideRadius(staticObject, L2Npc.INTERACTION_DISTANCE, false, false)) { // Notify the L2PcInstance AI with AI_INTENTION_INTERACT activeChar.getAI().setIntention(CtrlIntention.AI_INTENTION_INTERACT, staticObject); } else { if (staticObject.getType() == 2) { final String filename = (staticObject.getStaticObjectId() == 24230101) ? "data/html/signboards/tomb_of_crystalgolem.htm" : "data/html/signboards/pvp_signboard.htm"; final String content = HtmCache.getInstance().getHtm(activeChar.getHtmlPrefix(), filename); final NpcHtmlMessage html = new NpcHtmlMessage(staticObject.getObjectId()); if (content == null) { html.setHtml("Signboard is missing:
" + filename + ""); } else { html.setHtml(content); } activeChar.sendPacket(html); } else if (staticObject.getType() == 0) { activeChar.sendPacket(staticObject.getMap()); } } } return true; } @Override public InstanceType getInstanceType() { return InstanceType.L2StaticObjectInstance; } }