PcFreight.java 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. /*
  2. * Copyright (C) 2004-2015 L2J Server
  3. *
  4. * This file is part of L2J Server.
  5. *
  6. * L2J Server is free software: you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation, either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * L2J Server 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 GNU
  14. * General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. package com.l2jserver.gameserver.model.itemcontainer;
  20. import com.l2jserver.Config;
  21. import com.l2jserver.gameserver.enums.ItemLocation;
  22. import com.l2jserver.gameserver.model.actor.instance.L2PcInstance;
  23. import com.l2jserver.gameserver.model.stats.Stats;
  24. /**
  25. * @author UnAfraid
  26. */
  27. public class PcFreight extends ItemContainer
  28. {
  29. private final L2PcInstance _owner;
  30. private final int _ownerId;
  31. public PcFreight(int object_id)
  32. {
  33. _owner = null;
  34. _ownerId = object_id;
  35. restore();
  36. }
  37. public PcFreight(L2PcInstance owner)
  38. {
  39. _owner = owner;
  40. _ownerId = owner.getObjectId();
  41. }
  42. @Override
  43. public int getOwnerId()
  44. {
  45. return _ownerId;
  46. }
  47. @Override
  48. public L2PcInstance getOwner()
  49. {
  50. return _owner;
  51. }
  52. @Override
  53. public ItemLocation getBaseLocation()
  54. {
  55. return ItemLocation.FREIGHT;
  56. }
  57. @Override
  58. public String getName()
  59. {
  60. return "Freight";
  61. }
  62. @Override
  63. public boolean validateCapacity(long slots)
  64. {
  65. int curSlots = _owner == null ? Config.ALT_FREIGHT_SLOTS : Config.ALT_FREIGHT_SLOTS + (int) _owner.getStat().calcStat(Stats.FREIGHT_LIM, 0, null, null);
  66. return ((getSize() + slots) <= curSlots);
  67. }
  68. @Override
  69. public void refreshWeight()
  70. {
  71. }
  72. }