📄 maplequeststatus.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 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/>.
*/
/*
* MapleQuestStatus.java
*
* Created on 11. Dezember 2007, 23:24
*
* To change this template, choose Tools | Template Manager
* and open the template in the editor.
*/
package net.sf.odinms.client;
import java.util.Collections;
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
import net.sf.odinms.server.quest.MapleQuest;
/**
*
* @author Matze
*/
public class MapleQuestStatus {
public enum Status {
UNDEFINED(-1),
NOT_STARTED(0),
STARTED(1),
COMPLETED(2);
final int status;
private Status(int id) {
status = id;
}
public int getId() {
return status;
}
public static Status getById(int id) {
for (Status l : Status.values()) {
if (l.getId() == id) {
return l;
}
}
return null;
}
}
private MapleQuest quest;
private Status status;
private Map<Integer,Integer> killedMobs = new LinkedHashMap<Integer,Integer>();
private int npc;
private long completionTime;
private int forfeited = 0;
/** Creates a new instance of MapleQuestStatus */
public MapleQuestStatus(MapleQuest quest, Status status) {
this.quest = quest;
this.setStatus(status);
this.completionTime = System.currentTimeMillis();
if (status == Status.STARTED)
registerMobs();
}
public MapleQuestStatus(MapleQuest quest, Status status, int npc) {
this.quest = quest;
this.setStatus(status);
this.setNpc(npc);
this.completionTime = System.currentTimeMillis();
if (status == Status.STARTED)
registerMobs();
}
public MapleQuest getQuest() {
return quest;
}
public Status getStatus() {
return status;
}
public void setStatus(Status status) {
this.status = status;
}
public int getNpc() {
return npc;
}
public void setNpc(int npc) {
this.npc = npc;
}
private void registerMobs() {
List<Integer> relevants = quest.getRelevantMobs();
for (int i : relevants) {
killedMobs.put(i, 0);
}
}
public boolean mobKilled(int id) {
if (killedMobs.get(id) != null) {
killedMobs.put(id, killedMobs.get(id) + 1);
return true;
}
return false;
}
public void setMobKills(int id, int count) {
killedMobs.put(id, count);
}
public boolean hasMobKills() {
return killedMobs.size() > 0;
}
public int getMobKills(int id) {
if (killedMobs.get(id) == null) return 0;
return killedMobs.get(id);
}
public Map<Integer,Integer> getMobKills() {
return Collections.unmodifiableMap(killedMobs);
}
public int getMobNum(int id) {
int i = 0;
for (int kMob : killedMobs.values()) {
i++;
if (kMob == id) return i;
}
return i;
}
public long getCompletionTime() {
return completionTime;
}
public void setCompletionTime(long completionTime) {
this.completionTime = completionTime;
}
public int getForfeited() {
return forfeited;
}
public void setForfeited(int forfeited) {
if (forfeited >= this.forfeited) {
this.forfeited = forfeited;
} else {
throw new IllegalArgumentException("Can't set forfeits to something lower than before.");
}
}
}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -