ModernUO/Projects/UOContent/Items/Games
Kamron Batman 10a69bf754
feat: Adds a memory mirrored ring buffer for networking. (#1533)
## Breaking Changes

Incoming packet registration signature has changed to:
```cs
delegate* void OnReceiveCallback(NetState state, SpanReader reader, int packetLength);

IncomingPackets.Register(int packetID, int length, bool ingame, OnReceiveCallback onReceive);
```

For example, an incoming packet handler signature would now look like this:
```cs
public static void SomeIncomingPacket(NetState state, SpanReader reader, int packetLength)
{
    // Parse the data
}
```

## Summary

Updates the network Pipe class to use a mirrored memory technique. This technique involves mapping the same physical memory to two contiguous virtual memory spaces so the byte buffer appears duplicated. This allows writing to a double-sized array to wrap around without the need for the `CircularBuffer` classes.

In practice this allows us to use `Span<byte>` as if the buffer was a regular array.


### Bug Fixes

- [X] Fixes bad fixed length string parsing
2023-10-09 00:57:53 -07:00
..
Mahjong feat: Adds a memory mirrored ring buffer for networking. (#1533) 2023-10-09 00:57:53 -07:00
Backgammon.cs fix: Codegens games (#1058) 2022-06-13 17:31:56 -07:00
BaseBoard.cs feat: Adds SerializedCommandProperty (#1249) 2022-11-14 18:24:33 -08:00
BasePiece.cs fix: Codegens games (#1058) 2022-06-13 17:31:56 -07:00
CheckerBoard.cs fix: Codegens games (#1058) 2022-06-13 17:31:56 -07:00
CheckersPieces.cs fix: Codegens games (#1058) 2022-06-13 17:31:56 -07:00
Chessboard.cs fix: Codegens games (#1058) 2022-06-13 17:31:56 -07:00
ChessPieces.cs fix: Codegens games (#1058) 2022-06-13 17:31:56 -07:00
Dices.cs fix: Fixes crafter deserialize, cleans up bandages, and codegens misc items (#1350) 2023-02-25 00:54:12 -08:00