123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113 |
- /*
- * 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.serverpackets;
- import java.math.BigInteger;
- import java.util.ArrayList;
- import java.util.List;
- /**
- * This class is made to create packets with any format
- * @author Maktakien
- *
- */
- public class AdminForgePacket extends L2GameServerPacket
- {
- private List<Part> _parts = new ArrayList<Part>();
- private class Part
- {
- public byte b;
- public String str;
- public Part(byte bb, String string)
- {
- b = bb;
- str = string;
- }
- }
- public AdminForgePacket()
- {
- }
- /* (non-Javadoc)
- * @see net.sf.l2j.gameserver.serverpackets.ServerBasePacket#writeImpl()
- */
- @Override
- protected void writeImpl()
- {
- for(Part p : _parts)
- {
- generate(p.b, p.str);
- }
- }
- /* (non-Javadoc)
- * @see net.sf.l2j.gameserver.BasePacket#getType()
- */
- @Override
- public String getType()
- {
- return "[S] -1 AdminForge";
- }
- /**
- * @param b
- * @param string
- */
- public boolean generate(byte b, String string)
- {
- // TODO Auto-generated method stub
- if((b == 'C')||(b == 'c'))
- {
- writeC(Integer.decode(string));
- return true;
- }
- else if((b == 'D')||(b == 'd'))
- {
- writeD(Integer.decode(string));
- return true;
- }
- else if((b == 'H')||(b == 'h'))
- {
- writeH(Integer.decode(string));
- return true;
- }
- else if((b == 'F')||(b == 'f'))
- {
- writeF(Double.parseDouble(string));
- return true;
- }
- else if((b == 'S')||(b == 's'))
- {
- writeS(string);
- return true;
- }
- else if((b == 'B')||(b == 'b')||(b == 'X')||(b == 'x'))
- {
- writeB(new BigInteger(string).toByteArray());
- return true;
- }
- return false;
- }
- public void addPart(byte b, String string)
- {
- _parts.add(new Part(b, string));
- }
- }
|