1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283 |
- /*
- * 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 com.l2jserver.gameserver.network.serverpackets;
- import java.util.logging.Logger;
- import org.mmocore.network.SendablePacket;
- import com.l2jserver.Config;
- import com.l2jserver.gameserver.network.L2GameClient;
- /**
- *
- * @author KenM
- */
- public abstract class L2GameServerPacket extends SendablePacket<L2GameClient>
- {
- private static final Logger _log = Logger.getLogger(L2GameServerPacket.class.getName());
- protected boolean _invisible = false;
- /**
- *
- * @return True if packet originated from invisible character.
- */
- public boolean isInvisible()
- {
- return _invisible;
- }
- /**
- * Set "invisible" boolean flag in the packet.
- * Packets from invisible characters will not be broadcasted to players.
- * @param b
- */
- public void setInvisible(boolean b)
- {
- _invisible = b;
- }
- /**
- * @see com.l2jserver.mmocore.network.SendablePacket#write()
- */
- @Override
- protected void write()
- {
- try
- {
- //_log.info(this.getType());
- writeImpl();
- }
- catch (Exception e)
- {
- _log.severe("Client: "+getClient().toString()+" - Failed writing: "+getType()+" - L2J Server Version: "+Config.SERVER_VERSION+" - DP Revision: "+Config.DATAPACK_VERSION);
- e.printStackTrace();
- }
- }
- public void runImpl()
- {
- }
- protected abstract void writeImpl();
- /**
- * @return A String with this packet name for debuging purposes
- */
- public abstract String getType();
- }
|