SquidDev-CC / CCTweaks

Random additions to ComputerCraft (somewhat deprecated, use CC-Tweaked if you're on Minecraft 1.12).
MIT License
12 stars 2 forks source link

Packet optimisations and improvements #140

Closed SquidDev closed 7 years ago

SquidDev commented 7 years ago

There are several performance and security issues with CC's current packet system. All these options should be behind a series of config options as they may break other mods.

SquidDev commented 7 years ago

Sadly, when broadcasting terminal state, you have to at least send most of the terminal object (otherwise it deletes it for whatever reason).

Thankfully you don't have to send the actual terminal contents. It should be possible to only send terminal lines to those listening. Possibly only the lines which have changed.

SquidDev commented 7 years ago

Sadly you either have to send the whole terminal or nothing at all. I don't really want to hack the vanilla protocol too much, so this'll have to do.