yojimbo
A network library for client/server games written in C++ (by mas-bandwidth)
RakNet
RakNet is a cross platform, open source, C++ networking engine for game programmers. (by facebookarchive)
yojimbo | RakNet | |
---|---|---|
5 | 6 | |
2,591 | 3,029 | |
0.6% | - | |
6.2 | 0.0 | |
25 days ago | over 3 years ago | |
C | HTML | |
BSD 3-clause "New" or "Revised" License | GNU General Public License v3.0 or later |
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
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.
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.
yojimbo
Posts with mentions or reviews of yojimbo.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2022-10-06.
-
Multiplayer Networking Solutions
yojimbo/ netcode/ reliable, all developped by Glenn Fidler, author of GafferOnGames
-
"Move all" feature added in inventory. In your face little fudsters. Gaming revolution incoming!
They really just didn't know how to go about building a complex online game or what that entails. At one point they were trying to donate to open source networking projects that were still in development and not production-ready in hopes they'd help them make their game, you'll see them listed as sponsors of yojimbo for example. It was bizarre to watch.
-
Handling acks during 1+ second packet loss with Glenn Fiedler's Reliable UDP Solution
I can't remember exactly how best to handle this (Glenn's yojimbo project is probably your best bet for a concrete implementation), but here's an idea: buffer and ACK some packets (e.g. up to N packets following your missing packet) and discard everything else (without ACK) until the missing one shows up. The protocol will then continuously try to send your missing packet, in addition to the packets you've intentionally not ACK'd. Once the missing packet shows up you can process it and any buffered packets up to your next missing packet and repeat.
-
I need a good and simple networking library for C++
You may want to take a look at yojimbo , looks like it will fit your requirements pretty well.
-
Programming question : Which techniques are used to achieve real-time between players in online openworlds ? (think wow, ff14, teso)
And has his own C++ library for transmitting messages over UDP protocol https://github.com/networkprotocol/yojimbo
RakNet
Posts with mentions or reviews of RakNet.
We have used some of these posts to build our list of alternatives
and similar projects. The last one was on 2023-07-11.
-
Microsoft wins FTC fight to buy Activision Blizzard
Halo was mostly all about single player and early multiplayer/local multiplayer but their online netcode has sucked since Blood Gulch. Lots of games do networking horribly, I have been in gamedev making networking and I hate most of what people do. The ones that have a clean natting, based on enet style reliable UDP channels, RakNet style punch are better (RakNet was good until Facebook bought it). It has come a long way but also fallen back. Valve source netcode (on github) is probably the best and you can check it out here. They started with the best in Quake networking, then to Source.
-
Does anyone has the raknet src of roblox
Here
-
Multiplayer Networking Solutions
Raknet No longer worked on but from what I've read, it's complete and working. It has been used in many games between 2000 - 2010
-
Making a multiplayer server
Inconsistencies can be prevented by ensuring the server handles all operations and does so in a given order, then transmits the results to clients. I wrote a little about this for my game Avoyd a long while ago. Clients (including a client running the server) send an edit request via reliable ordered UDP (e.g. using Enet, Raknet, Steam Networking etc.) and the server places these in a single queue then performs the edits and sends the results back also using reliable ordered UDP.
-
[Discussion] What are some old C++ open source projects you wish were still active?
RakNet. It's been forked but still not that active.
-
I want to make a game for Linux. Where do I even start?
RakNet (UDP network library)
What are some alternatives?
When comparing yojimbo and RakNet you can also consider the following projects:
ENet-CSharp - Reliable UDP networking library
KCP - :zap: KCP - A Fast and Reliable ARQ Protocol
netcode.io - Secure client/server connections over UDP
Simple-WebSocket-Server
bitproto - The bit level data interchange format for serializing data structures (long term maintenance).