use of org.bukkit.craftbukkit.v1_18_R2.entity in project RoseStacker by Rosewood-Development.
the class NMSHandlerImpl method updateEntityNameTagVisibilityForPlayer.
@Override
public void updateEntityNameTagVisibilityForPlayer(Player player, org.bukkit.entity.Entity entity, boolean customNameVisible) {
try {
List<SynchedEntityData.DataItem<?>> dataItems = Lists.newArrayList(new SynchedEntityData.DataItem<>(EntityDataSerializers.BOOLEAN.createAccessor(3), customNameVisible));
ClientboundSetEntityDataPacket entityDataPacket = new ClientboundSetEntityDataPacket(entity.getEntityId(), new SynchedEntityDataWrapper(dataItems), false);
((CraftPlayer) player).getHandle().connection.send(entityDataPacket);
} catch (Exception e) {
e.printStackTrace();
}
}
use of org.bukkit.craftbukkit.v1_18_R2.entity in project RoseStacker by Rosewood-Development.
the class NMSHandlerImpl method createEntityFromNBT.
@Override
public LivingEntity createEntityFromNBT(StackedEntityDataEntry<?> serialized, Location location, boolean addToWorld, EntityType entityType) {
try {
NBTTagCompound nbt = (NBTTagCompound) serialized.get();
NBTTagList positionTagList = nbt.getList("Pos", 6);
if (positionTagList == null)
positionTagList = new NBTTagList();
this.setTag(positionTagList, 0, NBTTagDouble.a(location.getX()));
this.setTag(positionTagList, 1, NBTTagDouble.a(location.getY()));
this.setTag(positionTagList, 2, NBTTagDouble.a(location.getZ()));
nbt.set("Pos", positionTagList);
NBTTagList rotationTagList = nbt.getList("Rotation", 5);
if (rotationTagList == null)
rotationTagList = new NBTTagList();
this.setTag(rotationTagList, 0, NBTTagFloat.a(location.getYaw()));
this.setTag(rotationTagList, 1, NBTTagFloat.a(location.getPitch()));
nbt.set("Rotation", rotationTagList);
// Reset the UUID to resolve possible duplicates
nbt.a("UUID", UUID.randomUUID());
Optional<EntityTypes<?>> optionalEntity = EntityTypes.a(entityType.getKey().getKey());
if (optionalEntity.isPresent()) {
WorldServer world = ((CraftWorld) location.getWorld()).getHandle();
Entity entity = this.createCreature(optionalEntity.get(), world, nbt, null, null, new BlockPosition(location.getBlockX(), location.getBlockY(), location.getBlockZ()), EnumMobSpawn.COMMAND);
if (entity == null)
throw new NullPointerException("Unable to create entity from NBT");
// Load NBT
entity.load(nbt);
if (addToWorld) {
IChunkAccess ichunkaccess = world.getChunkAt(MathHelper.floor(entity.locX() / 16.0D), MathHelper.floor(entity.locZ() / 16.0D), ChunkStatus.FULL, true);
if (!(ichunkaccess instanceof Chunk))
throw new NullPointerException("Unable to spawn entity from NBT, couldn't get chunk");
ichunkaccess.a(entity);
method_WorldServer_registerEntity.invoke(world, entity);
entity.noDamageTicks = 0;
}
return (LivingEntity) entity.getBukkitEntity();
}
} catch (Exception e) {
e.printStackTrace();
}
return null;
}
use of org.bukkit.craftbukkit.v1_18_R2.entity in project RoseStacker by Rosewood-Development.
the class NMSHandlerImpl method createNewEntityUnspawned.
@Override
public LivingEntity createNewEntityUnspawned(EntityType entityType, Location location, SpawnReason spawnReason) {
World world = location.getWorld();
if (world == null)
return null;
Class<? extends org.bukkit.entity.Entity> entityClass = entityType.getEntityClass();
if (entityClass == null || !LivingEntity.class.isAssignableFrom(entityClass))
throw new IllegalArgumentException("EntityType must be of a LivingEntity");
EntityTypes<? extends Entity> nmsEntityType = IRegistry.ENTITY_TYPE.get(CraftNamespacedKey.toMinecraft(entityType.getKey()));
Entity nmsEntity = this.createCreature(nmsEntityType, ((CraftWorld) world).getHandle(), null, null, null, new BlockPosition(location.getBlockX(), location.getBlockY(), location.getBlockZ()), this.toNmsSpawnReason(spawnReason));
return nmsEntity == null ? null : (LivingEntity) nmsEntity.getBukkitEntity();
}
use of org.bukkit.craftbukkit.v1_18_R2.entity in project LibsDisguises by libraryaddict.
the class ReflectionManager method getSize.
public float[] getSize(Entity entity) {
net.minecraft.world.entity.Entity nmsEntity = ((CraftEntity) entity).getHandle();
EntityDimensions dimensions = nmsEntity.getDimensions(net.minecraft.world.entity.Pose.STANDING);
return new float[] { dimensions.width, nmsEntity.getEyeHeight() };
}
use of org.bukkit.craftbukkit.v1_18_R2.entity in project Insights by InsightsPlugin.
the class ChunkContainer method get.
@Override
public DistributionStorage get() {
ChunkVector min = cuboid.getMin();
ChunkVector max = cuboid.getMax();
int minX = min.getX();
int maxX = max.getX();
int minZ = min.getZ();
int maxZ = max.getZ();
int blockMinY = Math.max(min.getY(), 0);
int blockMaxY = Math.abs(Math.min(min.getY(), 0)) + max.getY();
ServerLevel serverLevel = ((CraftWorld) world).getHandle();
if (options.materials()) {
LevelChunkSection[] chunkSections;
try {
chunkSections = getChunkSections();
} catch (IOException ex) {
throw new ChunkIOException(ex);
}
int minSectionY = blockMinY >> 4;
int maxSectionY = blockMaxY >> 4;
for (int sectionY = minSectionY; sectionY <= maxSectionY; sectionY++) {
int minY = sectionY == minSectionY ? blockMinY & 15 : 0;
int maxY = sectionY == maxSectionY ? blockMaxY & 15 : 15;
LevelChunkSection section = chunkSections[sectionY];
if (section == null) {
// Section is empty, count everything as air
long count = (maxX - minX + 1L) * (maxY - minY + 1L) * (maxZ - minZ + 1L);
materialMap.merge(Material.AIR, count, Long::sum);
} else if (minX == 0 && maxX == 15 && minY == 0 && maxY == 15 && minZ == 0 && maxZ == 15) {
// Section can be counted as a whole
section.getStates().count((state, count) -> {
try {
materialMap.merge(CraftMagicNumbers.getMaterial(state.getBlock()), (long) count, Long::sum);
} catch (Throwable th) {
th.printStackTrace();
}
});
} else {
// Section must be scanned block by block
for (int x = minX; x <= maxX; x++) {
for (int y = minY; y <= maxY; y++) {
for (int z = minZ; z <= maxZ; z++) {
materialMap.merge(CraftMagicNumbers.getMaterial(section.getBlockState(x, y, z).getBlock()), 1L, Long::sum);
}
}
}
}
}
}
if (options.entities()) {
PersistentEntitySectionManager<Entity> entityManager = serverLevel.entityManager;
long chunkKey = getChunkKey();
final Stream<Entity> entityStream;
if (entityManager.areEntitiesLoaded(chunkKey)) {
EntitySectionStorage<Entity> sectionStorage;
try {
sectionStorage = RPersistentEntitySectionManager.getSectionStorage(entityManager);
} catch (Throwable th) {
throw new ChunkReflectionException(th);
}
entityStream = sectionStorage.getExistingSectionsInChunk(chunkKey).flatMap(EntitySection::getEntities);
} else {
EntityPersistentStorage<Entity> permanentStorage;
try {
permanentStorage = RPersistentEntitySectionManager.getPermanentStorage(entityManager);
} catch (Throwable th) {
throw new ChunkReflectionException(th);
}
entityStream = permanentStorage.loadEntities(new ChunkPos(chunkX, chunkZ)).join().getEntities();
}
entityStream.filter(entity -> {
int x = entity.getBlockX() & 15;
int y = entity.getBlockY();
int z = entity.getBlockZ() & 15;
return minX <= x && x <= maxX && blockMinY <= y && y <= blockMaxY && minZ <= z && z <= maxZ;
}).forEach(entity -> entityMap.merge(entity.getBukkitEntity().getType(), 1L, Long::sum));
}
return DistributionStorage.of(materialMap, entityMap);
}
Aggregations