mirror of
https://github.com/NoCheatPlus/NoCheatPlus.git
synced 2024-11-02 08:40:01 +01:00
Mostly some Metrics related changes.
This commit is contained in:
parent
f662f98369
commit
c94bd978a8
@ -34,7 +34,6 @@ import fr.neatmonster.nocheatplus.metrics.Metrics;
|
|||||||
import fr.neatmonster.nocheatplus.metrics.Metrics.Graph;
|
import fr.neatmonster.nocheatplus.metrics.Metrics.Graph;
|
||||||
import fr.neatmonster.nocheatplus.metrics.Metrics.Plotter;
|
import fr.neatmonster.nocheatplus.metrics.Metrics.Plotter;
|
||||||
import fr.neatmonster.nocheatplus.metrics.MetricsData;
|
import fr.neatmonster.nocheatplus.metrics.MetricsData;
|
||||||
import fr.neatmonster.nocheatplus.metrics.MetricsData.TicksPlotter;
|
|
||||||
import fr.neatmonster.nocheatplus.players.Permissions;
|
import fr.neatmonster.nocheatplus.players.Permissions;
|
||||||
import fr.neatmonster.nocheatplus.utilities.LagMeasureTask;
|
import fr.neatmonster.nocheatplus.utilities.LagMeasureTask;
|
||||||
|
|
||||||
@ -125,47 +124,34 @@ public class NoCheatPlus extends JavaPlugin implements Listener {
|
|||||||
getCommand("nocheatplus").setExecutor(new CommandHandler(this));
|
getCommand("nocheatplus").setExecutor(new CommandHandler(this));
|
||||||
|
|
||||||
// Setup the graphs, plotters and start Metrics.
|
// Setup the graphs, plotters and start Metrics.
|
||||||
if (ConfigManager.getConfigFile().getBoolean(ConfPaths.MISCELLANEOUS_REPORTTOMETRICS))
|
if (ConfigManager.getConfigFile().getBoolean(ConfPaths.MISCELLANEOUS_REPORTTOMETRICS)) {
|
||||||
|
MetricsData.initialize();
|
||||||
try {
|
try {
|
||||||
final Metrics metrics = new Metrics(this);
|
final Metrics metrics = new Metrics(this);
|
||||||
final Graph eventsChecked = metrics.createGraph("Events Checked");
|
|
||||||
final Graph checksFailed = metrics.createGraph("Checks Failed");
|
final Graph checksFailed = metrics.createGraph("Checks Failed");
|
||||||
final Graph violationLevels = metrics.createGraph("Violation Levels");
|
|
||||||
for (final CheckType type : CheckType.values())
|
for (final CheckType type : CheckType.values())
|
||||||
if (type.getParent() != null) {
|
if (type.getParent() != null)
|
||||||
eventsChecked.addPlotter(new Plotter(type.name()) {
|
|
||||||
|
|
||||||
@Override
|
|
||||||
public int getValue() {
|
|
||||||
final int checked = MetricsData.getChecked(type);
|
|
||||||
MetricsData.resetChecked(type);
|
|
||||||
return checked;
|
|
||||||
}
|
|
||||||
});
|
|
||||||
checksFailed.addPlotter(new Plotter(type.name()) {
|
checksFailed.addPlotter(new Plotter(type.name()) {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getValue() {
|
public int getValue() {
|
||||||
final int failed = MetricsData.getFailed(type);
|
return MetricsData.getFailed(type);
|
||||||
MetricsData.resetFailed(type);
|
|
||||||
return failed;
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
violationLevels.addPlotter(new Plotter(type.name()) {
|
final Graph serverTicks = metrics.createGraph("Server Ticks");
|
||||||
|
final int[] ticksArray = new int[] {0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18,
|
||||||
|
19, 20};
|
||||||
|
for (final int ticks : ticksArray)
|
||||||
|
serverTicks.addPlotter(new Plotter(ticks + " tick(s)") {
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
public int getValue() {
|
public int getValue() {
|
||||||
final int violationLevel = (int) MetricsData.getViolationLevel(type);
|
return MetricsData.getTicks(ticks);
|
||||||
MetricsData.resetViolationLevel(type);
|
|
||||||
return violationLevel;
|
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
}
|
|
||||||
final Graph serverTicks = metrics.createGraph("Server Ticks");
|
|
||||||
for (int ticks = 0; ticks < 21; ticks++)
|
|
||||||
serverTicks.addPlotter(new TicksPlotter(ticks));
|
|
||||||
metrics.start();
|
metrics.start();
|
||||||
} catch (final Exception e) {}
|
} catch (final Exception e) {}
|
||||||
|
}
|
||||||
|
|
||||||
// Is a new update available?
|
// Is a new update available?
|
||||||
try {
|
try {
|
||||||
|
@ -82,7 +82,6 @@ public abstract class Check {
|
|||||||
* @return true, if the event should be cancelled
|
* @return true, if the event should be cancelled
|
||||||
*/
|
*/
|
||||||
protected boolean executeActions(final ViolationData violationData) {
|
protected boolean executeActions(final ViolationData violationData) {
|
||||||
MetricsData.addViolation(violationData);
|
|
||||||
ViolationHistory.getHistory(violationData.player).log(getClass().getName(), violationData.addedVL);
|
ViolationHistory.getHistory(violationData.player).log(getClass().getName(), violationData.addedVL);
|
||||||
try {
|
try {
|
||||||
// Check a bypass permission.
|
// Check a bypass permission.
|
||||||
@ -95,6 +94,9 @@ public abstract class Check {
|
|||||||
// One of the hooks has decided to cancel the VL processing, return false.
|
// One of the hooks has decided to cancel the VL processing, return false.
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
|
// Add this failed check to the Metrics data.
|
||||||
|
MetricsData.addFailed(type);
|
||||||
|
|
||||||
final long time = System.currentTimeMillis() / 1000L;
|
final long time = System.currentTimeMillis() / 1000L;
|
||||||
boolean cancel = false;
|
boolean cancel = false;
|
||||||
for (final Action action : violationData.getActions())
|
for (final Action action : violationData.getActions())
|
||||||
|
@ -6,7 +6,6 @@ import org.bukkit.util.Vector;
|
|||||||
|
|
||||||
import fr.neatmonster.nocheatplus.checks.Check;
|
import fr.neatmonster.nocheatplus.checks.Check;
|
||||||
import fr.neatmonster.nocheatplus.checks.CheckType;
|
import fr.neatmonster.nocheatplus.checks.CheckType;
|
||||||
import fr.neatmonster.nocheatplus.metrics.MetricsData;
|
|
||||||
import fr.neatmonster.nocheatplus.utilities.CheckUtils;
|
import fr.neatmonster.nocheatplus.utilities.CheckUtils;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -40,9 +39,6 @@ public class Direction extends Check {
|
|||||||
* @return true, if successful
|
* @return true, if successful
|
||||||
*/
|
*/
|
||||||
public boolean check(final Player player, final Location location) {
|
public boolean check(final Player player, final Location location) {
|
||||||
// Metrics data.
|
|
||||||
MetricsData.addChecked(type);
|
|
||||||
|
|
||||||
final BlockBreakData data = BlockBreakData.getData(player);
|
final BlockBreakData data = BlockBreakData.getData(player);
|
||||||
|
|
||||||
boolean cancel = false;
|
boolean cancel = false;
|
||||||
|
@ -7,7 +7,6 @@ import org.bukkit.entity.Player;
|
|||||||
|
|
||||||
import fr.neatmonster.nocheatplus.checks.Check;
|
import fr.neatmonster.nocheatplus.checks.Check;
|
||||||
import fr.neatmonster.nocheatplus.checks.CheckType;
|
import fr.neatmonster.nocheatplus.checks.CheckType;
|
||||||
import fr.neatmonster.nocheatplus.metrics.MetricsData;
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* MM""""""""`M dP M#"""""""'M dP
|
* MM""""""""`M dP M#"""""""'M dP
|
||||||
@ -47,9 +46,6 @@ public class FastBreak extends Check {
|
|||||||
* @return true, if successful
|
* @return true, if successful
|
||||||
*/
|
*/
|
||||||
public boolean check(final Player player, final Block block) {
|
public boolean check(final Player player, final Block block) {
|
||||||
// Metrics data.
|
|
||||||
MetricsData.addChecked(type);
|
|
||||||
|
|
||||||
final BlockBreakConfig cc = BlockBreakConfig.getConfig(player);
|
final BlockBreakConfig cc = BlockBreakConfig.getConfig(player);
|
||||||
final BlockBreakData data = BlockBreakData.getData(player);
|
final BlockBreakData data = BlockBreakData.getData(player);
|
||||||
|
|
||||||
|
@ -4,7 +4,6 @@ import org.bukkit.entity.Player;
|
|||||||
|
|
||||||
import fr.neatmonster.nocheatplus.checks.Check;
|
import fr.neatmonster.nocheatplus.checks.Check;
|
||||||
import fr.neatmonster.nocheatplus.checks.CheckType;
|
import fr.neatmonster.nocheatplus.checks.CheckType;
|
||||||
import fr.neatmonster.nocheatplus.metrics.MetricsData;
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* M"""""""`YM MP""""""`MM oo
|
* M"""""""`YM MP""""""`MM oo
|
||||||
@ -36,9 +35,6 @@ public class NoSwing extends Check {
|
|||||||
* @return true, if successful
|
* @return true, if successful
|
||||||
*/
|
*/
|
||||||
public boolean check(final Player player) {
|
public boolean check(final Player player) {
|
||||||
// Metrics data.
|
|
||||||
MetricsData.addChecked(type);
|
|
||||||
|
|
||||||
final BlockBreakData data = BlockBreakData.getData(player);
|
final BlockBreakData data = BlockBreakData.getData(player);
|
||||||
|
|
||||||
boolean cancel = false;
|
boolean cancel = false;
|
||||||
|
@ -8,7 +8,6 @@ import fr.neatmonster.nocheatplus.actions.ParameterName;
|
|||||||
import fr.neatmonster.nocheatplus.checks.Check;
|
import fr.neatmonster.nocheatplus.checks.Check;
|
||||||
import fr.neatmonster.nocheatplus.checks.CheckType;
|
import fr.neatmonster.nocheatplus.checks.CheckType;
|
||||||
import fr.neatmonster.nocheatplus.checks.ViolationData;
|
import fr.neatmonster.nocheatplus.checks.ViolationData;
|
||||||
import fr.neatmonster.nocheatplus.metrics.MetricsData;
|
|
||||||
import fr.neatmonster.nocheatplus.utilities.CheckUtils;
|
import fr.neatmonster.nocheatplus.utilities.CheckUtils;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -48,9 +47,6 @@ public class Reach extends Check {
|
|||||||
* @return true, if successful
|
* @return true, if successful
|
||||||
*/
|
*/
|
||||||
public boolean check(final Player player, final Location location) {
|
public boolean check(final Player player, final Location location) {
|
||||||
// Metrics data.
|
|
||||||
MetricsData.addChecked(type);
|
|
||||||
|
|
||||||
final BlockBreakData data = BlockBreakData.getData(player);
|
final BlockBreakData data = BlockBreakData.getData(player);
|
||||||
|
|
||||||
boolean cancel = false;
|
boolean cancel = false;
|
||||||
|
@ -6,7 +6,6 @@ import org.bukkit.util.Vector;
|
|||||||
|
|
||||||
import fr.neatmonster.nocheatplus.checks.Check;
|
import fr.neatmonster.nocheatplus.checks.Check;
|
||||||
import fr.neatmonster.nocheatplus.checks.CheckType;
|
import fr.neatmonster.nocheatplus.checks.CheckType;
|
||||||
import fr.neatmonster.nocheatplus.metrics.MetricsData;
|
|
||||||
import fr.neatmonster.nocheatplus.utilities.CheckUtils;
|
import fr.neatmonster.nocheatplus.utilities.CheckUtils;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -40,9 +39,6 @@ public class Direction extends Check {
|
|||||||
* @return true, if successful
|
* @return true, if successful
|
||||||
*/
|
*/
|
||||||
public boolean check(final Player player, final Location location) {
|
public boolean check(final Player player, final Location location) {
|
||||||
// Metrics data.
|
|
||||||
MetricsData.addChecked(type);
|
|
||||||
|
|
||||||
final BlockInteractData data = BlockInteractData.getData(player);
|
final BlockInteractData data = BlockInteractData.getData(player);
|
||||||
|
|
||||||
boolean cancel = false;
|
boolean cancel = false;
|
||||||
|
@ -8,7 +8,6 @@ import fr.neatmonster.nocheatplus.actions.ParameterName;
|
|||||||
import fr.neatmonster.nocheatplus.checks.Check;
|
import fr.neatmonster.nocheatplus.checks.Check;
|
||||||
import fr.neatmonster.nocheatplus.checks.CheckType;
|
import fr.neatmonster.nocheatplus.checks.CheckType;
|
||||||
import fr.neatmonster.nocheatplus.checks.ViolationData;
|
import fr.neatmonster.nocheatplus.checks.ViolationData;
|
||||||
import fr.neatmonster.nocheatplus.metrics.MetricsData;
|
|
||||||
import fr.neatmonster.nocheatplus.utilities.CheckUtils;
|
import fr.neatmonster.nocheatplus.utilities.CheckUtils;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -48,9 +47,6 @@ public class Reach extends Check {
|
|||||||
* @return true, if successful
|
* @return true, if successful
|
||||||
*/
|
*/
|
||||||
public boolean check(final Player player, final Location location) {
|
public boolean check(final Player player, final Location location) {
|
||||||
// Metrics data.
|
|
||||||
MetricsData.addChecked(type);
|
|
||||||
|
|
||||||
final BlockInteractData data = BlockInteractData.getData(player);
|
final BlockInteractData data = BlockInteractData.getData(player);
|
||||||
|
|
||||||
boolean cancel = false;
|
boolean cancel = false;
|
||||||
|
@ -6,7 +6,6 @@ import org.bukkit.util.Vector;
|
|||||||
|
|
||||||
import fr.neatmonster.nocheatplus.checks.Check;
|
import fr.neatmonster.nocheatplus.checks.Check;
|
||||||
import fr.neatmonster.nocheatplus.checks.CheckType;
|
import fr.neatmonster.nocheatplus.checks.CheckType;
|
||||||
import fr.neatmonster.nocheatplus.metrics.MetricsData;
|
|
||||||
import fr.neatmonster.nocheatplus.utilities.CheckUtils;
|
import fr.neatmonster.nocheatplus.utilities.CheckUtils;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -40,9 +39,6 @@ public class Direction extends Check {
|
|||||||
* @return true, if successful
|
* @return true, if successful
|
||||||
*/
|
*/
|
||||||
public boolean check(final Player player, final Location placed, final Location against) {
|
public boolean check(final Player player, final Location placed, final Location against) {
|
||||||
// Metrics data.
|
|
||||||
MetricsData.addChecked(type);
|
|
||||||
|
|
||||||
final BlockPlaceData data = BlockPlaceData.getData(player);
|
final BlockPlaceData data = BlockPlaceData.getData(player);
|
||||||
|
|
||||||
boolean cancel = false;
|
boolean cancel = false;
|
||||||
|
@ -5,7 +5,6 @@ import org.bukkit.entity.Player;
|
|||||||
|
|
||||||
import fr.neatmonster.nocheatplus.checks.Check;
|
import fr.neatmonster.nocheatplus.checks.Check;
|
||||||
import fr.neatmonster.nocheatplus.checks.CheckType;
|
import fr.neatmonster.nocheatplus.checks.CheckType;
|
||||||
import fr.neatmonster.nocheatplus.metrics.MetricsData;
|
|
||||||
import fr.neatmonster.nocheatplus.utilities.LagMeasureTask;
|
import fr.neatmonster.nocheatplus.utilities.LagMeasureTask;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -39,9 +38,6 @@ public class FastPlace extends Check {
|
|||||||
* @return true, if successful
|
* @return true, if successful
|
||||||
*/
|
*/
|
||||||
public boolean check(final Player player, final Block block) {
|
public boolean check(final Player player, final Block block) {
|
||||||
// Metrics data.
|
|
||||||
MetricsData.addChecked(type);
|
|
||||||
|
|
||||||
final BlockPlaceConfig cc = BlockPlaceConfig.getConfig(player);
|
final BlockPlaceConfig cc = BlockPlaceConfig.getConfig(player);
|
||||||
final BlockPlaceData data = BlockPlaceData.getData(player);
|
final BlockPlaceData data = BlockPlaceData.getData(player);
|
||||||
|
|
||||||
|
@ -4,7 +4,6 @@ import org.bukkit.entity.Player;
|
|||||||
|
|
||||||
import fr.neatmonster.nocheatplus.checks.Check;
|
import fr.neatmonster.nocheatplus.checks.Check;
|
||||||
import fr.neatmonster.nocheatplus.checks.CheckType;
|
import fr.neatmonster.nocheatplus.checks.CheckType;
|
||||||
import fr.neatmonster.nocheatplus.metrics.MetricsData;
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* M"""""""`YM MP""""""`MM oo
|
* M"""""""`YM MP""""""`MM oo
|
||||||
@ -36,9 +35,6 @@ public class NoSwing extends Check {
|
|||||||
* @return true, if successful
|
* @return true, if successful
|
||||||
*/
|
*/
|
||||||
public boolean check(final Player player) {
|
public boolean check(final Player player) {
|
||||||
// Metrics data.
|
|
||||||
MetricsData.addChecked(type);
|
|
||||||
|
|
||||||
final BlockPlaceData data = BlockPlaceData.getData(player);
|
final BlockPlaceData data = BlockPlaceData.getData(player);
|
||||||
|
|
||||||
boolean cancel = false;
|
boolean cancel = false;
|
||||||
|
@ -8,7 +8,6 @@ import fr.neatmonster.nocheatplus.actions.ParameterName;
|
|||||||
import fr.neatmonster.nocheatplus.checks.Check;
|
import fr.neatmonster.nocheatplus.checks.Check;
|
||||||
import fr.neatmonster.nocheatplus.checks.CheckType;
|
import fr.neatmonster.nocheatplus.checks.CheckType;
|
||||||
import fr.neatmonster.nocheatplus.checks.ViolationData;
|
import fr.neatmonster.nocheatplus.checks.ViolationData;
|
||||||
import fr.neatmonster.nocheatplus.metrics.MetricsData;
|
|
||||||
import fr.neatmonster.nocheatplus.utilities.CheckUtils;
|
import fr.neatmonster.nocheatplus.utilities.CheckUtils;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -48,9 +47,6 @@ public class Reach extends Check {
|
|||||||
* @return true, if successful
|
* @return true, if successful
|
||||||
*/
|
*/
|
||||||
public boolean check(final Player player, final Location location) {
|
public boolean check(final Player player, final Location location) {
|
||||||
// Metrics data.
|
|
||||||
MetricsData.addChecked(type);
|
|
||||||
|
|
||||||
final BlockPlaceData data = BlockPlaceData.getData(player);
|
final BlockPlaceData data = BlockPlaceData.getData(player);
|
||||||
|
|
||||||
boolean cancel = false;
|
boolean cancel = false;
|
||||||
|
@ -4,7 +4,6 @@ import org.bukkit.entity.Player;
|
|||||||
|
|
||||||
import fr.neatmonster.nocheatplus.checks.Check;
|
import fr.neatmonster.nocheatplus.checks.Check;
|
||||||
import fr.neatmonster.nocheatplus.checks.CheckType;
|
import fr.neatmonster.nocheatplus.checks.CheckType;
|
||||||
import fr.neatmonster.nocheatplus.metrics.MetricsData;
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* MP""""""`MM dP
|
* MP""""""`MM dP
|
||||||
@ -36,9 +35,6 @@ public class Speed extends Check {
|
|||||||
* @return true, if successful
|
* @return true, if successful
|
||||||
*/
|
*/
|
||||||
public boolean check(final Player player) {
|
public boolean check(final Player player) {
|
||||||
// Metrics data.
|
|
||||||
MetricsData.addChecked(type);
|
|
||||||
|
|
||||||
final BlockPlaceConfig cc = BlockPlaceConfig.getConfig(player);
|
final BlockPlaceConfig cc = BlockPlaceConfig.getConfig(player);
|
||||||
final BlockPlaceData data = BlockPlaceData.getData(player);
|
final BlockPlaceData data = BlockPlaceData.getData(player);
|
||||||
|
|
||||||
|
@ -5,7 +5,6 @@ import org.bukkit.entity.Player;
|
|||||||
import fr.neatmonster.nocheatplus.actions.types.ActionList;
|
import fr.neatmonster.nocheatplus.actions.types.ActionList;
|
||||||
import fr.neatmonster.nocheatplus.checks.Check;
|
import fr.neatmonster.nocheatplus.checks.Check;
|
||||||
import fr.neatmonster.nocheatplus.checks.CheckType;
|
import fr.neatmonster.nocheatplus.checks.CheckType;
|
||||||
import fr.neatmonster.nocheatplus.metrics.MetricsData;
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* MM'""""'YMM dP
|
* MM'""""'YMM dP
|
||||||
@ -48,9 +47,6 @@ public class Color extends Check {
|
|||||||
// Leave out the permission check.
|
// Leave out the permission check.
|
||||||
return message;
|
return message;
|
||||||
|
|
||||||
// Metrics data.
|
|
||||||
MetricsData.addChecked(type);
|
|
||||||
|
|
||||||
final ChatData data = ChatData.getData(player);
|
final ChatData data = ChatData.getData(player);
|
||||||
// Keep related to ChatData/NoPwnage/Color used lock.
|
// Keep related to ChatData/NoPwnage/Color used lock.
|
||||||
synchronized (data) {
|
synchronized (data) {
|
||||||
|
@ -13,7 +13,6 @@ import fr.neatmonster.nocheatplus.actions.types.ActionList;
|
|||||||
import fr.neatmonster.nocheatplus.checks.Check;
|
import fr.neatmonster.nocheatplus.checks.Check;
|
||||||
import fr.neatmonster.nocheatplus.checks.CheckType;
|
import fr.neatmonster.nocheatplus.checks.CheckType;
|
||||||
import fr.neatmonster.nocheatplus.checks.ViolationData;
|
import fr.neatmonster.nocheatplus.checks.ViolationData;
|
||||||
import fr.neatmonster.nocheatplus.metrics.MetricsData;
|
|
||||||
import fr.neatmonster.nocheatplus.utilities.CheckUtils;
|
import fr.neatmonster.nocheatplus.utilities.CheckUtils;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -74,9 +73,6 @@ public class NoPwnage extends Check {
|
|||||||
if (!isMainThread && !cc.isEnabled(type))
|
if (!isMainThread && !cc.isEnabled(type))
|
||||||
return false;
|
return false;
|
||||||
|
|
||||||
// Metrics data.
|
|
||||||
MetricsData.addChecked(type);
|
|
||||||
|
|
||||||
// Keep related to ChatData/NoPwnage/Color used lock.
|
// Keep related to ChatData/NoPwnage/Color used lock.
|
||||||
synchronized (data) {
|
synchronized (data) {
|
||||||
return unsafeCheck(player, event, isMainThread, cc, data);
|
return unsafeCheck(player, event, isMainThread, cc, data);
|
||||||
|
@ -7,7 +7,6 @@ import org.bukkit.entity.Player;
|
|||||||
|
|
||||||
import fr.neatmonster.nocheatplus.checks.Check;
|
import fr.neatmonster.nocheatplus.checks.Check;
|
||||||
import fr.neatmonster.nocheatplus.checks.CheckType;
|
import fr.neatmonster.nocheatplus.checks.CheckType;
|
||||||
import fr.neatmonster.nocheatplus.metrics.MetricsData;
|
|
||||||
import fr.neatmonster.nocheatplus.utilities.LagMeasureTask;
|
import fr.neatmonster.nocheatplus.utilities.LagMeasureTask;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -42,9 +41,6 @@ public class Angle extends Check {
|
|||||||
* @return true, if successful
|
* @return true, if successful
|
||||||
*/
|
*/
|
||||||
public boolean check(final Player player) {
|
public boolean check(final Player player) {
|
||||||
// Metrics data.
|
|
||||||
MetricsData.addChecked(type);
|
|
||||||
|
|
||||||
final FightConfig cc = FightConfig.getConfig(player);
|
final FightConfig cc = FightConfig.getConfig(player);
|
||||||
final FightData data = FightData.getData(player);
|
final FightData data = FightData.getData(player);
|
||||||
|
|
||||||
|
@ -5,7 +5,6 @@ import org.bukkit.potion.PotionEffectType;
|
|||||||
|
|
||||||
import fr.neatmonster.nocheatplus.checks.Check;
|
import fr.neatmonster.nocheatplus.checks.Check;
|
||||||
import fr.neatmonster.nocheatplus.checks.CheckType;
|
import fr.neatmonster.nocheatplus.checks.CheckType;
|
||||||
import fr.neatmonster.nocheatplus.metrics.MetricsData;
|
|
||||||
import fr.neatmonster.nocheatplus.utilities.LagMeasureTask;
|
import fr.neatmonster.nocheatplus.utilities.LagMeasureTask;
|
||||||
import fr.neatmonster.nocheatplus.utilities.PlayerLocation;
|
import fr.neatmonster.nocheatplus.utilities.PlayerLocation;
|
||||||
|
|
||||||
@ -38,9 +37,6 @@ public class Critical extends Check {
|
|||||||
* @return true, if successful
|
* @return true, if successful
|
||||||
*/
|
*/
|
||||||
public boolean check(final Player player) {
|
public boolean check(final Player player) {
|
||||||
// Metrics data.
|
|
||||||
MetricsData.addChecked(type);
|
|
||||||
|
|
||||||
final FightConfig cc = FightConfig.getConfig(player);
|
final FightConfig cc = FightConfig.getConfig(player);
|
||||||
final FightData data = FightData.getData(player);
|
final FightData data = FightData.getData(player);
|
||||||
|
|
||||||
|
@ -10,7 +10,6 @@ import org.bukkit.util.Vector;
|
|||||||
|
|
||||||
import fr.neatmonster.nocheatplus.checks.Check;
|
import fr.neatmonster.nocheatplus.checks.Check;
|
||||||
import fr.neatmonster.nocheatplus.checks.CheckType;
|
import fr.neatmonster.nocheatplus.checks.CheckType;
|
||||||
import fr.neatmonster.nocheatplus.metrics.MetricsData;
|
|
||||||
import fr.neatmonster.nocheatplus.utilities.CheckUtils;
|
import fr.neatmonster.nocheatplus.utilities.CheckUtils;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -44,9 +43,6 @@ public class Direction extends Check {
|
|||||||
* @return true, if successful
|
* @return true, if successful
|
||||||
*/
|
*/
|
||||||
public boolean check(final Player player, final Entity damaged) {
|
public boolean check(final Player player, final Entity damaged) {
|
||||||
// Metrics data.
|
|
||||||
MetricsData.addChecked(type);
|
|
||||||
|
|
||||||
final FightConfig cc = FightConfig.getConfig(player);
|
final FightConfig cc = FightConfig.getConfig(player);
|
||||||
final FightData data = FightData.getData(player);
|
final FightData data = FightData.getData(player);
|
||||||
|
|
||||||
|
@ -9,7 +9,6 @@ import org.bukkit.entity.Player;
|
|||||||
import fr.neatmonster.nocheatplus.NoCheatPlus;
|
import fr.neatmonster.nocheatplus.NoCheatPlus;
|
||||||
import fr.neatmonster.nocheatplus.checks.Check;
|
import fr.neatmonster.nocheatplus.checks.Check;
|
||||||
import fr.neatmonster.nocheatplus.checks.CheckType;
|
import fr.neatmonster.nocheatplus.checks.CheckType;
|
||||||
import fr.neatmonster.nocheatplus.metrics.MetricsData;
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* MM'"""""`MM dP M"""""`'"""`YM dP
|
* MM'"""""`MM dP M"""""`'"""`YM dP
|
||||||
@ -40,9 +39,6 @@ public class GodMode extends Check {
|
|||||||
* @return true, if successful
|
* @return true, if successful
|
||||||
*/
|
*/
|
||||||
public boolean check(final Player player) {
|
public boolean check(final Player player) {
|
||||||
// Metrics data.
|
|
||||||
MetricsData.addChecked(type);
|
|
||||||
|
|
||||||
final FightData data = FightData.getData(player);
|
final FightData data = FightData.getData(player);
|
||||||
|
|
||||||
boolean cancel = false;
|
boolean cancel = false;
|
||||||
|
@ -4,7 +4,6 @@ import org.bukkit.entity.Player;
|
|||||||
|
|
||||||
import fr.neatmonster.nocheatplus.checks.Check;
|
import fr.neatmonster.nocheatplus.checks.Check;
|
||||||
import fr.neatmonster.nocheatplus.checks.CheckType;
|
import fr.neatmonster.nocheatplus.checks.CheckType;
|
||||||
import fr.neatmonster.nocheatplus.metrics.MetricsData;
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* M""M dP dP M""MMMMM""MM dP
|
* M""M dP dP M""MMMMM""MM dP
|
||||||
@ -36,9 +35,6 @@ public class InstantHeal extends Check {
|
|||||||
* @return true, if successful
|
* @return true, if successful
|
||||||
*/
|
*/
|
||||||
public boolean check(final Player player) {
|
public boolean check(final Player player) {
|
||||||
// Metrics data.
|
|
||||||
MetricsData.addChecked(type);
|
|
||||||
|
|
||||||
final FightData data = FightData.getData(player);
|
final FightData data = FightData.getData(player);
|
||||||
|
|
||||||
boolean cancel = false;
|
boolean cancel = false;
|
||||||
|
@ -5,7 +5,6 @@ import org.bukkit.entity.Player;
|
|||||||
|
|
||||||
import fr.neatmonster.nocheatplus.checks.Check;
|
import fr.neatmonster.nocheatplus.checks.Check;
|
||||||
import fr.neatmonster.nocheatplus.checks.CheckType;
|
import fr.neatmonster.nocheatplus.checks.CheckType;
|
||||||
import fr.neatmonster.nocheatplus.metrics.MetricsData;
|
|
||||||
import fr.neatmonster.nocheatplus.utilities.LagMeasureTask;
|
import fr.neatmonster.nocheatplus.utilities.LagMeasureTask;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -37,9 +36,6 @@ public class Knockback extends Check {
|
|||||||
* @return true, if successful
|
* @return true, if successful
|
||||||
*/
|
*/
|
||||||
public boolean check(final Player player) {
|
public boolean check(final Player player) {
|
||||||
// Metrics data.
|
|
||||||
MetricsData.addChecked(type);
|
|
||||||
|
|
||||||
final FightConfig cc = FightConfig.getConfig(player);
|
final FightConfig cc = FightConfig.getConfig(player);
|
||||||
final FightData data = FightData.getData(player);
|
final FightData data = FightData.getData(player);
|
||||||
|
|
||||||
|
@ -4,7 +4,6 @@ import org.bukkit.entity.Player;
|
|||||||
|
|
||||||
import fr.neatmonster.nocheatplus.checks.Check;
|
import fr.neatmonster.nocheatplus.checks.Check;
|
||||||
import fr.neatmonster.nocheatplus.checks.CheckType;
|
import fr.neatmonster.nocheatplus.checks.CheckType;
|
||||||
import fr.neatmonster.nocheatplus.metrics.MetricsData;
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* M"""""""`YM MP""""""`MM oo
|
* M"""""""`YM MP""""""`MM oo
|
||||||
@ -36,9 +35,6 @@ public class NoSwing extends Check {
|
|||||||
* @return true, if successful
|
* @return true, if successful
|
||||||
*/
|
*/
|
||||||
public boolean check(final Player player) {
|
public boolean check(final Player player) {
|
||||||
// Metrics data.
|
|
||||||
MetricsData.addChecked(type);
|
|
||||||
|
|
||||||
final FightData data = FightData.getData(player);
|
final FightData data = FightData.getData(player);
|
||||||
|
|
||||||
boolean cancel = false;
|
boolean cancel = false;
|
||||||
|
@ -8,7 +8,6 @@ import org.bukkit.entity.Player;
|
|||||||
|
|
||||||
import fr.neatmonster.nocheatplus.checks.Check;
|
import fr.neatmonster.nocheatplus.checks.Check;
|
||||||
import fr.neatmonster.nocheatplus.checks.CheckType;
|
import fr.neatmonster.nocheatplus.checks.CheckType;
|
||||||
import fr.neatmonster.nocheatplus.metrics.MetricsData;
|
|
||||||
import fr.neatmonster.nocheatplus.utilities.CheckUtils;
|
import fr.neatmonster.nocheatplus.utilities.CheckUtils;
|
||||||
import fr.neatmonster.nocheatplus.utilities.LagMeasureTask;
|
import fr.neatmonster.nocheatplus.utilities.LagMeasureTask;
|
||||||
|
|
||||||
@ -49,9 +48,6 @@ public class Reach extends Check {
|
|||||||
* @return true, if successful
|
* @return true, if successful
|
||||||
*/
|
*/
|
||||||
public boolean check(final Player player, final Entity damaged) {
|
public boolean check(final Player player, final Entity damaged) {
|
||||||
// Metrics data.
|
|
||||||
MetricsData.addChecked(type);
|
|
||||||
|
|
||||||
final FightConfig cc = FightConfig.getConfig(player);
|
final FightConfig cc = FightConfig.getConfig(player);
|
||||||
final FightData data = FightData.getData(player);
|
final FightData data = FightData.getData(player);
|
||||||
|
|
||||||
|
@ -6,7 +6,6 @@ import fr.neatmonster.nocheatplus.actions.ParameterName;
|
|||||||
import fr.neatmonster.nocheatplus.checks.Check;
|
import fr.neatmonster.nocheatplus.checks.Check;
|
||||||
import fr.neatmonster.nocheatplus.checks.CheckType;
|
import fr.neatmonster.nocheatplus.checks.CheckType;
|
||||||
import fr.neatmonster.nocheatplus.checks.ViolationData;
|
import fr.neatmonster.nocheatplus.checks.ViolationData;
|
||||||
import fr.neatmonster.nocheatplus.metrics.MetricsData;
|
|
||||||
import fr.neatmonster.nocheatplus.utilities.LagMeasureTask;
|
import fr.neatmonster.nocheatplus.utilities.LagMeasureTask;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -39,9 +38,6 @@ public class Speed extends Check {
|
|||||||
* @return true, if successful
|
* @return true, if successful
|
||||||
*/
|
*/
|
||||||
public boolean check(final Player player) {
|
public boolean check(final Player player) {
|
||||||
// Metrics data.
|
|
||||||
MetricsData.addChecked(type);
|
|
||||||
|
|
||||||
final FightConfig cc = FightConfig.getConfig(player);
|
final FightConfig cc = FightConfig.getConfig(player);
|
||||||
final FightData data = FightData.getData(player);
|
final FightData data = FightData.getData(player);
|
||||||
|
|
||||||
|
@ -4,7 +4,6 @@ import org.bukkit.entity.Player;
|
|||||||
|
|
||||||
import fr.neatmonster.nocheatplus.checks.Check;
|
import fr.neatmonster.nocheatplus.checks.Check;
|
||||||
import fr.neatmonster.nocheatplus.checks.CheckType;
|
import fr.neatmonster.nocheatplus.checks.CheckType;
|
||||||
import fr.neatmonster.nocheatplus.metrics.MetricsData;
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* M""""""'YMM
|
* M""""""'YMM
|
||||||
@ -36,9 +35,6 @@ public class Drop extends Check {
|
|||||||
* @return true, if successful
|
* @return true, if successful
|
||||||
*/
|
*/
|
||||||
public boolean check(final Player player) {
|
public boolean check(final Player player) {
|
||||||
// Metrics data.
|
|
||||||
MetricsData.addChecked(type);
|
|
||||||
|
|
||||||
final InventoryConfig cc = InventoryConfig.getConfig(player);
|
final InventoryConfig cc = InventoryConfig.getConfig(player);
|
||||||
final InventoryData data = InventoryData.getData(player);
|
final InventoryData data = InventoryData.getData(player);
|
||||||
|
|
||||||
|
@ -4,7 +4,6 @@ import org.bukkit.entity.Player;
|
|||||||
|
|
||||||
import fr.neatmonster.nocheatplus.checks.Check;
|
import fr.neatmonster.nocheatplus.checks.Check;
|
||||||
import fr.neatmonster.nocheatplus.checks.CheckType;
|
import fr.neatmonster.nocheatplus.checks.CheckType;
|
||||||
import fr.neatmonster.nocheatplus.metrics.MetricsData;
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* MM""""""""`M dP MM'""""'YMM dP oo dP
|
* MM""""""""`M dP MM'""""'YMM dP oo dP
|
||||||
@ -35,9 +34,6 @@ public class FastClick extends Check {
|
|||||||
* @return true, if successful
|
* @return true, if successful
|
||||||
*/
|
*/
|
||||||
public boolean check(final Player player) {
|
public boolean check(final Player player) {
|
||||||
// Metrics data.
|
|
||||||
MetricsData.addChecked(type);
|
|
||||||
|
|
||||||
final InventoryData data = InventoryData.getData(player);
|
final InventoryData data = InventoryData.getData(player);
|
||||||
|
|
||||||
boolean cancel = false;
|
boolean cancel = false;
|
||||||
|
@ -4,7 +4,6 @@ import org.bukkit.entity.Player;
|
|||||||
|
|
||||||
import fr.neatmonster.nocheatplus.checks.Check;
|
import fr.neatmonster.nocheatplus.checks.Check;
|
||||||
import fr.neatmonster.nocheatplus.checks.CheckType;
|
import fr.neatmonster.nocheatplus.checks.CheckType;
|
||||||
import fr.neatmonster.nocheatplus.metrics.MetricsData;
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* M""M dP dP M#"""""""'M
|
* M""M dP dP M#"""""""'M
|
||||||
@ -37,9 +36,6 @@ public class InstantBow extends Check {
|
|||||||
* @return true, if successful
|
* @return true, if successful
|
||||||
*/
|
*/
|
||||||
public boolean check(final Player player, final float force) {
|
public boolean check(final Player player, final float force) {
|
||||||
// Metrics data.
|
|
||||||
MetricsData.addChecked(type);
|
|
||||||
|
|
||||||
final InventoryData data = InventoryData.getData(player);
|
final InventoryData data = InventoryData.getData(player);
|
||||||
|
|
||||||
boolean cancel = false;
|
boolean cancel = false;
|
||||||
|
@ -6,7 +6,6 @@ import fr.neatmonster.nocheatplus.actions.ParameterName;
|
|||||||
import fr.neatmonster.nocheatplus.checks.Check;
|
import fr.neatmonster.nocheatplus.checks.Check;
|
||||||
import fr.neatmonster.nocheatplus.checks.CheckType;
|
import fr.neatmonster.nocheatplus.checks.CheckType;
|
||||||
import fr.neatmonster.nocheatplus.checks.ViolationData;
|
import fr.neatmonster.nocheatplus.checks.ViolationData;
|
||||||
import fr.neatmonster.nocheatplus.metrics.MetricsData;
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* M""M dP dP MM""""""""`M dP
|
* M""M dP dP MM""""""""`M dP
|
||||||
@ -39,9 +38,6 @@ public class InstantEat extends Check {
|
|||||||
* @return true, if successful
|
* @return true, if successful
|
||||||
*/
|
*/
|
||||||
public boolean check(final Player player, final int level) {
|
public boolean check(final Player player, final int level) {
|
||||||
// Metrics data.
|
|
||||||
MetricsData.addChecked(type);
|
|
||||||
|
|
||||||
final InventoryData data = InventoryData.getData(player);
|
final InventoryData data = InventoryData.getData(player);
|
||||||
|
|
||||||
boolean cancel = false;
|
boolean cancel = false;
|
||||||
|
@ -13,7 +13,6 @@ import fr.neatmonster.nocheatplus.actions.ParameterName;
|
|||||||
import fr.neatmonster.nocheatplus.checks.Check;
|
import fr.neatmonster.nocheatplus.checks.Check;
|
||||||
import fr.neatmonster.nocheatplus.checks.CheckType;
|
import fr.neatmonster.nocheatplus.checks.CheckType;
|
||||||
import fr.neatmonster.nocheatplus.checks.ViolationData;
|
import fr.neatmonster.nocheatplus.checks.ViolationData;
|
||||||
import fr.neatmonster.nocheatplus.metrics.MetricsData;
|
|
||||||
import fr.neatmonster.nocheatplus.utilities.PlayerLocation;
|
import fr.neatmonster.nocheatplus.utilities.PlayerLocation;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -57,9 +56,6 @@ public class CreativeFly extends Check {
|
|||||||
* @return the location
|
* @return the location
|
||||||
*/
|
*/
|
||||||
public Location check(final Player player, final PlayerLocation from, final PlayerLocation to) {
|
public Location check(final Player player, final PlayerLocation from, final PlayerLocation to) {
|
||||||
// Metrics data.
|
|
||||||
MetricsData.addChecked(type);
|
|
||||||
|
|
||||||
final MovingConfig cc = MovingConfig.getConfig(player);
|
final MovingConfig cc = MovingConfig.getConfig(player);
|
||||||
final MovingData data = MovingData.getData(player);
|
final MovingData data = MovingData.getData(player);
|
||||||
|
|
||||||
|
@ -7,7 +7,6 @@ import fr.neatmonster.nocheatplus.actions.ParameterName;
|
|||||||
import fr.neatmonster.nocheatplus.checks.Check;
|
import fr.neatmonster.nocheatplus.checks.Check;
|
||||||
import fr.neatmonster.nocheatplus.checks.CheckType;
|
import fr.neatmonster.nocheatplus.checks.CheckType;
|
||||||
import fr.neatmonster.nocheatplus.checks.ViolationData;
|
import fr.neatmonster.nocheatplus.checks.ViolationData;
|
||||||
import fr.neatmonster.nocheatplus.metrics.MetricsData;
|
|
||||||
import fr.neatmonster.nocheatplus.utilities.PlayerLocation;
|
import fr.neatmonster.nocheatplus.utilities.PlayerLocation;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -60,9 +59,6 @@ public class MorePackets extends Check {
|
|||||||
* @return the location
|
* @return the location
|
||||||
*/
|
*/
|
||||||
public Location check(final Player player, final PlayerLocation from, final PlayerLocation to) {
|
public Location check(final Player player, final PlayerLocation from, final PlayerLocation to) {
|
||||||
// Metrics data.
|
|
||||||
MetricsData.addChecked(type);
|
|
||||||
|
|
||||||
final MovingData data = MovingData.getData(player);
|
final MovingData data = MovingData.getData(player);
|
||||||
|
|
||||||
Location newTo = null;
|
Location newTo = null;
|
||||||
|
@ -7,7 +7,6 @@ import fr.neatmonster.nocheatplus.actions.ParameterName;
|
|||||||
import fr.neatmonster.nocheatplus.checks.Check;
|
import fr.neatmonster.nocheatplus.checks.Check;
|
||||||
import fr.neatmonster.nocheatplus.checks.CheckType;
|
import fr.neatmonster.nocheatplus.checks.CheckType;
|
||||||
import fr.neatmonster.nocheatplus.checks.ViolationData;
|
import fr.neatmonster.nocheatplus.checks.ViolationData;
|
||||||
import fr.neatmonster.nocheatplus.metrics.MetricsData;
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* M"""""`'"""`YM MM"""""""`YM dP dP
|
* M"""""`'"""`YM MM"""""""`YM dP dP
|
||||||
@ -59,9 +58,6 @@ public class MorePacketsVehicle extends Check {
|
|||||||
* @return the location
|
* @return the location
|
||||||
*/
|
*/
|
||||||
public Location check(final Player player, final Location from, final Location to) {
|
public Location check(final Player player, final Location from, final Location to) {
|
||||||
// Metrics data.
|
|
||||||
MetricsData.addChecked(type);
|
|
||||||
|
|
||||||
final MovingData data = MovingData.getData(player);
|
final MovingData data = MovingData.getData(player);
|
||||||
|
|
||||||
Location newTo = null;
|
Location newTo = null;
|
||||||
|
@ -11,7 +11,6 @@ import fr.neatmonster.nocheatplus.actions.ParameterName;
|
|||||||
import fr.neatmonster.nocheatplus.checks.Check;
|
import fr.neatmonster.nocheatplus.checks.Check;
|
||||||
import fr.neatmonster.nocheatplus.checks.CheckType;
|
import fr.neatmonster.nocheatplus.checks.CheckType;
|
||||||
import fr.neatmonster.nocheatplus.checks.ViolationData;
|
import fr.neatmonster.nocheatplus.checks.ViolationData;
|
||||||
import fr.neatmonster.nocheatplus.metrics.MetricsData;
|
|
||||||
import fr.neatmonster.nocheatplus.utilities.PlayerLocation;
|
import fr.neatmonster.nocheatplus.utilities.PlayerLocation;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
@ -46,9 +45,6 @@ public class NoFall extends Check {
|
|||||||
* the to
|
* the to
|
||||||
*/
|
*/
|
||||||
public void check(final Player player, final PlayerLocation from, final PlayerLocation to) {
|
public void check(final Player player, final PlayerLocation from, final PlayerLocation to) {
|
||||||
// Metrics data.
|
|
||||||
MetricsData.addChecked(type);
|
|
||||||
|
|
||||||
final MovingConfig cc = MovingConfig.getConfig(player);
|
final MovingConfig cc = MovingConfig.getConfig(player);
|
||||||
final MovingData data = MovingData.getData(player);
|
final MovingData data = MovingData.getData(player);
|
||||||
|
|
||||||
|
@ -13,7 +13,6 @@ import fr.neatmonster.nocheatplus.actions.ParameterName;
|
|||||||
import fr.neatmonster.nocheatplus.checks.Check;
|
import fr.neatmonster.nocheatplus.checks.Check;
|
||||||
import fr.neatmonster.nocheatplus.checks.CheckType;
|
import fr.neatmonster.nocheatplus.checks.CheckType;
|
||||||
import fr.neatmonster.nocheatplus.checks.ViolationData;
|
import fr.neatmonster.nocheatplus.checks.ViolationData;
|
||||||
import fr.neatmonster.nocheatplus.metrics.MetricsData;
|
|
||||||
import fr.neatmonster.nocheatplus.players.Permissions;
|
import fr.neatmonster.nocheatplus.players.Permissions;
|
||||||
import fr.neatmonster.nocheatplus.utilities.PlayerLocation;
|
import fr.neatmonster.nocheatplus.utilities.PlayerLocation;
|
||||||
|
|
||||||
@ -49,9 +48,6 @@ public class SurvivalFly extends Check {
|
|||||||
* @return true, if successful
|
* @return true, if successful
|
||||||
*/
|
*/
|
||||||
public boolean check(final Player player) {
|
public boolean check(final Player player) {
|
||||||
// Metrics data.
|
|
||||||
MetricsData.addChecked(type);
|
|
||||||
|
|
||||||
final MovingData data = MovingData.getData(player);
|
final MovingData data = MovingData.getData(player);
|
||||||
|
|
||||||
// Check if the player has entered the bed he is trying to leave.
|
// Check if the player has entered the bed he is trying to leave.
|
||||||
|
@ -243,7 +243,7 @@ public class DefaultConfig extends ConfigFile {
|
|||||||
set(ConfPaths.INVENTORY_DROP_ACTIONS, "log:drop:0:1:cif cmd:kick");
|
set(ConfPaths.INVENTORY_DROP_ACTIONS, "log:drop:0:1:cif cmd:kick");
|
||||||
|
|
||||||
set(ConfPaths.INVENTORY_FASTCLICK_CHECK, true);
|
set(ConfPaths.INVENTORY_FASTCLICK_CHECK, true);
|
||||||
set(ConfPaths.INVENTORY_FASTCLICK_ACTIONS, "cancel"); // TODO
|
set(ConfPaths.INVENTORY_FASTCLICK_ACTIONS, "cancel vl>50 log:fastclick:3:5:cif cancel");
|
||||||
|
|
||||||
set(ConfPaths.INVENTORY_INSTANTBOW_CHECK, true);
|
set(ConfPaths.INVENTORY_INSTANTBOW_CHECK, true);
|
||||||
set(ConfPaths.INVENTORY_INSTANTBOW_ACTIONS, "log:instantbow:2:5:if cancel");
|
set(ConfPaths.INVENTORY_INSTANTBOW_ACTIONS, "log:instantbow:2:5:if cancel");
|
||||||
@ -309,6 +309,7 @@ public class DefaultConfig extends ConfigFile {
|
|||||||
set(ConfPaths.STRINGS + ".critical", start + "tried to do a critical hit but wasn't technically jumping" + end);
|
set(ConfPaths.STRINGS + ".critical", start + "tried to do a critical hit but wasn't technically jumping" + end);
|
||||||
set(ConfPaths.STRINGS + ".drop", start + "tried to drop more items than allowed" + end);
|
set(ConfPaths.STRINGS + ".drop", start + "tried to drop more items than allowed" + end);
|
||||||
set(ConfPaths.STRINGS + ".fastbreak", start + "tried to break too many blocks" + end);
|
set(ConfPaths.STRINGS + ".fastbreak", start + "tried to break too many blocks" + end);
|
||||||
|
set(ConfPaths.STRINGS + ".fastclick", start + "tried to move items in his inventory too quickly" + end);
|
||||||
set(ConfPaths.STRINGS + ".fastplace", start + "tried to place too many blocks" + end);
|
set(ConfPaths.STRINGS + ".fastplace", start + "tried to place too many blocks" + end);
|
||||||
set(ConfPaths.STRINGS + ".fdirection", start + "tried to hit an entity out of line of sight" + end);
|
set(ConfPaths.STRINGS + ".fdirection", start + "tried to hit an entity out of line of sight" + end);
|
||||||
set(ConfPaths.STRINGS + ".flyshort", start + "tried to move unexpectedly" + end);
|
set(ConfPaths.STRINGS + ".flyshort", start + "tried to move unexpectedly" + end);
|
||||||
|
@ -4,10 +4,6 @@ import java.util.HashMap;
|
|||||||
import java.util.Map;
|
import java.util.Map;
|
||||||
|
|
||||||
import fr.neatmonster.nocheatplus.checks.CheckType;
|
import fr.neatmonster.nocheatplus.checks.CheckType;
|
||||||
import fr.neatmonster.nocheatplus.checks.ViolationData;
|
|
||||||
import fr.neatmonster.nocheatplus.config.ConfPaths;
|
|
||||||
import fr.neatmonster.nocheatplus.config.ConfigManager;
|
|
||||||
import fr.neatmonster.nocheatplus.metrics.Metrics.Plotter;
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* M"""""`'"""`YM dP oo M""""""'YMM dP
|
* M"""""`'"""`YM dP oo M""""""'YMM dP
|
||||||
@ -19,187 +15,76 @@ import fr.neatmonster.nocheatplus.metrics.Metrics.Plotter;
|
|||||||
* MMMMMMMMMMMMMM MMMMMMMMMMM
|
* MMMMMMMMMMMMMM MMMMMMMMMMM
|
||||||
*/
|
*/
|
||||||
/**
|
/**
|
||||||
* The Metrics data.
|
* This class is used to store the data that will be sent to Metrics later.
|
||||||
*/
|
*/
|
||||||
public class MetricsData {
|
public class MetricsData {
|
||||||
|
|
||||||
/**
|
/** Is data collecting enabled? */
|
||||||
* The ticks plotter.
|
private static boolean enabled = false;
|
||||||
*/
|
|
||||||
public static class TicksPlotter extends Plotter {
|
|
||||||
|
|
||||||
/** The ticks. */
|
/** The map containing the number of fails per check. */
|
||||||
private final int ticks;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Instantiates a new ticks plotter.
|
|
||||||
*
|
|
||||||
* @param ticks
|
|
||||||
* the ticks
|
|
||||||
*/
|
|
||||||
public TicksPlotter(final int ticks) {
|
|
||||||
super(ticks + " tick(s)");
|
|
||||||
this.ticks = ticks;
|
|
||||||
}
|
|
||||||
|
|
||||||
/* (non-Javadoc)
|
|
||||||
* @see fr.neatmonster.nocheatplus.metrics.Metrics.Plotter#getValue()
|
|
||||||
*/
|
|
||||||
@Override
|
|
||||||
public int getValue() {
|
|
||||||
final int ticks = MetricsData.getServerTicks(this.ticks);
|
|
||||||
MetricsData.resetServerTicks(this.ticks);
|
|
||||||
return ticks;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/** Is Metrics enabled? */
|
|
||||||
private static boolean enabled;
|
|
||||||
|
|
||||||
/** The checks failed. */
|
|
||||||
private static final Map<CheckType, Integer> checksFailed = new HashMap<CheckType, Integer>();
|
private static final Map<CheckType, Integer> checksFailed = new HashMap<CheckType, Integer>();
|
||||||
|
|
||||||
/** The events checked. */
|
/** The map containing the number of seconds per number of ticks this seconds contain. */
|
||||||
private static final Map<CheckType, Integer> eventsChecked = new HashMap<CheckType, Integer>();
|
private static final Map<Integer, Integer> ticksNumbers = new HashMap<Integer, Integer>();
|
||||||
|
|
||||||
/** The server ticks. */
|
|
||||||
private static final Map<Integer, Integer> serverTicks = new HashMap<Integer, Integer>();
|
|
||||||
|
|
||||||
/** The violation levels. */
|
|
||||||
private static final Map<CheckType, Double> violationLevels = new HashMap<CheckType, Double>();
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds the checked.
|
* Adds a failed check to the specified check type.
|
||||||
*
|
*
|
||||||
* @param type
|
* @param type
|
||||||
* the type
|
* the check type
|
||||||
*/
|
*/
|
||||||
public static void addChecked(final CheckType type) {
|
public static void addFailed(final CheckType type) {
|
||||||
if (enabled && type.getParent() != null)
|
if (enabled && type.getParent() != null)
|
||||||
eventsChecked.put(type, getChecked(type) + 1);
|
checksFailed.put(type, checksFailed.get(type) + 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds the ticks.
|
* Adds a seconds to the number of ticks it has contained.
|
||||||
*
|
*
|
||||||
* @param ticks
|
* @param ticks
|
||||||
* the ticks
|
* the ticks number
|
||||||
*/
|
*/
|
||||||
public static void addTicks(final int ticks) {
|
public static void addTicks(final int ticks) {
|
||||||
if (enabled)
|
if (enabled)
|
||||||
serverTicks.put(ticks, serverTicks.get(ticks) + 1);
|
ticksNumbers.put(ticks, ticksNumbers.get(ticks) + 1);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Adds the violation.
|
* Gets the number of failed checks for the specified check type.
|
||||||
*
|
|
||||||
* @param violationData
|
|
||||||
* the violation data
|
|
||||||
*/
|
|
||||||
public static void addViolation(final ViolationData violationData) {
|
|
||||||
final CheckType type = violationData.check.getType();
|
|
||||||
if (enabled && type.getParent() != null) {
|
|
||||||
checksFailed.put(type, getFailed(type) + 1);
|
|
||||||
violationLevels.put(type, getViolationLevel(type) + violationData.addedVL);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the checked.
|
|
||||||
*
|
*
|
||||||
* @param type
|
* @param type
|
||||||
* the type
|
* the check type
|
||||||
* @return the checked
|
|
||||||
*/
|
|
||||||
public static int getChecked(final CheckType type) {
|
|
||||||
if (!eventsChecked.containsKey(type))
|
|
||||||
resetChecked(type);
|
|
||||||
return eventsChecked.get(type);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the failed.
|
|
||||||
*
|
|
||||||
* @param type
|
|
||||||
* the type
|
|
||||||
* @return the failed
|
* @return the failed
|
||||||
*/
|
*/
|
||||||
public static int getFailed(final CheckType type) {
|
public static int getFailed(final CheckType type) {
|
||||||
if (!checksFailed.containsKey(type))
|
final int failed = checksFailed.get(type);
|
||||||
resetFailed(type);
|
checksFailed.put(type, 0);
|
||||||
return checksFailed.get(type);
|
return failed;
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Gets the server ticks.
|
* Gets the number of seconds which have contained the specified number of ticks.
|
||||||
*
|
*
|
||||||
* @param ticks
|
* @param ticks
|
||||||
* the ticks
|
* the ticks number
|
||||||
* @return the server ticks
|
* @return the ticks
|
||||||
*/
|
*/
|
||||||
public static int getServerTicks(final int ticks) {
|
public static int getTicks(final int ticks) {
|
||||||
if (!serverTicks.containsKey(ticks))
|
final int number = ticksNumbers.get(ticks);
|
||||||
resetServerTicks(ticks);
|
ticksNumbers.put(ticks, 0);
|
||||||
return serverTicks.get(ticks);
|
return number;
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Gets the violation level.
|
|
||||||
*
|
|
||||||
* @param type
|
|
||||||
* the type
|
|
||||||
* @return the violation level
|
|
||||||
*/
|
|
||||||
public static double getViolationLevel(final CheckType type) {
|
|
||||||
if (!violationLevels.containsKey(type))
|
|
||||||
resetViolationLevel(type);
|
|
||||||
return violationLevels.get(type);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Initialize the class.
|
* Initialize the class.
|
||||||
*/
|
*/
|
||||||
public static void initialize() {
|
public static void initialize() {
|
||||||
enabled = ConfigManager.getConfigFile().getBoolean(ConfPaths.MISCELLANEOUS_REPORTTOMETRICS);
|
enabled = true;
|
||||||
}
|
for (final CheckType type : CheckType.values())
|
||||||
|
if (type.getParent() != null)
|
||||||
/**
|
|
||||||
* Reset checked.
|
|
||||||
*
|
|
||||||
* @param type
|
|
||||||
* the type
|
|
||||||
*/
|
|
||||||
public static void resetChecked(final CheckType type) {
|
|
||||||
eventsChecked.put(type, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Reset failed.
|
|
||||||
*
|
|
||||||
* @param type
|
|
||||||
* the type
|
|
||||||
*/
|
|
||||||
public static void resetFailed(final CheckType type) {
|
|
||||||
checksFailed.put(type, 0);
|
checksFailed.put(type, 0);
|
||||||
}
|
for (int ticks = 0; ticks < 21; ticks++)
|
||||||
|
ticksNumbers.put(ticks, 0);
|
||||||
/**
|
|
||||||
* Reset server ticks.
|
|
||||||
*
|
|
||||||
* @param ticks
|
|
||||||
* the ticks
|
|
||||||
*/
|
|
||||||
public static void resetServerTicks(final int ticks) {
|
|
||||||
serverTicks.put(ticks, 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
/**
|
|
||||||
* Reset violation level.
|
|
||||||
*
|
|
||||||
* @param type
|
|
||||||
* the type
|
|
||||||
*/
|
|
||||||
public static void resetViolationLevel(final CheckType type) {
|
|
||||||
violationLevels.put(type, 0D);
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -89,12 +89,13 @@ public class LagMeasureTask implements Runnable {
|
|||||||
// If the previous second took to long, skip checks during this second.
|
// If the previous second took to long, skip checks during this second.
|
||||||
skipCheck = lastInGameSecondDuration > 2000;
|
skipCheck = lastInGameSecondDuration > 2000;
|
||||||
|
|
||||||
// Metrics data.
|
// Add the number of ticks the last second have contained to the Metrics data.
|
||||||
int ticks = (int) Math.round(20000D / lastInGameSecondDuration);
|
int ticks = (int) Math.round(20000D / lastInGameSecondDuration);
|
||||||
if (ticks > 20)
|
if (ticks > 20)
|
||||||
ticks = 20;
|
ticks = 20;
|
||||||
MetricsData.addTicks(ticks);
|
MetricsData.addTicks(ticks);
|
||||||
|
|
||||||
|
// Show the debug messages.
|
||||||
if (ConfigManager.getConfigFile().getBoolean(ConfPaths.LOGGING_DEBUG))
|
if (ConfigManager.getConfigFile().getBoolean(ConfPaths.LOGGING_DEBUG))
|
||||||
if (oldStatus != skipCheck && skipCheck)
|
if (oldStatus != skipCheck && skipCheck)
|
||||||
System.out.println("[NoCheatPlus] Detected server lag, some checks will not work.");
|
System.out.println("[NoCheatPlus] Detected server lag, some checks will not work.");
|
||||||
|
Loading…
Reference in New Issue
Block a user