Code/net/minecraft/world/level/entity/TransientEntitySectionManag...

142 lines
6.3 KiB
Java
Raw Permalink Normal View History

2025-07-01 06:20:03 +00:00
package net.minecraft.world.level.entity;
import com.mojang.logging.LogUtils;
import it.unimi.dsi.fastutil.longs.LongOpenHashSet;
import it.unimi.dsi.fastutil.longs.LongSet;
import net.minecraft.core.BlockPos;
import net.minecraft.core.SectionPos;
import net.minecraft.util.VisibleForDebug;
import net.minecraft.world.entity.Entity;
import net.minecraft.world.level.ChunkPos;
import org.slf4j.Logger;
public class TransientEntitySectionManager<T extends EntityAccess> {
static final Logger LOGGER = LogUtils.getLogger();
final LevelCallback<T> callbacks;
final EntityLookup<T> entityStorage;
final EntitySectionStorage<T> sectionStorage;
private final LongSet tickingChunks = new LongOpenHashSet();
private final LevelEntityGetter<T> entityGetter;
public TransientEntitySectionManager(Class<T> p_157643_, LevelCallback<T> p_157644_) {
this.entityStorage = new EntityLookup<>();
this.sectionStorage = new EntitySectionStorage<>(p_157643_, p_157647_ -> this.tickingChunks.contains(p_157647_) ? Visibility.TICKING : Visibility.TRACKED);
this.callbacks = p_157644_;
this.entityGetter = new LevelEntityGetterAdapter<>(this.entityStorage, this.sectionStorage);
}
public void startTicking(ChunkPos p_157652_) {
long i = p_157652_.toLong();
this.tickingChunks.add(i);
this.sectionStorage.getExistingSectionsInChunk(i).forEach(p_157663_ -> {
Visibility visibility = p_157663_.updateChunkStatus(Visibility.TICKING);
if (!visibility.isTicking()) {
p_157663_.getEntities().filter(p_157666_ -> !p_157666_.isAlwaysTicking()).forEach(this.callbacks::onTickingStart);
}
});
}
public void stopTicking(ChunkPos p_157659_) {
long i = p_157659_.toLong();
this.tickingChunks.remove(i);
this.sectionStorage.getExistingSectionsInChunk(i).forEach(p_157656_ -> {
Visibility visibility = p_157656_.updateChunkStatus(Visibility.TRACKED);
if (visibility.isTicking()) {
p_157656_.getEntities().filter(p_157661_ -> !p_157661_.isAlwaysTicking()).forEach(this.callbacks::onTickingEnd);
}
});
}
public LevelEntityGetter<T> getEntityGetter() {
return this.entityGetter;
}
public void addEntity(T p_157654_) {
this.entityStorage.add(p_157654_);
long i = SectionPos.asLong(p_157654_.blockPosition());
EntitySection<T> entitysection = this.sectionStorage.getOrCreateSection(i);
entitysection.add(p_157654_);
p_157654_.setLevelCallback(new TransientEntitySectionManager.Callback(p_157654_, i, entitysection));
this.callbacks.onCreated(p_157654_);
this.callbacks.onTrackingStart(p_157654_);
if (p_157654_.isAlwaysTicking() || entitysection.getStatus().isTicking()) {
this.callbacks.onTickingStart(p_157654_);
}
}
@VisibleForDebug
public int count() {
return this.entityStorage.count();
}
void removeSectionIfEmpty(long p_157649_, EntitySection<T> p_157650_) {
if (p_157650_.isEmpty()) {
this.sectionStorage.remove(p_157649_);
}
}
@VisibleForDebug
public String gatherStats() {
return this.entityStorage.count() + "," + this.sectionStorage.count() + "," + this.tickingChunks.size();
}
class Callback implements EntityInLevelCallback {
private final T entity;
private long currentSectionKey;
private EntitySection<T> currentSection;
Callback(final T p_157673_, final long p_157674_, final EntitySection<T> p_157675_) {
this.entity = p_157673_;
this.currentSectionKey = p_157674_;
this.currentSection = p_157675_;
}
@Override
public void onMove() {
BlockPos blockpos = this.entity.blockPosition();
long i = SectionPos.asLong(blockpos);
if (i != this.currentSectionKey) {
Visibility visibility = this.currentSection.getStatus();
if (!this.currentSection.remove(this.entity)) {
TransientEntitySectionManager.LOGGER
.warn("Entity {} wasn't found in section {} (moving to {})", this.entity, SectionPos.of(this.currentSectionKey), i);
}
TransientEntitySectionManager.this.removeSectionIfEmpty(this.currentSectionKey, this.currentSection);
EntitySection<T> entitysection = TransientEntitySectionManager.this.sectionStorage.getOrCreateSection(i);
entitysection.add(this.entity);
this.currentSection = entitysection;
this.currentSectionKey = i;
TransientEntitySectionManager.this.callbacks.onSectionChange(this.entity);
if (!this.entity.isAlwaysTicking()) {
boolean flag = visibility.isTicking();
boolean flag1 = entitysection.getStatus().isTicking();
if (flag && !flag1) {
TransientEntitySectionManager.this.callbacks.onTickingEnd(this.entity);
} else if (!flag && flag1) {
TransientEntitySectionManager.this.callbacks.onTickingStart(this.entity);
}
}
}
}
@Override
public void onRemove(Entity.RemovalReason p_157678_) {
if (!this.currentSection.remove(this.entity)) {
TransientEntitySectionManager.LOGGER
.warn("Entity {} wasn't found in section {} (destroying due to {})", this.entity, SectionPos.of(this.currentSectionKey), p_157678_);
}
Visibility visibility = this.currentSection.getStatus();
if (visibility.isTicking() || this.entity.isAlwaysTicking()) {
TransientEntitySectionManager.this.callbacks.onTickingEnd(this.entity);
}
TransientEntitySectionManager.this.callbacks.onTrackingEnd(this.entity);
TransientEntitySectionManager.this.callbacks.onDestroyed(this.entity);
TransientEntitySectionManager.this.entityStorage.remove(this.entity);
this.entity.setLevelCallback(NULL);
TransientEntitySectionManager.this.removeSectionIfEmpty(this.currentSectionKey, this.currentSection);
}
}
}