Skip to content

Commit

Permalink
Knockback (#2094)
Browse files Browse the repository at this point in the history
* Implements Paper only knockback event

* fix typo (1.14->1.15)

* small cleanup

* fixes!

* Moar Fix!

* first thing in the morning fixes.....

* learned the alphabet since the last update

* more fix
  • Loading branch information
Ph4i1ur3 authored and mcmonkey4eva committed Dec 21, 2019
1 parent c28094f commit a31eabd
Show file tree
Hide file tree
Showing 2 changed files with 127 additions and 0 deletions.
Expand Up @@ -12,6 +12,7 @@ public class PaperModule {
public static void init() {
Debug.log("Loading Paper support module...");
// Events
ScriptEvent.registerScriptEvent(new EntityKnocksbackEntityScriptEvent());
ScriptEvent.registerScriptEvent(new PlayerEquipsArmorScriptEvent());
ScriptEvent.registerScriptEvent(new PlayerJumpsPaperScriptEventImpl());
ScriptEvent.registerScriptEvent(new PlayerSpectatesEntityScriptEvent());
Expand Down
@@ -0,0 +1,126 @@
package com.denizenscript.denizen.paper.events;

import com.denizenscript.denizen.events.BukkitScriptEvent;
import com.denizenscript.denizen.objects.EntityTag;
import com.denizenscript.denizen.objects.LocationTag;
import com.denizenscript.denizen.utilities.implementation.BukkitScriptEntryData;
import com.denizenscript.denizencore.objects.ObjectTag;
import com.denizenscript.denizen.objects.ItemTag;
import com.denizenscript.denizencore.scripts.ScriptEntryData;
import com.denizenscript.denizencore.scripts.containers.ScriptContainer;
import com.denizenscript.denizencore.utilities.CoreUtilities;
import com.destroystokyo.paper.event.entity.EntityKnockbackByEntityEvent;
import org.bukkit.event.EventHandler;
import org.bukkit.event.Listener;

public class EntityKnocksbackEntityScriptEvent extends BukkitScriptEvent implements Listener {

// <--[event]
// @Events
// entity knocks back entity
// entity knocks back <entity>
// <entity> knocks back entity
// <entity> knocks back <entity>
//
// @Regex ^on [^\s]+ knocks back [^\s]+$
//
// @Switch in:<area> to only process the event if it occurred within a specified area.
// @Switch with:<item> to only process the event when the item used to cause damage (in the damager's hand) is a specified item.
//
// @Plugin Paper
//
// @Cancellable true
//
// @Triggers when an entity is knocked back from the hit of another entity.
//
// @Context
// <context.entity> returns the EntityTag that was knocked back.
// <context.damager> returns the EntityTag of the one who knocked.
// <context.acceleration> returns the knockback applied as a vector.
//
// @Player when the damager or damaged entity is a player. Cannot be both.
//
// @NPC when the damager or damaged entity is an NPC. Cannot be both.
//
// -->

public EntityKnocksbackEntityScriptEvent() {
instance = this;
}

public static EntityKnocksbackEntityScriptEvent instance;

public EntityTag entity;
public EntityTag hitBy;
public ItemTag held;
public EntityKnockbackByEntityEvent event;

@Override
public boolean couldMatch(ScriptPath path) {
return path.eventArgLowerAt(1).equals("knocks") &&
path.eventArgLowerAt(2).equals("back");
}

@Override
public boolean matches(ScriptPath path) {
String attacker = path.eventArgLowerAt(0);
String target = path.eventArgLowerAt(3);
if (!tryEntity(hitBy, attacker) || (!tryEntity(entity, target))) {
return false;
}
if (!runInCheck(path, entity.getLocation())) {
return false;
}
if (!runWithCheck(path, held)) {
return false;
}
return super.matches(path);
}

@Override
public String getName() {
return "EntityKnocksbackEntity";
}

@Override
public boolean applyDetermination(ScriptPath path, ObjectTag determinationObj) {
if (!isDefaultDetermination(determinationObj)) {
String determination = determinationObj.toString();
if (LocationTag.matches(determination)) {
event.getAcceleration().copy((LocationTag.valueOf(determination)).toVector());
return true;
}
}
return super.applyDetermination(path, determinationObj);
}

@Override
public ScriptEntryData getScriptEntryData() {
return new BukkitScriptEntryData(
hitBy.isPlayer() ? hitBy.getDenizenPlayer() : entity.isPlayer() ? entity.getDenizenPlayer() : null,
hitBy.isCitizensNPC() ? hitBy.getDenizenNPC() : entity.isCitizensNPC() ? entity.getDenizenNPC() : null);
}

@Override
public ObjectTag getContext(String name) {
if (name.equals("entity")) {
return entity.getDenizenObject();
}
else if (name.equals("damager")) {
return hitBy.getDenizenObject();
}
else if (name.equals("acceleration")) {
return new LocationTag(event.getAcceleration());
}
return super.getContext(name);
}

@EventHandler
public void onEntityKnockbackEntity(EntityKnockbackByEntityEvent event) {
entity = new EntityTag(event.getEntity());
hitBy = new EntityTag(event.getHitBy());
held = hitBy.getItemInHand();
this.event = event;
fire(event);
}
}

0 comments on commit a31eabd

Please sign in to comment.