Citizens2/main/src/main/java/net/citizensnpcs/trait/HologramTrait.java

432 lines
13 KiB
Java
Raw Normal View History

2020-06-30 12:17:14 +02:00
package net.citizensnpcs.trait;
2021-06-03 14:36:45 +02:00
import java.util.Collection;
2020-07-03 09:14:55 +02:00
import java.util.List;
import java.util.regex.Matcher;
import java.util.regex.Pattern;
2022-10-16 04:41:34 +02:00
import java.util.stream.Collectors;
2020-07-03 09:14:55 +02:00
import org.bukkit.ChatColor;
2020-07-03 09:14:55 +02:00
import org.bukkit.Location;
import org.bukkit.Material;
2021-06-03 14:36:45 +02:00
import org.bukkit.entity.ArmorStand;
2020-06-30 12:17:14 +02:00
import org.bukkit.entity.EntityType;
2020-07-03 09:14:55 +02:00
import org.bukkit.event.player.PlayerTeleportEvent.TeleportCause;
import org.bukkit.inventory.ItemStack;
2020-07-03 09:14:55 +02:00
import com.google.common.collect.Lists;
2020-06-30 12:17:14 +02:00
2020-07-03 09:14:55 +02:00
import net.citizensnpcs.Settings.Setting;
2020-06-30 12:17:14 +02:00
import net.citizensnpcs.api.CitizensAPI;
import net.citizensnpcs.api.npc.MemoryNPCDataStore;
import net.citizensnpcs.api.npc.NPC;
import net.citizensnpcs.api.npc.NPCRegistry;
import net.citizensnpcs.api.persistence.Persist;
import net.citizensnpcs.api.trait.Trait;
import net.citizensnpcs.api.trait.TraitName;
2022-09-03 18:22:20 +02:00
import net.citizensnpcs.api.util.DataKey;
2020-06-30 12:17:14 +02:00
import net.citizensnpcs.api.util.Placeholders;
2022-08-12 07:48:54 +02:00
import net.citizensnpcs.api.util.SpigotUtil;
2020-07-06 02:42:46 +02:00
import net.citizensnpcs.util.NMS;
2022-10-16 04:41:34 +02:00
import net.citizensnpcs.util.Util;
2020-06-30 12:17:14 +02:00
/**
* Persists a hologram attached to the NPC.
*/
@TraitName("hologramtrait")
public class HologramTrait extends Trait {
2020-07-03 09:14:55 +02:00
private Location currentLoc;
2020-07-27 11:34:07 +02:00
@Persist
private HologramDirection direction = HologramDirection.BOTTOM_UP;
2022-04-21 09:25:57 +02:00
private double lastEntityHeight = 0;
private boolean lastNameplateVisible;
2020-06-30 12:17:14 +02:00
@Persist
2020-07-03 09:14:55 +02:00
private double lineHeight = -1;
2022-09-03 18:22:20 +02:00
private final List<HologramLine> lines = Lists.newArrayList();
private NPC nameNPC;
2021-02-04 03:10:48 +01:00
private final NPCRegistry registry = CitizensAPI.createCitizensBackedNPCRegistry(new MemoryNPCDataStore());
2023-02-20 16:34:12 +01:00
private int t;
2020-06-30 12:17:14 +02:00
public HologramTrait() {
super("hologramtrait");
}
2021-06-03 14:36:45 +02:00
/**
* Adds a new hologram line which will displayed over an NPC's head.
*
* @param text
* The new line to add
*/
2020-07-03 09:14:55 +02:00
public void addLine(String text) {
2022-09-03 18:22:20 +02:00
lines.add(new HologramLine(text, true));
reloadLineHolograms();
2020-07-03 09:14:55 +02:00
}
2022-09-03 18:22:20 +02:00
/**
* Adds a new hologram line which will displayed over an NPC's head. It will not persist to disk and will last for
* the specified amount of ticks.
*
* @param text
* The new line to add
* @param ticks
* The number of ticks to last for
*/
public void addTemporaryLine(String text, int ticks) {
lines.add(new HologramLine(text, false, ticks));
2022-10-16 04:41:34 +02:00
reloadLineHolograms();
2022-09-03 18:22:20 +02:00
}
2021-06-03 14:36:45 +02:00
/**
* Clears all hologram lines
*/
2020-07-06 19:07:01 +02:00
public void clear() {
2022-10-16 04:41:34 +02:00
for (HologramLine line : lines) {
line.removeNPC();
}
2020-07-06 19:07:01 +02:00
lines.clear();
}
private NPC createHologram(String line, double heightOffset) {
NPC hologramNPC = registry.createNPC(EntityType.ARMOR_STAND, line);
2022-10-04 16:18:05 +02:00
hologramNPC.getOrAddTrait(ArmorStandTrait.class).setAsHelperEntityWithName(npc);
if (Setting.PACKET_HOLOGRAMS.asBoolean()) {
hologramNPC.addTrait(PacketNPC.class);
}
2020-07-27 11:34:07 +02:00
hologramNPC.spawn(currentLoc.clone().add(0,
getEntityHeight()
+ (direction == HologramDirection.BOTTOM_UP ? heightOffset : getMaxHeight() - heightOffset),
0));
Matcher itemMatcher = ITEM_MATCHER.matcher(line);
if (itemMatcher.matches()) {
2022-08-12 07:48:54 +02:00
Material item = SpigotUtil.isUsing1_13API() ? Material.matchMaterial(itemMatcher.group(1), false)
: Material.matchMaterial(itemMatcher.group(1));
NPC itemNPC = registry.createNPCUsingItem(EntityType.DROPPED_ITEM, "", new ItemStack(item, 1));
2023-02-13 15:20:13 +01:00
itemNPC.data().setPersistent(NPC.Metadata.NAMEPLATE_VISIBLE, false);
if (itemMatcher.group(2) != null) {
2022-10-16 04:41:34 +02:00
itemNPC.getOrAddTrait(ScoreboardTrait.class)
.setColor(Util.matchEnum(ChatColor.values(), itemMatcher.group(2).substring(1)));
2022-10-16 04:41:34 +02:00
}
itemNPC.spawn(currentLoc);
((ArmorStand) hologramNPC.getEntity()).addPassenger(itemNPC.getEntity());
itemNPC.addRunnable(new Runnable() {
@Override
public void run() {
if (!itemNPC.isSpawned() || !itemNPC.getEntity().isInsideVehicle()) {
itemNPC.destroy();
}
}
});
}
2022-04-21 09:25:57 +02:00
lastEntityHeight = getEntityHeight();
return hologramNPC;
}
2021-06-03 14:36:45 +02:00
/**
* @return The direction that hologram lines are displayed in
*/
2020-10-07 13:16:41 +02:00
public HologramDirection getDirection() {
return direction;
}
2020-07-06 02:42:46 +02:00
private double getEntityHeight() {
return NMS.getHeight(npc.getEntity());
}
2020-07-03 09:14:55 +02:00
private double getHeight(int lineNumber) {
double base = (lastNameplateVisible ? 0 : -getLineHeight());
for (int i = 0; i <= lineNumber; i++) {
HologramLine line = lines.get(i);
base += line.mb + getLineHeight();
if (i != lineNumber) {
base += line.mt;
}
}
return base;
2020-07-03 09:14:55 +02:00
}
2021-06-03 14:36:45 +02:00
/**
* Note: this is implementation-specific and may be removed at a later date.
*/
public Collection<ArmorStand> getHologramEntities() {
2022-10-16 04:41:34 +02:00
return lines.stream().filter(l -> l.hologram != null && l.hologram.getEntity() != null)
.map(l -> (ArmorStand) l.hologram.getEntity()).collect(Collectors.toList());
2021-06-03 14:36:45 +02:00
}
/**
* @return The line height between each hologram line, in blocks
*/
2020-10-07 13:16:41 +02:00
public double getLineHeight() {
2022-08-12 07:48:54 +02:00
return lineHeight == -1 ? Setting.DEFAULT_NPC_HOLOGRAM_LINE_HEIGHT.asDouble() : lineHeight;
2020-10-07 13:16:41 +02:00
}
2021-06-03 14:36:45 +02:00
/**
* @return the hologram lines, in bottom-up order
*/
2020-07-03 09:14:55 +02:00
public List<String> getLines() {
2022-09-03 18:22:20 +02:00
return Lists.transform(lines, (l) -> l.text);
2020-07-03 09:14:55 +02:00
}
2020-07-27 11:34:07 +02:00
private double getMaxHeight() {
return (lastNameplateVisible ? getLineHeight() : 0) + getHeight(lines.size() - 1);
2020-07-27 11:34:07 +02:00
}
2021-06-03 14:36:45 +02:00
/**
* Note: this is implementation-specific and may be removed at a later date.
*/
public ArmorStand getNameEntity() {
return nameNPC != null && nameNPC.isSpawned() ? ((ArmorStand) nameNPC.getEntity()) : null;
2021-06-03 14:36:45 +02:00
}
2022-09-03 18:22:20 +02:00
@Override
public void load(DataKey root) {
2022-10-16 04:41:34 +02:00
clear();
2022-09-03 18:22:20 +02:00
for (DataKey key : root.getRelative("lines").getIntegerSubKeys()) {
lines.add(new HologramLine(key.getString(""), true));
}
}
2020-06-30 12:17:14 +02:00
@Override
public void onDespawn() {
2021-07-04 07:07:15 +02:00
if (nameNPC != null) {
nameNPC.destroy();
nameNPC = null;
}
2022-10-16 04:41:34 +02:00
for (HologramLine line : lines) {
line.removeNPC();
2021-07-04 07:07:15 +02:00
}
2020-06-30 12:17:14 +02:00
}
@Override
public void onRemove() {
2021-07-04 07:07:15 +02:00
onDespawn();
}
2020-06-30 12:17:14 +02:00
@Override
public void onSpawn() {
if (!npc.isSpawned())
return;
2022-10-16 04:41:34 +02:00
lastNameplateVisible = Boolean
.parseBoolean(npc.data().<Object> get(NPC.Metadata.NAMEPLATE_VISIBLE, true).toString());
2021-07-04 07:07:15 +02:00
currentLoc = npc.getStoredLocation();
if (npc.requiresNameHologram() && lastNameplateVisible) {
2022-12-24 06:36:24 +01:00
nameNPC = createHologram(Placeholders.replace(npc.getRawName(), null, npc), 0);
2021-07-04 07:07:15 +02:00
}
for (int i = 0; i < lines.size(); i++) {
2022-10-16 04:41:34 +02:00
lines.get(i).spawnNPC(getHeight(i));
}
}
private void reloadLineHolograms() {
2022-10-16 04:41:34 +02:00
for (HologramLine line : lines) {
line.removeNPC();
}
if (!npc.isSpawned())
return;
2022-09-03 18:22:20 +02:00
2021-07-04 07:07:15 +02:00
for (int i = 0; i < lines.size(); i++) {
2022-10-16 04:41:34 +02:00
lines.get(i).spawnNPC(getHeight(i));
2021-07-04 07:07:15 +02:00
}
2020-07-03 09:14:55 +02:00
}
2021-06-03 14:36:45 +02:00
/**
* Removes the line at the specified index
*
* @param idx
*/
2020-07-03 09:14:55 +02:00
public void removeLine(int idx) {
if (idx < 0 || idx >= lines.size())
return;
2022-10-16 04:41:34 +02:00
lines.remove(idx).removeNPC();
reloadLineHolograms();
2020-06-30 12:17:14 +02:00
}
@Override
public void run() {
2020-07-03 09:14:55 +02:00
if (!npc.isSpawned()) {
2021-07-04 07:07:15 +02:00
onDespawn();
2020-06-30 12:17:14 +02:00
return;
}
2021-09-05 08:59:19 +02:00
if (currentLoc == null) {
currentLoc = npc.getStoredLocation();
}
boolean nameplateVisible = Boolean
.parseBoolean(npc.data().<Object> get(NPC.Metadata.NAMEPLATE_VISIBLE, true).toString());
2020-07-10 06:19:29 +02:00
if (npc.requiresNameHologram()) {
if (nameNPC != null && !nameplateVisible) {
2020-07-10 06:19:29 +02:00
nameNPC.destroy();
nameNPC = null;
} else if (nameNPC == null && nameplateVisible) {
2022-12-24 06:36:24 +01:00
nameNPC = createHologram(Placeholders.replace(npc.getRawName(), null, npc), 0);
2020-07-10 06:19:29 +02:00
}
}
2022-10-16 04:41:34 +02:00
boolean updatePosition = currentLoc.getWorld() != npc.getStoredLocation().getWorld()
2022-04-21 09:25:57 +02:00
|| currentLoc.distance(npc.getStoredLocation()) >= 0.001 || lastNameplateVisible != nameplateVisible
2022-04-21 09:27:46 +02:00
|| Math.abs(lastEntityHeight - getEntityHeight()) >= 0.05;
2023-02-20 16:34:12 +01:00
boolean updateName = false;
if (t++ >= Setting.HOLOGRAM_UPDATE_RATE.asTicks() + Util.getFastRandom().nextInt(3) /* add some jitter */) {
2023-02-20 16:34:12 +01:00
t = 0;
updateName = true;
}
lastNameplateVisible = nameplateVisible;
2022-10-16 04:41:34 +02:00
if (updatePosition) {
2020-07-03 09:14:55 +02:00
currentLoc = npc.getStoredLocation();
2022-04-21 09:25:57 +02:00
lastEntityHeight = getEntityHeight();
2020-07-03 09:14:55 +02:00
}
if (nameNPC != null && nameNPC.isSpawned()) {
2022-10-16 04:41:34 +02:00
if (updatePosition) {
nameNPC.teleport(currentLoc.clone().add(0, getEntityHeight(), 0), TeleportCause.PLUGIN);
}
2023-02-20 16:34:12 +01:00
if (updateName) {
nameNPC.setName(Placeholders.replace(npc.getRawName(), null, npc));
}
}
2022-10-16 04:41:34 +02:00
for (int i = 0; i < lines.size(); i++) {
HologramLine line = lines.get(i);
NPC hologramNPC = line.hologram;
if (hologramNPC == null || !hologramNPC.isSpawned())
2020-07-03 09:14:55 +02:00
continue;
2022-10-16 04:41:34 +02:00
if (updatePosition) {
2022-08-12 07:48:54 +02:00
hologramNPC.teleport(currentLoc.clone().add(0, lastEntityHeight
+ (direction == HologramDirection.BOTTOM_UP ? getHeight(i) : getMaxHeight() - getHeight(i)), 0),
2020-07-03 09:14:55 +02:00
TeleportCause.PLUGIN);
}
2022-09-03 18:22:20 +02:00
if (line.ticks > 0 && --line.ticks == 0) {
2022-10-16 04:41:34 +02:00
line.removeNPC();
2022-09-03 18:22:20 +02:00
lines.remove(i--);
continue;
}
2022-10-16 04:41:34 +02:00
2022-09-03 18:22:20 +02:00
String text = line.text;
if (ITEM_MATCHER.matcher(text).matches()) {
hologramNPC.data().set(NPC.Metadata.NAMEPLATE_VISIBLE, false);
continue;
}
2023-02-20 16:34:12 +01:00
if (!updateName)
continue;
hologramNPC.setName(Placeholders.replace(text, null, npc));
hologramNPC.data().set(NPC.Metadata.NAMEPLATE_VISIBLE, npc.getRawName().length() > 0);
2020-06-30 12:17:14 +02:00
}
}
2022-09-03 18:22:20 +02:00
@Override
public void save(DataKey root) {
root.removeKey("lines");
int i = 0;
for (HologramLine line : lines) {
if (!line.persist)
continue;
root.setString("lines." + i, line.text);
i++;
}
}
2021-06-03 14:36:45 +02:00
/**
* @see #getDirection()
* @param direction
* The new direction
*/
2020-07-27 11:34:07 +02:00
public void setDirection(HologramDirection direction) {
this.direction = direction;
reloadLineHolograms();
2020-07-27 11:34:07 +02:00
}
2021-06-03 14:36:45 +02:00
/**
* Sets the hologram line at a specific index
*
* @param idx
* The index
* @param text
* The new line
*/
2020-07-03 09:14:55 +02:00
public void setLine(int idx, String text) {
2020-08-11 16:57:32 +02:00
if (idx == lines.size()) {
addLine(text);
return;
2020-08-11 16:57:32 +02:00
}
2022-10-16 04:41:34 +02:00
HologramLine line = lines.get(idx);
line.setText(text);
if (line.hologram == null) {
reloadLineHolograms();
}
2020-07-03 09:14:55 +02:00
}
2021-06-03 14:36:45 +02:00
/**
* Sets the line height
*
* @see #getLineHeight()
* @param height
* The line height in blocks
*/
2020-07-03 09:14:55 +02:00
public void setLineHeight(double height) {
lineHeight = height;
reloadLineHolograms();
2020-07-03 09:14:55 +02:00
}
2020-07-27 11:34:07 +02:00
public enum HologramDirection {
BOTTOM_UP,
TOP_DOWN;
}
2022-09-03 18:22:20 +02:00
private class HologramLine {
2022-10-16 04:41:34 +02:00
NPC hologram;
double mb, mt;
2022-09-03 18:22:20 +02:00
boolean persist;
String text;
2022-10-16 04:41:34 +02:00
int ticks;
2022-09-03 18:22:20 +02:00
public HologramLine(String text, boolean persist) {
this(text, persist, -1);
}
public HologramLine(String text, boolean persist, int ticks) {
this.text = text == null ? "" : text;
this.persist = persist;
this.ticks = ticks;
if (ITEM_MATCHER.matcher(text).matches()) {
mb = 0.21;
mt = 0.07;
}
2022-09-03 18:22:20 +02:00
}
2022-10-16 04:41:34 +02:00
public void removeNPC() {
if (hologram == null)
return;
hologram.destroy();
hologram = null;
}
public void setText(String text) {
this.text = text;
if (hologram != null) {
hologram.setName(Placeholders.replace(text, null, npc));
}
}
public void spawnNPC(double height) {
this.hologram = createHologram(Placeholders.replace(text, null, npc), height);
}
2022-09-03 18:22:20 +02:00
}
private static final Pattern ITEM_MATCHER = Pattern.compile("<item:(.*?)([:].*?)?>");
2020-06-30 12:17:14 +02:00
}