Giter VIP home page Giter VIP logo

smashhit's Introduction

SmashHit

Free async hit pre-processor for bukkit

What's wrong with the default hit processor?

There's nothing wrong with it, but it can be improved.

To my knowledge, there are two deficiencies:

  • Hits are processed in the current tick stack, not on demand *
  • There is a (pretty low) max clicks-per-second (aka CPS) limit hardcoded into the server

* = This is the main focus of the plugin and is explained in the What does async hit pre-processing mean? section

The CPS limit is automatically bypassed when we process hits on our own. SmashHit's configuration allows you to set your own preferred CPS. The CPS limit in SmashHit will keep counting a player's CPS even if the limit is reached, however they will be denied further hits - this way a hacker spamming clicks will lock himself out of combat.

What does async hit pre-processing mean?

The Minecraft server has a "stack" of operations to carry out, called the "tick stack". When new operations have to be carried out, they are added to the tick stack. The tick stack is processed 20 times every second. That means any operation can unnecessarily take an additional 50ms! This can be felt by some people in PvP, which is what this plugin aims to solve. Some big PvP servers already deploy a similar feature.

SmashHit listens for hit requests and processes them independent of the tick stack! Actual damage is still synchronized to the Minecraft server (as damaging players isn't thread-safe), but the hit animation and hit registering is carried out by SmashHit - this means you can hit a player as frequently as the network can handle with zero delay. SmashHit, of course, has an inbuilt configurable rate limiter.

API

Since async code works differently from regular code, we need a separate event for cancelling SmashHit's pre-processing. For this, the "AsyncPreDamageEvent" is provided, which you can hook into. Here is an example for cancelling hits in protected WorldGuard regions:

class WorldGuardListener implements Listener {
	WorldGuardPlugin wg = (WorldGuardPlugin)Bukkit.getServer().getPluginManager().getPlugin("WorldGuard");

	@EventHandler
	public void onAsyncPreDamageEvent(AsyncPreDamageEvent e) {
		Player damager = e.getDamager();
		Damageable entity = e.getEntity();
		World world = damager.getWorld();
		RegionManager rgMgr = wg.getRegionManager(world);

        boolean damagerCanDamage = rgMgr.getApplicableRegions(damager.getLocation()).testState( wg.wrapPlayer(damager), DefaultFlag.PVP)
        boolean entityIsDamageable = rgMgr.getApplicableRegions(entity.getLocation()).testState( wg.wrapPlayer(damager), DefaultFlag.PVP)
		if(!damagerCanDamage || !entityIsDamageable) {
			e.setCancelled(true);
		}
	}

}

Remember that your listener is invoked asynchronously and you can NOT safely write to the Bukkit API

smashhit's People

Contributors

frash23 avatar

Watchers

James Cloos avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.