90 lines
3.3 KiB
Java
90 lines
3.3 KiB
Java
/*
|
|
This file is part of the OdinMS Maple Story Server
|
|
Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc>
|
|
Matthias Butz <matze@odinms.de>
|
|
Jan Christian Meyer <vimes@odinms.de>
|
|
|
|
This program is free software: you can redistribute it and/or modify
|
|
it under the terms of the GNU Affero General Public License as
|
|
published by the Free Software Foundation version 3 as published by
|
|
the Free Software Foundation. You may not use, modify or distribute
|
|
this program under any other version of the GNU Affero General Public
|
|
License.
|
|
|
|
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 Affero General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Affero General Public License
|
|
along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
*/
|
|
package net.server.channel.handlers;
|
|
|
|
import client.MapleCharacter;
|
|
import client.MapleClient;
|
|
import client.inventory.MaplePet;
|
|
import net.AbstractMaplePacketHandler;
|
|
import server.maps.MapleMapItem;
|
|
import server.maps.MapleMapObject;
|
|
import tools.PacketCreator;
|
|
import tools.data.input.SeekableLittleEndianAccessor;
|
|
|
|
import java.util.Set;
|
|
|
|
/**
|
|
* @author TheRamon
|
|
* @author Ronan
|
|
*/
|
|
public final class PetLootHandler extends AbstractMaplePacketHandler {
|
|
@Override
|
|
public final void handlePacket(SeekableLittleEndianAccessor slea, MapleClient c) {
|
|
MapleCharacter chr = c.getPlayer();
|
|
|
|
int petIndex = chr.getPetIndex(slea.readInt());
|
|
MaplePet pet = chr.getPet(petIndex);
|
|
if (pet == null || !pet.isSummoned()) {
|
|
c.announce(PacketCreator.enableActions());
|
|
return;
|
|
}
|
|
|
|
slea.skip(13);
|
|
int oid = slea.readInt();
|
|
MapleMapObject ob = chr.getMap().getMapObject(oid);
|
|
try {
|
|
MapleMapItem mapitem = (MapleMapItem) ob;
|
|
if (mapitem.getMeso() > 0) {
|
|
if (!chr.isEquippedMesoMagnet()) {
|
|
c.announce(PacketCreator.enableActions());
|
|
return;
|
|
}
|
|
|
|
if (chr.isEquippedPetItemIgnore()) {
|
|
final Set<Integer> petIgnore = chr.getExcludedItems();
|
|
if(!petIgnore.isEmpty() && petIgnore.contains(Integer.MAX_VALUE)) {
|
|
c.announce(PacketCreator.enableActions());
|
|
return;
|
|
}
|
|
}
|
|
} else {
|
|
if (!chr.isEquippedItemPouch()) {
|
|
c.announce(PacketCreator.enableActions());
|
|
return;
|
|
}
|
|
|
|
if (chr.isEquippedPetItemIgnore()) {
|
|
final Set<Integer> petIgnore = chr.getExcludedItems();
|
|
if(!petIgnore.isEmpty() && petIgnore.contains(mapitem.getItem().getItemId())) {
|
|
c.announce(PacketCreator.enableActions());
|
|
return;
|
|
}
|
|
}
|
|
}
|
|
|
|
chr.pickupItem(ob, petIndex);
|
|
} catch (NullPointerException | ClassCastException e) {
|
|
c.announce(PacketCreator.enableActions());
|
|
}
|
|
}
|
|
}
|