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

游戏

开发平台:

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. package net.sf.odinms.client.anticheat;
  19. import java.awt.Point;
  20. import java.lang.ref.WeakReference;
  21. import java.util.ArrayList;
  22. import java.util.Collections;
  23. import java.util.Comparator;
  24. import java.util.LinkedHashMap;
  25. import java.util.List;
  26. import java.util.Map;
  27. import java.util.concurrent.ScheduledFuture;
  28. import net.sf.odinms.client.MapleCharacter;
  29. import net.sf.odinms.server.AutobanManager;
  30. import net.sf.odinms.server.TimerManager;
  31. import net.sf.odinms.tools.StringUtil;
  32. public class CheatTracker {
  33.     private Map<CheatingOffense, CheatingOffenseEntry> offenses = Collections.synchronizedMap(new LinkedHashMap<CheatingOffense, CheatingOffenseEntry>());
  34.     private WeakReference<MapleCharacter> chr;
  35.     private long regenHPSince;
  36.     private long regenMPSince;
  37.     private int numHPRegens;
  38.     private int numMPRegens;
  39.     private int numSequentialAttacks;
  40.     private long lastAttackTime;
  41.     private long lastDamage = 0;
  42.     private long takingDamageSince;
  43.     private int numSequentialDamage = 0;
  44.     private long lastDamageTakenTime = 0;
  45.     private int numSequentialSummonAttack = 0;
  46.     private long summonSummonTime = 0;
  47.     private int numSameDamage = 0;
  48.     private long attackingSince;
  49.     private Point lastMonsterMove;
  50.     private int monsterMoveCount;
  51.     private int attacksWithoutHit = 0;
  52.     private Boolean pickupComplete = Boolean.TRUE;
  53.     private long[] lastTime = new long[6];
  54.     private ScheduledFuture<?> invalidationTask;
  55.     public CheatTracker(MapleCharacter chr) {
  56.         this.chr = new WeakReference<MapleCharacter>(chr);
  57.         invalidationTask = TimerManager.getInstance().register(new InvalidationTask(), 60000);
  58.         takingDamageSince = attackingSince = regenMPSince = regenHPSince = System.currentTimeMillis();
  59.         for (int i = 0; i < lastTime.length; i++) {
  60.             lastTime[i] = 0;
  61.         }
  62.     }
  63.     /**
  64.      * Type 0 - Save limit.
  65.      * Type 1 - Contact GM.
  66.      * Type 2 - Mesos drop
  67.      * Type 3 - Smega
  68.      * Type 4 - NPC.
  69.      * Type 5 - Change map
  70.      * 
  71.      * @param limit
  72.      * @param type
  73.      * @return
  74.      */
  75.     public synchronized boolean Spam(int limit, int type) {
  76.         if (type < 0 || lastTime.length < type) {
  77.             type = 1; // default xD
  78.         }
  79.         if (!chr.get().isGM()) {
  80.             if (System.currentTimeMillis() < limit + lastTime[type]) {
  81.                 return true;
  82.             }
  83.         }
  84.         lastTime[type] = System.currentTimeMillis();
  85.         return false;
  86.     }
  87.     public boolean checkAttack(int skillId) {
  88.         numSequentialAttacks++;
  89.         long oldLastAttackTime = lastAttackTime;
  90.         lastAttackTime = System.currentTimeMillis();
  91.         long attackTime = lastAttackTime - attackingSince;
  92.         if (numSequentialAttacks > 3) {
  93.             final int divisor;
  94.             if (skillId == 3121004 || skillId == 5221004) { // hurricane
  95.                 divisor = 50;
  96.             } else {
  97.                 divisor = 50;
  98.             }
  99.             if (attackTime / divisor < numSequentialAttacks) {
  100.                 registerOffense(CheatingOffense.FASTATTACK);
  101.                 return false;
  102.             }
  103.         }
  104.         if (lastAttackTime - oldLastAttackTime > 1500) {
  105.             attackingSince = lastAttackTime;
  106.             numSequentialAttacks = 0;
  107.         }
  108.         return true;
  109.     }
  110.     public void checkTakeDamage() {
  111.         numSequentialDamage++;
  112.         long oldLastDamageTakenTime = lastDamageTakenTime;
  113.         lastDamageTakenTime = System.currentTimeMillis();
  114.         long timeBetweenDamage = lastDamageTakenTime - takingDamageSince;
  115.         if (timeBetweenDamage / 500 < numSequentialDamage) {
  116.             registerOffense(CheatingOffense.FAST_TAKE_DAMAGE);
  117.         }
  118.         if (lastDamageTakenTime - oldLastDamageTakenTime > 4500) {
  119.             takingDamageSince = lastDamageTakenTime;
  120.             numSequentialDamage = 0;
  121.         }
  122.     }
  123.     public int checkDamage(long dmg) {
  124.         if (dmg > 1 && lastDamage == dmg) {
  125.             numSameDamage++;
  126.         } else {
  127.             lastDamage = dmg;
  128.             numSameDamage = 0;
  129.         }
  130.         return numSameDamage;
  131.     }
  132.     public void checkMoveMonster(Point pos) {
  133.         if (pos.equals(lastMonsterMove)) {
  134.             monsterMoveCount++;
  135.             if (monsterMoveCount > 15) {
  136.                 registerOffense(CheatingOffense.MOVE_MONSTERS);
  137.             }
  138.         } else {
  139.             lastMonsterMove = pos;
  140.             monsterMoveCount = 1;
  141.         }
  142.     }
  143.     public boolean checkHPRegen() {
  144.         numHPRegens++;
  145.         if ((System.currentTimeMillis() - regenHPSince) / 10000 < numHPRegens) {
  146.             registerOffense(CheatingOffense.FAST_HP_REGEN);
  147.             return false;
  148.         }
  149.         return true;
  150.     }
  151.     public void resetHPRegen() {
  152.         regenHPSince = System.currentTimeMillis();
  153.         numHPRegens = 0;
  154.     }
  155.     public boolean checkMPRegen() {
  156.         numMPRegens++;
  157.         long allowedRegens = (System.currentTimeMillis() - regenMPSince) / 10000;
  158.         // System.out.println(numMPRegens + "/" + allowedRegens);
  159.         if (allowedRegens < numMPRegens) {
  160.             registerOffense(CheatingOffense.FAST_MP_REGEN);
  161.             return false;
  162.         }
  163.         return true;
  164.     }
  165.     public void resetMPRegen() {
  166.         regenMPSince = System.currentTimeMillis();
  167.         numMPRegens = 0;
  168.     }
  169.     public void resetSummonAttack() {
  170.         summonSummonTime = System.currentTimeMillis();
  171.         numSequentialSummonAttack = 0;
  172.     }
  173.     public boolean checkSummonAttack() {
  174.         numSequentialSummonAttack++;
  175.         long allowedAttacks = (System.currentTimeMillis() - summonSummonTime) / 2000 + 1;
  176.         if (allowedAttacks < numSequentialAttacks) {
  177.             registerOffense(CheatingOffense.FAST_SUMMON_ATTACK);
  178.             return false;
  179.         }
  180.         return true;
  181.     }
  182.     public void checkPickupAgain() {
  183.         synchronized (pickupComplete) {
  184.             if (pickupComplete) {
  185.                 pickupComplete = Boolean.FALSE;
  186.             } else {
  187.                 registerOffense(CheatingOffense.TUBI);
  188.             }
  189.         }
  190.     }
  191.     public void pickupComplete() {
  192.         synchronized (pickupComplete) {
  193.             pickupComplete = Boolean.TRUE;
  194.         }
  195.     }
  196.     public int getAttacksWithoutHit() {
  197.         return attacksWithoutHit;
  198.     }
  199.     public void setAttacksWithoutHit(int attacksWithoutHit) {
  200.         this.attacksWithoutHit = attacksWithoutHit;
  201.     }
  202.     public void registerOffense(CheatingOffense offense) {
  203.         registerOffense(offense, null);
  204.     }
  205.     public void registerOffense(CheatingOffense offense, String param) {
  206.         MapleCharacter chrhardref = chr.get();
  207.         if (chrhardref == null || !offense.isEnabled()) {
  208.             return;
  209.         }
  210.         CheatingOffenseEntry entry = offenses.get(offense);
  211.         if (entry != null && entry.isExpired()) {
  212.             expireEntry(entry);
  213.             entry = null;
  214.         }
  215.         if (entry == null) {
  216.             entry = new CheatingOffenseEntry(offense, chrhardref);
  217.         }
  218.         if (param != null) {
  219.             entry.setParam(param);
  220.         }
  221.         entry.incrementCount();
  222.         if (offense.shouldAutoban(entry.getCount())) {
  223.             AutobanManager.getInstance().autoban(chrhardref.getClient(), StringUtil.makeEnumHumanReadable(offense.name()));
  224.         }
  225.         offenses.put(offense, entry);
  226.         CheatingOffensePersister.getInstance().persistEntry(entry);
  227.     }
  228.     public void expireEntry(CheatingOffenseEntry coe) {
  229.         offenses.remove(coe.getOffense());
  230.     }
  231.     public int getPoints() {
  232.         int ret = 0;
  233.         CheatingOffenseEntry[] offenses_copy;
  234.         synchronized (offenses) {
  235.             offenses_copy = offenses.values().toArray(new CheatingOffenseEntry[offenses.size()]);
  236.         }
  237.         for (CheatingOffenseEntry entry : offenses_copy) {
  238.             if (entry.isExpired()) {
  239.                 expireEntry(entry);
  240.             } else {
  241.                 ret += entry.getPoints();
  242.             }
  243.         }
  244.         return ret;
  245.     }
  246.     public Map<CheatingOffense, CheatingOffenseEntry> getOffenses() {
  247.         return Collections.unmodifiableMap(offenses);
  248.     }
  249.     public String getSummary() {
  250.         StringBuilder ret = new StringBuilder();
  251.         List<CheatingOffenseEntry> offenseList = new ArrayList<CheatingOffenseEntry>();
  252.         synchronized (offenses) {
  253.             for (CheatingOffenseEntry entry : offenses.values()) {
  254.                 if (!entry.isExpired()) {
  255.                     offenseList.add(entry);
  256.                 }
  257.             }
  258.         }
  259.         Collections.sort(offenseList, new Comparator<CheatingOffenseEntry>() {
  260.             @Override
  261.             public int compare(CheatingOffenseEntry o1, CheatingOffenseEntry o2) {
  262.                 int thisVal = o1.getPoints();
  263.                 int anotherVal = o2.getPoints();
  264.                 return (thisVal < anotherVal ? 1 : (thisVal == anotherVal ? 0 : -1));
  265.             }
  266.         });
  267.         int to = Math.min(offenseList.size(), 4);
  268.         for (int x = 0; x < to; x++) {
  269.             ret.append(StringUtil.makeEnumHumanReadable(offenseList.get(x).getOffense().name()));
  270.             ret.append(": ");
  271.             ret.append(offenseList.get(x).getCount());
  272.             if (x != to - 1) {
  273.                 ret.append(" ");
  274.             }
  275.         }
  276.         return ret.toString();
  277.     }
  278.     public void dispose() {
  279.         invalidationTask.cancel(false);
  280.     }
  281.     private class InvalidationTask implements Runnable {
  282.         @Override
  283.         public void run() {
  284.             CheatingOffenseEntry[] offenses_copy;
  285.             synchronized (offenses) {
  286.                 offenses_copy = offenses.values().toArray(new CheatingOffenseEntry[offenses.size()]);
  287.             }
  288.             for (CheatingOffenseEntry offense : offenses_copy) {
  289.                 if (offense.isExpired()) {
  290.                     expireEntry(offense);
  291.                 }
  292.             }
  293.             if (chr.get() == null) {
  294.                 dispose();
  295.             }
  296.         }
  297.     }
  298. }