~ruther/Nostale-Anonymizer

ref: d8fdeb7455a0a2431d7c704c5ac0154dd3c9be3e Nostale-Anonymizer/src/Anonymizer/Movers/Basic/PinitPacketMover.cs -rw-r--r-- 1.7 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
//
//  PinitPacketMover.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.Groups;
using NosSmooth.PacketSerializer.Abstractions.Common;

namespace Anonymizer.Movers.Basic;

/// <inheritdoc />
public class PinitPacketMover : AbstractMover<PinitPacket>
{
    /// <inheritdoc />
    public override PinitPacket Move(IAnonymizer anonymizer, PinitPacket packet)
    {
        return packet with
        {
            PinitSubPackets = packet.PinitSubPackets?.Select
            (
                x => x with
                {
                    EntityId = anonymizer.AnonymizeId(x.EntityId),
                    MateSubPacket = x.MateSubPacket is null
                        ? null
                        : x.MateSubPacket with
                        {
                            Name = x.MateSubPacket.Name is null
                                ? null
                                : (NameString)anonymizer.AnonymizeName(x.MateSubPacket.Name)
                        },
                    PlayerSubPacket = x.PlayerSubPacket is null
                        ? null
                        : x.PlayerSubPacket with
                        {
                            GroupId = x.PlayerSubPacket.GroupId is null
                                ? null
                                : anonymizer.AnonymizeId(x.PlayerSubPacket.GroupId.Value),
                            Name = x.PlayerSubPacket.Name is null
                                ? null
                                : (NameString)anonymizer.AnonymizeName(x.PlayerSubPacket.Name)
                        }
                }
            ).ToArray()
        };
    }
}
Do not follow this link