mc-mesher
GameNetworkingResources
mc-mesher | GameNetworkingResources | |
---|---|---|
1 | 10 | |
5 | 7,653 | |
- | 1.3% | |
3.7 | 6.2 | |
3 months ago | about 1 month ago | |
C++ | C | |
MIT License | - |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
mc-mesher
-
3D Cave Generation?
Something like https://github.com/kyy13/mc-mesher ?
GameNetworkingResources
-
Quake 3 Source Code Review: Network Model
shameless plug: https://github.com/0xFA11/GameNetworkingResources
- A Curated List of Game Network Programming Resources
- Q: How are online games like Street Fighter 6 able to synchronize inputs from two players at a high frame rate? (60fps)
-
Useful resources and guidelines for Multiplayer and Networking? (PvE)
The list maintained here favors content for actual game developers: https://github.com/ThusSpokeNomad/GameNetworkingResources
- Where to start with online multiplayer?
-
How to become a Game Network Programmer?
Here is a list of resources: A Curated List of Game Network Programming Resources
-
How often should i send packets of data to the server/client?
Check these articles here to learn how game netcode works. The answer to your question (and a lot more) will come naturally after a bit of reading. https://github.com/ThusWroteNomad/GameNetworkingResources
- Resources for writing game servers
-
How Do Video Games Stay in Sync? An Intro to the Fascinating Networking O (Cont)
Honestly this is all largely a completely solved problem space. The article is just way out in left field seemingly fully oblivious to how game netcode currently works, which certainly isn't with AI prediction.
Look at actual game engine docs like this one from Valve https://developer.valvesoftware.com/wiki/Latency_Compensatin... or this one from Halo https://www.halowaypoint.com/news/closer-look-halo-infinite-...
But tldr is the only thing a client ever predicts is their own inputs, which of course can't really ever end up wrong later on. There's no other prediction happening (eg, the position of other players is not predicted)
And then for anti-cheat/optimization purposes the server also only sends positions for enemies that could be visible soon, which is done by taping into the same map chunking logic that would be used for asset streaming.
There's a ton of other great resources on this topic here https://github.com/ThusWroteNomad/GameNetworkingResources
But you'll find they all largely do the same basic thing. There's nuance in some of the rules and what state is replicated and what isn't (such as server side or client side ragdolls), but the general architecture tends to be the same. And without a fundamental shift in connectivity, seems pretty unlikely to change.
-
In what order would you add features for an MMO?
https://github.com/MFatihMAR/Game-Networking-Resources (This is a list maintained by someone else, and it has some amazing things in it, and far more technical leaning than what I maintain).
What are some alternatives?
soup - Soup is a build system that guarantees incremental build correctness and aims to simplify many aspects of developing shared code while maintaining best in class performance.
rayjs - Javascript bindings for raylib in a single ~3mb executable