~ruther/NosSmooth

95f92bcde1b185eb6436777b4060f6e052b347ac — Rutherther 2 years ago d764822 + 95574fd
Merge pull request #76 from plsfixrito/addPtctlResponder

Add PtctlResponder
M Core/NosSmooth.Game/Extensions/ServiceCollectionExtensions.cs => Core/NosSmooth.Game/Extensions/ServiceCollectionExtensions.cs +1 -0
@@ 72,6 72,7 @@ public static class ServiceCollectionExtensions

            // mates
            .AddPacketResponder<MatesInitResponder>()
            .AddPacketResponder<PtctlResponder>()

            // map
            .AddPacketResponder<AtResponder>()

A Core/NosSmooth.Game/PacketHandlers/Entities/PtctlResponder.cs => Core/NosSmooth.Game/PacketHandlers/Entities/PtctlResponder.cs +59 -0
@@ 0,0 1,59 @@
//
//  PtctlResponder.cs
//
//  Copyright (c) František Boháček. All rights reserved.
//  Licensed under the MIT license. See LICENSE file in the project root for full license information.

using NosSmooth.Core.Packets;
using NosSmooth.Game.Data.Entities;
using NosSmooth.Game.Data.Info;
using NosSmooth.Packets.Client.Mates;
using Remora.Results;

namespace NosSmooth.Game.PacketHandlers.Entities;

/// <summary>
/// Responds to Ptctl packet.
/// </summary>
public class PtctlResponder : IPacketResponder<PtctlPacket>
{
    private readonly Game _game;

    /// <summary>
    /// Initializes a new instance of the <see cref="PtctlResponder"/> class.
    /// </summary>
    /// <param name="game">The nostale game.</param>
    public PtctlResponder(Game game)
    {
        _game = game;
    }

    /// <inheritdoc />
    public Task<Result> Respond(PacketEventArgs<PtctlPacket> packetArgs, CancellationToken ct = default)
    {
        var map = _game.CurrentMap;

        if (map is null)
        {
            return Task.FromResult(Result.FromSuccess());
        }

        var packet = packetArgs.Packet;

        foreach (var control in packet.Controls)
        {
            var entity = map.Entities.GetEntity<ILivingEntity>(control.MateTransportId);
            if (entity is not null)
            {
                entity.Position = new Position(control.PositionX, control.PositionY);

                if (packet.EntityId == control.MateTransportId)
                {
                    entity.Speed = packet.Speed;
                }
            }
        }

        return Task.FromResult(Result.FromSuccess());
    }
}
\ No newline at end of file

Do not follow this link