Package com.l2jfrozen.gameserver.network.serverpackets

Source Code of com.l2jfrozen.gameserver.network.serverpackets.SpawnItemPoly

/*
* 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 2, 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, write to the Free Software
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
* 02111-1307, USA.
*
* http://www.gnu.org/copyleft/gpl.html
*/
package com.l2jfrozen.gameserver.network.serverpackets;

import com.l2jfrozen.gameserver.model.L2Object;
import com.l2jfrozen.gameserver.model.actor.instance.L2ItemInstance;

/**
* 15 ee cc 11 43 object id 39 00 00 00 item id 8f 14 00 00 x b7 f1 00 00 y 60 f2 ff ff z 01 00 00 00 show item count 7a
* 00 00 00 count . format dddddddd
*
* @version $Revision: 1.3.2.1.2.3 $ $Date: 2005/03/27 15:29:39 $
*/
public class SpawnItemPoly extends L2GameServerPacket
{
  private static final String _S__15_SPAWNITEM = "[S] 15 SpawnItem";
  private int _objectId;
  private int _itemId;
  private int _x, _y, _z;
  private int _stackable, _count;

  public SpawnItemPoly(L2Object object)
  {
    if(object instanceof L2ItemInstance)
    {
      L2ItemInstance item = (L2ItemInstance) object;
      _objectId = object.getObjectId();
      _itemId = object.getPoly().getPolyId();
      _x = item.getX();
      _y = item.getY();
      _z = item.getZ();
      _stackable = item.isStackable() ? 0x01 : 0x00;
      _count = item.getCount();
    }
    else
    {
      _objectId = object.getObjectId();
      _itemId = object.getPoly().getPolyId();
      _x = object.getX();
      _y = object.getY();
      _z = object.getZ();
      _stackable = 0x00;
      _count = 1;
    }
  }

  @Override
  protected final void writeImpl()
  {
    writeC(0x0b);
    writeD(_objectId);
    writeD(_itemId);

    writeD(_x);
    writeD(_y);
    writeD(_z);
    // only show item count if it is a stackable item
    writeD(_stackable);
    writeD(_count);
    writeD(0x00); //c2
  }

  /* (non-Javadoc)
   * @see com.l2jfrozen.gameserver.serverpackets.ServerBasePacket#getType()
   */
  @Override
  public String getType()
  {
    return _S__15_SPAWNITEM;
  }
}
TOP

Related Classes of com.l2jfrozen.gameserver.network.serverpackets.SpawnItemPoly

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.