~ruther/NosSmooth

ref: bbb771c93b1b4b8b76f8c70e5ae298a045250324 NosSmooth/Core/NosSmooth.Game/PacketHandlers/Entities/EqResponder.cs -rw-r--r-- 2.0 KiB
bbb771c9 — Rutherther Merge pull request #80 from plsfixrito/ilivingenitityvnum 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
//
//  EqResponder.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.Data.Abstractions;
using NosSmooth.Game.Data.Entities;
using NosSmooth.Game.Helpers;
using NosSmooth.Packets.Server.Inventory;
using Remora.Results;

namespace NosSmooth.Game.PacketHandlers.Entities;

/// <summary>
/// Responder to eq packet.
/// </summary>
public class EqResponder : IPacketResponder<EqPacket>
{
    private readonly Game _game;
    private readonly IInfoService _infoService;

    /// <summary>
    /// Initializes a new instance of the <see cref="EqResponder"/> class.
    /// </summary>
    /// <param name="game">The game.</param>
    /// <param name="infoService">The info service.</param>
    public EqResponder(Game game, IInfoService infoService)
    {
        _game = game;
        _infoService = infoService;

    }

    /// <inheritdoc />
    public async Task<Result> Respond(PacketEventArgs<EqPacket> packetArgs, CancellationToken ct = default)
    {
        var map = _game.CurrentMap;
        if (map is null)
        {
            return Result.FromSuccess();
        }

        var packet = packetArgs.Packet;
        var entity = map.Entities.GetEntity<Player>(packet.CharacterId);

        if (entity is null)
        {
            return Result.FromSuccess();
        }

        entity.Sex = packet.Sex;
        entity.Class = packet.Class;
        if (packet.Size is not null)
        {
            entity.Size = packet.Size.Value;
        }
        entity.Authority = packet.AuthorityType;
        entity.HairColor = packet.HairColor;
        entity.HairStyle = packet.HairStyle;
        entity.Equipment = await EquipmentHelpers.CreateEquipmentFromInSubpacketAsync
        (
            _infoService,
            packet.EquipmentSubPacket,
            packet.WeaponUpgradeRareSubPacket,
            packet.ArmorUpgradeRareSubPacket,
            ct
        );

        return Result.FromSuccess();
    }
}
Do not follow this link