123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- /*
- * 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 net.sf.l2j.gameserver.clientpackets;
- import javolution.util.FastList;
- import net.sf.l2j.Config;
- import net.sf.l2j.gameserver.instancemanager.CastleManager;
- import net.sf.l2j.gameserver.instancemanager.CastleManorManager;
- import net.sf.l2j.gameserver.instancemanager.CastleManorManager.CropProcure;
- /**
- * Format: (ch) dd [dddc]
- * d - manor id
- * d - size
- * [
- * d - crop id
- * d - sales
- * d - price
- * c - reward type
- * ]
- * @author l3x
- *
- */
- public class RequestSetCrop extends L2GameClientPacket {
- private static final String _C__D0_0B_REQUESTSETCROP = "[C] D0:0B RequestSetCrop";
- private int _size;
- private int _manorId;
- private int[] _items; // _size*4
- @Override
- protected void readImpl()
- {
- _manorId = readD();
- _size = readD();
- if (_size * 13 > _buf.remaining() || _size > 500)
- {
- _size = 0;
- return;
- }
- _items = new int[_size * 4];
- for (int i = 0; i < _size; i++)
- {
- int itemId = readD();
- _items[i * 4 + 0] = itemId;
- int sales = readD();
- _items[i * 4 + 1] = sales;
- int price = readD();
- _items[i * 4 + 2] = price;
- int type = readC();
- _items[i * 4 + 3] = type;
- }
- }
- @Override
- protected void runImpl()
- {
- if (_size < 1)
- return;
- FastList<CropProcure> crops = new FastList<CropProcure>();
- for (int i = 0; i < _size; i++)
- {
- int id = _items[i * 4 + 0];
- int sales = _items[i * 4 + 1];
- int price = _items[i * 4 + 2];
- int type = _items[i * 4 + 3];
- if (id > 0)
- {
- CropProcure s = CastleManorManager.getInstance().getNewCropProcure(id, sales, type, price, sales);
- crops.add(s);
- }
- }
- CastleManager.getInstance().getCastleById(_manorId).setCropProcure(crops,
- CastleManorManager.PERIOD_NEXT);
- if (Config.ALT_MANOR_SAVE_ALL_ACTIONS)
- CastleManager.getInstance().getCastleById(_manorId).saveCropData(CastleManorManager.PERIOD_NEXT);
- }
- @Override
- public String getType()
- {
- return _C__D0_0B_REQUESTSETCROP;
- }
- }
|