You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Any reason why you chose to discontinue the library? We can definitely improve it together and it would be a nice project to tackle. There are a few things we can do to improve it (I'm almost done with the initial improvements):
Dependence on HttpContext, which can be circumvented using TcpListener
Game state design can be improved to use Enum and built-in .NET types
UacHelper needs to be completely removed
Test project that tests public API
We can make it much better than @master117's library. Let me know.
The text was updated successfully, but these errors were encountered:
I've realised that my approach to this was entirely overcomplicated (in it's current state, the library is basically just a wrapper for a JObject).
When I started working on this, I initially used a TcpListener instead of the current HttpListener. The problem was that ~100 TcpClients were being accepted every second, even though there should have been <1. I switched to the HttpListener after I couldn't figure out why this was happening.
Enums were exactly what I was planning to implement to increase usability, but it didn't seem feasible with the current approach.
I'm not really willing to put more energy into this project when I know that there are much more competent developers out there that have already released similar libraries.
Okay, sounds good, although I wouldn't say @master117's library is any better at all. It is a basic wrapper around HttpListener and doesn't even parse JSON. Thanks for your time.
Hello,
Any reason why you chose to discontinue the library? We can definitely improve it together and it would be a nice project to tackle. There are a few things we can do to improve it (I'm almost done with the initial improvements):
HttpContext
, which can be circumvented usingTcpListener
Enum
and built-in .NET typesUacHelper
needs to be completely removedWe can make it much better than @master117's library. Let me know.
The text was updated successfully, but these errors were encountered: