TeTpaAka

Results 6 comments of TeTpaAka

> Yes, I was aware of the diff part. I didn't consider sending deltas over a reliable channel though! I wouldn't recommend sending state data over a reliable channel. The...

https://github.com/meetDeveloper/Dictionary-Anywhere/blob/master/background/background.js#L9C1-L9C81 ``` const { word, lang } = request, url = `https://www.google.com/search?hl=${lang}&q=define+${word}&gl=US`; ``` It's apparently using Google.

> Godot / ENET do batch RPCs, this can be confirmed with a packet capture. My wireshark trace clearly shows seperate packages for each rpc. Can you share your test...

> I would imagine packet capturing any game would show it. > > Here for instance you can see three rollback synchronizer rpcs, 'motion' is player input direction in my...

I created a small test program: ``` extends Control const IP_ADDRESS := "localhost" const PORT := 12345 const MAX_CLIENTS := 4 func _ready() -> void: if OS.get_cmdline_args().find("--server") > 0: #...

> I think you're right. At some point netfox switched to sending the entire dictionaries repeatedly instead of just their values which was the intention in the original PR: [#221...