Package l2p.gameserver.clientpackets

Source Code of l2p.gameserver.clientpackets.RequestSetCrop

package l2p.gameserver.clientpackets;

import l2p.gameserver.instancemanager.CastleManager;
import l2p.gameserver.instancemanager.CastleManorManager;
import l2p.gameserver.instancemanager.CastleManorManager.CropProcure;
import l2p.util.GArray;

/**
* Format: (ch) dd [dddc]
* d - manor id
* d - size
* [
* d - crop id
* d - sales
* d - price
* c - reward type
* ]
*/
public class RequestSetCrop extends L2GameClientPacket
{
  private int _size, _manorId;
  private long[] _items; // _size*4

  @Override
  protected void readImpl()
  {
    _manorId = readD();
    _size = readD();
    if(_size * 21 > _buf.remaining() || _size > Short.MAX_VALUE || _size <= 0)
    {
      _size = 0;
      return;
    }
    _items = new long[_size * 4];
    for(int i = 0; i < _size; i++)
    {
      _items[i * 4 + 0] = readD();
      _items[i * 4 + 1] = readQ();
      _items[i * 4 + 2] = readQ();
      _items[i * 4 + 3] = readC();
      if(_items[i * 4 + 0] < 1 || _items[i * 4 + 1] < 0 || _items[i * 4 + 2] < 0)
      {
        _size = 0;
        return;
      }
    }
  }

  @Override
  protected void runImpl()
  {
    if(_size < 1)
    {
      return;
    }
    GArray<CropProcure> crops = new GArray<CropProcure>();
    for(int i = 0; i < _size; i++)
    {
      int id = (int) _items[i * 4 + 0];
      long sales = _items[i * 4 + 1];
      long price = _items[i * 4 + 2];
      int type = (int) _items[i * 4 + 3];
      if(id > 0)
      {
        CropProcure s = CastleManorManager.getInstance().getNewCropProcure(id, sales, type, price, sales);
        crops.add(s);
      }
    }
    CastleManager.getInstance().getCastleByIndex(_manorId).setCropProcure(crops, CastleManorManager.PERIOD_NEXT);
    CastleManager.getInstance().getCastleByIndex(_manorId).saveCropData(CastleManorManager.PERIOD_NEXT);
  }
}
TOP

Related Classes of l2p.gameserver.clientpackets.RequestSetCrop

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.