~ruther/NosTale-Anonymizer

ref: d8fdeb7455a0a2431d7c704c5ac0154dd3c9be3e NosTale-Anonymizer/src/Anonymizer/Movers/Basic/GidxPacketMover.cs -rw-r--r-- 1.0 KiB
d8fdeb74 — Rutherther chore: add README.md 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
//
//  GidxPacketMover.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.Packets.Server.Families;
using NosSmooth.PacketSerializer.Abstractions.Common;

namespace Anonymizer.Movers.Basic;

/// <inheritdoc />
public class GidxPacketMover : AbstractMover<GidxPacket>
{
    /// <inheritdoc />
    public override GidxPacket Move(IAnonymizer anonymizer, GidxPacket packet)
        => packet with
        {
            EntityId = anonymizer.AnonymizeId(packet.EntityId),
            FamilyName = packet.FamilyName is null ? null : (NameString)anonymizer.AnonymizeName(packet.FamilyName.Name),
            FamilySubPacket = packet.FamilySubPacket with
            {
                Value = packet.FamilySubPacket.Value is null ? null : packet.FamilySubPacket.Value with
                {
                    FamilyId = anonymizer.AnonymizeName(packet.FamilySubPacket.Value.FamilyId)
                }
            }
        };
}
Do not follow this link