Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix cancellation of PlayerTrackEntityEvent #12320

Open
wants to merge 2 commits into
base: main
Choose a base branch
from

Conversation

Gerrygames
Copy link
Contributor

Cancelling the PlayerTrackEntityEvent did not remove the player from the seenBy set which leads to updates being broadcast despite the entity not being present on the client and more crucially the entity can only be tracked again by first failing to meet any condition to be tracked.

@Gerrygames Gerrygames requested a review from a team as a code owner March 20, 2025 11:55
@lynxplay
Copy link
Contributor

This reads like it'll start spamming this event every time, attempting to track the player on every tick.

@Gerrygames
Copy link
Contributor Author

Ah yes this is correct. I will add a check if the entity is currently tracked before calling the event.

@Gerrygames
Copy link
Contributor Author

Hm which will still spam the event when the entity is not tracked. But I think this is how this event is supposed to work.

@lynxplay
Copy link
Contributor

Eh, I think the proper solution is the one we wanted for a while, converting seenBy into a Map that attaches some tracking config.

That way, the entity knows vanilla would track it, but we can prevent e.g. packets being sent. This would also be a massive performance boost to the API canSee/hide/show entity stuff.

@electronicboy
Copy link
Member

Yea, as then we can mark it as "tracked" but pretend it isn't, making it easy to allow API to retrack and being able to inline a bunch of stuff much easier rather than several layers of indirection in order to check if we can send to who and what

@Gerrygames
Copy link
Contributor Author

I do agree that this system in general can be improved. The Entity#canSee check can also be quite heavy when entities are hidden from many players. But I think this is outside the scope of this PR. My goal was to fix that cancelling the PlayerTrackEntityEvent leads to a inconsistent state. If this approach is considered too hard of a performance hit then I am happy to wait for a broader rework of the tracking system. However I don't think this is too much of a problem with my updated implementation. The event will only be called upon initial tracking or for entities for which tracking was cancelled by this event. So for servers that aren't cancelling this event at all there should be no performance impact at all.

@kennytv kennytv added type: bug Something doesn't work as it was intended to. scope: api labels Mar 24, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
scope: api type: bug Something doesn't work as it was intended to.
Projects
Status: Awaiting review
Development

Successfully merging this pull request may close these issues.

4 participants