123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121 |
- /*
- * Copyright (C) 2004-2015 L2J Server
- *
- * This file is part of L2J Server.
- *
- * L2J Server 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.
- *
- * L2J Server 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.Level;
- import java.util.logging.Logger;
- import com.l2jserver.gameserver.model.interfaces.IPositionable;
- import com.l2jserver.gameserver.model.itemcontainer.Inventory;
- import com.l2jserver.gameserver.network.L2GameClient;
- import com.l2jserver.mmocore.SendablePacket;
- /**
- * @author KenM
- */
- public abstract class L2GameServerPacket extends SendablePacket<L2GameClient>
- {
- protected static final Logger _log = Logger.getLogger(L2GameServerPacket.class.getName());
-
- private boolean _invisible = false;
-
- private static final int[] PAPERDOLL_ORDER = new int[]
- {
- Inventory.PAPERDOLL_UNDER,
- Inventory.PAPERDOLL_REAR,
- Inventory.PAPERDOLL_LEAR,
- Inventory.PAPERDOLL_NECK,
- Inventory.PAPERDOLL_RFINGER,
- Inventory.PAPERDOLL_LFINGER,
- Inventory.PAPERDOLL_HEAD,
- Inventory.PAPERDOLL_RHAND,
- Inventory.PAPERDOLL_LHAND,
- Inventory.PAPERDOLL_GLOVES,
- Inventory.PAPERDOLL_CHEST,
- Inventory.PAPERDOLL_LEGS,
- Inventory.PAPERDOLL_FEET,
- Inventory.PAPERDOLL_CLOAK,
- Inventory.PAPERDOLL_RHAND,
- Inventory.PAPERDOLL_HAIR,
- Inventory.PAPERDOLL_HAIR2,
- Inventory.PAPERDOLL_RBRACELET,
- Inventory.PAPERDOLL_LBRACELET,
- Inventory.PAPERDOLL_DECO1,
- Inventory.PAPERDOLL_DECO2,
- Inventory.PAPERDOLL_DECO3,
- Inventory.PAPERDOLL_DECO4,
- Inventory.PAPERDOLL_DECO5,
- Inventory.PAPERDOLL_DECO6,
- Inventory.PAPERDOLL_BELT
- };
-
- /**
- * @return True if packet originated from invisible character.
- */
- public boolean isInvisible()
- {
- return _invisible;
- }
-
- /**
- * Set "invisible" boolean flag in the packet.<br>
- * Packets from invisible characters will not be broadcasted to players.
- * @param b
- */
- public void setInvisible(boolean b)
- {
- _invisible = b;
- }
-
- /**
- * Writes 3 D (int32) with current location x, y, z
- * @param loc
- */
- protected void writeLoc(IPositionable loc)
- {
- writeD(loc.getX());
- writeD(loc.getY());
- writeD(loc.getZ());
- }
-
- protected int[] getPaperdollOrder()
- {
- return PAPERDOLL_ORDER;
- }
-
- @Override
- protected void write()
- {
- try
- {
- writeImpl();
- }
- catch (Exception e)
- {
- _log.log(Level.SEVERE, "Client: " + getClient().toString() + " - Failed writing: " + getClass().getSimpleName() + " ; " + e.getMessage(), e);
- }
- }
-
- public void runImpl()
- {
-
- }
-
- protected abstract void writeImpl();
- }
|