- [X] Adds `ToSpan()` for SpanWriter.
- [X] Moves house files to UOContent/Multis/Houses
- [X] Adds house packets
### SpanWriter.ToSpan()
`ToSpan()` returns an `SpanOwner` struct which allows access to the buffer as a Span by calling `Span`.
Example:
```cs
public SpanOwner CreatePacket()
{
var writer = new SpanWriter(0x400);
// write some stuff
return writer.ToSpan();
}
```
In this example, we are creating a packet and returning the `SpanOwner` for caching. This means in the future we can do something like this:
```cs
ns.Send(_cachedPacket.Span);
```
Where `_cachedPacket` is the `SpanOwner`
Notes:
Do not use a SpanWriter, or attempt to dispose of it after calling `ToSpan()`. Doing so will probably cause an NPE.
52 lines
1.5 KiB
C#
52 lines
1.5 KiB
C#
using System;
|
|
using Server.Multis;
|
|
using Server.Network;
|
|
using Server.Tests;
|
|
using Server.Tests.Network;
|
|
using Xunit;
|
|
|
|
namespace UOContent.Tests
|
|
{
|
|
public class HousePacketTests
|
|
{
|
|
[Theory]
|
|
[InlineData(0x1001u)]
|
|
public void TestBeginHouseCustomization(uint serial)
|
|
{
|
|
var expected = new BeginHouseCustomization(serial).Compile();
|
|
|
|
var ns = PacketTestUtilities.CreateTestNetState();
|
|
ns.SendBeginHouseCustomization(serial);
|
|
|
|
var result = ns.SendPipe.Reader.TryRead();
|
|
AssertThat.Equal(result.Buffer[0].AsSpan(0), expected);
|
|
}
|
|
|
|
[Theory]
|
|
[InlineData(0x1001u)]
|
|
public void TestEndHouseCustomization(uint serial)
|
|
{
|
|
var expected = new EndHouseCustomization(serial).Compile();
|
|
|
|
var ns = PacketTestUtilities.CreateTestNetState();
|
|
ns.SendEndHouseCustomization(serial);
|
|
|
|
var result = ns.SendPipe.Reader.TryRead();
|
|
AssertThat.Equal(result.Buffer[0].AsSpan(0), expected);
|
|
}
|
|
|
|
[Theory]
|
|
[InlineData(0x1001u, 0)]
|
|
[InlineData(0x1001u, 100)]
|
|
public void TestDesignStateGeneral(uint serial, int revision)
|
|
{
|
|
var expected = new DesignStateGeneral(serial, revision).Compile();
|
|
|
|
var ns = PacketTestUtilities.CreateTestNetState();
|
|
ns.SendDesignStateGeneral(serial, revision);
|
|
|
|
var result = ns.SendPipe.Reader.TryRead();
|
|
AssertThat.Equal(result.Buffer[0].AsSpan(0), expected);
|
|
}
|
|
}
|
|
}
|