PetLootHandler.java
上传用户:gwt600
上传日期:2021-06-03
资源大小:704k
文件大小:6k
源码类别:

游戏

开发平台:

Java

  1. /*
  2. This file is part of the OdinMS Maple Story Server
  3. Copyright (C) 2008 Patrick Huy <patrick.huy@frz.cc> 
  4. Matthias Butz <matze@odinms.de>
  5. Jan Christian Meyer <vimes@odinms.de>
  6. This program is free software: you can redistribute it and/or modify
  7. it under the terms of the GNU Affero General Public License version 3
  8. as published by the Free Software Foundation. You may not use, modify
  9. or distribute this program under any other version of the
  10. GNU Affero General Public License.
  11. This program is distributed in the hope that it will be useful,
  12. but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  14. GNU Affero General Public License for more details.
  15. You should have received a copy of the GNU Affero General Public License
  16. along with this program.  If not, see <http://www.gnu.org/licenses/>.
  17.  */
  18. package net.sf.odinms.net.channel.handler;
  19. import net.sf.odinms.client.MapleClient;
  20. import net.sf.odinms.client.MaplePet;
  21. import net.sf.odinms.client.anticheat.CheatingOffense;
  22. import net.sf.odinms.net.AbstractMaplePacketHandler;
  23. import net.sf.odinms.server.MapleInventoryManipulator;
  24. import net.sf.odinms.server.MapleItemInformationProvider;
  25. import net.sf.odinms.server.maps.MapleMapItem;
  26. import net.sf.odinms.server.maps.MapleMapObject;
  27. import net.sf.odinms.tools.MaplePacketCreator;
  28. import net.sf.odinms.tools.data.input.SeekableLittleEndianAccessor;
  29. import net.sf.odinms.client.MapleInventoryType;
  30. /**
  31.  *
  32.  * @author Raz
  33.  * This file is made by TheRamon
  34.  * Raz has mentioned to me that he DOES NOT want this to be released
  35.  * so please do not. FMS only.
  36.  */
  37. public class PetLootHandler extends AbstractMaplePacketHandler {
  38.     @Override
  39.     public void handlePacket(SeekableLittleEndianAccessor slea, MapleClient c) {
  40.         MapleItemInformationProvider ii = MapleItemInformationProvider.getInstance();
  41.         if (c.getPlayer().getNoPets() == 0) {
  42.             return;
  43.         }
  44.         MaplePet pet = c.getPlayer().getPet(c.getPlayer().getPetIndex(slea.readInt()));
  45.         slea.skip(13);
  46.         int oid = slea.readInt();
  47.         MapleMapObject ob = c.getPlayer().getMap().getMapObject(oid);
  48.         if (ob == null || pet == null) {
  49.             c.getSession().write(MaplePacketCreator.getInventoryFull());
  50.             return;
  51.         }
  52.         if (ob instanceof MapleMapItem) {
  53.             MapleMapItem mapitem = (MapleMapItem) ob;
  54.             synchronized (mapitem) {
  55.                 if (mapitem.isPickedUp()) {
  56.                     c.getSession().write(MaplePacketCreator.getInventoryFull());
  57.                     return;
  58.                 }
  59.                 double distance = pet.getPos().distanceSq(mapitem.getPosition());
  60.                 c.getPlayer().getCheatTracker().checkPickupAgain();
  61.                 if (distance > 90000.0) { // 300^2, 550 is approximatly the range of ultis
  62.                     c.getPlayer().getCheatTracker().registerOffense(CheatingOffense.ITEMVAC);
  63.                 } else if (distance > 22500.0) {
  64.                     c.getPlayer().getCheatTracker().registerOffense(CheatingOffense.SHORT_ITEMVAC);
  65.                 }
  66.                 if (mapitem.getMeso() > 0) {
  67.                     if (c.getPlayer().getInventory(MapleInventoryType.EQUIPPED).findById(1812000) != null) { //Evil hax until I find the right packet - Ramon
  68.                         c.getPlayer().gainMeso(mapitem.getMeso(), true, true);
  69.                         c.getPlayer().getMap().broadcastMessage(MaplePacketCreator.removeItemFromMap(mapitem.getObjectId(), 5, c.getPlayer().getId(), true, c.getPlayer().getPetIndex(pet)), mapitem.getPosition());
  70.                         c.getPlayer().getCheatTracker().pickupComplete();
  71.                         c.getPlayer().getMap().removeMapObject(ob);
  72.                     } else {
  73.                         c.getPlayer().getCheatTracker().pickupComplete();
  74.                         mapitem.setPickedUp(false);
  75.                         c.getSession().write(MaplePacketCreator.enableActions());
  76.                         return;
  77.                     }
  78.                 } else {
  79.                     if (ii.isPet(mapitem.getItem().getItemId())) {
  80.                         if (MapleInventoryManipulator.addById(c, mapitem.getItem().getItemId(), mapitem.getItem().getQuantity(), null)) {
  81.                             c.getPlayer().getMap().broadcastMessage(MaplePacketCreator.removeItemFromMap(mapitem.getObjectId(), 5, c.getPlayer().getId(), true, c.getPlayer().getPetIndex(pet)), mapitem.getPosition());
  82.                             c.getPlayer().getCheatTracker().pickupComplete();
  83.                             c.getPlayer().getMap().removeMapObject(ob);
  84.                         } else {
  85.                             c.getPlayer().getCheatTracker().pickupComplete();
  86.                             return;
  87.                         }
  88.                     } else {
  89.                         if (MapleInventoryManipulator.addFromDrop(c, mapitem.getItem(), true)) {
  90.                             c.getPlayer().getMap().broadcastMessage(MaplePacketCreator.removeItemFromMap(mapitem.getObjectId(), 5, c.getPlayer().getId(), true, c.getPlayer().getPetIndex(pet)), mapitem.getPosition());
  91.                             c.getPlayer().getCheatTracker().pickupComplete();
  92.                             c.getPlayer().getMap().removeMapObject(ob);
  93.                         } else {
  94.                             c.getPlayer().getCheatTracker().pickupComplete();
  95.                             return;
  96.                         }
  97.                     }
  98.                 }
  99.                 mapitem.setPickedUp(true);
  100.             }
  101.         }
  102.         c.getSession().write(MaplePacketCreator.enableActions());
  103.     }
  104. }