⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 cheatingoffenseentry.java.svn-base

📁 冒险岛私服Java版服务端(Odinms)源代码。学习JAVA开发的朋友
💻 SVN-BASE
字号:
/*
	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/>.
*/

package net.sf.odinms.client.anticheat;

import net.sf.odinms.client.MapleCharacter;

public class CheatingOffenseEntry {
	private CheatingOffense offense;
	private int count = 0;
	private MapleCharacter chrfor;
	private long lastOffense;
	private long firstOffense;
	private String param;
	private int dbid = -1;

	public CheatingOffenseEntry(CheatingOffense offense, MapleCharacter chrfor) {
		super();
		this.offense = offense;
		this.chrfor = chrfor;
		firstOffense = System.currentTimeMillis();
	}

	public CheatingOffense getOffense() {
		return offense;
	}

	public int getCount() {
		return count;
	}

	public MapleCharacter getChrfor() {
		return chrfor;
	}

	public void incrementCount() {
		this.count++;
		lastOffense = System.currentTimeMillis();
	}

	public boolean isExpired() {
		if (lastOffense < (System.currentTimeMillis() - offense.getValidityDuration())) {
			return true;
		}
		return false;
	}

	public int getPoints() {
		return count * offense.getPoints();
	}

	public String getParam() {
		return param;
	}

	public void setParam(String param) {
		this.param = param;
	}

	public long getLastOffenseTime() {
		return lastOffense;
	}

	public int getDbId() {
		return dbid;
	}

	public void setDbId(int dbid) {
		this.dbid = dbid;
	}

	@Override
	public int hashCode() {
		final int prime = 31;
		int result = 1;
		result = prime * result + ((chrfor == null) ? 0 : chrfor.getId());
		result = prime * result + ((offense == null) ? 0 : offense.hashCode());
		result = prime * result + Long.valueOf(firstOffense).hashCode();
		return result;
	}

	@Override
	public boolean equals(Object obj) {
		if (this == obj)
			return true;
		if (obj == null)
			return false;
		if (getClass() != obj.getClass())
			return false;
		final CheatingOffenseEntry other = (CheatingOffenseEntry) obj;
		if (chrfor == null) {
			if (other.chrfor != null)
				return false;
		} else if (chrfor.getId() != other.chrfor.getId())
			return false;
		if (offense == null) {
			if (other.offense != null)
				return false;
		} else if (!offense.equals(other.offense))
			return false;
		if (other.firstOffense != firstOffense) {
			return false;
		}
		return true;
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -