## 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
18 lines
491 B
C#
18 lines
491 B
C#
using System.Buffers;
|
|
using Server.Network;
|
|
|
|
namespace Server.Engines.UltimaStore
|
|
{
|
|
public static class UltimaStorePackets
|
|
{
|
|
public static unsafe void Configure()
|
|
{
|
|
IncomingPackets.Register(0xFA, 1, true, &UltimaStoreOpenRequest);
|
|
}
|
|
|
|
public static void UltimaStoreOpenRequest(NetState state, SpanReader reader, int packetLength)
|
|
{
|
|
state.Mobile.SendMessage("Ultima Store is not currently available.");
|
|
}
|
|
}
|
|
}
|