MapleQuestRequirement.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. /*
  19.  * MapleQuestRequirement.java
  20.  *
  21.  * Created on 10. Dezember 2007, 23:15
  22.  */
  23. package net.sf.odinms.server.quest;
  24. import java.util.ArrayList;
  25. import java.util.Calendar;
  26. import java.util.Collections;
  27. import java.util.List;
  28. import net.sf.odinms.client.IItem;
  29. import net.sf.odinms.client.MapleCharacter;
  30. import net.sf.odinms.client.MapleInventoryType;
  31. import net.sf.odinms.client.MapleJob;
  32. import net.sf.odinms.client.MapleQuestStatus;
  33. import net.sf.odinms.provider.MapleData;
  34. import net.sf.odinms.provider.MapleDataTool;
  35. import net.sf.odinms.server.MapleItemInformationProvider;
  36. /**
  37.  *
  38.  * @author Matze
  39.  */
  40. public class MapleQuestRequirement {
  41. private MapleQuestRequirementType type;
  42. private MapleData data;
  43. private MapleQuest quest;
  44. /** Creates a new instance of MapleQuestRequirement */
  45. public MapleQuestRequirement(MapleQuest quest, MapleQuestRequirementType type, MapleData data) {
  46. this.type = type;
  47. this.data = data;
  48. this.quest = quest;
  49. }
  50. boolean check(MapleCharacter c, Integer npcid) {
  51. switch (getType()) {
  52. case JOB:
  53. for (MapleData jobEntry : getData().getChildren())
  54. if (c.getJob().equals(MapleJob.getById(MapleDataTool.getInt(jobEntry))) || c.isGM())
  55. return true;
  56. return false;
  57. case QUEST:
  58. for (MapleData questEntry : getData().getChildren()) {
  59. MapleQuestStatus q = c.getQuest(MapleQuest.getInstance(MapleDataTool.getInt(questEntry.getChildByPath("id"))));
  60. if (q == null && MapleQuestStatus.Status.getById(MapleDataTool.getInt(questEntry.getChildByPath("state"))).equals(MapleQuestStatus.Status.NOT_STARTED))
  61. continue;
  62. if (q == null || !q.getStatus().equals(MapleQuestStatus.Status.getById(MapleDataTool.getInt(questEntry.getChildByPath("state")))))
  63. return false;
  64. }
  65. return true;
  66. case ITEM:
  67. MapleItemInformationProvider ii = MapleItemInformationProvider.getInstance();
  68. for (MapleData itemEntry : getData().getChildren()) {
  69. int itemId = MapleDataTool.getInt(itemEntry.getChildByPath("id"));
  70. short quantity = 0;
  71. MapleInventoryType iType = ii.getInventoryType(itemId);
  72. for (IItem item : c.getInventory(iType).listById(itemId)) {
  73. quantity += item.getQuantity();
  74. }
  75. if (quantity < MapleDataTool.getInt(itemEntry.getChildByPath("count")) || MapleDataTool.getInt(itemEntry.getChildByPath("count")) <= 0 && quantity > 0) return false;
  76. }
  77. return true;
  78. case MIN_LEVEL:
  79. return c.getLevel() >= MapleDataTool.getInt(getData());
  80. case MAX_LEVEL:
  81. return c.getLevel() <= MapleDataTool.getInt(getData());
  82. case END_DATE:
  83. String timeStr = MapleDataTool.getString(getData());
  84. Calendar cal = Calendar.getInstance();
  85. cal.set(Integer.parseInt(timeStr.substring(0, 4)), Integer.parseInt(timeStr.substring(4, 6)), Integer.parseInt(timeStr.substring(6, 8)), Integer.parseInt(timeStr.substring(8, 10)), 0);
  86. return cal.getTimeInMillis() >= System.currentTimeMillis();
  87. case MOB:
  88. for (MapleData mobEntry : getData().getChildren()) {
  89. int mobId = MapleDataTool.getInt(mobEntry.getChildByPath("id"));
  90. int killReq = MapleDataTool.getInt(mobEntry.getChildByPath("count"));
  91. if (c.getQuest(quest).getMobKills(mobId) < killReq)
  92. return false;
  93. }
  94. return true;
  95. case NPC:
  96. return npcid == null || npcid == MapleDataTool.getInt(getData());
  97. case FIELD_ENTER:
  98. MapleData zeroField = getData().getChildByPath("0");
  99. if (zeroField != null) {
  100. return MapleDataTool.getInt(zeroField) == c.getMapId();
  101. }
  102. return false;
  103. case INTERVAL:
  104. return !c.getQuest(quest).getStatus().equals(MapleQuestStatus.Status.COMPLETED) || c.getQuest(quest).getCompletionTime() <= System.currentTimeMillis() - MapleDataTool.getInt(getData()) * 60 * 1000;
  105. // case PET:
  106. // case MIN_PET_TAMENESS:
  107. default:
  108. return true;
  109. }
  110. }
  111. public MapleQuestRequirementType getType() {
  112. return type;
  113. }
  114. public MapleData getData() {
  115. return data;
  116. }
  117. @Override
  118. public String toString() {
  119. return type.toString() + " " + data.toString() + " " + quest.toString();
  120. }
  121. public List<Integer> getQuestItemsToShowOnlyIfQuestIsActivated() {
  122. if (type != MapleQuestRequirementType.ITEM) return null;
  123. MapleItemInformationProvider ii = MapleItemInformationProvider.getInstance();
  124. List<Integer> delta = new ArrayList<Integer>();
  125. for (MapleData itemEntry : getData().getChildren()) {
  126. int itemId = MapleDataTool.getInt(itemEntry.getChildByPath("id"));
  127. if(ii.isQuestItem(itemId)) delta.add(itemId);
  128. }
  129. return Collections.unmodifiableList(delta);
  130. }
  131. }