Package com.l2jfrozen.gameserver.network.serverpackets

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

/* 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 javolution.util.FastList;

import com.l2jfrozen.gameserver.managers.CastleManager;
import com.l2jfrozen.gameserver.managers.CastleManorManager;
import com.l2jfrozen.gameserver.managers.CastleManorManager.CropProcure;
import com.l2jfrozen.gameserver.model.L2Manor;
import com.l2jfrozen.gameserver.model.actor.instance.L2PcInstance;
import com.l2jfrozen.gameserver.model.entity.siege.Castle;
import com.l2jfrozen.gameserver.network.L2GameClient;

/**
* format(packet 0xFE) ch dd [ddcdcdddddddcddc] c - id h - sub id d - manor id d - size [ d - crop id d - seed level c d
* - reward 1 id c d - reward 2 id d - next sale limit d d - min crop price d - max crop price d - today buy d - today
* price c - today reward d - next buy d - next price c - next reward ]
*
* @author l3x
*/
public class ExShowCropSetting extends L2GameServerPacket
{
  private static final String _S__FE_20_EXSHOWCROPSETTING = "[S] FE:20 ExShowCropSetting";

  private int _manorId;
  private int _count;
  private int[] _cropData; // data to send, size:_count*14

  @Override
  public void runImpl(L2GameClient client, L2PcInstance activeChar)
  {}

  public ExShowCropSetting(int manorId)
  {
    _manorId = manorId;
    Castle c = CastleManager.getInstance().getCastleById(_manorId);
    FastList<Integer> crops = L2Manor.getInstance().getCropsForCastle(_manorId);
    _count = crops.size();
    _cropData = new int[_count * 14];
    int i = 0;
    for(int cr : crops)
    {
      _cropData[i * 14 + 0] = cr;
      _cropData[i * 14 + 1] = L2Manor.getInstance().getSeedLevelByCrop(cr);
      _cropData[i * 14 + 2] = L2Manor.getInstance().getRewardItem(cr, 1);
      _cropData[i * 14 + 3] = L2Manor.getInstance().getRewardItem(cr, 2);
      _cropData[i * 14 + 4] = L2Manor.getInstance().getCropPuchaseLimit(cr);
      _cropData[i * 14 + 5] = 0; // Looks like not used
      _cropData[i * 14 + 6] = L2Manor.getInstance().getCropBasicPrice(cr) * 60 / 100;
      _cropData[i * 14 + 7] = L2Manor.getInstance().getCropBasicPrice(cr) * 10;
      CropProcure cropPr = c.getCrop(cr, CastleManorManager.PERIOD_CURRENT);
      if(cropPr != null)
      {
        _cropData[i * 14 + 8] = cropPr.getStartAmount();
        _cropData[i * 14 + 9] = cropPr.getPrice();
        _cropData[i * 14 + 10] = cropPr.getReward();
      }
      else
      {
        _cropData[i * 14 + 8] = 0;
        _cropData[i * 14 + 9] = 0;
        _cropData[i * 14 + 10] = 0;
      }
      cropPr = c.getCrop(cr, CastleManorManager.PERIOD_NEXT);
      if(cropPr != null)
      {
        _cropData[i * 14 + 11] = cropPr.getStartAmount();
        _cropData[i * 14 + 12] = cropPr.getPrice();
        _cropData[i * 14 + 13] = cropPr.getReward();
      }
      else
      {
        _cropData[i * 14 + 11] = 0;
        _cropData[i * 14 + 12] = 0;
        _cropData[i * 14 + 13] = 0;
      }
      i++;
    }
  }

  @Override
  public void writeImpl()
  {
    writeC(0xFE); // Id
    writeH(0x20); // SubId

    writeD(_manorId); // manor id
    writeD(_count); // size

    for(int i = 0; i < _count; i++)
    {
      writeD(_cropData[i * 14 + 0]); // crop id
      writeD(_cropData[i * 14 + 1]); // seed level
      writeC(1);
      writeD(_cropData[i * 14 + 2]); // reward 1 id
      writeC(1);
      writeD(_cropData[i * 14 + 3]); // reward 2 id

      writeD(_cropData[i * 14 + 4]); // next sale limit
      writeD(_cropData[i * 14 + 5]); // ???
      writeD(_cropData[i * 14 + 6]); // min crop price
      writeD(_cropData[i * 14 + 7]); // max crop price

      writeD(_cropData[i * 14 + 8]); // today buy
      writeD(_cropData[i * 14 + 9]); // today price
      writeC(_cropData[i * 14 + 10]); // today reward

      writeD(_cropData[i * 14 + 11]); // next buy
      writeD(_cropData[i * 14 + 12]); // next price
      writeC(_cropData[i * 14 + 13]); // next reward
    }
  }

  @Override
  public String getType()
  {
    return _S__FE_20_EXSHOWCROPSETTING;
  }
}
TOP

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

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.