- [X] Fixes several bugs - [X] Updates more ordinal issues - [X] Cleans up the code a bit - [X] Turns classes static that should have been - [X] Changes TcpServer.Instances to a HashSet Bumps release version
121 lines
4.1 KiB
C#
121 lines
4.1 KiB
C#
using System;
|
|
using Server.Network;
|
|
using Xunit;
|
|
|
|
namespace Server.Tests.Network
|
|
{
|
|
public class EffectPackets
|
|
{
|
|
[Theory, InlineData(10, 1000, 10, 5)]
|
|
public void TestSoundEffect(ushort soundID, int x, int y, int z)
|
|
{
|
|
var p = new Point3D(x, y, z);
|
|
|
|
var expected = new PlaySound(soundID, p).Compile();
|
|
|
|
using var ns = PacketTestUtilities.CreateTestNetState();
|
|
ns.SendSoundEffect(soundID, p);
|
|
|
|
var result = ns.SendPipe.Reader.TryRead();
|
|
AssertThat.Equal(result.Buffer[0].AsSpan(0), expected);
|
|
}
|
|
|
|
[Fact]
|
|
public void TestParticleEffect()
|
|
{
|
|
var effectType = EffectType.Moving;
|
|
Serial serial = 0x4000;
|
|
Serial from = 0x1000;
|
|
Serial to = 0x2000;
|
|
var itemId = 0x100;
|
|
var fromPoint = new Point3D(1000, 100, -10);
|
|
var toPoint = new Point3D(1500, 500, 0);
|
|
byte speed = 3;
|
|
byte duration = 2;
|
|
var direction = false;
|
|
var explode = false;
|
|
var hue = 0x1024;
|
|
var renderMode = 1;
|
|
ushort effect = 3;
|
|
ushort explodeEffect = 0;
|
|
ushort explodeSound = 0;
|
|
byte layer = 9;
|
|
ushort unknown = 0;
|
|
|
|
var expected = new ParticleEffect(
|
|
effectType, from, to, itemId, fromPoint, toPoint, speed, duration, direction,
|
|
explode, hue, renderMode, effect, explodeEffect, explodeSound, serial, layer,
|
|
unknown
|
|
).Compile();
|
|
|
|
Span<byte> actual = stackalloc byte[OutgoingEffectPackets.ParticleEffectLength];
|
|
OutgoingEffectPackets.CreateParticleEffect(
|
|
ref actual,
|
|
effectType, from, to, itemId, fromPoint, toPoint, speed, duration, direction,
|
|
explode, hue, renderMode, effect, explodeEffect, explodeSound, serial, layer,
|
|
unknown
|
|
);
|
|
|
|
AssertThat.Equal(actual, expected);
|
|
}
|
|
|
|
[Fact]
|
|
public void TestHuedEffect()
|
|
{
|
|
var effectType = EffectType.Moving;
|
|
Serial from = 0x1000;
|
|
Serial to = 0x2000;
|
|
var itemId = 0x100;
|
|
var fromPoint = new Point3D(1000, 100, -10);
|
|
var toPoint = new Point3D(1500, 500, 0);
|
|
byte speed = 3;
|
|
byte duration = 2;
|
|
var direction = false;
|
|
var explode = false;
|
|
var hue = 0x1024;
|
|
var renderMode = 1;
|
|
|
|
var expected = new HuedEffect(
|
|
effectType, from, to, itemId, fromPoint, toPoint, speed,
|
|
duration, direction, explode, hue, renderMode
|
|
).Compile();
|
|
|
|
Span<byte> actual = stackalloc byte[OutgoingEffectPackets.HuedEffectLength];
|
|
OutgoingEffectPackets.CreateHuedEffect(
|
|
ref actual,
|
|
effectType, from, to, itemId, fromPoint, toPoint, speed,
|
|
duration, direction, explode, hue, renderMode
|
|
);
|
|
|
|
AssertThat.Equal(actual, expected);
|
|
}
|
|
|
|
[Theory, InlineData(ScreenEffectType.DarkFlash), InlineData(ScreenEffectType.FadeInOut)]
|
|
public void TestScreenEffect(ScreenEffectType screenType)
|
|
{
|
|
var expected = new ScreenEffect(screenType).Compile();
|
|
|
|
using var ns = PacketTestUtilities.CreateTestNetState();
|
|
ns.SendScreenEffect(screenType);
|
|
|
|
var result = ns.SendPipe.Reader.TryRead();
|
|
AssertThat.Equal(result.Buffer[0].AsSpan(0), expected);
|
|
}
|
|
|
|
[Fact]
|
|
public void TestBoltEffect()
|
|
{
|
|
IEntity entity = new Entity(0x1000, new Point3D(1000, 100, -10), Map.Felucca);
|
|
var hue = 0x1024;
|
|
var expected = new BoltEffect(entity, hue).Compile();
|
|
|
|
Span<byte> actual = stackalloc byte[OutgoingEffectPackets.BoltEffectLength];
|
|
OutgoingEffectPackets.CreateBoltEffect(
|
|
ref actual,
|
|
entity, hue
|
|
);
|
|
|
|
AssertThat.Equal(actual, expected);
|
|
}
|
|
}
|
|
}
|