Code/Resource
Windows Develop
Linux-Unix program
Internet-Socket-Network
Web Server
Browser Client
Ftp Server
Ftp Client
Browser Plugins
Proxy Server
Email Server
Email Client
WEB Mail
Firewall-Security
Telnet Server
Telnet Client
ICQ-IM-Chat
Search Engine
Sniffer Package capture
Remote Control
xml-soap-webservice
P2P
WEB(ASP,PHP,...)
TCP/IP Stack
SNMP
Grid Computing
SilverLight
DNS
Cluster Service
Network Security
Communication-Mobile
Game Program
Editor
Multimedia program
Graph program
Compiler program
Compress-Decompress algrithms
Crypt_Decrypt algrithms
Mathimatics-Numerical algorithms
MultiLanguage
Disk/Storage
Java Develop
assembly language
Applications
Other systems
Database system
Embeded-SCM Develop
FlashMX/Flex
source in ebook
Delphi VCL
OS Develop
MiddleWare
MPI
MacOS develop
LabView
ELanguage
Software/Tools
E-Books
Artical/Document
CheatingOffenseEntry.java
Package: src.rar [view]
Upload User: gwt600
Upload Date: 2021-06-03
Package Size: 704k
Code Size: 4k
Category:
Games
Development Platform:
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/>.
- */
- 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;
- }
- }