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

游戏

开发平台:

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.  * MapleQuestStatus.java
  20.  *
  21.  * Created on 11. Dezember 2007, 23:24
  22.  */
  23. package net.sf.odinms.client;
  24. import java.util.Collections;
  25. import java.util.LinkedHashMap;
  26. import java.util.List;
  27. import java.util.Map;
  28. import net.sf.odinms.server.quest.MapleQuest;
  29. /**
  30.  *
  31.  * @author Matze
  32.  */
  33. public class MapleQuestStatus {
  34.     public enum Status {
  35.         UNDEFINED(-1),
  36.         NOT_STARTED(0),
  37.         STARTED(1),
  38.         COMPLETED(2);
  39.         final int status;
  40.         private Status(int id) {
  41.             status = id;
  42.         }
  43.         public int getId() {
  44.             return status;
  45.         }
  46.         public static Status getById(int id) {
  47.             for (Status l : Status.values()) {
  48.                 if (l.getId() == id) {
  49.                     return l;
  50.                 }
  51.             }
  52.             return null;
  53.         }
  54.     }
  55.     private MapleQuest quest;
  56.     private Status status;
  57.     private Map<Integer, Integer> killedMobs = new LinkedHashMap<Integer, Integer>();
  58.     private int npc;
  59.     private long completionTime;
  60.     private int forfeited = 0;
  61.     /** Creates a new instance of MapleQuestStatus */
  62.     public MapleQuestStatus(MapleQuest quest, Status status) {
  63.         this.quest = quest;
  64.         this.setStatus(status);
  65.         this.completionTime = System.currentTimeMillis();
  66.         if (status == Status.STARTED) {
  67.             registerMobs();
  68.         }
  69.     }
  70.     public MapleQuestStatus(MapleQuest quest, Status status, int npc) {
  71.         this.quest = quest;
  72.         this.setStatus(status);
  73.         this.setNpc(npc);
  74.         this.completionTime = System.currentTimeMillis();
  75.         if (status == Status.STARTED) {
  76.             registerMobs();
  77.         }
  78.     }
  79.     public MapleQuest getQuest() {
  80.         return quest;
  81.     }
  82.     public Status getStatus() {
  83.         return status;
  84.     }
  85.     public void setStatus(Status status) {
  86.         this.status = status;
  87.     }
  88.     public int getNpc() {
  89.         return npc;
  90.     }
  91.     public void setNpc(int npc) {
  92.         this.npc = npc;
  93.     }
  94.     private void registerMobs() {
  95.         List<Integer> relevants = quest.getRelevantMobs();
  96.         for (int i : relevants) {
  97.             killedMobs.put(i, 0);
  98.         }
  99.     }
  100.     public boolean mobKilled(int id) {
  101.         if (killedMobs.get(id) != null) {
  102.             killedMobs.put(id, killedMobs.get(id) + 1);
  103.             return true;
  104.         }
  105.         return false;
  106.     }
  107.     public void setMobKills(int id, int count) {
  108.         killedMobs.put(id, count);
  109.     }
  110.     public boolean hasMobKills() {
  111.         return killedMobs.size() > 0;
  112.     }
  113.     public int getMobKills(int id) {
  114.         if (killedMobs.get(id) == null) {
  115.             return 0;
  116.         }
  117.         return killedMobs.get(id);
  118.     }
  119.     public Map<Integer, Integer> getMobKills() {
  120.         return Collections.unmodifiableMap(killedMobs);
  121.     }
  122.     public int getMobNum(int id) {
  123.         int i = 0;
  124.         for (int kMob : killedMobs.values()) {
  125.             i++;
  126.             if (kMob == id) {
  127.                 return i;
  128.             }
  129.         }
  130.         return i;
  131.     }
  132.     public long getCompletionTime() {
  133.         return completionTime;
  134.     }
  135.     public void setCompletionTime(long completionTime) {
  136.         this.completionTime = completionTime;
  137.     }
  138.     public int getForfeited() {
  139.         return forfeited;
  140.     }
  141.     public void setForfeited(int forfeited) {
  142.         if (forfeited >= this.forfeited) {
  143.             this.forfeited = forfeited;
  144.         } else {
  145.             throw new IllegalArgumentException("Can't set forfeits to something lower than before.");
  146.         }
  147.     }
  148. }